flicker-alerts 1.0.72 → 1.0.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/readme.md +3 -3
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "flicker-alerts",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.73",
|
4
4
|
"repository": "https://www.linkedin.com/in/bruno-carneiro-9a53aa190/",
|
5
5
|
"homepage": "https://flickeralerts.netlify.app/",
|
6
6
|
"description": "Biblioteca para alertas animados",
|
@@ -18,6 +18,6 @@
|
|
18
18
|
"author": "https://www.linkedin.com/in/bruno-carneiro-9a53aa190/",
|
19
19
|
"license": "MIT",
|
20
20
|
"dependencies": {
|
21
|
-
"flicker-alerts": "^1.0.
|
21
|
+
"flicker-alerts": "^1.0.73"
|
22
22
|
}
|
23
23
|
}
|
package/readme.md
CHANGED
@@ -45,7 +45,7 @@ Após a instalação, importe a biblioteca no seu projeto e utilize a função `
|
|
45
45
|
### Exemplo Básico de Alerta:
|
46
46
|
|
47
47
|
```javascript
|
48
|
-
import FlickerAlerts from 'flicker-alerts';
|
48
|
+
import { FlickerAlerts, FlickerModals } from 'flicker-alerts';
|
49
49
|
|
50
50
|
FlickerAlerts.showAlert({
|
51
51
|
type: 'success', // 'success', 'info', 'warning', 'danger'
|
@@ -64,7 +64,7 @@ FlickerAlerts.showAlert({
|
|
64
64
|
1. **Importe e use:**
|
65
65
|
|
66
66
|
```typescript
|
67
|
-
import FlickerAlerts,
|
67
|
+
import { FlickerAlerts, FlickerModals } from 'flicker-alerts';
|
68
68
|
|
69
69
|
export class AppComponent {
|
70
70
|
showAlert() {
|
@@ -105,7 +105,7 @@ Se você prefere não usar o CDN, pode configurar o Angular para importar o arqu
|
|
105
105
|
1. **Importe e use:**
|
106
106
|
|
107
107
|
```javascript
|
108
|
-
import FlickerAlerts,
|
108
|
+
import { FlickerAlerts, FlickerModals } from 'flicker-alerts';
|
109
109
|
|
110
110
|
|
111
111
|
const App = () => {
|