Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tilde-nlp/ngx-menu

Package Overview
Dependencies
Maintainers
0
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tilde-nlp/ngx-menu

Library for project menu. Contains collapsible side navigation and dropdown menu for small screens Component layout and stlying is based on `angular flex-layout` framework.

  • 6.1.4
  • npm
  • Socket score

Version published
Weekly downloads
81
increased by161.29%
Maintainers
0
Weekly downloads
 
Created
Source

NgxMenu

Library for project menu. Contains collapsible side navigation and dropdown menu for small screens Component layout and stlying is based on angular flex-layout framework.

Including side nav in your app

Basic steps for including side nav in app:

  1. Install necessary dependencies npm i @tilde-nlp/ngx-common @tilde-nlp/ngx-menu @tilde-nlp/ngx-strapi @tilde-nlp/strapi-models. Strapi libs are necessary for legacy use and in case project needs strapi menu items.

  2. Provide MENU_SHARED_CONFIG amd STRAPI_API_CONFIG_TOKEN (even if you don't need one) in your app.config.ts file. Example:

{
      provide: MENU_SHARED_CONFIG, useValue: {
        disableStrapi: true,
        baseUrl: '/',
        itemGroups: [
          {
            items: [
            ]
          }
        ]
      }
    },
    {
      provide: STRAPI_API_CONFIG_TOKEN,
      useValue: { baseUrl: "", enabled: false }
    },
  1. Define side nav settings in component where you want to add sidenav:
readonly settings: SideNavSettings = {
    menuLogo: 'images/logo.svg',
    menuLogoCollapsed: 'images/logo.svg',
    disableStrapi: true,
    expandedWidth: '241px',
    collapsedWidth: '56px',
    userOptions: [
      {
        label: 'menu.logout',
        callback: () => this.logout()
      }
    ]
  };
  1. Add component to your html.
<lib-side-nav-menu
  [menuSettings]="settings"
>
</lib-side-nav-menu>

FAQs

Package last updated on 18 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc