flicker-alerts 1.0.69 → 1.0.71

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 +5 -5
  2. package/readme.md +2 -7
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "flicker-alerts",
3
- "version": "1.0.69",
4
- "linkedin": "https://www.linkedin.com/in/bruno-carneiro-9a53aa190/",
5
- "demonstração": "https://flickeralerts.netlify.app/",
3
+ "version": "1.0.71",
4
+ "repository": "https://www.linkedin.com/in/bruno-carneiro-9a53aa190/",
5
+ "homepage": "https://flickeralerts.netlify.app/",
6
6
  "description": "Biblioteca para alertas animados",
7
7
  "main": "index.js",
8
8
  "types": "index.d.ts",
@@ -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.69"
21
+ "flicker-alerts": "^1.0.71"
22
22
  }
23
- }
23
+ }
package/readme.md CHANGED
@@ -106,7 +106,7 @@ Se você prefere não usar o CDN, pode configurar o Angular para importar o arqu
106
106
 
107
107
  ```javascript
108
108
  import FlickerAlerts, { FlickerModals } from 'flicker-alerts';
109
- import 'flicker-alerts/style.css'; // Importa o CSS diretamente do pacote
109
+
110
110
 
111
111
  const App = () => {
112
112
  const showAlert = () => {
@@ -128,12 +128,7 @@ const App = () => {
128
128
  });
129
129
  };
130
130
 
131
- return (
132
- <>
133
- <button onClick={showAlert}>Mostrar Alerta</button>
134
- <button onClick={showModal}>Mostrar Modal</button>
135
- </>
136
- );
131
+
137
132
  };
138
133
  ```
139
134