norma-library 0.4.3 → 0.4.6
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/.babelrc.json +18 -0
- package/buildcache/front-end +1 -0
- package/dist/esm/components/Accordion.d.ts +3 -0
- package/dist/esm/components/Accordion.js +24 -0
- package/dist/esm/components/Accordion.js.map +1 -0
- package/dist/esm/components/Button.d.ts +3 -0
- package/dist/esm/components/Button.js +22 -0
- package/dist/esm/components/Button.js.map +1 -0
- package/dist/esm/components/Card.d.ts +7 -0
- package/dist/esm/components/Card.js +31 -0
- package/dist/esm/components/Card.js.map +1 -0
- package/dist/esm/components/CheckBox.d.ts +3 -0
- package/dist/esm/components/CheckBox.js +13 -0
- package/dist/esm/components/CheckBox.js.map +1 -0
- package/dist/esm/components/DropDown.d.ts +3 -0
- package/dist/esm/components/DropDown.js +17 -0
- package/dist/esm/components/DropDown.js.map +1 -0
- package/dist/esm/components/IconButton.d.ts +3 -0
- package/dist/esm/components/IconButton.js +31 -0
- package/dist/esm/components/IconButton.js.map +1 -0
- package/dist/esm/components/Icons.d.ts +7 -0
- package/dist/esm/components/Icons.js +49 -0
- package/dist/esm/components/Icons.js.map +1 -0
- package/dist/esm/components/Modal.d.ts +4 -0
- package/dist/esm/components/Modal.js +32 -0
- package/dist/esm/components/Modal.js.map +1 -0
- package/dist/esm/components/Paper.d.ts +3 -0
- package/dist/esm/components/Paper.js +14 -0
- package/dist/esm/components/Paper.js.map +1 -0
- package/dist/esm/components/ProgressBar.d.ts +6 -0
- package/dist/esm/components/ProgressBar.js +31 -0
- package/dist/esm/components/ProgressBar.js.map +1 -0
- package/dist/esm/components/RadioGroup.d.ts +3 -0
- package/dist/esm/components/RadioGroup.js +18 -0
- package/dist/esm/components/RadioGroup.js.map +1 -0
- package/dist/esm/components/RangerSlider.d.ts +3 -0
- package/dist/esm/components/RangerSlider.js +64 -0
- package/dist/esm/components/RangerSlider.js.map +1 -0
- package/dist/esm/components/Select.d.ts +3 -0
- package/dist/esm/components/Select.js +45 -0
- package/dist/esm/components/Select.js.map +1 -0
- package/dist/{components/icon/norma.d.ts → esm/components/Svgs.d.ts} +29 -30
- package/dist/esm/components/Svgs.js +102 -0
- package/dist/esm/components/Svgs.js.map +1 -0
- package/dist/esm/components/Tabs.d.ts +3 -0
- package/dist/esm/components/Tabs.js +78 -0
- package/dist/esm/components/Tabs.js.map +1 -0
- package/dist/esm/components/Tag.d.ts +3 -0
- package/dist/esm/components/Tag.js +27 -0
- package/dist/esm/components/Tag.js.map +1 -0
- package/dist/esm/components/TextField.d.ts +3 -0
- package/dist/esm/components/TextField.js +18 -0
- package/dist/esm/components/TextField.js.map +1 -0
- package/dist/esm/components/index.d.ts +16 -0
- package/dist/esm/components/index.js +17 -0
- package/dist/esm/components/index.js.map +1 -0
- package/dist/esm/helpers/alignments.d.ts +2 -0
- package/dist/esm/helpers/alignments.js +14 -0
- package/dist/esm/helpers/alignments.js.map +1 -0
- package/dist/esm/helpers/borders.d.ts +2 -0
- package/dist/esm/helpers/borders.js +18 -0
- package/dist/esm/helpers/borders.js.map +1 -0
- package/dist/{helpers → esm/helpers}/colors.d.ts +172 -174
- package/dist/esm/helpers/colors.js +156 -0
- package/dist/esm/helpers/colors.js.map +1 -0
- package/dist/esm/helpers/index.d.ts +5 -0
- package/dist/esm/helpers/index.js +6 -0
- package/dist/esm/helpers/index.js.map +1 -0
- package/dist/esm/helpers/radios.d.ts +2 -0
- package/dist/esm/helpers/radios.js +24 -0
- package/dist/esm/helpers/radios.js.map +1 -0
- package/dist/esm/helpers/sizes.d.ts +11 -0
- package/dist/esm/helpers/sizes.js +67 -0
- package/dist/esm/helpers/sizes.js.map +1 -0
- package/dist/esm/index.d.ts +17 -0
- package/dist/esm/index.js +18 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/interfaces/Accordion.d.ts +12 -0
- package/dist/esm/interfaces/Accordion.js +2 -0
- package/dist/esm/interfaces/Accordion.js.map +1 -0
- package/dist/esm/interfaces/Button.d.ts +14 -0
- package/dist/esm/interfaces/Button.js +2 -0
- package/dist/esm/interfaces/Button.js.map +1 -0
- package/dist/esm/interfaces/Card.d.ts +11 -0
- package/dist/esm/interfaces/Card.js +2 -0
- package/dist/esm/interfaces/Card.js.map +1 -0
- package/dist/esm/interfaces/CheckBox.d.ts +19 -0
- package/dist/esm/interfaces/CheckBox.js +2 -0
- package/dist/esm/interfaces/CheckBox.js.map +1 -0
- package/dist/esm/interfaces/DropDown.d.ts +11 -0
- package/dist/esm/interfaces/DropDown.js +2 -0
- package/dist/esm/interfaces/DropDown.js.map +1 -0
- package/dist/esm/interfaces/IconButton.d.ts +14 -0
- package/dist/esm/interfaces/IconButton.js +2 -0
- package/dist/esm/interfaces/IconButton.js.map +1 -0
- package/dist/esm/interfaces/Icons.d.ts +15 -0
- package/dist/esm/interfaces/Icons.js +2 -0
- package/dist/esm/interfaces/Icons.js.map +1 -0
- package/dist/esm/interfaces/Modal.d.ts +15 -0
- package/dist/esm/interfaces/Modal.js +2 -0
- package/dist/esm/interfaces/Modal.js.map +1 -0
- package/dist/esm/interfaces/Paper.d.ts +12 -0
- package/dist/esm/interfaces/Paper.js +2 -0
- package/dist/esm/interfaces/Paper.js.map +1 -0
- package/dist/esm/interfaces/ProgressBar.d.ts +17 -0
- package/dist/esm/interfaces/ProgressBar.js +2 -0
- package/dist/esm/interfaces/ProgressBar.js.map +1 -0
- package/dist/esm/interfaces/RadioGroup.d.ts +15 -0
- package/dist/esm/interfaces/RadioGroup.js +2 -0
- package/dist/esm/interfaces/RadioGroup.js.map +1 -0
- package/dist/esm/interfaces/RangerSlider.d.ts +18 -0
- package/dist/esm/interfaces/RangerSlider.js +2 -0
- package/dist/esm/interfaces/RangerSlider.js.map +1 -0
- package/dist/esm/interfaces/Select.d.ts +17 -0
- package/dist/esm/interfaces/Select.js +2 -0
- package/dist/esm/interfaces/Select.js.map +1 -0
- package/dist/esm/interfaces/Tabs.d.ts +18 -0
- package/dist/esm/interfaces/Tabs.js +2 -0
- package/dist/esm/interfaces/Tabs.js.map +1 -0
- package/dist/esm/interfaces/Tag.d.ts +18 -0
- package/dist/esm/interfaces/Tag.js +2 -0
- package/dist/esm/interfaces/Tag.js.map +1 -0
- package/dist/esm/interfaces/TextField.d.ts +40 -0
- package/dist/esm/interfaces/TextField.js +2 -0
- package/dist/esm/interfaces/TextField.js.map +1 -0
- package/dist/esm/interfaces/index.d.ts +17 -0
- package/dist/esm/interfaces/index.js +18 -0
- package/dist/esm/interfaces/index.js.map +1 -0
- package/dist/esm/types/index.d.ts +78 -0
- package/dist/esm/types/index.js +10 -0
- package/dist/esm/types/index.js.map +1 -0
- package/norma-library.tar +0 -0
- package/package.json +75 -90
- package/postcss.config.js +6 -0
- package/src/components/Accordion.tsx +64 -0
- package/src/components/Button.tsx +38 -0
- package/src/components/Card.tsx +47 -0
- package/src/components/CheckBox.tsx +35 -0
- package/src/components/DropDown.tsx +38 -0
- package/src/components/IconButton.tsx +58 -0
- package/src/components/Icons.tsx +87 -0
- package/src/components/Modal.tsx +123 -0
- package/src/components/Paper.tsx +22 -0
- package/src/components/ProgressBar.tsx +62 -0
- package/src/components/RadioGroup.tsx +55 -0
- package/src/components/RangerSlider.tsx +81 -0
- package/src/components/Select.tsx +98 -0
- package/src/components/{icon/norma.tsx → Svgs.tsx} +54 -55
- package/src/components/Tabs.tsx +140 -0
- package/src/components/Tag.tsx +45 -0
- package/src/components/TextField.tsx +35 -0
- package/src/components/index.ts +16 -8
- package/src/helpers/alignments.ts +14 -0
- package/src/helpers/borders.ts +18 -0
- package/src/helpers/colors.ts +173 -209
- package/src/helpers/index.ts +5 -3
- package/src/helpers/radios.ts +24 -0
- package/src/helpers/sizes.ts +79 -26
- package/src/index.css +2 -0
- package/src/index.ts +36 -0
- package/src/interfaces/Accordion.ts +12 -0
- package/src/interfaces/Button.ts +27 -0
- package/src/interfaces/Card.ts +11 -0
- package/src/interfaces/CheckBox.ts +33 -0
- package/src/interfaces/DropDown.ts +14 -0
- package/src/interfaces/IconButton.ts +27 -0
- package/src/interfaces/Icons.ts +17 -0
- package/src/interfaces/Modal.ts +15 -0
- package/src/interfaces/Paper.ts +12 -0
- package/src/interfaces/ProgressBar.ts +25 -0
- package/src/interfaces/RadioGroup.ts +28 -0
- package/src/interfaces/RangerSlider.ts +32 -0
- package/src/interfaces/Select.ts +17 -0
- package/src/interfaces/Tabs.ts +24 -0
- package/src/interfaces/Tag.ts +17 -0
- package/src/interfaces/TextField.ts +63 -0
- package/src/interfaces/index.ts +17 -0
- package/src/stories/Accordion.stories.tsx +65 -0
- package/src/stories/Button.stories.tsx +99 -0
- package/src/stories/Card.stories.tsx +55 -0
- package/src/stories/CheckBox.stories.tsx +94 -0
- package/src/stories/Colors.stories.mdx +127 -0
- package/src/stories/DropDown.stories.tsx +57 -0
- package/src/stories/IconButton.stories.tsx +114 -0
- package/src/stories/Icons.stories.mdx +27 -0
- package/src/stories/Modal.stories.tsx +190 -0
- package/src/stories/Paper.stories.tsx +53 -0
- package/src/stories/ProgressBar.stories.tsx +139 -0
- package/src/stories/RadioGroup.stories.tsx +94 -0
- package/src/stories/RangerSlider.stories.tsx +68 -0
- package/src/stories/Select.stories.tsx +128 -0
- package/src/stories/Tabs.stories.tsx +62 -0
- package/src/stories/Tag.stories.tsx +76 -0
- package/src/{components/textfield/textfield.stories.tsx → stories/TextField.stories.tsx} +445 -376
- package/src/styles/custom.css +5 -0
- package/src/styles/globals.css +21 -0
- package/src/types/index.ts +220 -0
- package/tailwind.config.js +58 -0
- package/tsconfig.json +32 -0
- package/README.md +0 -160
- package/dist/components/button/button.d.ts +0 -3
- package/dist/components/button/index.d.ts +0 -1
- package/dist/components/button/types.d.ts +0 -18
- package/dist/components/card/card-header.d.ts +0 -3
- package/dist/components/card/card.d.ts +0 -3
- package/dist/components/card/index.d.ts +0 -1
- package/dist/components/card/styles.d.ts +0 -811
- package/dist/components/card/types.d.ts +0 -12
- package/dist/components/checkbox/checkbox.d.ts +0 -3
- package/dist/components/checkbox/index.d.ts +0 -1
- package/dist/components/checkbox/types.d.ts +0 -23
- package/dist/components/icon/default.d.ts +0 -210
- package/dist/components/icon/defaultIcon.d.ts +0 -5
- package/dist/components/icon/icons-ia.d.ts +0 -71
- package/dist/components/icon/index.d.ts +0 -234
- package/dist/components/icon/normaIcon.d.ts +0 -13
- package/dist/components/icon/styles.d.ts +0 -481
- package/dist/components/icon/svg.d.ts +0 -6
- package/dist/components/icon/types.d.ts +0 -12
- package/dist/components/index.d.ts +0 -8
- package/dist/components/modal/index.d.ts +0 -1
- package/dist/components/modal/modal.d.ts +0 -3
- package/dist/components/modal/modalFooter.d.ts +0 -3
- package/dist/components/modal/modalHeader.d.ts +0 -3
- package/dist/components/modal/styles.d.ts +0 -540
- package/dist/components/modal/types.d.ts +0 -27
- package/dist/components/progress-bar/index.d.ts +0 -1
- package/dist/components/progress-bar/progress-bar.d.ts +0 -7
- package/dist/components/progress-bar/styles.d.ts +0 -272
- package/dist/components/progress-bar/types.d.ts +0 -22
- package/dist/components/radio/index.d.ts +0 -1
- package/dist/components/radio/radio.d.ts +0 -3
- package/dist/components/radio/types.d.ts +0 -16
- package/dist/components/tag/index.d.ts +0 -1
- package/dist/components/tag/tag.d.ts +0 -3
- package/dist/components/tag/types.d.ts +0 -25
- package/dist/components/textfield/index.d.ts +0 -1
- package/dist/components/textfield/textfield.d.ts +0 -3
- package/dist/components/textfield/types.d.ts +0 -42
- package/dist/helpers/clients.d.ts +0 -5
- package/dist/helpers/index.d.ts +0 -3
- package/dist/helpers/sizes.d.ts +0 -6
- package/dist/helpers/variants.d.ts +0 -2
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -8
- package/dist/norma-library.cjs.development.js +0 -1286
- package/dist/norma-library.cjs.development.js.map +0 -1
- package/dist/norma-library.cjs.production.min.js +0 -2
- package/dist/norma-library.cjs.production.min.js.map +0 -1
- package/dist/norma-library.esm.js +0 -1274
- package/dist/norma-library.esm.js.map +0 -1
- package/src/components/button/button.stories.tsx +0 -44
- package/src/components/button/button.tsx +0 -18
- package/src/components/button/index.ts +0 -1
- package/src/components/button/types.ts +0 -48
- package/src/components/card/card-header.tsx +0 -8
- package/src/components/card/card.stories.tsx +0 -28
- package/src/components/card/card.tsx +0 -13
- package/src/components/card/index.ts +0 -1
- package/src/components/card/styles.tsx +0 -29
- package/src/components/card/types.ts +0 -14
- package/src/components/checkbox/checkbox.stories.tsx +0 -66
- package/src/components/checkbox/checkbox.tsx +0 -13
- package/src/components/checkbox/index.ts +0 -1
- package/src/components/checkbox/types.ts +0 -30
- package/src/components/icon/default.tsx +0 -1459
- package/src/components/icon/defaultIcon.tsx +0 -82
- package/src/components/icon/icon.stories.tsx +0 -44
- package/src/components/icon/icons-ia.tsx +0 -107
- package/src/components/icon/index.ts +0 -11
- package/src/components/icon/normaIcon.tsx +0 -94
- package/src/components/icon/styles.ts +0 -11
- package/src/components/icon/svg.tsx +0 -24
- package/src/components/icon/types.ts +0 -14
- package/src/components/modal/index.ts +0 -1
- package/src/components/modal/modal.stories.tsx +0 -55
- package/src/components/modal/modal.tsx +0 -42
- package/src/components/modal/modalFooter.tsx +0 -32
- package/src/components/modal/modalHeader.tsx +0 -46
- package/src/components/modal/styles.tsx +0 -13
- package/src/components/modal/types.ts +0 -47
- package/src/components/progress-bar/index.ts +0 -1
- package/src/components/progress-bar/progress-bar.stories.tsx +0 -68
- package/src/components/progress-bar/progress-bar.tsx +0 -38
- package/src/components/progress-bar/styles.tsx +0 -27
- package/src/components/progress-bar/types.ts +0 -35
- package/src/components/radio/index.ts +0 -1
- package/src/components/radio/radio.stories.tsx +0 -150
- package/src/components/radio/radio.tsx +0 -13
- package/src/components/radio/types.ts +0 -27
- package/src/components/tag/index.ts +0 -1
- package/src/components/tag/tag.stories.tsx +0 -80
- package/src/components/tag/tag.tsx +0 -13
- package/src/components/tag/types.ts +0 -47
- package/src/components/textfield/index.ts +0 -1
- package/src/components/textfield/textfield.tsx +0 -23
- package/src/components/textfield/types.ts +0 -93
- package/src/helpers/clients.ts +0 -6
- package/src/helpers/variants.ts +0 -3
- package/src/index.tsx +0 -1
|
@@ -1,540 +0,0 @@
|
|
|
1
|
-
export declare const StyledModalBody: import("styled-components").IStyledComponent<"web", {
|
|
2
|
-
ref?: any;
|
|
3
|
-
key?: any;
|
|
4
|
-
defaultChecked?: any;
|
|
5
|
-
defaultValue?: any;
|
|
6
|
-
suppressContentEditableWarning?: any;
|
|
7
|
-
suppressHydrationWarning?: any;
|
|
8
|
-
accessKey?: any;
|
|
9
|
-
autoFocus?: any;
|
|
10
|
-
className?: any;
|
|
11
|
-
contentEditable?: any;
|
|
12
|
-
contextMenu?: any;
|
|
13
|
-
dir?: any;
|
|
14
|
-
draggable?: any;
|
|
15
|
-
hidden?: any;
|
|
16
|
-
id?: any;
|
|
17
|
-
lang?: any;
|
|
18
|
-
nonce?: any;
|
|
19
|
-
placeholder?: any;
|
|
20
|
-
slot?: any;
|
|
21
|
-
spellCheck?: any;
|
|
22
|
-
style?: any;
|
|
23
|
-
tabIndex?: any;
|
|
24
|
-
title?: any;
|
|
25
|
-
translate?: any;
|
|
26
|
-
radioGroup?: any;
|
|
27
|
-
role?: any;
|
|
28
|
-
about?: any;
|
|
29
|
-
content?: any;
|
|
30
|
-
datatype?: any;
|
|
31
|
-
inlist?: any;
|
|
32
|
-
prefix?: any;
|
|
33
|
-
property?: any;
|
|
34
|
-
rel?: any;
|
|
35
|
-
resource?: any;
|
|
36
|
-
rev?: any;
|
|
37
|
-
typeof?: any;
|
|
38
|
-
vocab?: any;
|
|
39
|
-
autoCapitalize?: any;
|
|
40
|
-
autoCorrect?: any;
|
|
41
|
-
autoSave?: any;
|
|
42
|
-
color?: any;
|
|
43
|
-
itemProp?: any;
|
|
44
|
-
itemScope?: any;
|
|
45
|
-
itemType?: any;
|
|
46
|
-
itemID?: any;
|
|
47
|
-
itemRef?: any;
|
|
48
|
-
results?: any;
|
|
49
|
-
security?: any;
|
|
50
|
-
unselectable?: any;
|
|
51
|
-
inputMode?: any;
|
|
52
|
-
is?: any;
|
|
53
|
-
'aria-activedescendant'?: any;
|
|
54
|
-
'aria-atomic'?: any;
|
|
55
|
-
'aria-autocomplete'?: any;
|
|
56
|
-
'aria-braillelabel'?: any;
|
|
57
|
-
'aria-brailleroledescription'?: any;
|
|
58
|
-
'aria-busy'?: any;
|
|
59
|
-
'aria-checked'?: any;
|
|
60
|
-
'aria-colcount'?: any;
|
|
61
|
-
'aria-colindex'?: any;
|
|
62
|
-
'aria-colindextext'?: any;
|
|
63
|
-
'aria-colspan'?: any;
|
|
64
|
-
'aria-controls'?: any;
|
|
65
|
-
'aria-current'?: any;
|
|
66
|
-
'aria-describedby'?: any;
|
|
67
|
-
'aria-description'?: any;
|
|
68
|
-
'aria-details'?: any;
|
|
69
|
-
'aria-disabled'?: any;
|
|
70
|
-
'aria-dropeffect'?: any;
|
|
71
|
-
'aria-errormessage'?: any;
|
|
72
|
-
'aria-expanded'?: any;
|
|
73
|
-
'aria-flowto'?: any;
|
|
74
|
-
'aria-grabbed'?: any;
|
|
75
|
-
'aria-haspopup'?: any;
|
|
76
|
-
'aria-hidden'?: any;
|
|
77
|
-
'aria-invalid'?: any;
|
|
78
|
-
'aria-keyshortcuts'?: any;
|
|
79
|
-
'aria-label'?: any;
|
|
80
|
-
'aria-labelledby'?: any;
|
|
81
|
-
'aria-level'?: any;
|
|
82
|
-
'aria-live'?: any;
|
|
83
|
-
'aria-modal'?: any;
|
|
84
|
-
'aria-multiline'?: any;
|
|
85
|
-
'aria-multiselectable'?: any;
|
|
86
|
-
'aria-orientation'?: any;
|
|
87
|
-
'aria-owns'?: any;
|
|
88
|
-
'aria-placeholder'?: any;
|
|
89
|
-
'aria-posinset'?: any;
|
|
90
|
-
'aria-pressed'?: any;
|
|
91
|
-
'aria-readonly'?: any;
|
|
92
|
-
'aria-relevant'?: any;
|
|
93
|
-
'aria-required'?: any;
|
|
94
|
-
'aria-roledescription'?: any;
|
|
95
|
-
'aria-rowcount'?: any;
|
|
96
|
-
'aria-rowindex'?: any;
|
|
97
|
-
'aria-rowindextext'?: any;
|
|
98
|
-
'aria-rowspan'?: any;
|
|
99
|
-
'aria-selected'?: any;
|
|
100
|
-
'aria-setsize'?: any;
|
|
101
|
-
'aria-sort'?: any;
|
|
102
|
-
'aria-valuemax'?: any;
|
|
103
|
-
'aria-valuemin'?: any;
|
|
104
|
-
'aria-valuenow'?: any;
|
|
105
|
-
'aria-valuetext'?: any;
|
|
106
|
-
children?: any;
|
|
107
|
-
dangerouslySetInnerHTML?: any;
|
|
108
|
-
onCopy?: any;
|
|
109
|
-
onCopyCapture?: any;
|
|
110
|
-
onCut?: any;
|
|
111
|
-
onCutCapture?: any;
|
|
112
|
-
onPaste?: any;
|
|
113
|
-
onPasteCapture?: any;
|
|
114
|
-
onCompositionEnd?: any;
|
|
115
|
-
onCompositionEndCapture?: any;
|
|
116
|
-
onCompositionStart?: any;
|
|
117
|
-
onCompositionStartCapture?: any;
|
|
118
|
-
onCompositionUpdate?: any;
|
|
119
|
-
onCompositionUpdateCapture?: any;
|
|
120
|
-
onFocus?: any;
|
|
121
|
-
onFocusCapture?: any;
|
|
122
|
-
onBlur?: any;
|
|
123
|
-
onBlurCapture?: any;
|
|
124
|
-
onChange?: any;
|
|
125
|
-
onChangeCapture?: any;
|
|
126
|
-
onBeforeInput?: any;
|
|
127
|
-
onBeforeInputCapture?: any;
|
|
128
|
-
onInput?: any;
|
|
129
|
-
onInputCapture?: any;
|
|
130
|
-
onReset?: any;
|
|
131
|
-
onResetCapture?: any;
|
|
132
|
-
onSubmit?: any;
|
|
133
|
-
onSubmitCapture?: any;
|
|
134
|
-
onInvalid?: any;
|
|
135
|
-
onInvalidCapture?: any;
|
|
136
|
-
onLoad?: any;
|
|
137
|
-
onLoadCapture?: any;
|
|
138
|
-
onError?: any;
|
|
139
|
-
onErrorCapture?: any;
|
|
140
|
-
onKeyDown?: any;
|
|
141
|
-
onKeyDownCapture?: any;
|
|
142
|
-
onKeyPress?: any;
|
|
143
|
-
onKeyPressCapture?: any;
|
|
144
|
-
onKeyUp?: any;
|
|
145
|
-
onKeyUpCapture?: any;
|
|
146
|
-
onAbort?: any;
|
|
147
|
-
onAbortCapture?: any;
|
|
148
|
-
onCanPlay?: any;
|
|
149
|
-
onCanPlayCapture?: any;
|
|
150
|
-
onCanPlayThrough?: any;
|
|
151
|
-
onCanPlayThroughCapture?: any;
|
|
152
|
-
onDurationChange?: any;
|
|
153
|
-
onDurationChangeCapture?: any;
|
|
154
|
-
onEmptied?: any;
|
|
155
|
-
onEmptiedCapture?: any;
|
|
156
|
-
onEncrypted?: any;
|
|
157
|
-
onEncryptedCapture?: any;
|
|
158
|
-
onEnded?: any;
|
|
159
|
-
onEndedCapture?: any;
|
|
160
|
-
onLoadedData?: any;
|
|
161
|
-
onLoadedDataCapture?: any;
|
|
162
|
-
onLoadedMetadata?: any;
|
|
163
|
-
onLoadedMetadataCapture?: any;
|
|
164
|
-
onLoadStart?: any;
|
|
165
|
-
onLoadStartCapture?: any;
|
|
166
|
-
onPause?: any;
|
|
167
|
-
onPauseCapture?: any;
|
|
168
|
-
onPlay?: any;
|
|
169
|
-
onPlayCapture?: any;
|
|
170
|
-
onPlaying?: any;
|
|
171
|
-
onPlayingCapture?: any;
|
|
172
|
-
onProgress?: any;
|
|
173
|
-
onProgressCapture?: any;
|
|
174
|
-
onRateChange?: any;
|
|
175
|
-
onRateChangeCapture?: any;
|
|
176
|
-
onResize?: any;
|
|
177
|
-
onResizeCapture?: any;
|
|
178
|
-
onSeeked?: any;
|
|
179
|
-
onSeekedCapture?: any;
|
|
180
|
-
onSeeking?: any;
|
|
181
|
-
onSeekingCapture?: any;
|
|
182
|
-
onStalled?: any;
|
|
183
|
-
onStalledCapture?: any;
|
|
184
|
-
onSuspend?: any;
|
|
185
|
-
onSuspendCapture?: any;
|
|
186
|
-
onTimeUpdate?: any;
|
|
187
|
-
onTimeUpdateCapture?: any;
|
|
188
|
-
onVolumeChange?: any;
|
|
189
|
-
onVolumeChangeCapture?: any;
|
|
190
|
-
onWaiting?: any;
|
|
191
|
-
onWaitingCapture?: any;
|
|
192
|
-
onAuxClick?: any;
|
|
193
|
-
onAuxClickCapture?: any;
|
|
194
|
-
onClick?: any;
|
|
195
|
-
onClickCapture?: any;
|
|
196
|
-
onContextMenu?: any;
|
|
197
|
-
onContextMenuCapture?: any;
|
|
198
|
-
onDoubleClick?: any;
|
|
199
|
-
onDoubleClickCapture?: any;
|
|
200
|
-
onDrag?: any;
|
|
201
|
-
onDragCapture?: any;
|
|
202
|
-
onDragEnd?: any;
|
|
203
|
-
onDragEndCapture?: any;
|
|
204
|
-
onDragEnter?: any;
|
|
205
|
-
onDragEnterCapture?: any;
|
|
206
|
-
onDragExit?: any;
|
|
207
|
-
onDragExitCapture?: any;
|
|
208
|
-
onDragLeave?: any;
|
|
209
|
-
onDragLeaveCapture?: any;
|
|
210
|
-
onDragOver?: any;
|
|
211
|
-
onDragOverCapture?: any;
|
|
212
|
-
onDragStart?: any;
|
|
213
|
-
onDragStartCapture?: any;
|
|
214
|
-
onDrop?: any;
|
|
215
|
-
onDropCapture?: any;
|
|
216
|
-
onMouseDown?: any;
|
|
217
|
-
onMouseDownCapture?: any;
|
|
218
|
-
onMouseEnter?: any;
|
|
219
|
-
onMouseLeave?: any;
|
|
220
|
-
onMouseMove?: any;
|
|
221
|
-
onMouseMoveCapture?: any;
|
|
222
|
-
onMouseOut?: any;
|
|
223
|
-
onMouseOutCapture?: any;
|
|
224
|
-
onMouseOver?: any;
|
|
225
|
-
onMouseOverCapture?: any;
|
|
226
|
-
onMouseUp?: any;
|
|
227
|
-
onMouseUpCapture?: any;
|
|
228
|
-
onSelect?: any;
|
|
229
|
-
onSelectCapture?: any;
|
|
230
|
-
onTouchCancel?: any;
|
|
231
|
-
onTouchCancelCapture?: any;
|
|
232
|
-
onTouchEnd?: any;
|
|
233
|
-
onTouchEndCapture?: any;
|
|
234
|
-
onTouchMove?: any;
|
|
235
|
-
onTouchMoveCapture?: any;
|
|
236
|
-
onTouchStart?: any;
|
|
237
|
-
onTouchStartCapture?: any;
|
|
238
|
-
onPointerDown?: any;
|
|
239
|
-
onPointerDownCapture?: any;
|
|
240
|
-
onPointerMove?: any;
|
|
241
|
-
onPointerMoveCapture?: any;
|
|
242
|
-
onPointerUp?: any;
|
|
243
|
-
onPointerUpCapture?: any;
|
|
244
|
-
onPointerCancel?: any;
|
|
245
|
-
onPointerCancelCapture?: any;
|
|
246
|
-
onPointerEnter?: any;
|
|
247
|
-
onPointerEnterCapture?: any;
|
|
248
|
-
onPointerLeave?: any;
|
|
249
|
-
onPointerLeaveCapture?: any;
|
|
250
|
-
onPointerOver?: any;
|
|
251
|
-
onPointerOverCapture?: any;
|
|
252
|
-
onPointerOut?: any;
|
|
253
|
-
onPointerOutCapture?: any;
|
|
254
|
-
onGotPointerCapture?: any;
|
|
255
|
-
onGotPointerCaptureCapture?: any;
|
|
256
|
-
onLostPointerCapture?: any;
|
|
257
|
-
onLostPointerCaptureCapture?: any;
|
|
258
|
-
onScroll?: any;
|
|
259
|
-
onScrollCapture?: any;
|
|
260
|
-
onWheel?: any;
|
|
261
|
-
onWheelCapture?: any;
|
|
262
|
-
onAnimationStart?: any;
|
|
263
|
-
onAnimationStartCapture?: any;
|
|
264
|
-
onAnimationEnd?: any;
|
|
265
|
-
onAnimationEndCapture?: any;
|
|
266
|
-
onAnimationIteration?: any;
|
|
267
|
-
onAnimationIterationCapture?: any;
|
|
268
|
-
onTransitionEnd?: any;
|
|
269
|
-
onTransitionEndCapture?: any;
|
|
270
|
-
}>;
|
|
271
|
-
export declare const StyledBoxIcon: import("styled-components").IStyledComponent<"web", {
|
|
272
|
-
ref?: any;
|
|
273
|
-
key?: any;
|
|
274
|
-
defaultChecked?: any;
|
|
275
|
-
defaultValue?: any;
|
|
276
|
-
suppressContentEditableWarning?: any;
|
|
277
|
-
suppressHydrationWarning?: any;
|
|
278
|
-
accessKey?: any;
|
|
279
|
-
autoFocus?: any;
|
|
280
|
-
className?: any;
|
|
281
|
-
contentEditable?: any;
|
|
282
|
-
contextMenu?: any;
|
|
283
|
-
dir?: any;
|
|
284
|
-
draggable?: any;
|
|
285
|
-
hidden?: any;
|
|
286
|
-
id?: any;
|
|
287
|
-
lang?: any;
|
|
288
|
-
nonce?: any;
|
|
289
|
-
placeholder?: any;
|
|
290
|
-
slot?: any;
|
|
291
|
-
spellCheck?: any;
|
|
292
|
-
style?: any;
|
|
293
|
-
tabIndex?: any;
|
|
294
|
-
title?: any;
|
|
295
|
-
translate?: any;
|
|
296
|
-
radioGroup?: any;
|
|
297
|
-
role?: any;
|
|
298
|
-
about?: any;
|
|
299
|
-
content?: any;
|
|
300
|
-
datatype?: any;
|
|
301
|
-
inlist?: any;
|
|
302
|
-
prefix?: any;
|
|
303
|
-
property?: any;
|
|
304
|
-
rel?: any;
|
|
305
|
-
resource?: any;
|
|
306
|
-
rev?: any;
|
|
307
|
-
typeof?: any;
|
|
308
|
-
vocab?: any;
|
|
309
|
-
autoCapitalize?: any;
|
|
310
|
-
autoCorrect?: any;
|
|
311
|
-
autoSave?: any;
|
|
312
|
-
color?: any;
|
|
313
|
-
itemProp?: any;
|
|
314
|
-
itemScope?: any;
|
|
315
|
-
itemType?: any;
|
|
316
|
-
itemID?: any;
|
|
317
|
-
itemRef?: any;
|
|
318
|
-
results?: any;
|
|
319
|
-
security?: any;
|
|
320
|
-
unselectable?: any;
|
|
321
|
-
inputMode?: any;
|
|
322
|
-
is?: any;
|
|
323
|
-
'aria-activedescendant'?: any;
|
|
324
|
-
'aria-atomic'?: any;
|
|
325
|
-
'aria-autocomplete'?: any;
|
|
326
|
-
'aria-braillelabel'?: any;
|
|
327
|
-
'aria-brailleroledescription'?: any;
|
|
328
|
-
'aria-busy'?: any;
|
|
329
|
-
'aria-checked'?: any;
|
|
330
|
-
'aria-colcount'?: any;
|
|
331
|
-
'aria-colindex'?: any;
|
|
332
|
-
'aria-colindextext'?: any;
|
|
333
|
-
'aria-colspan'?: any;
|
|
334
|
-
'aria-controls'?: any;
|
|
335
|
-
'aria-current'?: any;
|
|
336
|
-
'aria-describedby'?: any;
|
|
337
|
-
'aria-description'?: any;
|
|
338
|
-
'aria-details'?: any;
|
|
339
|
-
'aria-disabled'?: any;
|
|
340
|
-
'aria-dropeffect'?: any;
|
|
341
|
-
'aria-errormessage'?: any;
|
|
342
|
-
'aria-expanded'?: any;
|
|
343
|
-
'aria-flowto'?: any;
|
|
344
|
-
'aria-grabbed'?: any;
|
|
345
|
-
'aria-haspopup'?: any;
|
|
346
|
-
'aria-hidden'?: any;
|
|
347
|
-
'aria-invalid'?: any;
|
|
348
|
-
'aria-keyshortcuts'?: any;
|
|
349
|
-
'aria-label'?: any;
|
|
350
|
-
'aria-labelledby'?: any;
|
|
351
|
-
'aria-level'?: any;
|
|
352
|
-
'aria-live'?: any;
|
|
353
|
-
'aria-modal'?: any;
|
|
354
|
-
'aria-multiline'?: any;
|
|
355
|
-
'aria-multiselectable'?: any;
|
|
356
|
-
'aria-orientation'?: any;
|
|
357
|
-
'aria-owns'?: any;
|
|
358
|
-
'aria-placeholder'?: any;
|
|
359
|
-
'aria-posinset'?: any;
|
|
360
|
-
'aria-pressed'?: any;
|
|
361
|
-
'aria-readonly'?: any;
|
|
362
|
-
'aria-relevant'?: any;
|
|
363
|
-
'aria-required'?: any;
|
|
364
|
-
'aria-roledescription'?: any;
|
|
365
|
-
'aria-rowcount'?: any;
|
|
366
|
-
'aria-rowindex'?: any;
|
|
367
|
-
'aria-rowindextext'?: any;
|
|
368
|
-
'aria-rowspan'?: any;
|
|
369
|
-
'aria-selected'?: any;
|
|
370
|
-
'aria-setsize'?: any;
|
|
371
|
-
'aria-sort'?: any;
|
|
372
|
-
'aria-valuemax'?: any;
|
|
373
|
-
'aria-valuemin'?: any;
|
|
374
|
-
'aria-valuenow'?: any;
|
|
375
|
-
'aria-valuetext'?: any;
|
|
376
|
-
children?: any;
|
|
377
|
-
dangerouslySetInnerHTML?: any;
|
|
378
|
-
onCopy?: any;
|
|
379
|
-
onCopyCapture?: any;
|
|
380
|
-
onCut?: any;
|
|
381
|
-
onCutCapture?: any;
|
|
382
|
-
onPaste?: any;
|
|
383
|
-
onPasteCapture?: any;
|
|
384
|
-
onCompositionEnd?: any;
|
|
385
|
-
onCompositionEndCapture?: any;
|
|
386
|
-
onCompositionStart?: any;
|
|
387
|
-
onCompositionStartCapture?: any;
|
|
388
|
-
onCompositionUpdate?: any;
|
|
389
|
-
onCompositionUpdateCapture?: any;
|
|
390
|
-
onFocus?: any;
|
|
391
|
-
onFocusCapture?: any;
|
|
392
|
-
onBlur?: any;
|
|
393
|
-
onBlurCapture?: any;
|
|
394
|
-
onChange?: any;
|
|
395
|
-
onChangeCapture?: any;
|
|
396
|
-
onBeforeInput?: any;
|
|
397
|
-
onBeforeInputCapture?: any;
|
|
398
|
-
onInput?: any;
|
|
399
|
-
onInputCapture?: any;
|
|
400
|
-
onReset?: any;
|
|
401
|
-
onResetCapture?: any;
|
|
402
|
-
onSubmit?: any;
|
|
403
|
-
onSubmitCapture?: any;
|
|
404
|
-
onInvalid?: any;
|
|
405
|
-
onInvalidCapture?: any;
|
|
406
|
-
onLoad?: any;
|
|
407
|
-
onLoadCapture?: any;
|
|
408
|
-
onError?: any;
|
|
409
|
-
onErrorCapture?: any;
|
|
410
|
-
onKeyDown?: any;
|
|
411
|
-
onKeyDownCapture?: any;
|
|
412
|
-
onKeyPress?: any;
|
|
413
|
-
onKeyPressCapture?: any;
|
|
414
|
-
onKeyUp?: any;
|
|
415
|
-
onKeyUpCapture?: any;
|
|
416
|
-
onAbort?: any;
|
|
417
|
-
onAbortCapture?: any;
|
|
418
|
-
onCanPlay?: any;
|
|
419
|
-
onCanPlayCapture?: any;
|
|
420
|
-
onCanPlayThrough?: any;
|
|
421
|
-
onCanPlayThroughCapture?: any;
|
|
422
|
-
onDurationChange?: any;
|
|
423
|
-
onDurationChangeCapture?: any;
|
|
424
|
-
onEmptied?: any;
|
|
425
|
-
onEmptiedCapture?: any;
|
|
426
|
-
onEncrypted?: any;
|
|
427
|
-
onEncryptedCapture?: any;
|
|
428
|
-
onEnded?: any;
|
|
429
|
-
onEndedCapture?: any;
|
|
430
|
-
onLoadedData?: any;
|
|
431
|
-
onLoadedDataCapture?: any;
|
|
432
|
-
onLoadedMetadata?: any;
|
|
433
|
-
onLoadedMetadataCapture?: any;
|
|
434
|
-
onLoadStart?: any;
|
|
435
|
-
onLoadStartCapture?: any;
|
|
436
|
-
onPause?: any;
|
|
437
|
-
onPauseCapture?: any;
|
|
438
|
-
onPlay?: any;
|
|
439
|
-
onPlayCapture?: any;
|
|
440
|
-
onPlaying?: any;
|
|
441
|
-
onPlayingCapture?: any;
|
|
442
|
-
onProgress?: any;
|
|
443
|
-
onProgressCapture?: any;
|
|
444
|
-
onRateChange?: any;
|
|
445
|
-
onRateChangeCapture?: any;
|
|
446
|
-
onResize?: any;
|
|
447
|
-
onResizeCapture?: any;
|
|
448
|
-
onSeeked?: any;
|
|
449
|
-
onSeekedCapture?: any;
|
|
450
|
-
onSeeking?: any;
|
|
451
|
-
onSeekingCapture?: any;
|
|
452
|
-
onStalled?: any;
|
|
453
|
-
onStalledCapture?: any;
|
|
454
|
-
onSuspend?: any;
|
|
455
|
-
onSuspendCapture?: any;
|
|
456
|
-
onTimeUpdate?: any;
|
|
457
|
-
onTimeUpdateCapture?: any;
|
|
458
|
-
onVolumeChange?: any;
|
|
459
|
-
onVolumeChangeCapture?: any;
|
|
460
|
-
onWaiting?: any;
|
|
461
|
-
onWaitingCapture?: any;
|
|
462
|
-
onAuxClick?: any;
|
|
463
|
-
onAuxClickCapture?: any;
|
|
464
|
-
onClick?: any;
|
|
465
|
-
onClickCapture?: any;
|
|
466
|
-
onContextMenu?: any;
|
|
467
|
-
onContextMenuCapture?: any;
|
|
468
|
-
onDoubleClick?: any;
|
|
469
|
-
onDoubleClickCapture?: any;
|
|
470
|
-
onDrag?: any;
|
|
471
|
-
onDragCapture?: any;
|
|
472
|
-
onDragEnd?: any;
|
|
473
|
-
onDragEndCapture?: any;
|
|
474
|
-
onDragEnter?: any;
|
|
475
|
-
onDragEnterCapture?: any;
|
|
476
|
-
onDragExit?: any;
|
|
477
|
-
onDragExitCapture?: any;
|
|
478
|
-
onDragLeave?: any;
|
|
479
|
-
onDragLeaveCapture?: any;
|
|
480
|
-
onDragOver?: any;
|
|
481
|
-
onDragOverCapture?: any;
|
|
482
|
-
onDragStart?: any;
|
|
483
|
-
onDragStartCapture?: any;
|
|
484
|
-
onDrop?: any;
|
|
485
|
-
onDropCapture?: any;
|
|
486
|
-
onMouseDown?: any;
|
|
487
|
-
onMouseDownCapture?: any;
|
|
488
|
-
onMouseEnter?: any;
|
|
489
|
-
onMouseLeave?: any;
|
|
490
|
-
onMouseMove?: any;
|
|
491
|
-
onMouseMoveCapture?: any;
|
|
492
|
-
onMouseOut?: any;
|
|
493
|
-
onMouseOutCapture?: any;
|
|
494
|
-
onMouseOver?: any;
|
|
495
|
-
onMouseOverCapture?: any;
|
|
496
|
-
onMouseUp?: any;
|
|
497
|
-
onMouseUpCapture?: any;
|
|
498
|
-
onSelect?: any;
|
|
499
|
-
onSelectCapture?: any;
|
|
500
|
-
onTouchCancel?: any;
|
|
501
|
-
onTouchCancelCapture?: any;
|
|
502
|
-
onTouchEnd?: any;
|
|
503
|
-
onTouchEndCapture?: any;
|
|
504
|
-
onTouchMove?: any;
|
|
505
|
-
onTouchMoveCapture?: any;
|
|
506
|
-
onTouchStart?: any;
|
|
507
|
-
onTouchStartCapture?: any;
|
|
508
|
-
onPointerDown?: any;
|
|
509
|
-
onPointerDownCapture?: any;
|
|
510
|
-
onPointerMove?: any;
|
|
511
|
-
onPointerMoveCapture?: any;
|
|
512
|
-
onPointerUp?: any;
|
|
513
|
-
onPointerUpCapture?: any;
|
|
514
|
-
onPointerCancel?: any;
|
|
515
|
-
onPointerCancelCapture?: any;
|
|
516
|
-
onPointerEnter?: any;
|
|
517
|
-
onPointerEnterCapture?: any;
|
|
518
|
-
onPointerLeave?: any;
|
|
519
|
-
onPointerLeaveCapture?: any;
|
|
520
|
-
onPointerOver?: any;
|
|
521
|
-
onPointerOverCapture?: any;
|
|
522
|
-
onPointerOut?: any;
|
|
523
|
-
onPointerOutCapture?: any;
|
|
524
|
-
onGotPointerCapture?: any;
|
|
525
|
-
onGotPointerCaptureCapture?: any;
|
|
526
|
-
onLostPointerCapture?: any;
|
|
527
|
-
onLostPointerCaptureCapture?: any;
|
|
528
|
-
onScroll?: any;
|
|
529
|
-
onScrollCapture?: any;
|
|
530
|
-
onWheel?: any;
|
|
531
|
-
onWheelCapture?: any;
|
|
532
|
-
onAnimationStart?: any;
|
|
533
|
-
onAnimationStartCapture?: any;
|
|
534
|
-
onAnimationEnd?: any;
|
|
535
|
-
onAnimationEndCapture?: any;
|
|
536
|
-
onAnimationIteration?: any;
|
|
537
|
-
onAnimationIterationCapture?: any;
|
|
538
|
-
onTransitionEnd?: any;
|
|
539
|
-
onTransitionEndCapture?: any;
|
|
540
|
-
}>;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { Modal, ModalProps as MuiModalProps, SxProps } from '@mui/material';
|
|
3
|
-
import { Theme } from '@emotion/react';
|
|
4
|
-
declare type MuiModalBaseProps = Pick<MuiModalProps, 'sx' | 'children' | 'onClose'>;
|
|
5
|
-
export interface ModalBaseProps extends MuiModalBaseProps {
|
|
6
|
-
sx?: SxProps<Theme>;
|
|
7
|
-
title?: string;
|
|
8
|
-
open: boolean;
|
|
9
|
-
children: React.ReactElement;
|
|
10
|
-
onConfirm?: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
|
|
11
|
-
onClose?: {
|
|
12
|
-
bivarianceHack(event: {}, reason: 'backdropClick' | 'escapeKeyDown'): void;
|
|
13
|
-
}['bivarianceHack'];
|
|
14
|
-
onCancel?: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
|
|
15
|
-
}
|
|
16
|
-
export interface ModalHeaderProps {
|
|
17
|
-
title?: string;
|
|
18
|
-
onClose?: {
|
|
19
|
-
bivarianceHack(event: {}, reason: 'backdropClick' | 'escapeKeyDown'): void;
|
|
20
|
-
}['bivarianceHack'];
|
|
21
|
-
}
|
|
22
|
-
export interface ModalFooterProps {
|
|
23
|
-
onCancel?: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
|
|
24
|
-
onConfirm: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
|
|
25
|
-
}
|
|
26
|
-
export declare type ModalType = keyof typeof Modal;
|
|
27
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './progress-bar';
|