flicker-alerts 1.0.22 → 1.0.24

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +13 -1
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -1,5 +1,17 @@
1
- import './src/style.css'; // Certifique-se de usar o caminho certo aqui
1
+ // Adicionando os links para o Bootstrap e Font Awesome dinamicamente
2
+ function addCSSLink(href) {
3
+ const link = document.createElement('link');
4
+ link.rel = 'stylesheet';
5
+ link.href = href;
6
+ document.head.appendChild(link);
7
+ }
8
+
9
+ // Adicionar os arquivos CSS de forma dinâmica
10
+ addCSSLink('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
11
+ addCSSLink('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
2
12
 
13
+ // Agora, você pode continuar com o restante do código
14
+ import './style.css'; // Certifique-se de usar o caminho certo aqui
3
15
 
4
16
  const FlickerAlerts = {
5
17
  showAlert: function ({ type, title, message, timer = 3000, position = 'top-right' }) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flicker-alerts",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "description": "Biblioteca para alertas animados",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -16,6 +16,6 @@
16
16
  "author": "",
17
17
  "license": "MIT",
18
18
  "dependencies": {
19
- "flicker-alerts": "^1.0.22"
19
+ "flicker-alerts": "^1.0.24"
20
20
  }
21
21
  }