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 🙏

© 2024 – Pkg Stats / Ryan Hefner

flicker-alerts

v1.0.57

Published

Biblioteca para alertas animados

Downloads

1,222

Readme

FlickerAlerts

FlickerAlerts é uma biblioteca simples para criar alertas animados de sucesso, erro, aviso e informações. Eles podem ser exibidos automaticamente ou ser fechados manualmente pelo usuário.

Instalação

Para instalar o FlickerAlerts, utilize o npm:

npm install flicker-alerts

Documentação de Uso

FlickerAlerts é uma biblioteca simples para criar alertas animados de sucesso, erro, aviso e informações. Eles podem ser exibidos automaticamente ou ser fechados manualmente pelo usuário.

"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"

Instalação

Instale via npm:

npm install flicker-alerts

Uso

Após a instalação, a biblioteca será importada no seu código, e você não precisará mais incluir o arquivo <script> diretamente no HTML. Em vez disso, você utilizará a função showAlert em seus componentes.

Uso no Angular

Com o FlickerAlerts instalado, importe-o no seu componente Angular e utilize-o conforme mostrado abaixo:

import FlickerAlerts, { FlickerModals } from 'flicker-alerts';

          export class AppComponent {
            showAlert() {
              FlickerAlerts.showAlert({
                type: 'success', // Opções: 'success', 'info', 'warning', 'danger'
                title: 'Título',
                message: 'Mensagem personalizada',
                position: 'top-right' // Opções: 'top-right', 'top-left',   'bottom-right', 'bottom-left',  'center', 'top-center',   'bottom-center'
              });
            }
          }

Caso o Estilo Não Esteja Sendo Aplicado no Angular

Se o estilo da biblioteca não estiver sendo aplicado corretamente, verifique se você adicionou o caminho para o arquivo CSS no angular.json.

Abra o arquivo angular.json, e no campo styles dentro de angular.json, adicione o caminho para o CSS da biblioteca, como mostrado abaixo:

"styles": [ "node_modules/flicker-alerts/style.css" ]


Uso no React

Com o FlickerAlerts instalado, você pode usá-lo no seu componente React assim:

import FlickerAlerts, { FlickerModals } from 'flicker-alerts';



          const showAlert = () => {
            FlickerAlerts.showAlert({
              type: 'success', // Opções: 'success', 'info', 'warning', 'danger'
              title: 'Título',
              message: 'Mensagem personalizada',
              position: 'top-right'     // Opções: 'top-right', 'top-left',   'bottom-right', 'bottom-left',  'center', 'top-center',   'bottom-center'
            });
          };      

Modais

Uso no Angular

Com o FlickerAlerts instalado, você pode usá-lo no seu componente React assim:

import FlickerAlerts, { FlickerModals } from 'flicker-alerts';
        
          export class AppComponent {
            showModal() {
              FlickerModals.showModal({
                type: 'warning', // Tipos: 'warning', 'delete' 
                title: 'Título do Modal',
                message: 'Mensagem personalizada para o modal.',
                onConfirm: () => { console.log('Confirmado!'); },
                onCancel: () => { console.log('Cancelado!'); }
              });
            }
          }
             

Uso no React

Com o FlickerAlerts instalado, você pode usá-lo no seu componente React assim:

  import FlickerAlerts, { FlickerModals } from 'flicker-alerts';
        
          const showModal = () => {
            FlickerModals.showModal({
              type: 'delete', // Tipos: 'warning', 'delete' 
              title: 'Título do Modal',
              message: 'Mensagem personalizada para o modal.',
              onConfirm: () => { console.log('Deletado com sucesso!'); },
              onCancel: () => { console.log('Cancelado!'); }
            });
          };
             

Caso o Estilo Não Esteja Sendo Aplicado no React

No React, você não precisa de um arquivo de configuração centralizado como o angular.json. Para garantir que o estilo da biblioteca FlickerAlert seja aplicado corretamente, basta importar o arquivo CSS diretamente no seu código.

No arquivo principal, como index.js ou App.js, adicione a seguinte linha para importar o CSS:

import 'flicker-alerts/style.css';