@pedidopago/ui 1.9.2 → 1.9.3
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/CollapseCard/ExpandButton/styles.d.ts +59 -59
- package/dist/components/CollapseCard/styles.d.ts +57 -57
- package/dist/components/DateInput/components/ModalWrapper/styles.d.ts +57 -57
- package/dist/components/Dropzone/styles.d.ts +5 -5
- package/dist/components/EmojiPicker/styles.d.ts +94 -94
- package/dist/components/Flex/styles.d.ts +7 -7
- package/dist/components/Modal/styles.d.ts +98 -98
- package/dist/components/MultipleSelect/components/OptionsArea/styles.d.ts +57 -57
- package/dist/components/NewSelect/components/OptionsSelect/styles.d.ts +57 -57
- package/dist/components/Slider/components/SliderSelector.d.ts +3 -3
- package/dist/components/Slider/index.d.ts +3 -3
- package/dist/components/Slider/styles.d.ts +1 -1
- package/dist/components/Tabs/styles.d.ts +2 -2
- package/dist/components/Timeline/styles.d.ts +1 -1
- package/dist/components/Toast/EventManager/index.d.ts +3 -0
- package/dist/components/Toast/EventManager/index.d.ts.map +1 -0
- package/dist/components/Toast/EventManager/index.js +1 -0
- package/dist/components/Toast/EventManager/types.d.ts +18 -0
- package/dist/components/Toast/EventManager/types.d.ts.map +1 -0
- package/dist/components/Toast/EventManager/types.js +1 -0
- package/dist/components/Toast/Example/index.d.ts +5 -0
- package/dist/components/Toast/Example/index.d.ts.map +1 -0
- package/dist/components/Toast/Example/index.js +1 -0
- package/dist/components/Toast/ToastContainer/index.d.ts +4 -0
- package/dist/components/Toast/ToastContainer/index.d.ts.map +1 -0
- package/dist/components/Toast/ToastContainer/index.js +1 -0
- package/dist/components/Toast/ToastContainer/styles.d.ts +6 -0
- package/dist/components/Toast/ToastContainer/styles.d.ts.map +1 -0
- package/dist/components/Toast/ToastContainer/styles.js +1 -0
- package/dist/components/Toast/ToastItem/animations.d.ts +12 -0
- package/dist/components/Toast/ToastItem/animations.d.ts.map +1 -0
- package/dist/components/Toast/ToastItem/animations.js +2 -0
- package/dist/components/Toast/ToastItem/index.d.ts +4 -0
- package/dist/components/Toast/ToastItem/index.d.ts.map +1 -0
- package/dist/components/Toast/ToastItem/index.js +1 -0
- package/dist/components/Toast/ToastItem/styles.d.ts +12 -0
- package/dist/components/Toast/ToastItem/styles.d.ts.map +1 -0
- package/dist/components/Toast/ToastItem/styles.js +1 -0
- package/dist/components/Toast/ToastItem/types.d.ts +7 -0
- package/dist/components/Toast/ToastItem/types.d.ts.map +1 -0
- package/dist/components/Toast/ToastItem/types.js +1 -0
- package/dist/components/Toast/ToastItem/utils.d.ts +4 -0
- package/dist/components/Toast/ToastItem/utils.d.ts.map +1 -0
- package/dist/components/Toast/ToastItem/utils.js +1 -0
- package/dist/components/Toast/contexts/ToastProvider.d.ts.map +1 -1
- package/dist/components/Toast/contexts/ToastProvider.js +1 -1
- package/dist/components/Toast/hooks/useToast.d.ts +11 -1
- package/dist/components/Toast/hooks/useToast.d.ts.map +1 -1
- package/dist/components/Toast/hooks/useToast.js +10 -1
- package/dist/components/Toast/index.d.ts +5 -3
- package/dist/components/Toast/index.d.ts.map +1 -1
- package/dist/components/Toast/index.js +1 -1
- package/dist/components/Toast/toast-handler.d.ts +11 -0
- package/dist/components/Toast/toast-handler.d.ts.map +1 -0
- package/dist/components/Toast/toast-handler.js +1 -0
- package/dist/components/Toast/types.d.ts +26 -13
- package/dist/components/Toast/types.d.ts.map +1 -1
- package/dist/components/Typography/styles.d.ts +5 -5
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
- package/dist/components/Toast/button-example.d.ts +0 -7
- package/dist/components/Toast/button-example.d.ts.map +0 -1
- package/dist/components/Toast/button-example.js +0 -1
- package/dist/components/Toast/components/Toast.d.ts +0 -5
- package/dist/components/Toast/components/Toast.d.ts.map +0 -1
- package/dist/components/Toast/components/Toast.js +0 -1
- package/dist/components/Toast/styles.d.ts +0 -23
- package/dist/components/Toast/styles.d.ts.map +0 -1
- package/dist/components/Toast/styles.js +0 -1
- package/dist/components/Toast/toast.test.d.ts +0 -2
- package/dist/components/Toast/toast.test.d.ts.map +0 -1
- package/dist/components/Toast/toast.test.js +0 -1
|
@@ -3,55 +3,90 @@ export declare const EmotePickerDesktopContainer: import("@emotion/styled").Styl
|
|
|
3
3
|
slot?: string | undefined;
|
|
4
4
|
title?: string | undefined;
|
|
5
5
|
color?: string | undefined;
|
|
6
|
-
translate?: "
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
translate?: "yes" | "no" | undefined;
|
|
7
|
+
defaultChecked?: boolean | undefined;
|
|
8
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
9
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
10
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
11
|
+
accessKey?: string | undefined;
|
|
12
|
+
autoFocus?: boolean | undefined;
|
|
9
13
|
className?: string | undefined;
|
|
14
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
15
|
+
contextMenu?: string | undefined;
|
|
16
|
+
dir?: string | undefined;
|
|
17
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
18
|
+
hidden?: boolean | undefined;
|
|
19
|
+
id?: string | undefined;
|
|
10
20
|
lang?: string | undefined;
|
|
11
|
-
|
|
21
|
+
nonce?: string | undefined;
|
|
22
|
+
placeholder?: string | undefined;
|
|
23
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
12
24
|
tabIndex?: number | undefined;
|
|
25
|
+
radioGroup?: string | undefined;
|
|
26
|
+
role?: import("react").AriaRole | undefined;
|
|
27
|
+
about?: string | undefined;
|
|
28
|
+
datatype?: string | undefined;
|
|
29
|
+
inlist?: any;
|
|
30
|
+
prefix?: string | undefined;
|
|
31
|
+
property?: string | undefined;
|
|
32
|
+
resource?: string | undefined;
|
|
33
|
+
typeof?: string | undefined;
|
|
34
|
+
vocab?: string | undefined;
|
|
35
|
+
autoCapitalize?: string | undefined;
|
|
36
|
+
autoCorrect?: string | undefined;
|
|
37
|
+
autoSave?: string | undefined;
|
|
38
|
+
itemProp?: string | undefined;
|
|
39
|
+
itemScope?: boolean | undefined;
|
|
40
|
+
itemType?: string | undefined;
|
|
41
|
+
itemID?: string | undefined;
|
|
42
|
+
itemRef?: string | undefined;
|
|
43
|
+
results?: number | undefined;
|
|
44
|
+
security?: string | undefined;
|
|
45
|
+
unselectable?: "on" | "off" | undefined;
|
|
46
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
47
|
+
is?: string | undefined;
|
|
13
48
|
"aria-activedescendant"?: string | undefined;
|
|
14
|
-
"aria-atomic"?: (boolean | "
|
|
15
|
-
"aria-autocomplete"?: "
|
|
16
|
-
"aria-busy"?: (boolean | "
|
|
17
|
-
"aria-checked"?: boolean | "
|
|
49
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
50
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
51
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
52
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
18
53
|
"aria-colcount"?: number | undefined;
|
|
19
54
|
"aria-colindex"?: number | undefined;
|
|
20
55
|
"aria-colspan"?: number | undefined;
|
|
21
56
|
"aria-controls"?: string | undefined;
|
|
22
|
-
"aria-current"?: boolean | "time" | "
|
|
57
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
|
|
23
58
|
"aria-describedby"?: string | undefined;
|
|
24
59
|
"aria-details"?: string | undefined;
|
|
25
|
-
"aria-disabled"?: (boolean | "
|
|
60
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
26
61
|
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
27
62
|
"aria-errormessage"?: string | undefined;
|
|
28
|
-
"aria-expanded"?: (boolean | "
|
|
63
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
29
64
|
"aria-flowto"?: string | undefined;
|
|
30
|
-
"aria-grabbed"?: (boolean | "
|
|
31
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "
|
|
32
|
-
"aria-hidden"?: (boolean | "
|
|
33
|
-
"aria-invalid"?: boolean | "
|
|
65
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
66
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "true" | "false" | "listbox" | "tree" | undefined;
|
|
67
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
68
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
34
69
|
"aria-keyshortcuts"?: string | undefined;
|
|
35
70
|
"aria-label"?: string | undefined;
|
|
36
71
|
"aria-labelledby"?: string | undefined;
|
|
37
72
|
"aria-level"?: number | undefined;
|
|
38
73
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
39
|
-
"aria-modal"?: (boolean | "
|
|
40
|
-
"aria-multiline"?: (boolean | "
|
|
41
|
-
"aria-multiselectable"?: (boolean | "
|
|
74
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
75
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
76
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
42
77
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
43
78
|
"aria-owns"?: string | undefined;
|
|
44
79
|
"aria-placeholder"?: string | undefined;
|
|
45
80
|
"aria-posinset"?: number | undefined;
|
|
46
|
-
"aria-pressed"?: boolean | "
|
|
47
|
-
"aria-readonly"?: (boolean | "
|
|
81
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
82
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
48
83
|
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
49
|
-
"aria-required"?: (boolean | "
|
|
84
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
50
85
|
"aria-roledescription"?: string | undefined;
|
|
51
86
|
"aria-rowcount"?: number | undefined;
|
|
52
87
|
"aria-rowindex"?: number | undefined;
|
|
53
88
|
"aria-rowspan"?: number | undefined;
|
|
54
|
-
"aria-selected"?: (boolean | "
|
|
89
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
55
90
|
"aria-setsize"?: number | undefined;
|
|
56
91
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
57
92
|
"aria-valuemax"?: number | undefined;
|
|
@@ -219,20 +254,34 @@ export declare const EmotePickerDesktopContainer: import("@emotion/styled").Styl
|
|
|
219
254
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
220
255
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
221
256
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
257
|
+
} & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLDivElement> & {
|
|
258
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
259
|
+
}, {}, {}>;
|
|
260
|
+
export declare const EmotePickerMobileContainer: import("@emotion/styled").StyledComponent<{
|
|
261
|
+
slot?: string | undefined;
|
|
262
|
+
title?: string | undefined;
|
|
263
|
+
color?: string | undefined;
|
|
264
|
+
translate?: "yes" | "no" | undefined;
|
|
222
265
|
defaultChecked?: boolean | undefined;
|
|
223
266
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
224
267
|
suppressContentEditableWarning?: boolean | undefined;
|
|
225
268
|
suppressHydrationWarning?: boolean | undefined;
|
|
226
269
|
accessKey?: string | undefined;
|
|
227
270
|
autoFocus?: boolean | undefined;
|
|
228
|
-
|
|
271
|
+
className?: string | undefined;
|
|
272
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
229
273
|
contextMenu?: string | undefined;
|
|
230
274
|
dir?: string | undefined;
|
|
231
|
-
draggable?: (boolean | "
|
|
275
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
276
|
+
hidden?: boolean | undefined;
|
|
277
|
+
id?: string | undefined;
|
|
278
|
+
lang?: string | undefined;
|
|
232
279
|
nonce?: string | undefined;
|
|
233
280
|
placeholder?: string | undefined;
|
|
234
|
-
spellCheck?: (boolean | "
|
|
281
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
282
|
+
tabIndex?: number | undefined;
|
|
235
283
|
radioGroup?: string | undefined;
|
|
284
|
+
role?: import("react").AriaRole | undefined;
|
|
236
285
|
about?: string | undefined;
|
|
237
286
|
datatype?: string | undefined;
|
|
238
287
|
inlist?: any;
|
|
@@ -251,65 +300,51 @@ export declare const EmotePickerDesktopContainer: import("@emotion/styled").Styl
|
|
|
251
300
|
itemRef?: string | undefined;
|
|
252
301
|
results?: number | undefined;
|
|
253
302
|
security?: string | undefined;
|
|
254
|
-
unselectable?: "
|
|
255
|
-
inputMode?: "text" | "
|
|
303
|
+
unselectable?: "on" | "off" | undefined;
|
|
304
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
256
305
|
is?: string | undefined;
|
|
257
|
-
} & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLDivElement> & {
|
|
258
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
259
|
-
}, {}, {}>;
|
|
260
|
-
export declare const EmotePickerMobileContainer: import("@emotion/styled").StyledComponent<{
|
|
261
|
-
slot?: string | undefined;
|
|
262
|
-
title?: string | undefined;
|
|
263
|
-
color?: string | undefined;
|
|
264
|
-
translate?: "no" | "yes" | undefined;
|
|
265
|
-
id?: string | undefined;
|
|
266
|
-
hidden?: boolean | undefined;
|
|
267
|
-
className?: string | undefined;
|
|
268
|
-
lang?: string | undefined;
|
|
269
|
-
role?: import("react").AriaRole | undefined;
|
|
270
|
-
tabIndex?: number | undefined;
|
|
271
306
|
"aria-activedescendant"?: string | undefined;
|
|
272
|
-
"aria-atomic"?: (boolean | "
|
|
273
|
-
"aria-autocomplete"?: "
|
|
274
|
-
"aria-busy"?: (boolean | "
|
|
275
|
-
"aria-checked"?: boolean | "
|
|
307
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
308
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
309
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
310
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
276
311
|
"aria-colcount"?: number | undefined;
|
|
277
312
|
"aria-colindex"?: number | undefined;
|
|
278
313
|
"aria-colspan"?: number | undefined;
|
|
279
314
|
"aria-controls"?: string | undefined;
|
|
280
|
-
"aria-current"?: boolean | "time" | "
|
|
315
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
|
|
281
316
|
"aria-describedby"?: string | undefined;
|
|
282
317
|
"aria-details"?: string | undefined;
|
|
283
|
-
"aria-disabled"?: (boolean | "
|
|
318
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
284
319
|
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
285
320
|
"aria-errormessage"?: string | undefined;
|
|
286
|
-
"aria-expanded"?: (boolean | "
|
|
321
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
287
322
|
"aria-flowto"?: string | undefined;
|
|
288
|
-
"aria-grabbed"?: (boolean | "
|
|
289
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "
|
|
290
|
-
"aria-hidden"?: (boolean | "
|
|
291
|
-
"aria-invalid"?: boolean | "
|
|
323
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
324
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "true" | "false" | "listbox" | "tree" | undefined;
|
|
325
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
326
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
292
327
|
"aria-keyshortcuts"?: string | undefined;
|
|
293
328
|
"aria-label"?: string | undefined;
|
|
294
329
|
"aria-labelledby"?: string | undefined;
|
|
295
330
|
"aria-level"?: number | undefined;
|
|
296
331
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
297
|
-
"aria-modal"?: (boolean | "
|
|
298
|
-
"aria-multiline"?: (boolean | "
|
|
299
|
-
"aria-multiselectable"?: (boolean | "
|
|
332
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
333
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
334
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
300
335
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
301
336
|
"aria-owns"?: string | undefined;
|
|
302
337
|
"aria-placeholder"?: string | undefined;
|
|
303
338
|
"aria-posinset"?: number | undefined;
|
|
304
|
-
"aria-pressed"?: boolean | "
|
|
305
|
-
"aria-readonly"?: (boolean | "
|
|
339
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
340
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
306
341
|
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
307
|
-
"aria-required"?: (boolean | "
|
|
342
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
308
343
|
"aria-roledescription"?: string | undefined;
|
|
309
344
|
"aria-rowcount"?: number | undefined;
|
|
310
345
|
"aria-rowindex"?: number | undefined;
|
|
311
346
|
"aria-rowspan"?: number | undefined;
|
|
312
|
-
"aria-selected"?: (boolean | "
|
|
347
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
313
348
|
"aria-setsize"?: number | undefined;
|
|
314
349
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
315
350
|
"aria-valuemax"?: number | undefined;
|
|
@@ -477,41 +512,6 @@ export declare const EmotePickerMobileContainer: import("@emotion/styled").Style
|
|
|
477
512
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
478
513
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
479
514
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
480
|
-
defaultChecked?: boolean | undefined;
|
|
481
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
482
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
483
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
484
|
-
accessKey?: string | undefined;
|
|
485
|
-
autoFocus?: boolean | undefined;
|
|
486
|
-
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
|
487
|
-
contextMenu?: string | undefined;
|
|
488
|
-
dir?: string | undefined;
|
|
489
|
-
draggable?: (boolean | "false" | "true") | undefined;
|
|
490
|
-
nonce?: string | undefined;
|
|
491
|
-
placeholder?: string | undefined;
|
|
492
|
-
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
493
|
-
radioGroup?: string | undefined;
|
|
494
|
-
about?: string | undefined;
|
|
495
|
-
datatype?: string | undefined;
|
|
496
|
-
inlist?: any;
|
|
497
|
-
prefix?: string | undefined;
|
|
498
|
-
property?: string | undefined;
|
|
499
|
-
resource?: string | undefined;
|
|
500
|
-
typeof?: string | undefined;
|
|
501
|
-
vocab?: string | undefined;
|
|
502
|
-
autoCapitalize?: string | undefined;
|
|
503
|
-
autoCorrect?: string | undefined;
|
|
504
|
-
autoSave?: string | undefined;
|
|
505
|
-
itemProp?: string | undefined;
|
|
506
|
-
itemScope?: boolean | undefined;
|
|
507
|
-
itemType?: string | undefined;
|
|
508
|
-
itemID?: string | undefined;
|
|
509
|
-
itemRef?: string | undefined;
|
|
510
|
-
results?: number | undefined;
|
|
511
|
-
security?: string | undefined;
|
|
512
|
-
unselectable?: "off" | "on" | undefined;
|
|
513
|
-
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
514
|
-
is?: string | undefined;
|
|
515
515
|
} & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLDivElement> & {
|
|
516
516
|
theme?: import("@emotion/react").Theme | undefined;
|
|
517
517
|
}, {}, {}>;
|
|
@@ -453,13 +453,13 @@ export declare const StyledFlexContainer: import("@emotion/styled").StyledCompon
|
|
|
453
453
|
level48: string;
|
|
454
454
|
};
|
|
455
455
|
} | undefined;
|
|
456
|
-
flexDirection?: ("
|
|
457
|
-
base?: ("
|
|
458
|
-
sm?: ("
|
|
459
|
-
md?: ("
|
|
460
|
-
lg?: ("
|
|
461
|
-
xl?: ("
|
|
462
|
-
xxl?: ("
|
|
456
|
+
flexDirection?: ("row" | "row-reverse" | "column" | "column-reverse") | {
|
|
457
|
+
base?: ("row" | "row-reverse" | "column" | "column-reverse") | undefined;
|
|
458
|
+
sm?: ("row" | "row-reverse" | "column" | "column-reverse") | undefined;
|
|
459
|
+
md?: ("row" | "row-reverse" | "column" | "column-reverse") | undefined;
|
|
460
|
+
lg?: ("row" | "row-reverse" | "column" | "column-reverse") | undefined;
|
|
461
|
+
xl?: ("row" | "row-reverse" | "column" | "column-reverse") | undefined;
|
|
462
|
+
xxl?: ("row" | "row-reverse" | "column" | "column-reverse") | undefined;
|
|
463
463
|
} | undefined;
|
|
464
464
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
465
465
|
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -16,55 +16,90 @@ export declare const ModalElement: import("@emotion/styled").StyledComponent<{
|
|
|
16
16
|
slot?: string | undefined;
|
|
17
17
|
title?: string | undefined;
|
|
18
18
|
color?: string | undefined;
|
|
19
|
-
translate?: "
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
translate?: "yes" | "no" | undefined;
|
|
20
|
+
defaultChecked?: boolean | undefined;
|
|
21
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
22
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
23
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
24
|
+
accessKey?: string | undefined;
|
|
25
|
+
autoFocus?: boolean | undefined;
|
|
22
26
|
className?: string | undefined;
|
|
27
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
28
|
+
contextMenu?: string | undefined;
|
|
29
|
+
dir?: string | undefined;
|
|
30
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
31
|
+
hidden?: boolean | undefined;
|
|
32
|
+
id?: string | undefined;
|
|
23
33
|
lang?: string | undefined;
|
|
24
|
-
|
|
34
|
+
nonce?: string | undefined;
|
|
35
|
+
placeholder?: string | undefined;
|
|
36
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
25
37
|
tabIndex?: number | undefined;
|
|
38
|
+
radioGroup?: string | undefined;
|
|
39
|
+
role?: import("react").AriaRole | undefined;
|
|
40
|
+
about?: string | undefined;
|
|
41
|
+
datatype?: string | undefined;
|
|
42
|
+
inlist?: any;
|
|
43
|
+
prefix?: string | undefined;
|
|
44
|
+
property?: string | undefined;
|
|
45
|
+
resource?: string | undefined;
|
|
46
|
+
typeof?: string | undefined;
|
|
47
|
+
vocab?: string | undefined;
|
|
48
|
+
autoCapitalize?: string | undefined;
|
|
49
|
+
autoCorrect?: string | undefined;
|
|
50
|
+
autoSave?: string | undefined;
|
|
51
|
+
itemProp?: string | undefined;
|
|
52
|
+
itemScope?: boolean | undefined;
|
|
53
|
+
itemType?: string | undefined;
|
|
54
|
+
itemID?: string | undefined;
|
|
55
|
+
itemRef?: string | undefined;
|
|
56
|
+
results?: number | undefined;
|
|
57
|
+
security?: string | undefined;
|
|
58
|
+
unselectable?: "on" | "off" | undefined;
|
|
59
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
60
|
+
is?: string | undefined;
|
|
26
61
|
"aria-activedescendant"?: string | undefined;
|
|
27
|
-
"aria-atomic"?: (boolean | "
|
|
28
|
-
"aria-autocomplete"?: "
|
|
29
|
-
"aria-busy"?: (boolean | "
|
|
30
|
-
"aria-checked"?: boolean | "
|
|
62
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
63
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
64
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
65
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
31
66
|
"aria-colcount"?: number | undefined;
|
|
32
67
|
"aria-colindex"?: number | undefined;
|
|
33
68
|
"aria-colspan"?: number | undefined;
|
|
34
69
|
"aria-controls"?: string | undefined;
|
|
35
|
-
"aria-current"?: boolean | "time" | "
|
|
70
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
|
|
36
71
|
"aria-describedby"?: string | undefined;
|
|
37
72
|
"aria-details"?: string | undefined;
|
|
38
|
-
"aria-disabled"?: (boolean | "
|
|
73
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
39
74
|
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
40
75
|
"aria-errormessage"?: string | undefined;
|
|
41
|
-
"aria-expanded"?: (boolean | "
|
|
76
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
42
77
|
"aria-flowto"?: string | undefined;
|
|
43
|
-
"aria-grabbed"?: (boolean | "
|
|
44
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "
|
|
45
|
-
"aria-hidden"?: (boolean | "
|
|
46
|
-
"aria-invalid"?: boolean | "
|
|
78
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
79
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "true" | "false" | "listbox" | "tree" | undefined;
|
|
80
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
81
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
47
82
|
"aria-keyshortcuts"?: string | undefined;
|
|
48
83
|
"aria-label"?: string | undefined;
|
|
49
84
|
"aria-labelledby"?: string | undefined;
|
|
50
85
|
"aria-level"?: number | undefined;
|
|
51
86
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
52
|
-
"aria-modal"?: (boolean | "
|
|
53
|
-
"aria-multiline"?: (boolean | "
|
|
54
|
-
"aria-multiselectable"?: (boolean | "
|
|
87
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
88
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
89
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
55
90
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
56
91
|
"aria-owns"?: string | undefined;
|
|
57
92
|
"aria-placeholder"?: string | undefined;
|
|
58
93
|
"aria-posinset"?: number | undefined;
|
|
59
|
-
"aria-pressed"?: boolean | "
|
|
60
|
-
"aria-readonly"?: (boolean | "
|
|
94
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
95
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
61
96
|
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
62
|
-
"aria-required"?: (boolean | "
|
|
97
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
63
98
|
"aria-roledescription"?: string | undefined;
|
|
64
99
|
"aria-rowcount"?: number | undefined;
|
|
65
100
|
"aria-rowindex"?: number | undefined;
|
|
66
101
|
"aria-rowspan"?: number | undefined;
|
|
67
|
-
"aria-selected"?: (boolean | "
|
|
102
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
68
103
|
"aria-setsize"?: number | undefined;
|
|
69
104
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
70
105
|
"aria-valuemax"?: number | undefined;
|
|
@@ -232,20 +267,38 @@ export declare const ModalElement: import("@emotion/styled").StyledComponent<{
|
|
|
232
267
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
233
268
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
234
269
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
270
|
+
} & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLDivElement> & {
|
|
271
|
+
theme?: Theme | undefined;
|
|
272
|
+
} & {
|
|
273
|
+
open: boolean;
|
|
274
|
+
maxHeight?: string | undefined;
|
|
275
|
+
hideScrollBar?: boolean | undefined;
|
|
276
|
+
}, {}, {}>;
|
|
277
|
+
export declare const Overlay: import("@emotion/styled").StyledComponent<{
|
|
278
|
+
slot?: string | undefined;
|
|
279
|
+
title?: string | undefined;
|
|
280
|
+
color?: string | undefined;
|
|
281
|
+
translate?: "yes" | "no" | undefined;
|
|
235
282
|
defaultChecked?: boolean | undefined;
|
|
236
283
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
237
284
|
suppressContentEditableWarning?: boolean | undefined;
|
|
238
285
|
suppressHydrationWarning?: boolean | undefined;
|
|
239
286
|
accessKey?: string | undefined;
|
|
240
287
|
autoFocus?: boolean | undefined;
|
|
241
|
-
|
|
288
|
+
className?: string | undefined;
|
|
289
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
242
290
|
contextMenu?: string | undefined;
|
|
243
291
|
dir?: string | undefined;
|
|
244
|
-
draggable?: (boolean | "
|
|
292
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
293
|
+
hidden?: boolean | undefined;
|
|
294
|
+
id?: string | undefined;
|
|
295
|
+
lang?: string | undefined;
|
|
245
296
|
nonce?: string | undefined;
|
|
246
297
|
placeholder?: string | undefined;
|
|
247
|
-
spellCheck?: (boolean | "
|
|
298
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
299
|
+
tabIndex?: number | undefined;
|
|
248
300
|
radioGroup?: string | undefined;
|
|
301
|
+
role?: import("react").AriaRole | undefined;
|
|
249
302
|
about?: string | undefined;
|
|
250
303
|
datatype?: string | undefined;
|
|
251
304
|
inlist?: any;
|
|
@@ -264,69 +317,51 @@ export declare const ModalElement: import("@emotion/styled").StyledComponent<{
|
|
|
264
317
|
itemRef?: string | undefined;
|
|
265
318
|
results?: number | undefined;
|
|
266
319
|
security?: string | undefined;
|
|
267
|
-
unselectable?: "
|
|
268
|
-
inputMode?: "text" | "
|
|
320
|
+
unselectable?: "on" | "off" | undefined;
|
|
321
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
269
322
|
is?: string | undefined;
|
|
270
|
-
} & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLDivElement> & {
|
|
271
|
-
theme?: Theme | undefined;
|
|
272
|
-
} & {
|
|
273
|
-
open: boolean;
|
|
274
|
-
maxHeight?: string | undefined;
|
|
275
|
-
hideScrollBar?: boolean | undefined;
|
|
276
|
-
}, {}, {}>;
|
|
277
|
-
export declare const Overlay: import("@emotion/styled").StyledComponent<{
|
|
278
|
-
slot?: string | undefined;
|
|
279
|
-
title?: string | undefined;
|
|
280
|
-
color?: string | undefined;
|
|
281
|
-
translate?: "no" | "yes" | undefined;
|
|
282
|
-
id?: string | undefined;
|
|
283
|
-
hidden?: boolean | undefined;
|
|
284
|
-
className?: string | undefined;
|
|
285
|
-
lang?: string | undefined;
|
|
286
|
-
role?: import("react").AriaRole | undefined;
|
|
287
|
-
tabIndex?: number | undefined;
|
|
288
323
|
"aria-activedescendant"?: string | undefined;
|
|
289
|
-
"aria-atomic"?: (boolean | "
|
|
290
|
-
"aria-autocomplete"?: "
|
|
291
|
-
"aria-busy"?: (boolean | "
|
|
292
|
-
"aria-checked"?: boolean | "
|
|
324
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
325
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
326
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
327
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
293
328
|
"aria-colcount"?: number | undefined;
|
|
294
329
|
"aria-colindex"?: number | undefined;
|
|
295
330
|
"aria-colspan"?: number | undefined;
|
|
296
331
|
"aria-controls"?: string | undefined;
|
|
297
|
-
"aria-current"?: boolean | "time" | "
|
|
332
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
|
|
298
333
|
"aria-describedby"?: string | undefined;
|
|
299
334
|
"aria-details"?: string | undefined;
|
|
300
|
-
"aria-disabled"?: (boolean | "
|
|
335
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
301
336
|
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
302
337
|
"aria-errormessage"?: string | undefined;
|
|
303
|
-
"aria-expanded"?: (boolean | "
|
|
338
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
304
339
|
"aria-flowto"?: string | undefined;
|
|
305
|
-
"aria-grabbed"?: (boolean | "
|
|
306
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "
|
|
307
|
-
"aria-hidden"?: (boolean | "
|
|
308
|
-
"aria-invalid"?: boolean | "
|
|
340
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
341
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "true" | "false" | "listbox" | "tree" | undefined;
|
|
342
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
343
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
309
344
|
"aria-keyshortcuts"?: string | undefined;
|
|
310
345
|
"aria-label"?: string | undefined;
|
|
311
346
|
"aria-labelledby"?: string | undefined;
|
|
312
347
|
"aria-level"?: number | undefined;
|
|
313
348
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
314
|
-
"aria-modal"?: (boolean | "
|
|
315
|
-
"aria-multiline"?: (boolean | "
|
|
316
|
-
"aria-multiselectable"?: (boolean | "
|
|
349
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
350
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
351
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
317
352
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
318
353
|
"aria-owns"?: string | undefined;
|
|
319
354
|
"aria-placeholder"?: string | undefined;
|
|
320
355
|
"aria-posinset"?: number | undefined;
|
|
321
|
-
"aria-pressed"?: boolean | "
|
|
322
|
-
"aria-readonly"?: (boolean | "
|
|
356
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
357
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
323
358
|
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
324
|
-
"aria-required"?: (boolean | "
|
|
359
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
325
360
|
"aria-roledescription"?: string | undefined;
|
|
326
361
|
"aria-rowcount"?: number | undefined;
|
|
327
362
|
"aria-rowindex"?: number | undefined;
|
|
328
363
|
"aria-rowspan"?: number | undefined;
|
|
329
|
-
"aria-selected"?: (boolean | "
|
|
364
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
330
365
|
"aria-setsize"?: number | undefined;
|
|
331
366
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
332
367
|
"aria-valuemax"?: number | undefined;
|
|
@@ -494,41 +529,6 @@ export declare const Overlay: import("@emotion/styled").StyledComponent<{
|
|
|
494
529
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
495
530
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
496
531
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
497
|
-
defaultChecked?: boolean | undefined;
|
|
498
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
499
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
500
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
501
|
-
accessKey?: string | undefined;
|
|
502
|
-
autoFocus?: boolean | undefined;
|
|
503
|
-
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
|
504
|
-
contextMenu?: string | undefined;
|
|
505
|
-
dir?: string | undefined;
|
|
506
|
-
draggable?: (boolean | "false" | "true") | undefined;
|
|
507
|
-
nonce?: string | undefined;
|
|
508
|
-
placeholder?: string | undefined;
|
|
509
|
-
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
510
|
-
radioGroup?: string | undefined;
|
|
511
|
-
about?: string | undefined;
|
|
512
|
-
datatype?: string | undefined;
|
|
513
|
-
inlist?: any;
|
|
514
|
-
prefix?: string | undefined;
|
|
515
|
-
property?: string | undefined;
|
|
516
|
-
resource?: string | undefined;
|
|
517
|
-
typeof?: string | undefined;
|
|
518
|
-
vocab?: string | undefined;
|
|
519
|
-
autoCapitalize?: string | undefined;
|
|
520
|
-
autoCorrect?: string | undefined;
|
|
521
|
-
autoSave?: string | undefined;
|
|
522
|
-
itemProp?: string | undefined;
|
|
523
|
-
itemScope?: boolean | undefined;
|
|
524
|
-
itemType?: string | undefined;
|
|
525
|
-
itemID?: string | undefined;
|
|
526
|
-
itemRef?: string | undefined;
|
|
527
|
-
results?: number | undefined;
|
|
528
|
-
security?: string | undefined;
|
|
529
|
-
unselectable?: "off" | "on" | undefined;
|
|
530
|
-
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
531
|
-
is?: string | undefined;
|
|
532
532
|
} & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLDivElement> & {
|
|
533
533
|
theme?: Theme | undefined;
|
|
534
534
|
} & {
|