npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@milieux/sidenav

v1.0.1

Published

@milieux/sidenav is an Angular Component to give a beautiful and rich featured sidenav to easily handle pages with need of easy use of mat-sidenav with out its dificulities

Downloads

3

Readme

@milieux/sidenav

a rich featured Sidenav built with Angular Material inspired by Dribbble.com!

Online Demo

Version(1.0.1): Checkout Demo in Stackblitz!

Preview of Milieux Sidenav:

unfolded Mode: alt text folded Mode: alt text

Getting Started

Install with npm:

npm i @milieux/sidenav

After installation include MuilieuxSidenavModule in your module imports:

import { MuilieuxSidenavModule } from '@milieux/sidenav';
...
imports: [
    MuilieuxSidenavModule
  ],
...

now to show your navigation give a list of items with this interface:

export interface MilieuxSidenavItem {
  id: any;
  label: string;
  icon?: string;
  badge?: number | ((item: MilieuxSidenavItem) => number);
  badgeColor?: ThemePalette;
  opened?: boolean;
  focus?: boolean;
  hasDivider?: boolean;
  disabled?: boolean | ((item: MilieuxSidenavItem) => boolean);
  hidden?: boolean | ((item: MilieuxSidenavItem) => boolean);
  children?: MilieuxSidenavItem[];
}

like this:

items : MilieuxSidenavItem[] = [...whatever ... ]

In the HTML add the selector:

<miliuex-sidenav
  #sidenav
  dir="ltr"
  [sidenavItems]="items"
  [style.width.vw]="100"
  [style.height.vh]="100"
  [closeChildrenOnParent]="false"
  [soloExpand]="true"
  [folded]="false"
  [headerConfig]="headerConfig"
  [footerConfig]="footerConfig"
  [theme]="theme"
  (childNavClicked)="navClicked($event)"
  (footerEvents)="footerEvents($event)"
  (headerEvents)="headerEvents($event)"
>
  <!-- you content goes here! -->
</miliuex-sidenav>

Inputs:

sidenavItems = navigation tree list closeChildrenOnParent = this parameter in case of true , close all children that is open when parent toggled to close soloExpand = it means expand one node at a time and close others folded = it means that init state be in folded mode or not headerConfig = an instance of MilieuxHeaderConfig

export interface MilieuxHeaderConfig {
  label?: string;
  icon?: string;
  svgIcon?: string;
  labelStyles?: any;
  logoStyles?: any;
}

footerConfig = an instance of MilieuxFooterConfig

export interface MilieuxFooterConfig {
  icon?: string;
  svgIcon?: string;
  label?: string;
}

theme = an instance of MilieuxTheme

export interface MilieuxTheme {
  backColor: string;
  backHoverColor: string;
  backFocusColor: string;
  color: string;
  openedWidth: number;
  foldedWidth: number;
  defaultpadding: number;
}

Outputs: childNavClicked = all the events of navigation headerEvents = all the events of header footerEvents = all the events of footer

For more examples checkout stackblitz.