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

primeng-shadowdom-directives

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

primeng-shadowdom-directives

Set of directives to fix PrimeNg "overlay" components got-chas when rendered inside ShadowDOM

  • 0.2.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
999
decreased by-26.33%
Maintainers
1
Weekly downloads
 
Created
Source

Primeng Shadowdom Directives

Set of directives to fix PrimeNg "overlay" components got-chas when rendered inside ShadowDOM

Below are list of components that currently supported (all directives start with prefix psd = PrimeNg ShadowDOM Directive):

  • Calendar (psdCalendar)
  • Dropdown (psdDropdown)
  • Dropdown inside Paginator (psdPaginator)
  • Menu (No directive required)
  • Multi Select (psdMultiSelect)
  • Tooltip (No directive required)
  • Auto Complete (psdAutoComplete)
  • Cascade Select (psdCascadeSelect)
  • Color Picker (No directive required)
  • Mega Menu (psdMegaMenu)
  • Menu Bar (psdMenuBar)
  • Confirm Popup (psdConfirmPopup)
  • Overlay Panel (psdOverlayPanel)
  • Slide Menu (No directive required)
  • Split Button (No directive required)
  • Tiered Menu (No directive required)
  • Tree Select (psdTreeSelect)

Note that not all components need custom directive, since this library already contains some logics which reduce the effort of writing custom directive for those components. That means for components marked as No directive required, they just work.

To request for new component, please submit issue or PR

Installation

This package is available on npm registry. Install it with command:

npm install primeng-shadowdom-directives

Usage

Import this package into your module where you want to apply these directives (normally will be app.module.ts)


import { PrimeNGShadowDOMDirective } from 'primeng-shadowdom-directives';

@NgModule({
  imports: [
    PrimeNGShadowDOMDirective, // import here
    ...
  ],
})
export class AppModule { }

Then in your component file, apply the directives:

<!-- dropdown -->
<p-dropdown psdDropdown ...></p-dropdown>

<!-- calendar -->
<p-calendar psdCalendar ...></p-calendar>

<!-- multi select -->
<p-multiSelect psdMultiSelect ...></p-multiSelect>

<!-- and others -->

Demo

Check projects/demo-app to see samples on how to use this package.

To run the demo, first run

npm install

Then build the directives:

npm run build

# watch mode
npm run watch

Finally start the demo-app:

npm start

Now you can access from browser at: http://localhost:4200

FAQs

Package last updated on 07 Apr 2023

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