Socket
Socket
Sign inDemoInstall

ngx-alert-message

Package Overview
Dependencies
5
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ngx-alert-message

Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.


Version published
Weekly downloads
39
decreased by-32.76%
Maintainers
1
Install size
130 kB
Created
Weekly downloads
 

Readme

Source

Alert message notifier

For Angular 17 + (standalone component)

Alert component for angular projects. Creative alert message with mutiple color variance.

Import

Import the module on your your-component.component.ts file as follow.

import { AlertComponent, JustAlertComponent } from 'ngx-alert-message';`

Then import the module as follow on imports array

@Component({
  selector: '...',
  templateUrl: '...',
  styleUrls: ['...'],
  standalone: true,
  imports: [AlertComponent, JustAlertComponent]
})

For animation

import { provideAnimations } from '@angular/platform-browser/animations';

bootstrapApplication(AppComponent, {
  providers: [
    importProvidersFrom(BrowserModule),
    provideAnimations() // Import this
    ],
}).
catch((err) => console.error(err));

Using

After importing this library with npm install ngx-alert-message,

just alert module

<ngx-just-alert [text]="text"></ngx-just-alert>
close : (required) value shoule be `true | false`

mode : (required) value shoule be `primary | success | danger | info | warning`

text : (required) value shoule be `anything...`


Alert module

<ngx-alert [text]="text"></ngx-alert>
close : (optional) value shoule be `true | false`

mode : (optional) value shoule be `primary | success | danger | info | warning`

text : (optional) value shoule be `anything...`



Keywords

FAQs

Last updated on 20 Apr 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc