@rango-dev/ui 0.22.1-next.12 → 0.22.1-next.13
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/widget/ui/src/components/Button/Button.d.ts +54 -54
- package/dist/widget/ui/src/containers/SwapInput/SwapInput.styles.d.ts +54 -54
- package/dist/widget/ui/src/containers/SwapInput/TokenSection.styles.d.ts +54 -54
- package/dist/widget/ui/src/icons/Icons.stories.d.ts +1 -1
- package/package.json +1 -1
|
@@ -16,7 +16,7 @@ declare const Button: React.ForwardRefExoticComponent<{
|
|
|
16
16
|
accessKey?: string | undefined;
|
|
17
17
|
autoFocus?: boolean | undefined;
|
|
18
18
|
className?: string | undefined;
|
|
19
|
-
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
19
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
20
20
|
contextMenu?: string | undefined;
|
|
21
21
|
dir?: string | undefined;
|
|
22
22
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -50,59 +50,59 @@ declare const Button: React.ForwardRefExoticComponent<{
|
|
|
50
50
|
unselectable?: "on" | "off" | undefined;
|
|
51
51
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
52
52
|
is?: string | undefined;
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
53
|
+
"aria-activedescendant"?: string | undefined;
|
|
54
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
55
|
+
"aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
|
|
56
|
+
"aria-braillelabel"?: string | undefined;
|
|
57
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
58
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
59
|
+
"aria-checked"?: boolean | "mixed" | "true" | "false" | undefined;
|
|
60
|
+
"aria-colcount"?: number | undefined;
|
|
61
|
+
"aria-colindex"?: number | undefined;
|
|
62
|
+
"aria-colindextext"?: string | undefined;
|
|
63
|
+
"aria-colspan"?: number | undefined;
|
|
64
|
+
"aria-controls"?: string | undefined;
|
|
65
|
+
"aria-current"?: boolean | "time" | "page" | "true" | "false" | "step" | "location" | "date" | undefined;
|
|
66
|
+
"aria-describedby"?: string | undefined;
|
|
67
|
+
"aria-description"?: string | undefined;
|
|
68
|
+
"aria-details"?: string | undefined;
|
|
69
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
70
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
71
|
+
"aria-errormessage"?: string | undefined;
|
|
72
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
73
|
+
"aria-flowto"?: string | undefined;
|
|
74
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
75
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "true" | "false" | "tree" | undefined;
|
|
76
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
77
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
78
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
79
|
+
"aria-label"?: string | undefined;
|
|
80
|
+
"aria-labelledby"?: string | undefined;
|
|
81
|
+
"aria-level"?: number | undefined;
|
|
82
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
83
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
84
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
85
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
86
|
+
"aria-orientation"?: "vertical" | "horizontal" | undefined;
|
|
87
|
+
"aria-owns"?: string | undefined;
|
|
88
|
+
"aria-placeholder"?: string | undefined;
|
|
89
|
+
"aria-posinset"?: number | undefined;
|
|
90
|
+
"aria-pressed"?: boolean | "mixed" | "true" | "false" | undefined;
|
|
91
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
92
|
+
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
93
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
94
|
+
"aria-roledescription"?: string | undefined;
|
|
95
|
+
"aria-rowcount"?: number | undefined;
|
|
96
|
+
"aria-rowindex"?: number | undefined;
|
|
97
|
+
"aria-rowindextext"?: string | undefined;
|
|
98
|
+
"aria-rowspan"?: number | undefined;
|
|
99
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
100
|
+
"aria-setsize"?: number | undefined;
|
|
101
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
102
|
+
"aria-valuemax"?: number | undefined;
|
|
103
|
+
"aria-valuemin"?: number | undefined;
|
|
104
|
+
"aria-valuenow"?: number | undefined;
|
|
105
|
+
"aria-valuetext"?: string | undefined;
|
|
106
106
|
dangerouslySetInnerHTML?: {
|
|
107
107
|
__html: string | TrustedHTML;
|
|
108
108
|
} | undefined;
|
|
@@ -342,7 +342,7 @@ export declare const MaxButton: import("@stitches/react/types/styled-component")
|
|
|
342
342
|
accessKey?: string | undefined;
|
|
343
343
|
autoFocus?: boolean | undefined;
|
|
344
344
|
className?: string | undefined;
|
|
345
|
-
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
345
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
346
346
|
contextMenu?: string | undefined;
|
|
347
347
|
dir?: string | undefined;
|
|
348
348
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -376,59 +376,59 @@ export declare const MaxButton: import("@stitches/react/types/styled-component")
|
|
|
376
376
|
unselectable?: "on" | "off" | undefined;
|
|
377
377
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
378
378
|
is?: string | undefined;
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
379
|
+
"aria-activedescendant"?: string | undefined;
|
|
380
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
381
|
+
"aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
|
|
382
|
+
"aria-braillelabel"?: string | undefined;
|
|
383
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
384
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
385
|
+
"aria-checked"?: boolean | "mixed" | "true" | "false" | undefined;
|
|
386
|
+
"aria-colcount"?: number | undefined;
|
|
387
|
+
"aria-colindex"?: number | undefined;
|
|
388
|
+
"aria-colindextext"?: string | undefined;
|
|
389
|
+
"aria-colspan"?: number | undefined;
|
|
390
|
+
"aria-controls"?: string | undefined;
|
|
391
|
+
"aria-current"?: boolean | "time" | "page" | "true" | "false" | "step" | "location" | "date" | undefined;
|
|
392
|
+
"aria-describedby"?: string | undefined;
|
|
393
|
+
"aria-description"?: string | undefined;
|
|
394
|
+
"aria-details"?: string | undefined;
|
|
395
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
396
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
397
|
+
"aria-errormessage"?: string | undefined;
|
|
398
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
399
|
+
"aria-flowto"?: string | undefined;
|
|
400
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
401
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "true" | "false" | "tree" | undefined;
|
|
402
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
403
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
404
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
405
|
+
"aria-label"?: string | undefined;
|
|
406
|
+
"aria-labelledby"?: string | undefined;
|
|
407
|
+
"aria-level"?: number | undefined;
|
|
408
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
409
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
410
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
411
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
412
|
+
"aria-orientation"?: "vertical" | "horizontal" | undefined;
|
|
413
|
+
"aria-owns"?: string | undefined;
|
|
414
|
+
"aria-placeholder"?: string | undefined;
|
|
415
|
+
"aria-posinset"?: number | undefined;
|
|
416
|
+
"aria-pressed"?: boolean | "mixed" | "true" | "false" | undefined;
|
|
417
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
418
|
+
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
419
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
420
|
+
"aria-roledescription"?: string | undefined;
|
|
421
|
+
"aria-rowcount"?: number | undefined;
|
|
422
|
+
"aria-rowindex"?: number | undefined;
|
|
423
|
+
"aria-rowindextext"?: string | undefined;
|
|
424
|
+
"aria-rowspan"?: number | undefined;
|
|
425
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
426
|
+
"aria-setsize"?: number | undefined;
|
|
427
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
428
|
+
"aria-valuemax"?: number | undefined;
|
|
429
|
+
"aria-valuemin"?: number | undefined;
|
|
430
|
+
"aria-valuenow"?: number | undefined;
|
|
431
|
+
"aria-valuetext"?: string | undefined;
|
|
432
432
|
dangerouslySetInnerHTML?: {
|
|
433
433
|
__html: string | TrustedHTML;
|
|
434
434
|
} | undefined;
|
|
@@ -17,7 +17,7 @@ export declare const Container: import("@stitches/react/types/styled-component")
|
|
|
17
17
|
accessKey?: string | undefined;
|
|
18
18
|
autoFocus?: boolean | undefined;
|
|
19
19
|
className?: string | undefined;
|
|
20
|
-
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
20
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
21
21
|
contextMenu?: string | undefined;
|
|
22
22
|
dir?: string | undefined;
|
|
23
23
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -51,59 +51,59 @@ export declare const Container: import("@stitches/react/types/styled-component")
|
|
|
51
51
|
unselectable?: "on" | "off" | undefined;
|
|
52
52
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
53
53
|
is?: string | undefined;
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
54
|
+
"aria-activedescendant"?: string | undefined;
|
|
55
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
56
|
+
"aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
|
|
57
|
+
"aria-braillelabel"?: string | undefined;
|
|
58
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
59
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
60
|
+
"aria-checked"?: boolean | "mixed" | "true" | "false" | undefined;
|
|
61
|
+
"aria-colcount"?: number | undefined;
|
|
62
|
+
"aria-colindex"?: number | undefined;
|
|
63
|
+
"aria-colindextext"?: string | undefined;
|
|
64
|
+
"aria-colspan"?: number | undefined;
|
|
65
|
+
"aria-controls"?: string | undefined;
|
|
66
|
+
"aria-current"?: boolean | "time" | "page" | "true" | "false" | "step" | "location" | "date" | undefined;
|
|
67
|
+
"aria-describedby"?: string | undefined;
|
|
68
|
+
"aria-description"?: string | undefined;
|
|
69
|
+
"aria-details"?: string | undefined;
|
|
70
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
71
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
72
|
+
"aria-errormessage"?: string | undefined;
|
|
73
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
74
|
+
"aria-flowto"?: string | undefined;
|
|
75
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
76
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "true" | "false" | "tree" | undefined;
|
|
77
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
78
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
79
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
80
|
+
"aria-label"?: string | undefined;
|
|
81
|
+
"aria-labelledby"?: string | undefined;
|
|
82
|
+
"aria-level"?: number | undefined;
|
|
83
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
84
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
85
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
86
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
87
|
+
"aria-orientation"?: "vertical" | "horizontal" | undefined;
|
|
88
|
+
"aria-owns"?: string | undefined;
|
|
89
|
+
"aria-placeholder"?: string | undefined;
|
|
90
|
+
"aria-posinset"?: number | undefined;
|
|
91
|
+
"aria-pressed"?: boolean | "mixed" | "true" | "false" | undefined;
|
|
92
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
93
|
+
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
94
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
95
|
+
"aria-roledescription"?: string | undefined;
|
|
96
|
+
"aria-rowcount"?: number | undefined;
|
|
97
|
+
"aria-rowindex"?: number | undefined;
|
|
98
|
+
"aria-rowindextext"?: string | undefined;
|
|
99
|
+
"aria-rowspan"?: number | undefined;
|
|
100
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
101
|
+
"aria-setsize"?: number | undefined;
|
|
102
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
103
|
+
"aria-valuemax"?: number | undefined;
|
|
104
|
+
"aria-valuemin"?: number | undefined;
|
|
105
|
+
"aria-valuenow"?: number | undefined;
|
|
106
|
+
"aria-valuetext"?: string | undefined;
|
|
107
107
|
dangerouslySetInnerHTML?: {
|
|
108
108
|
__html: string | TrustedHTML;
|
|
109
109
|
} | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { SvgIconProps } from '../components/SvgIcon';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, any
|
|
3
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, any>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Main: (props: SvgIconProps) => React.JSX.Element;
|
|
6
6
|
//# sourceMappingURL=Icons.stories.d.ts.map
|