flicker-alerts 1.0.0 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +89 -0
- package/package.json +3 -3
package/README.md
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
|
2
|
+
# FlickerAlerts
|
3
|
+
|
4
|
+
**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.
|
5
|
+
|
6
|
+
## Instalação
|
7
|
+
|
8
|
+
Para instalar o **FlickerAlerts**, utilize o npm:
|
9
|
+
|
10
|
+
```bash
|
11
|
+
npm install flicker-alerts
|
12
|
+
```
|
13
|
+
|
14
|
+
## Documentação de Uso
|
15
|
+
|
16
|
+
**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.
|
17
|
+
|
18
|
+
### Instalação
|
19
|
+
|
20
|
+
Instale via `npm`:
|
21
|
+
|
22
|
+
```bash
|
23
|
+
npm install flicker-alerts
|
24
|
+
```
|
25
|
+
|
26
|
+
### Uso
|
27
|
+
|
28
|
+
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.
|
29
|
+
|
30
|
+
### Uso no Angular
|
31
|
+
|
32
|
+
Com o **FlickerAlerts** instalado, importe-o no seu componente Angular e utilize-o conforme mostrado abaixo:
|
33
|
+
|
34
|
+
```typescript
|
35
|
+
import FlickerAlerts from 'flicker-alerts';
|
36
|
+
|
37
|
+
export class AppComponent {
|
38
|
+
showSuccessAlert() {
|
39
|
+
FlickerAlerts.showAlert({
|
40
|
+
type: 'success',
|
41
|
+
title: 'Sucesso',
|
42
|
+
message: 'Operação concluída com sucesso!'
|
43
|
+
});
|
44
|
+
}
|
45
|
+
|
46
|
+
showInfoAlert() {
|
47
|
+
FlickerAlerts.showAlert({
|
48
|
+
type: 'info',
|
49
|
+
title: 'Informação',
|
50
|
+
message: 'Aqui está uma informação importante.'
|
51
|
+
});
|
52
|
+
}
|
53
|
+
|
54
|
+
showWarningAlert() {
|
55
|
+
FlickerAlerts.showAlert({
|
56
|
+
type: 'warning',
|
57
|
+
title: 'Alerta',
|
58
|
+
message: 'Por favor, preste atenção nisso!'
|
59
|
+
});
|
60
|
+
}
|
61
|
+
|
62
|
+
showErrorAlert() {
|
63
|
+
FlickerAlerts.showAlert({
|
64
|
+
type: 'danger',
|
65
|
+
title: 'Erro',
|
66
|
+
message: 'Ocorreu um erro inesperado!'
|
67
|
+
});
|
68
|
+
}
|
69
|
+
}
|
70
|
+
```
|
71
|
+
|
72
|
+
### Uso no React
|
73
|
+
|
74
|
+
Com o **FlickerAlerts** instalado, você pode usá-lo no seu componente React assim:
|
75
|
+
|
76
|
+
```javascript
|
77
|
+
import FlickerAlerts from 'flicker-alerts';
|
78
|
+
|
79
|
+
function App() {
|
80
|
+
const showSuccessAlert = () => {
|
81
|
+
FlickerAlerts.showAlert({
|
82
|
+
type: 'success',
|
83
|
+
title: 'Sucesso',
|
84
|
+
message: 'Operação concluída com sucesso!'
|
85
|
+
});
|
86
|
+
};
|
87
|
+
}
|
88
|
+
```
|
89
|
+
|
package/package.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
|
-
"name": "flicker-alerts",
|
3
|
-
"version": "1.0.
|
2
|
+
"name": "flicker-alerts",
|
3
|
+
"version": "1.0.2",
|
4
4
|
"description": "Biblioteca para criar alertas animados de sucesso, erro, aviso e informações.",
|
5
|
-
"main": "index.js",
|
5
|
+
"main": "index.js",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
8
8
|
},
|