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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@enterprise-components/material

v3.0.0-rc.45ec9734

Published

![Coverage](https://gitlab.com/rgb5300241/asml-angular/material/badges/0.0.1/coverage.svg)

Readme

@asml-angular/material

Coverage

This project provides Angular components that follow the Enterprise Design System and Material guidelines. The resulting library is published under the @asml-angular/material package in ASML Mirai Artifactory .


Table of Contents

  1. Usage
  2. Build
  3. Development Conventions
  4. Creating a New Component
  5. Migration Guides
  6. Changelog and Commit Guidelines
  7. Deployments
  8. How to Include in Other Projects

Usage

NPM

Before installing, ensure your npm is configured correctly:

npm config set strict-ssl false

Then you can install the library:

npm add @asml-angular/material

Build

To build the project, run:

ng build

The build artifacts will be stored in the dist/ directory.
Use the --prod flag for a production build:

ng build --prod

Development Conventions

Note on Sass Partials:
Files prefixed with an underscore, like _index.scss, are recognized by Sass as partial files. Partial files are not compiled into standalone CSS but are meant to be imported into other Sass files.


Creating a New Component

Use the following script to create a new component within @asml-angular/material. For example, to create an atoms component named slide-toggle:

node tools/create-component.js @asml-angular/material atoms slide-toggle

Migration Guides

  1. Update from Angular Flex-Layout to Tailwind classes

    npx @ngnomads/ngflex2tailwind -r false -p ./projects/asml-angular/material-2/src/lib/atoms/filter-button
  2. Use Angular Control Flow

    ng generate @angular/core:control-flow
  3. Migrate to Standalone Components

    ng generate @angular/core:standalone

Changelog and Commit Guidelines

We encourage granular commits for clear changelog generation. Please follow Angular’s Commit Guidelines and use Conventional Commits.

Commit Message Format

<type>(<scope>): <short summary>
│       │             │
│       │             └─⫸ Summary in present tense. Not capitalized. No period at the end.
│       │
│       └─⫸ Commit Scope: animations|bazel|benchpress|common|compiler|compiler-cli|core|
│                          elements|forms|http|language-service|localize|platform-browser|
│                          platform-browser-dynamic|platform-server|router|service-worker|
│                          upgrade|zone.js|packaging|changelog|docs-infra|migrations|
│                          devtools
│
└─⫸ Commit Type: build|ci|docs|feat|fix|perf|refactor|test

Examples

  • feat(aal-input-currency): add new feature
  • fix(aal-input-currency): fix issue
  • refactor(aal-input-currency): refactor code

Tip: Commit messages should be imperative, for example, "fix input issue" rather than "fixed input issue".


Deployments

Currently, all released versions are hosted on GitLab Pages:


How to Include in Other Projects

Prerequisite: Properly configure the ASML Mirai JFrog Artifactory settings in your .npmrc.

Step 1

Install the library:

npm i @asml-angular/material-2

Step 2

In your angular.json, within your project’s build options (<project> -> architect -> build -> options), add the following:

{
  "styles": [
    {
      "input": "./node_modules/@asml-angular/material-2/themes/_index.scss",
      "inject": true
    },
    {
      "input": "./node_modules/@asml-angular/material-2/themes/_theming.scss",
      "inject": true
    },
    {
      "input": "./node_modules/@asml-angular/material-2/themes/old_theme.scss",
      "inject": true
    },
    "src/styles.scss"
  ],
  "stylePreprocessorOptions": {
    "includePaths": [
      "node_modules",
      "src/styles" // <- other styles
    ]
  }
}

Once configured, you can refer to the Storybook to discover the available components and their usage. If you require a component that isn’t provided or need additional help, reach out to:

  • @RGBA Developers
  • Or consult your UX Designer to align with our team.

Questions or Feedback?
Feel free to open an issue or contact the maintainers if you need further assistance. We welcome contributions and improvements!