🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@episource/signet-angular

Package Overview
Dependencies
Maintainers
22
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@episource/signet-angular

Develop your Angular application using Signet's Angular component library.

latest
npmnpm
Version
0.0.69
Version published
Maintainers
22
Created
Source

Signet Angular Library

Signet Angular Components Library is developed with Signet, an all-in-one design system for all front-end JavaScript frameworks.

How to Install Signet Angular Components Library

Install the main design system.

npm install @episource/signet

Install the Angular components library

npm install @episource/signet-angular

Using the angular components

There are currently two methods to use the components. Choose either of the methods listed below.

Method 1 - Using app.module.ts File

Navigate to the app/app.module.ts, then add EpiDesignSystemAngularModule to the imports declarator.

import { EpiDesignSystemAngularModule } from '@episource/signet-angular'

imports: [
    BrowserModule, 
    EpiDesignSystemAngularModule
],

Éľcmp Error: While testing this angular app, if you run into an error such as the one below, then use the alternative method below.

main.js:1 ERROR Error: Uncaught (in promise): TypeError: Cannot read properties of undefined (reading 'Éľcmp')
TypeError: Cannot read properties of undefined (reading 'Éľcmp')

Method 2 - Using the main.js/ts file

Import the component into the main.js file

import { applyPolyfills, defineCustomElements as signetComponents } from '@episource/signet/loader';

applyPolyfills().then( () => {
    signetComponents(window);
});

How to use the imported components

  • To view the list of available components, navigate to @episource/signet-angular/src/generated/directives/index.ts

  • Then, you can freely add your component to any part of the angular app.

    <my-component first="Sanmi" middle="Ebenezer" last="Ajanaku"></my-component>
    
  • Run your angular app.

Keywords

design system

FAQs

Package last updated on 22 May 2025

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