flicker-alerts 1.0.69 → 1.0.70

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/homepage.css ADDED
@@ -0,0 +1,74 @@
1
+ body {
2
+ background-color: #f8f9fa;
3
+ font-family: Arial, sans-serif;
4
+ padding-top: 20px;
5
+ }
6
+
7
+ .container {
8
+ max-width: 900px;
9
+ margin: 0 auto;
10
+ padding: 20px;
11
+ }
12
+
13
+ h1, h2, h3 {
14
+ color: #3498DB;
15
+ }
16
+
17
+ .code-container {
18
+ position: relative;
19
+ display: inline-block;
20
+ margin-bottom: 20px;
21
+ width: 100%;
22
+ max-width: 90%;
23
+ }
24
+
25
+ pre {
26
+ background-color: #000;
27
+ color: #fff;
28
+ padding: 15px;
29
+ border-radius: 5px;
30
+ font-size: 1.1rem;
31
+ word-wrap: break-word;
32
+ white-space: pre-wrap;
33
+ max-width: 100%;
34
+ overflow: auto;
35
+ }
36
+
37
+ button {
38
+ position: absolute;
39
+ top: 10px;
40
+ right: 10px;
41
+ }
42
+
43
+ button:focus {
44
+ outline: none;
45
+ }
46
+
47
+ table {
48
+ width: 80%;
49
+ margin: 0 auto;
50
+ border-collapse: collapse;
51
+ }
52
+
53
+ th, td {
54
+ padding: 10px;
55
+ text-align: left;
56
+ }
57
+
58
+ th {
59
+ background-color: #3498DB;
60
+ color: white;
61
+ }
62
+
63
+ hr {
64
+ margin-top: 40px;
65
+ margin-bottom: 40px;
66
+ }
67
+
68
+ ul {
69
+ list-style-type: none;
70
+ }
71
+
72
+ ul li {
73
+ margin-bottom: 10px;
74
+ }
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.70",
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.70"
22
22
  }
23
- }
23
+ }
package/readme.md CHANGED
@@ -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