flicker-alerts 1.0.48 → 1.0.50

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/index.js +1 -5
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -1,6 +1,3 @@
1
-
2
-
3
-
4
1
  const FlickerAlerts = {
5
2
  showAlert: function ({ type, title, message, timer = 3000, position = 'top-right' }) {
6
3
  if (typeof window !== 'undefined' && typeof document !== 'undefined') {
@@ -98,7 +95,7 @@ if (typeof document !== 'undefined') {
98
95
  }
99
96
 
100
97
  // Exportação
101
-
98
+ export default FlickerAlerts;
102
99
 
103
100
 
104
101
  const FlickerModals = {
@@ -231,4 +228,3 @@ if (typeof document !== 'undefined') {
231
228
  }
232
229
 
233
230
 
234
- export default FlickerAlerts;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flicker-alerts",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
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": "https://www.linkedin.com/in/bruno-carneiro-9a51aa190/",
17
17
  "license": "MIT",
18
18
  "dependencies": {
19
- "flicker-alerts": "^1.0.48"
19
+ "flicker-alerts": "^1.0.50"
20
20
  }
21
21
  }