flicker-alerts 1.0.18 → 1.0.20
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,10 +1,15 @@
|
|
1
1
|
{
|
2
2
|
"name": "flicker-alerts",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.20",
|
4
4
|
"description": "Biblioteca para alertas animados",
|
5
5
|
"main": "index.js",
|
6
6
|
"types": "index.d.ts",
|
7
7
|
"style": "style.css",
|
8
|
+
"files": [
|
9
|
+
"src/index.js",
|
10
|
+
"src/style.css",
|
11
|
+
"src/index.d.ts"
|
12
|
+
],
|
8
13
|
"scripts": {
|
9
14
|
"test": "echo \"Error: no test specified\" && exit 1"
|
10
15
|
},
|
@@ -13,9 +18,7 @@
|
|
13
18
|
"javascript",
|
14
19
|
"notificações"
|
15
20
|
],
|
16
|
-
"author": "",
|
21
|
+
"author": "https://www.linkedin.com/in/bruno-carneiro-9a51aa190/",
|
17
22
|
"license": "MIT",
|
18
|
-
"dependencies": {
|
19
|
-
"flicker-alerts": "^1.0.18"
|
20
|
-
}
|
23
|
+
"dependencies": {}
|
21
24
|
}
|
@@ -1,3 +1,6 @@
|
|
1
|
+
import './src/style.css'; // Certifique-se de usar o caminho certo aqui
|
2
|
+
|
3
|
+
|
1
4
|
const FlickerAlerts = {
|
2
5
|
showAlert: function ({ type, title, message, timer = 3000, position = 'top-right' }) {
|
3
6
|
// Verifique se está no ambiente do navegador (client-side) antes de tentar manipular o DOM
|
package/index.html
DELETED
@@ -1,261 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html lang="pt-BR">
|
3
|
-
<head>
|
4
|
-
<meta charset="UTF-8" />
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
6
|
-
<title>FlickerAlerts</title>
|
7
|
-
<link
|
8
|
-
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
|
9
|
-
rel="stylesheet"
|
10
|
-
/>
|
11
|
-
<link
|
12
|
-
rel="stylesheet"
|
13
|
-
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
|
14
|
-
/>
|
15
|
-
<link rel="stylesheet" href="style.css" />
|
16
|
-
<style>
|
17
|
-
/* Estilo para os botões */
|
18
|
-
.btn {
|
19
|
-
font-size: 14px;
|
20
|
-
padding: 8px 16px;
|
21
|
-
border-radius: 8px;
|
22
|
-
width: 100%;
|
23
|
-
/* Botões ocupam 100% do espaço das colunas */
|
24
|
-
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
25
|
-
}
|
26
|
-
|
27
|
-
.btn:hover {
|
28
|
-
transform: scale(1.05);
|
29
|
-
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
30
|
-
}
|
31
|
-
|
32
|
-
/* Botões específicos */
|
33
|
-
.btn-success {
|
34
|
-
background-color: #28a745;
|
35
|
-
color: white;
|
36
|
-
}
|
37
|
-
|
38
|
-
.btn-info {
|
39
|
-
background-color: #17a2b8;
|
40
|
-
color: white;
|
41
|
-
}
|
42
|
-
|
43
|
-
.btn-warning {
|
44
|
-
background-color: #ffc107;
|
45
|
-
color: black;
|
46
|
-
}
|
47
|
-
|
48
|
-
.btn-danger {
|
49
|
-
background-color: #dc3545;
|
50
|
-
color: white;
|
51
|
-
}
|
52
|
-
|
53
|
-
.container {
|
54
|
-
display: flex;
|
55
|
-
flex-direction: column;
|
56
|
-
align-items: center;
|
57
|
-
gap: 20px;
|
58
|
-
margin-top: 30px;
|
59
|
-
}
|
60
|
-
|
61
|
-
/* Área da documentação */
|
62
|
-
.doc-section {
|
63
|
-
margin-top: 30px;
|
64
|
-
width: 100%;
|
65
|
-
max-width: 800px;
|
66
|
-
}
|
67
|
-
|
68
|
-
.doc-section h3 {
|
69
|
-
margin-bottom: 10px;
|
70
|
-
font-size: 22px;
|
71
|
-
text-align: center;
|
72
|
-
}
|
73
|
-
|
74
|
-
.doc-section p {
|
75
|
-
font-size: 16px;
|
76
|
-
line-height: 1.5;
|
77
|
-
}
|
78
|
-
|
79
|
-
.doc-section pre {
|
80
|
-
background-color: #1e1e1e;
|
81
|
-
/* Fundo escuro estilo VSCode */
|
82
|
-
color: #dcdcdc;
|
83
|
-
/* Texto claro */
|
84
|
-
padding: 10px;
|
85
|
-
border-radius: 4px;
|
86
|
-
font-size: 14px;
|
87
|
-
overflow-x: auto;
|
88
|
-
border: 1px solid #333;
|
89
|
-
/* Bordas discretas */
|
90
|
-
font-family: "Courier New", Courier, monospace;
|
91
|
-
/* Fonte monoespaçada */
|
92
|
-
}
|
93
|
-
|
94
|
-
.doc-section ul {
|
95
|
-
padding-left: 20px;
|
96
|
-
}
|
97
|
-
|
98
|
-
.doc-section li {
|
99
|
-
margin-bottom: 10px;
|
100
|
-
}
|
101
|
-
|
102
|
-
/* Ajustes para os botões */
|
103
|
-
.row {
|
104
|
-
display: flex;
|
105
|
-
justify-content: center;
|
106
|
-
gap: 10px;
|
107
|
-
}
|
108
|
-
|
109
|
-
.col {
|
110
|
-
flex: 1 1 100%;
|
111
|
-
max-width: 200px;
|
112
|
-
/* Limita o tamanho dos botões */
|
113
|
-
}
|
114
|
-
</style>
|
115
|
-
</head>
|
116
|
-
|
117
|
-
<body>
|
118
|
-
<div class="container">
|
119
|
-
<h1>FlickerAlerts</h1>
|
120
|
-
|
121
|
-
<!-- Linha com botões -->
|
122
|
-
<div class="row">
|
123
|
-
<div class="col">
|
124
|
-
<button class="btn btn-success" id="success-btn">
|
125
|
-
Mostrar Sucesso
|
126
|
-
</button>
|
127
|
-
</div>
|
128
|
-
<div class="col">
|
129
|
-
<button class="btn btn-info" id="info-btn">Mostrar Info</button>
|
130
|
-
</div>
|
131
|
-
<div class="col">
|
132
|
-
<button class="btn btn-warning" id="warning-btn">
|
133
|
-
Mostrar Alerta
|
134
|
-
</button>
|
135
|
-
</div>
|
136
|
-
<div class="col">
|
137
|
-
<button class="btn btn-danger" id="error-btn">Mostrar Erro</button>
|
138
|
-
</div>
|
139
|
-
</div>
|
140
|
-
|
141
|
-
<!-- Área para exibir alertas no canto superior direito -->
|
142
|
-
<div id="alerts-container" class="top-right"></div>
|
143
|
-
|
144
|
-
<!-- Documentação -->
|
145
|
-
<div class="doc-section">
|
146
|
-
<h3>Documentação de Uso</h3>
|
147
|
-
<p>
|
148
|
-
<strong>FlickerAlerts</strong> é uma biblioteca simples para criar
|
149
|
-
alertas animados de sucesso, erro, aviso e informações. Eles podem ser
|
150
|
-
exibidos automaticamente ou ser fechados manualmente pelo usuário.
|
151
|
-
</p>
|
152
|
-
|
153
|
-
<h4>Instalação</h4>
|
154
|
-
<p>Instale via <code>npm</code>:</p>
|
155
|
-
<pre><code>npm install flicker-alerts</code></pre>
|
156
|
-
|
157
|
-
<h4>Uso</h4>
|
158
|
-
<p>
|
159
|
-
Após a instalação, a biblioteca será importada no seu código, e você
|
160
|
-
não precisará mais incluir o arquivo <code>script</code> diretamente
|
161
|
-
no HTML. Em vez disso, você utilizará a função
|
162
|
-
<code>showAlert</code> em seus componentes.
|
163
|
-
</p>
|
164
|
-
|
165
|
-
<h4>Uso no Angular</h4>
|
166
|
-
<p>
|
167
|
-
Com o <code>FlickerAlerts</code> instalado, importe-o no seu
|
168
|
-
componente Angular e utilize-o conforme mostrado abaixo:
|
169
|
-
</p>
|
170
|
-
<pre><code>import FlickerAlerts from 'flicker-alerts';
|
171
|
-
|
172
|
-
export class AppComponent {
|
173
|
-
showSuccessAlert() {
|
174
|
-
FlickerAlerts.showAlert({
|
175
|
-
type: 'success',
|
176
|
-
title: 'Sucesso',
|
177
|
-
message: 'Operação concluída com sucesso!'
|
178
|
-
position: 'top-righ'
|
179
|
-
// Em 'position', você pode escolher entre: 'top-right', 'top-left', 'bottom-right', 'bottom-left', 'center', 'top-center' ou 'bottom-center';
|
180
|
-
|
181
|
-
});
|
182
|
-
}
|
183
|
-
|
184
|
-
showInfoAlert() {
|
185
|
-
FlickerAlerts.showAlert({
|
186
|
-
type: 'info',
|
187
|
-
title: 'Informação',
|
188
|
-
message: 'Aqui está uma informação importante.'
|
189
|
-
position: 'top-righ'
|
190
|
-
// Em 'position', você pode escolher entre: 'top-right', 'top-left', 'bottom-right', 'bottom-left', 'center', 'top-center' ou 'bottom-center';
|
191
|
-
|
192
|
-
});
|
193
|
-
}
|
194
|
-
|
195
|
-
showWarningAlert() {
|
196
|
-
FlickerAlerts.showAlert({
|
197
|
-
type: 'warning',
|
198
|
-
title: 'Alerta',
|
199
|
-
message: 'Por favor, preste atenção nisso!'
|
200
|
-
position: 'top-righ'
|
201
|
-
// Em 'position', você pode escolher entre: 'top-right', 'top-left', 'bottom-right', 'bottom-left', 'center', 'top-center' ou 'bottom-center';
|
202
|
-
|
203
|
-
});
|
204
|
-
}
|
205
|
-
|
206
|
-
showErrorAlert() {
|
207
|
-
FlickerAlerts.showAlert({
|
208
|
-
type: 'danger',
|
209
|
-
title: 'Erro',
|
210
|
-
message: 'Ocorreu um erro inesperado!'
|
211
|
-
position: 'top-righ'
|
212
|
-
// Em 'position', você pode escolher entre: 'top-right', 'top-left', 'bottom-right', 'bottom-left', 'center', 'top-center' ou 'bottom-center';
|
213
|
-
|
214
|
-
});
|
215
|
-
}
|
216
|
-
|
217
|
-
}
|
218
|
-
</code>
|
219
|
-
|
220
|
-
</pre>
|
221
|
-
<p>
|
222
|
-
Caso o estilo da biblioteca não esteja sendo aplicado corretamente, adicione o caminho do CSS no
|
223
|
-
arquivo <code>angular.json</code>:
|
224
|
-
"styles": [
|
225
|
-
"node_modules/flicker-alerts/style.css"
|
226
|
-
]
|
227
|
-
|
228
|
-
</p>
|
229
|
-
<h4>Uso no React</h4>
|
230
|
-
<p>
|
231
|
-
Com o <code>FlickerAlerts</code> instalado, você pode usá-lo no seu
|
232
|
-
componente React assim:
|
233
|
-
</p>
|
234
|
-
<pre><code>import FlickerAlerts from 'flicker-alerts';
|
235
|
-
|
236
|
-
function App() {
|
237
|
-
const showSuccessAlert = () => {
|
238
|
-
FlickerAlerts.showAlert({
|
239
|
-
type: 'success',
|
240
|
-
title: 'Sucesso',
|
241
|
-
message: 'Operação concluída com sucesso!'
|
242
|
-
position: 'top-righ'
|
243
|
-
// Em 'position', você pode escolher entre: 'top-right', 'top-left', 'bottom-right', 'bottom-left', 'center', 'top-center' ou 'bottom-center';
|
244
|
-
|
245
|
-
});
|
246
|
-
};
|
247
|
-
|
248
|
-
|
249
|
-
}</code></pre>
|
250
|
-
|
251
|
-
<p>
|
252
|
-
No React, basta importar o CSS diretamente no arquivo principal, como
|
253
|
-
<code>index.js</code> ou <code>App.js</code>:
|
254
|
-
import 'flicker-alerts/style.css';
|
255
|
-
</p>
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
<script src="index.js" type="module"></script>
|
260
|
-
</body>
|
261
|
-
</html>
|
/package/{README.md → readme.md}
RENAMED
File without changes
|
File without changes
|
File without changes
|