Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
ngx-mat-lib
Advanced tools
A bunch of utilities and components to use in your Angular 7+ apps!
As you may know directives don't have a "Styles" property. So it's impossible to let them style your markup, unless you include an external CSS.
For this purpose the style of directives is compiled in
Be sure of including at least one of these in your styles.css / styles.scss to get xmatDirectives properly working
Xmat includes a Material Theme you can activate by using
@import "~ngx-mat-lib/scss/xmat-vars";
@import angular-material-theme($xmat-theme);
You can of course override all of theme colors by overriding the following variables:
// xmat-vars.scss
$xmat-primary: mat-palette($xmat-blue) !default;
$xmat-accent: mat-palette($xmat-blue-accent) !default;
$xmat-accent-light: mat-palette($xmat-blue-accent-light) !default;
$xmat-warn: mat-palette($mat-red) !default;
$xmat-theme: mat-light-theme($xmat-primary, $xmat-accent, $xmat-warn) !default;
Angular Material is a complete tool. But there are ways to use come components which may come handy. For example xMatLib includes an SCSS library which provides common classes and mixins, that you can use in your app to drastically reduce duplicate code!
This util allow you to mock your frontend calls when developing, by simply creating some json and a list. Advanced behaviours can be achieved with custom callbacks and custom mock urls.
Wrapper for mat-expansion-panel
Part | Selector |
---|---|
Accordion header | .xmat-accordion-title |
Accordion description | .xmat-accordion-desc |
Accordion content | .xmat-accordion-content |
####Options
Option | Type |
---|---|
expanded | boolean |
disabled | boolean |
color | ThemePalette |
A simple directive to add interactive look to any text. Useful on click bindings
####Options
Option | Type |
---|---|
disabled | boolean |
color | ThemePalette |
MORE DESCRIPTIONS COMING
###Other components
To install this library, run:
$ npm install ngx-mat-lib --save-dev
Be sure to have peerDependencies installed, especially:
@angular/material
@angular/cdk
Once published to npm, you can update your library in any Angular application by running:
$ npm install ngx-mat-lib@latest
and then from your Angular AppModule
:
import { BrowserModule } from "@angular/platform-browser";
import { BrowserAnimationsModule } from "@angular/platform-browser/animations"
import { NgModule } from "@angular/core";
import { AppComponent } from "./app.component";
// Import what you need from ngx-mat-lib
import { XmatTimeModule } from "ngx-mat-lib";
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
// Specify the import
XmatTimeModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Once your library is imported, you can use its components, directives and pipes in your Angular application:
<!-- You can now use your library component in app.component.html -->
<h1>
{{title}}
</h1>
<sampleComponent></sampleComponent>
You can now (v 2.0.0 and later) test all of the stuff, by running
npm run start
In the src
folder there's an app test, you can use to test everything you need!
To generate all *.js
, *.d.ts
and *.metadata.json
files:
$ npm run build
To lint all *.ts
files:
$ npm run lint
##Thanks to
Versioning NgxMatLib will be maintained under the Semantic Versioning guidelines as much as possible.
Releases will be numbered with the following format:
<major>.<minor>.<patch>
And constructed with the following guidelines:
Breaking backward compatibility bumps the major (and resets the minor and patch) New additions, including new icons, without breaking backward compatibility bumps the minor (and resets the patch) Bug fixes, changes to brand logos, and misc changes bumps the patch For more information on SemVer, please visit http://semver.org.
MIT © Tony Samperi
ngx-mat-lib is free, open source, and GPL friendly. You can use it for commercial projects, open source projects, or really almost whatever you want.
Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded files already contain embedded comments with sufficient attribution, so you shouldn't need to do anything additional when using these files normally.
#TODOS
7.3.2
FAQs
A bunch of utilities and components to use in your Angular 7+ apps!
We found that ngx-mat-lib demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.