@pelican-identity/react 2.0.2 → 2.0.4
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/dist/components/PelicanAuth.d.ts.map +1 -0
- package/dist/components/PelicanButton.d.ts.map +1 -0
- package/dist/hooks/usePelicanAuth.d.ts.map +1 -0
- package/dist/index.css +342 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +235 -421
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +236 -422
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PelicanAuth.d.ts","sourceRoot":"","sources":["../../src/components/PelicanAuth.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAkB,MAAM,yBAAyB,CAAC;AAE3E,OAAO,eAAe,CAAC;AAEvB,QAAA,MAAM,WAAW,GAAI,QAAQ,gBAAgB,4CA2L5C,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PelicanButton.d.ts","sourceRoot":"","sources":["../../src/components/PelicanButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AAEvD,QAAA,MAAM,aAAa,GAAI,qBAGpB;IACD,QAAQ,EAAE,QAAQ,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,4CAkDA,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"usePelicanAuth.d.ts","sourceRoot":"","sources":["../../src/hooks/usePelicanAuth.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,cAAc,EACd,iBAAiB,EACjB,gBAAgB,EACjB,MAAM,6BAA6B,CAAC;AAGrC,MAAM,WAAW,gBAAiB,SAAQ,iBAAiB;IAMzD,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAOrB,SAAS,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,IAAI,CAAC;IAO5C,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;IAOjC,eAAe,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAOlC,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,eAAO,MAAM,cAAc,GAAI,QAAQ,gBAAgB;;;;;;;;CA2CtD,CAAC"}
|
package/dist/index.css
ADDED
|
@@ -0,0 +1,342 @@
|
|
|
1
|
+
/* src/components/pelican.css */
|
|
2
|
+
@keyframes fadeUp {
|
|
3
|
+
from {
|
|
4
|
+
opacity: 0;
|
|
5
|
+
transform: translateY(20px);
|
|
6
|
+
}
|
|
7
|
+
to {
|
|
8
|
+
opacity: 1;
|
|
9
|
+
transform: translateY(0);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
@keyframes spin {
|
|
13
|
+
to {
|
|
14
|
+
transform: rotate(360deg);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
@keyframes successPulse {
|
|
18
|
+
0%, 100% {
|
|
19
|
+
transform: scale(1);
|
|
20
|
+
opacity: 1;
|
|
21
|
+
}
|
|
22
|
+
50% {
|
|
23
|
+
transform: scale(1.05);
|
|
24
|
+
opacity: 0.9;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
.auth-container {
|
|
28
|
+
width: 300px;
|
|
29
|
+
max-width: fit-content;
|
|
30
|
+
padding: 1rem;
|
|
31
|
+
margin-top: 0.3rem;
|
|
32
|
+
position: relative;
|
|
33
|
+
animation: fadeUp 0.5s ease-out;
|
|
34
|
+
background-color: rgb(253, 253, 253);
|
|
35
|
+
border-radius: 2.5rem;
|
|
36
|
+
display: flex;
|
|
37
|
+
flex-direction: column;
|
|
38
|
+
justify-content: space-between;
|
|
39
|
+
align-items: center;
|
|
40
|
+
gap: 1rem;
|
|
41
|
+
height: 400px;
|
|
42
|
+
}
|
|
43
|
+
.close-button {
|
|
44
|
+
background: none;
|
|
45
|
+
border: none;
|
|
46
|
+
cursor: pointer;
|
|
47
|
+
transition: opacity 0.2s;
|
|
48
|
+
}
|
|
49
|
+
.close-button:hover {
|
|
50
|
+
opacity: 0.6;
|
|
51
|
+
}
|
|
52
|
+
.close-icon {
|
|
53
|
+
width: 1.5rem;
|
|
54
|
+
height: 1.5rem;
|
|
55
|
+
fill: #000000;
|
|
56
|
+
}
|
|
57
|
+
.retry-container {
|
|
58
|
+
text-align: center;
|
|
59
|
+
padding: 3rem 0;
|
|
60
|
+
}
|
|
61
|
+
.retry-container > div:first-child {
|
|
62
|
+
margin-bottom: 1rem;
|
|
63
|
+
}
|
|
64
|
+
.retry-text {
|
|
65
|
+
font-size: 1.125rem;
|
|
66
|
+
font-family:
|
|
67
|
+
system-ui,
|
|
68
|
+
Avenir,
|
|
69
|
+
Helvetica,
|
|
70
|
+
Arial,
|
|
71
|
+
sans-serif;
|
|
72
|
+
}
|
|
73
|
+
.content-wrapper {
|
|
74
|
+
display: flex;
|
|
75
|
+
flex-direction: column;
|
|
76
|
+
justify-content: center;
|
|
77
|
+
align-items: center;
|
|
78
|
+
gap: 2rem;
|
|
79
|
+
}
|
|
80
|
+
.unpaired-container {
|
|
81
|
+
text-align: center;
|
|
82
|
+
display: flex;
|
|
83
|
+
flex-direction: column;
|
|
84
|
+
}
|
|
85
|
+
.main-heading {
|
|
86
|
+
font-size: 0.75rem;
|
|
87
|
+
font-weight: 700;
|
|
88
|
+
color: #121212;
|
|
89
|
+
font-family:
|
|
90
|
+
system-ui,
|
|
91
|
+
Avenir,
|
|
92
|
+
Helvetica,
|
|
93
|
+
Arial,
|
|
94
|
+
sans-serif;
|
|
95
|
+
}
|
|
96
|
+
@media (min-width: 768px) {
|
|
97
|
+
.main-heading {
|
|
98
|
+
font-size: 1rem;
|
|
99
|
+
font-family:
|
|
100
|
+
system-ui,
|
|
101
|
+
Avenir,
|
|
102
|
+
Helvetica,
|
|
103
|
+
Arial,
|
|
104
|
+
sans-serif;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
@media (min-width: 1024px) {
|
|
108
|
+
.main-heading {
|
|
109
|
+
font-size: 1rem;
|
|
110
|
+
font-family:
|
|
111
|
+
system-ui,
|
|
112
|
+
Avenir,
|
|
113
|
+
Helvetica,
|
|
114
|
+
Arial,
|
|
115
|
+
sans-serif;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
.mobile-auth-container {
|
|
119
|
+
display: flex;
|
|
120
|
+
flex-direction: column;
|
|
121
|
+
gap: 1rem;
|
|
122
|
+
}
|
|
123
|
+
.logo-container {
|
|
124
|
+
display: flex;
|
|
125
|
+
justify-content: center;
|
|
126
|
+
padding: 2rem 0;
|
|
127
|
+
}
|
|
128
|
+
.open-app-link {
|
|
129
|
+
display: inline-block;
|
|
130
|
+
padding: 1rem 2rem;
|
|
131
|
+
background-color: #000000;
|
|
132
|
+
border: 1px solid #d9eb1b;
|
|
133
|
+
border-radius: 9999px;
|
|
134
|
+
color: #d9eb1b;
|
|
135
|
+
font-weight: 700;
|
|
136
|
+
font-size: 1.125rem;
|
|
137
|
+
text-decoration: none;
|
|
138
|
+
transition: background-color 0.2s;
|
|
139
|
+
}
|
|
140
|
+
.open-app-link:hover {
|
|
141
|
+
background-color: rgba(217, 235, 27, 0.9);
|
|
142
|
+
color: #000;
|
|
143
|
+
}
|
|
144
|
+
.helper-text {
|
|
145
|
+
font-size: 0.75rem;
|
|
146
|
+
color: #6b7280;
|
|
147
|
+
font-family:
|
|
148
|
+
system-ui,
|
|
149
|
+
Avenir,
|
|
150
|
+
Helvetica,
|
|
151
|
+
Arial,
|
|
152
|
+
sans-serif;
|
|
153
|
+
}
|
|
154
|
+
.qr-container {
|
|
155
|
+
display: flex;
|
|
156
|
+
justify-content: center;
|
|
157
|
+
}
|
|
158
|
+
.qr-wrapper {
|
|
159
|
+
display: flex;
|
|
160
|
+
justify-content: center;
|
|
161
|
+
align-items: center;
|
|
162
|
+
overflow: hidden;
|
|
163
|
+
border-radius: 2rem;
|
|
164
|
+
border: 1px solid #d9eb1b;
|
|
165
|
+
background-color: #fffff5;
|
|
166
|
+
padding: 0.2rem;
|
|
167
|
+
height: 244px;
|
|
168
|
+
width: 244px;
|
|
169
|
+
}
|
|
170
|
+
.error-text {
|
|
171
|
+
font-weight: 500;
|
|
172
|
+
color: red;
|
|
173
|
+
font-family:
|
|
174
|
+
system-ui,
|
|
175
|
+
Avenir,
|
|
176
|
+
Helvetica,
|
|
177
|
+
Arial,
|
|
178
|
+
sans-serif;
|
|
179
|
+
}
|
|
180
|
+
.qr-image {
|
|
181
|
+
height: 100%;
|
|
182
|
+
width: 100%;
|
|
183
|
+
}
|
|
184
|
+
.loader-container {
|
|
185
|
+
display: flex;
|
|
186
|
+
justify-content: center;
|
|
187
|
+
}
|
|
188
|
+
.instruction-text {
|
|
189
|
+
font-size: 0.875rem;
|
|
190
|
+
color: #9ca3af;
|
|
191
|
+
font-family:
|
|
192
|
+
system-ui,
|
|
193
|
+
Avenir,
|
|
194
|
+
Helvetica,
|
|
195
|
+
Arial,
|
|
196
|
+
sans-serif;
|
|
197
|
+
}
|
|
198
|
+
.paired-container {
|
|
199
|
+
text-align: center;
|
|
200
|
+
display: flex;
|
|
201
|
+
flex-direction: column;
|
|
202
|
+
gap: 1rem;
|
|
203
|
+
max-width: 250px;
|
|
204
|
+
}
|
|
205
|
+
.paired-heading {
|
|
206
|
+
font-size: 1rem;
|
|
207
|
+
font-weight: 800;
|
|
208
|
+
font-family:
|
|
209
|
+
system-ui,
|
|
210
|
+
Avenir,
|
|
211
|
+
Helvetica,
|
|
212
|
+
Arial,
|
|
213
|
+
sans-serif;
|
|
214
|
+
}
|
|
215
|
+
@media (min-width: 768px) {
|
|
216
|
+
.paired-heading {
|
|
217
|
+
font-size: 1rem;
|
|
218
|
+
font-family:
|
|
219
|
+
system-ui,
|
|
220
|
+
Avenir,
|
|
221
|
+
Helvetica,
|
|
222
|
+
Arial,
|
|
223
|
+
sans-serif;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
.success-message {
|
|
227
|
+
background-color: #121212;
|
|
228
|
+
color: #d9eb1b;
|
|
229
|
+
padding: 0.5rem 1rem;
|
|
230
|
+
border-radius: 1.3rem;
|
|
231
|
+
font-weight: 700;
|
|
232
|
+
font-size: 1rem;
|
|
233
|
+
animation: successPulse 0.2s ease-in-out;
|
|
234
|
+
margin: 0.5rem 0;
|
|
235
|
+
font-family:
|
|
236
|
+
system-ui,
|
|
237
|
+
Avenir,
|
|
238
|
+
Helvetica,
|
|
239
|
+
Arial,
|
|
240
|
+
sans-serif;
|
|
241
|
+
width: 300px;
|
|
242
|
+
max-width: fit-content;
|
|
243
|
+
}
|
|
244
|
+
.auto-renew-badge {
|
|
245
|
+
display: inline-block;
|
|
246
|
+
background-color: rgba(217, 235, 27, 0.2);
|
|
247
|
+
border: 1px solid #d9eb1b;
|
|
248
|
+
color: #d9eb1b;
|
|
249
|
+
padding: 0.25rem 0.75rem;
|
|
250
|
+
border-radius: 9999px;
|
|
251
|
+
font-size: 0.75rem;
|
|
252
|
+
font-weight: 600;
|
|
253
|
+
margin-top: 0.5rem;
|
|
254
|
+
}
|
|
255
|
+
.loader {
|
|
256
|
+
width: 48px;
|
|
257
|
+
height: 48px;
|
|
258
|
+
position: relative;
|
|
259
|
+
}
|
|
260
|
+
.loader::before,
|
|
261
|
+
.loader::after {
|
|
262
|
+
content: "";
|
|
263
|
+
position: absolute;
|
|
264
|
+
left: 50%;
|
|
265
|
+
top: 50%;
|
|
266
|
+
transform: translate(-50%, -50%);
|
|
267
|
+
width: 48em;
|
|
268
|
+
height: 48em;
|
|
269
|
+
background-image:
|
|
270
|
+
radial-gradient(
|
|
271
|
+
circle 10px,
|
|
272
|
+
#d9eb1b 100%,
|
|
273
|
+
transparent 0),
|
|
274
|
+
radial-gradient(
|
|
275
|
+
circle 10px,
|
|
276
|
+
#d9eb1b 100%,
|
|
277
|
+
transparent 0),
|
|
278
|
+
radial-gradient(
|
|
279
|
+
circle 10px,
|
|
280
|
+
#d9eb1b 100%,
|
|
281
|
+
transparent 0),
|
|
282
|
+
radial-gradient(
|
|
283
|
+
circle 10px,
|
|
284
|
+
#d9eb1b 100%,
|
|
285
|
+
transparent 0),
|
|
286
|
+
radial-gradient(
|
|
287
|
+
circle 10px,
|
|
288
|
+
#d9eb1b 100%,
|
|
289
|
+
transparent 0),
|
|
290
|
+
radial-gradient(
|
|
291
|
+
circle 10px,
|
|
292
|
+
#d9eb1b 100%,
|
|
293
|
+
transparent 0),
|
|
294
|
+
radial-gradient(
|
|
295
|
+
circle 10px,
|
|
296
|
+
#d9eb1b 100%,
|
|
297
|
+
transparent 0),
|
|
298
|
+
radial-gradient(
|
|
299
|
+
circle 10px,
|
|
300
|
+
#d9eb1b 100%,
|
|
301
|
+
transparent 0);
|
|
302
|
+
background-position:
|
|
303
|
+
0em -18em,
|
|
304
|
+
0em 18em,
|
|
305
|
+
18em 0em,
|
|
306
|
+
-18em 0em,
|
|
307
|
+
13em -13em,
|
|
308
|
+
-13em -13em,
|
|
309
|
+
13em 13em,
|
|
310
|
+
-13em 13em;
|
|
311
|
+
background-repeat: no-repeat;
|
|
312
|
+
font-size: 0.5px;
|
|
313
|
+
border-radius: 50%;
|
|
314
|
+
animation: blast 1s ease-in infinite;
|
|
315
|
+
}
|
|
316
|
+
.loader::after {
|
|
317
|
+
font-size: 1px;
|
|
318
|
+
background: #d9eb1b;
|
|
319
|
+
animation: bounce 1s ease-in infinite;
|
|
320
|
+
}
|
|
321
|
+
@keyframes bounce {
|
|
322
|
+
0%, 100% {
|
|
323
|
+
font-size: 0.75px;
|
|
324
|
+
}
|
|
325
|
+
50% {
|
|
326
|
+
font-size: 1.5px;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
@keyframes blast {
|
|
330
|
+
0%, 40% {
|
|
331
|
+
font-size: 0.5px;
|
|
332
|
+
}
|
|
333
|
+
70% {
|
|
334
|
+
opacity: 1;
|
|
335
|
+
font-size: 4px;
|
|
336
|
+
}
|
|
337
|
+
100% {
|
|
338
|
+
font-size: 6px;
|
|
339
|
+
opacity: 0;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
/*# sourceMappingURL=index.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/components/pelican.css"],"sourcesContent":["@keyframes fadeUp {\n from {\n opacity: 0;\n transform: translateY(20px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n}\n\n@keyframes spin {\n to {\n transform: rotate(360deg);\n }\n}\n\n@keyframes successPulse {\n 0%,\n 100% {\n transform: scale(1);\n opacity: 1;\n }\n 50% {\n transform: scale(1.05);\n opacity: 0.9;\n }\n}\n\n.auth-container {\n width: 300px;\n max-width: fit-content;\n padding: 1rem;\n margin-top: 0.3rem;\n position: relative;\n animation: fadeUp 0.5s ease-out;\n background-color: rgb(253, 253, 253);\n border-radius: 2.5rem;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: center;\n gap: 1rem;\n height: 400px;\n}\n\n.close-button {\n background: none;\n border: none;\n cursor: pointer;\n transition: opacity 0.2s;\n}\n\n.close-button:hover {\n opacity: 0.6;\n}\n\n.close-icon {\n width: 1.5rem;\n height: 1.5rem;\n fill: #000000;\n}\n\n.retry-container {\n text-align: center;\n padding: 3rem 0;\n}\n\n.retry-container > div:first-child {\n margin-bottom: 1rem;\n}\n\n.retry-text {\n font-size: 1.125rem;\n font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;\n}\n\n.content-wrapper {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n gap: 2rem;\n}\n\n.unpaired-container {\n text-align: center;\n display: flex;\n flex-direction: column;\n}\n\n.main-heading {\n font-size: 0.75rem;\n font-weight: 700;\n color: #121212;\n font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;\n}\n\n@media (min-width: 768px) {\n .main-heading {\n font-size: 1rem;\n font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;\n }\n}\n\n@media (min-width: 1024px) {\n .main-heading {\n font-size: 1rem;\n font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;\n }\n}\n\n.mobile-auth-container {\n display: flex;\n flex-direction: column;\n gap: 1rem;\n}\n\n.logo-container {\n display: flex;\n justify-content: center;\n padding: 2rem 0;\n}\n\n.open-app-link {\n display: inline-block;\n padding: 1rem 2rem;\n background-color: #000000;\n border: 1px solid #d9eb1b;\n border-radius: 9999px;\n color: #d9eb1b;\n font-weight: 700;\n font-size: 1.125rem;\n text-decoration: none;\n transition: background-color 0.2s;\n}\n\n.open-app-link:hover {\n background-color: rgba(217, 235, 27, 0.9);\n color: #000;\n}\n\n.helper-text {\n font-size: 0.75rem;\n color: #6b7280;\n font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;\n}\n\n.qr-container {\n display: flex;\n justify-content: center;\n}\n\n.qr-wrapper {\n display: flex;\n justify-content: center;\n align-items: center;\n overflow: hidden;\n border-radius: 2rem;\n border: 1px solid #d9eb1b;\n background-color: #fffff5;\n padding: 0.2rem;\n height: 244px;\n width: 244px;\n}\n\n.error-text {\n font-weight: 500;\n color: red;\n font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;\n}\n\n.qr-image {\n height: 100%;\n width: 100%;\n}\n\n.loader-container {\n display: flex;\n justify-content: center;\n}\n\n.instruction-text {\n font-size: 0.875rem;\n color: #9ca3af;\n font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;\n}\n\n.paired-container {\n text-align: center;\n display: flex;\n flex-direction: column;\n gap: 1rem;\n max-width: 250px;\n}\n\n.paired-heading {\n font-size: 1rem;\n font-weight: 800;\n font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;\n}\n\n@media (min-width: 768px) {\n .paired-heading {\n font-size: 1rem;\n font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;\n }\n}\n\n.success-message {\n background-color: #121212;\n color: #d9eb1b;\n padding: 0.5rem 1rem;\n border-radius: 1.3rem;\n font-weight: 700;\n font-size: 1rem;\n animation: successPulse 0.2s ease-in-out;\n margin: 0.5rem 0;\n font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;\n width: 300px;\n max-width: fit-content;\n}\n\n.auto-renew-badge {\n display: inline-block;\n background-color: rgba(217, 235, 27, 0.2);\n border: 1px solid #d9eb1b;\n color: #d9eb1b;\n padding: 0.25rem 0.75rem;\n border-radius: 9999px;\n font-size: 0.75rem;\n font-weight: 600;\n margin-top: 0.5rem;\n}\n\n.loader {\n width: 48px;\n height: 48px;\n position: relative;\n}\n.loader::before,\n.loader::after {\n content: \"\";\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n width: 48em;\n height: 48em;\n background-image: radial-gradient(circle 10px, #d9eb1b 100%, transparent 0),\n radial-gradient(circle 10px, #d9eb1b 100%, transparent 0),\n radial-gradient(circle 10px, #d9eb1b 100%, transparent 0),\n radial-gradient(circle 10px, #d9eb1b 100%, transparent 0),\n radial-gradient(circle 10px, #d9eb1b 100%, transparent 0),\n radial-gradient(circle 10px, #d9eb1b 100%, transparent 0),\n radial-gradient(circle 10px, #d9eb1b 100%, transparent 0),\n radial-gradient(circle 10px, #d9eb1b 100%, transparent 0);\n background-position: 0em -18em, 0em 18em, 18em 0em, -18em 0em, 13em -13em,\n -13em -13em, 13em 13em, -13em 13em;\n background-repeat: no-repeat;\n font-size: 0.5px;\n border-radius: 50%;\n animation: blast 1s ease-in infinite;\n}\n.loader::after {\n font-size: 1px;\n background: #d9eb1b;\n animation: bounce 1s ease-in infinite;\n}\n\n@keyframes bounce {\n 0%,\n 100% {\n font-size: 0.75px;\n }\n 50% {\n font-size: 1.5px;\n }\n}\n@keyframes blast {\n 0%,\n 40% {\n font-size: 0.5px;\n }\n 70% {\n opacity: 1;\n font-size: 4px;\n }\n 100% {\n font-size: 6px;\n opacity: 0;\n }\n}\n"],"mappings":"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","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAElE,mBAAmB,6BAA6B,CAAC"}
|