flicker-alerts 1.0.75 → 1.0.76

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.
Files changed (2) hide show
  1. package/package.json +2 -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.75",
3
+ "version": "1.0.76",
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.75"
21
+ "flicker-alerts": "^1.0.76"
22
22
  }
23
23
  }
package/readme.md CHANGED
@@ -51,7 +51,7 @@ FlickerAlerts.showAlert({
51
51
  type: 'success', // 'success', 'info', 'warning', 'danger'
52
52
  title: 'Sucesso!',
53
53
  message: 'Operação realizada com sucesso.',
54
- position: 'top-right' // 'top-right', 'top-left', 'bottom-right', 'bottom-left', 'center'
54
+ position: 'top-right', // 'top-right', 'top-left', 'bottom-right', 'bottom-left', 'center'
55
55
  duration: 5000
56
56
  });
57
57
  ```
@@ -73,7 +73,7 @@ export class AppComponent {
73
73
  type: 'warning',
74
74
  title: 'Atenção!',
75
75
  message: 'Algo deu errado.',
76
- position: 'top-center'
76
+ position: 'top-center',
77
77
  duration: 5000
78
78
  });
79
79
  }
@@ -116,7 +116,7 @@ const App = () => {
116
116
  type: 'info',
117
117
  title: 'Informação',
118
118
  message: 'Este é um alerta informativo.',
119
- position: 'bottom-left'
119
+ position: 'bottom-left',
120
120
  duration: 5000
121
121
  });
122
122
  };