Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@ng-matero/extensions
Advanced tools
The Ng-Matero Extensions is an extended component library for Angular Material.
Check out the demos and APIs.
At first, you should install the Angular Material and setup it. Learn more about the setup.
Install the Extensions library:
$ npm install @ng-matero/extensions --save
Import the modules you need, e.g. data-grid and select.
import { MtxGridModule } from '@ng-matero/extensions/grid';
import { MtxSelectModule } from '@ng-matero/extensions/select';
@NgModule({
...
imports: [MtxGridModule, MtxSelectModule, ...],
...
})
export class YourAppModule {
}
After import modules, you must define a theme. More about theming.
@use '@angular/material' as mat;
@use '@ng-matero/extensions' as mtx;
$theme: mat.define-light-theme(...);
@include mat.all-component-themes($theme);
@include mtx.all-component-themes($theme);
@use '@angular/material' as mat;
@use '@ng-matero/extensions' as mtx;
$config: (...);
$theme: mat.private-deep-merge-all(
mat.define-theme($config),
mtx.define-theme($config)
);
html {
@include mat.all-component-themes($theme);
@include mtx.all-component-themes($theme);
}
The @use-based Sass API is only available in the version 12.0.0
and above.
You can also using a pre-built theme which in the "prebuilt-themes" directory of the npm package (@ng-matero/extensions/prebuilt-themes).
@import '@ng-matero/extensions/prebuilt-themes/azure-blue.css'
$ git clone git@github.com:ng-matero/extensions.git
$ cd extensions
$ yarn
$ yarn run start
Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
MIT
FAQs
Angular Material Extensions
The npm package @ng-matero/extensions receives a total of 13,433 weekly downloads. As such, @ng-matero/extensions popularity was classified as popular.
We found that @ng-matero/extensions demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.