flicker-alerts 1.0.61 → 1.0.63
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 +5 -5
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "flicker-alerts",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.63",
|
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.63"
|
22
22
|
}
|
23
23
|
}
|
package/readme.md
CHANGED
@@ -67,10 +67,10 @@ Abra o arquivo angular.json, e no campo styles dentro de angular.json, adicione
|
|
67
67
|
"styles": [
|
68
68
|
"node_modules/flicker-alerts/style.css"
|
69
69
|
]
|
70
|
+
Ou no index.html: Use o link de um CDN para carregar o CSS diretamente:
|
71
|
+
https://cdn.jsdelivr.net/npm/flicker-alerts/style.css
|
72
|
+
|
70
73
|
|
71
|
-
Ou no index.html: Use o link de um CDN para carregar o CSS diretamente.
|
72
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flicker-alerts/style.css">
|
73
|
-
---
|
74
74
|
|
75
75
|
### Uso no React
|
76
76
|
|
@@ -148,5 +148,5 @@ No React, você não precisa de um arquivo de configuração centralizado como o
|
|
148
148
|
No arquivo principal, como index.js ou App.js, adicione a seguinte linha para importar o CSS:
|
149
149
|
|
150
150
|
import 'flicker-alerts/style.css';
|
151
|
-
Ou no index.html: Use o link de um CDN para carregar o CSS diretamente
|
152
|
-
|
151
|
+
Ou no index.html: Use o link de um CDN para carregar o CSS diretamente:
|
152
|
+
https://cdn.jsdelivr.net/npm/flicker-alerts/style.css
|