@delightui/components 0.1.87 → 0.1.90
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/assets/icons/AddFilled.svg +5 -0
- package/dist/assets/icons/AddOutlined.svg +5 -0
- package/dist/assets/icons/AddRound.svg +5 -0
- package/dist/assets/icons/ArrowForwardOutlined.svg +3 -0
- package/dist/assets/icons/CheckFilled.svg +3 -0
- package/dist/assets/icons/CheckOutlined.svg +3 -0
- package/dist/assets/icons/CheckboxCheckedFilled.svg +5 -0
- package/dist/assets/icons/CheckboxUnchecked.svg +4 -0
- package/dist/assets/icons/CheckboxUncheckedOutlined.svg +3 -0
- package/dist/assets/icons/ChevronLeftOutlined.svg +3 -0
- package/dist/assets/icons/ChevronRightOutlined.svg +3 -0
- package/dist/assets/icons/CloseDeleteOutlined.svg +3 -0
- package/dist/assets/icons/DragOutlined.svg +3 -0
- package/dist/assets/icons/ErrorOutlined.svg +3 -0
- package/dist/assets/icons/ExpandMoreFilled.svg +3 -0
- package/dist/assets/icons/ExpandMoreOutlined.svg +3 -0
- package/dist/assets/icons/ExpandMoreRound.svg +3 -0
- package/dist/assets/icons/IndeterminateFilled.svg +4 -0
- package/dist/assets/icons/InfoFilled.svg +3 -0
- package/dist/assets/icons/InfoOutlined.svg +3 -0
- package/dist/assets/icons/InfoRound.svg +3 -0
- package/dist/assets/icons/ScheduleOutlined.svg +8 -0
- package/dist/assets/icons/SearchFilled.svg +3 -0
- package/dist/assets/icons/SearchOutlined.svg +3 -0
- package/dist/assets/icons/SearchRound.svg +3 -0
- package/dist/assets/icons/TailFilled.svg +3 -0
- package/dist/assets/icons/TailOutlined.svg +3 -0
- package/dist/assets/icons/VisibilityOffFilled.svg +8 -0
- package/dist/assets/icons/VisibilityOnFilled.svg +8 -0
- package/dist/cjs/components/atoms/Checkbox/Checkbox.presenter.d.ts +104 -104
- package/dist/cjs/components/atoms/CheckboxItem/CheckboxItem.presenter.d.ts +106 -106
- package/dist/cjs/components/atoms/Input/Input.presenter.d.ts +110 -110
- package/dist/cjs/components/atoms/Password/Password.presenter.d.ts +114 -114
- package/dist/cjs/components/atoms/RadioButtonItem/RadioButtonItem.presenter.d.ts +105 -105
- package/dist/cjs/components/atoms/Slider/Slider.presenter.d.ts +1 -2
- package/dist/cjs/components/atoms/TextArea/TextArea.presenter.d.ts +95 -96
- package/dist/cjs/components/atoms/Toggle/Toggle.presenter.d.ts +107 -107
- package/dist/cjs/components/atoms/ToggleButton/ToggleButton.presenter.d.ts +81 -82
- package/dist/cjs/components/molecules/Select/Select.presenter.d.ts +85 -86
- package/dist/cjs/library.js +3 -3
- package/dist/cjs/library.js.map +1 -1
- package/dist/esm/components/atoms/Checkbox/Checkbox.presenter.d.ts +104 -104
- package/dist/esm/components/atoms/CheckboxItem/CheckboxItem.presenter.d.ts +106 -106
- package/dist/esm/components/atoms/Input/Input.presenter.d.ts +110 -110
- package/dist/esm/components/atoms/Password/Password.presenter.d.ts +114 -114
- package/dist/esm/components/atoms/RadioButtonItem/RadioButtonItem.presenter.d.ts +105 -105
- package/dist/esm/components/atoms/Slider/Slider.presenter.d.ts +1 -2
- package/dist/esm/components/atoms/TextArea/TextArea.presenter.d.ts +95 -96
- package/dist/esm/components/atoms/Toggle/Toggle.presenter.d.ts +107 -107
- package/dist/esm/components/atoms/ToggleButton/ToggleButton.presenter.d.ts +81 -82
- package/dist/esm/components/molecules/Select/Select.presenter.d.ts +85 -86
- package/dist/esm/library.js +3 -3
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +3 -1
|
@@ -6,118 +6,117 @@ declare const usePresenter: (props: ToggleProps) => {
|
|
|
6
6
|
isChecked: boolean;
|
|
7
7
|
onToggleChanged: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
8
8
|
otherInputProps: {
|
|
9
|
-
className?: string | undefined
|
|
10
|
-
form?: string | undefined
|
|
11
|
-
list?: string | undefined
|
|
9
|
+
className?: string | undefined;
|
|
10
|
+
form?: string | undefined;
|
|
11
|
+
list?: string | undefined;
|
|
12
12
|
role?: import("react").AriaRole | undefined;
|
|
13
|
-
src?: string | undefined
|
|
13
|
+
src?: string | undefined;
|
|
14
14
|
onLoad?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
15
15
|
onError?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
16
|
-
alt?: string | undefined
|
|
17
|
-
height?: number | string | undefined
|
|
18
|
-
width?: number | string | undefined
|
|
16
|
+
alt?: string | undefined;
|
|
17
|
+
height?: number | string | undefined;
|
|
18
|
+
width?: number | string | undefined;
|
|
19
19
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
20
|
-
suppressContentEditableWarning?: boolean | undefined
|
|
21
|
-
suppressHydrationWarning?: boolean | undefined
|
|
22
|
-
accessKey?: string | undefined
|
|
23
|
-
|
|
24
|
-
autoFocus?: boolean | undefined | undefined;
|
|
20
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
21
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
22
|
+
accessKey?: string | undefined;
|
|
23
|
+
autoFocus?: boolean | undefined;
|
|
25
24
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
26
|
-
contextMenu?: string | undefined
|
|
27
|
-
dir?: string | undefined
|
|
25
|
+
contextMenu?: string | undefined;
|
|
26
|
+
dir?: string | undefined;
|
|
28
27
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
slot?: string | undefined | undefined;
|
|
28
|
+
hidden?: boolean | undefined;
|
|
29
|
+
id?: string | undefined;
|
|
30
|
+
lang?: string | undefined;
|
|
31
|
+
nonce?: string | undefined;
|
|
32
|
+
slot?: string | undefined;
|
|
35
33
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
36
34
|
style?: import("react").CSSProperties | undefined;
|
|
37
|
-
tabIndex?: number | undefined
|
|
38
|
-
title?: string | undefined
|
|
39
|
-
translate?: "yes" | "no" | undefined
|
|
40
|
-
radioGroup?: string | undefined
|
|
41
|
-
about?: string | undefined
|
|
42
|
-
content?: string | undefined
|
|
43
|
-
datatype?: string | undefined
|
|
35
|
+
tabIndex?: number | undefined;
|
|
36
|
+
title?: string | undefined;
|
|
37
|
+
translate?: "yes" | "no" | undefined;
|
|
38
|
+
radioGroup?: string | undefined;
|
|
39
|
+
about?: string | undefined;
|
|
40
|
+
content?: string | undefined;
|
|
41
|
+
datatype?: string | undefined;
|
|
44
42
|
inlist?: any;
|
|
45
|
-
prefix?: string | undefined
|
|
46
|
-
property?: string | undefined
|
|
47
|
-
rel?: string | undefined
|
|
48
|
-
resource?: string | undefined
|
|
49
|
-
rev?: string | undefined
|
|
50
|
-
typeof?: string | undefined
|
|
51
|
-
vocab?: string | undefined
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
43
|
+
prefix?: string | undefined;
|
|
44
|
+
property?: string | undefined;
|
|
45
|
+
rel?: string | undefined;
|
|
46
|
+
resource?: string | undefined;
|
|
47
|
+
rev?: string | undefined;
|
|
48
|
+
typeof?: string | undefined;
|
|
49
|
+
vocab?: string | undefined;
|
|
50
|
+
autoCapitalize?: string | undefined;
|
|
51
|
+
autoCorrect?: string | undefined;
|
|
52
|
+
autoSave?: string | undefined;
|
|
53
|
+
color?: string | undefined;
|
|
54
|
+
itemProp?: string | undefined;
|
|
55
|
+
itemScope?: boolean | undefined;
|
|
56
|
+
itemType?: string | undefined;
|
|
57
|
+
itemID?: string | undefined;
|
|
58
|
+
itemRef?: string | undefined;
|
|
59
|
+
results?: number | undefined;
|
|
60
|
+
security?: string | undefined;
|
|
61
|
+
unselectable?: "on" | "off" | undefined;
|
|
62
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
63
|
+
is?: string | undefined;
|
|
64
|
+
"aria-activedescendant"?: string | undefined;
|
|
66
65
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
67
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined
|
|
68
|
-
"aria-braillelabel"?: string | undefined
|
|
69
|
-
"aria-brailleroledescription"?: string | undefined
|
|
66
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
67
|
+
"aria-braillelabel"?: string | undefined;
|
|
68
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
70
69
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
71
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined
|
|
72
|
-
"aria-colcount"?: number | undefined
|
|
73
|
-
"aria-colindex"?: number | undefined
|
|
74
|
-
"aria-colindextext"?: string | undefined
|
|
75
|
-
"aria-colspan"?: number | undefined
|
|
76
|
-
"aria-controls"?: string | undefined
|
|
77
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined
|
|
78
|
-
"aria-describedby"?: string | undefined
|
|
79
|
-
"aria-description"?: string | undefined
|
|
80
|
-
"aria-details"?: string | undefined
|
|
70
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
71
|
+
"aria-colcount"?: number | undefined;
|
|
72
|
+
"aria-colindex"?: number | undefined;
|
|
73
|
+
"aria-colindextext"?: string | undefined;
|
|
74
|
+
"aria-colspan"?: number | undefined;
|
|
75
|
+
"aria-controls"?: string | undefined;
|
|
76
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
77
|
+
"aria-describedby"?: string | undefined;
|
|
78
|
+
"aria-description"?: string | undefined;
|
|
79
|
+
"aria-details"?: string | undefined;
|
|
81
80
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
82
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined
|
|
83
|
-
"aria-errormessage"?: string | undefined
|
|
81
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
82
|
+
"aria-errormessage"?: string | undefined;
|
|
84
83
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
85
|
-
"aria-flowto"?: string | undefined
|
|
84
|
+
"aria-flowto"?: string | undefined;
|
|
86
85
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
87
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined
|
|
86
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
88
87
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
89
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined
|
|
90
|
-
"aria-keyshortcuts"?: string | undefined
|
|
91
|
-
"aria-label"?: string | undefined
|
|
92
|
-
"aria-labelledby"?: string | undefined
|
|
93
|
-
"aria-level"?: number | undefined
|
|
94
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined
|
|
88
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
89
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
90
|
+
"aria-label"?: string | undefined;
|
|
91
|
+
"aria-labelledby"?: string | undefined;
|
|
92
|
+
"aria-level"?: number | undefined;
|
|
93
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
95
94
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
96
95
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
97
96
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
98
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined
|
|
99
|
-
"aria-owns"?: string | undefined
|
|
100
|
-
"aria-placeholder"?: string | undefined
|
|
101
|
-
"aria-posinset"?: number | undefined
|
|
102
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined
|
|
97
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
98
|
+
"aria-owns"?: string | undefined;
|
|
99
|
+
"aria-placeholder"?: string | undefined;
|
|
100
|
+
"aria-posinset"?: number | undefined;
|
|
101
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
103
102
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
104
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined
|
|
103
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
105
104
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
106
|
-
"aria-roledescription"?: string | undefined
|
|
107
|
-
"aria-rowcount"?: number | undefined
|
|
108
|
-
"aria-rowindex"?: number | undefined
|
|
109
|
-
"aria-rowindextext"?: string | undefined
|
|
110
|
-
"aria-rowspan"?: number | undefined
|
|
105
|
+
"aria-roledescription"?: string | undefined;
|
|
106
|
+
"aria-rowcount"?: number | undefined;
|
|
107
|
+
"aria-rowindex"?: number | undefined;
|
|
108
|
+
"aria-rowindextext"?: string | undefined;
|
|
109
|
+
"aria-rowspan"?: number | undefined;
|
|
111
110
|
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
112
|
-
"aria-setsize"?: number | undefined
|
|
113
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined
|
|
114
|
-
"aria-valuemax"?: number | undefined
|
|
115
|
-
"aria-valuemin"?: number | undefined
|
|
116
|
-
"aria-valuenow"?: number | undefined
|
|
117
|
-
"aria-valuetext"?: string | undefined
|
|
111
|
+
"aria-setsize"?: number | undefined;
|
|
112
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
113
|
+
"aria-valuemax"?: number | undefined;
|
|
114
|
+
"aria-valuemin"?: number | undefined;
|
|
115
|
+
"aria-valuenow"?: number | undefined;
|
|
116
|
+
"aria-valuetext"?: string | undefined;
|
|
118
117
|
dangerouslySetInnerHTML?: {
|
|
119
118
|
__html: string | TrustedHTML;
|
|
120
|
-
} | undefined
|
|
119
|
+
} | undefined;
|
|
121
120
|
onCopy?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
122
121
|
onCopyCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
123
122
|
onCut?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
@@ -276,25 +275,26 @@ declare const usePresenter: (props: ToggleProps) => {
|
|
|
276
275
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
277
276
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
278
277
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
279
|
-
pattern?: string | undefined
|
|
280
|
-
size?: number | undefined
|
|
281
|
-
step?: number | string | undefined
|
|
278
|
+
pattern?: string | undefined;
|
|
279
|
+
size?: number | undefined;
|
|
280
|
+
step?: number | string | undefined;
|
|
282
281
|
autoComplete?: import("react").HTMLInputAutoCompleteAttribute | undefined;
|
|
283
|
-
name?: string | undefined
|
|
284
|
-
accept?: string | undefined
|
|
285
|
-
capture?: boolean | "user" | "environment" | undefined
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
282
|
+
name?: string | undefined;
|
|
283
|
+
accept?: string | undefined;
|
|
284
|
+
capture?: boolean | "user" | "environment" | undefined;
|
|
285
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
286
|
+
formAction?: string | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
287
|
+
formEncType?: string | undefined;
|
|
288
|
+
formMethod?: string | undefined;
|
|
289
|
+
formNoValidate?: boolean | undefined;
|
|
290
|
+
formTarget?: string | undefined;
|
|
291
|
+
max?: number | string | undefined;
|
|
292
|
+
maxLength?: number | undefined;
|
|
293
|
+
min?: number | string | undefined;
|
|
294
|
+
minLength?: number | undefined;
|
|
295
|
+
multiple?: boolean | undefined;
|
|
296
|
+
placeholder?: string | undefined;
|
|
297
|
+
readOnly?: boolean | undefined;
|
|
298
298
|
initialValue?: boolean | undefined;
|
|
299
299
|
};
|
|
300
300
|
disabled: boolean;
|
|
@@ -4,107 +4,106 @@ declare const usePresenter: (props: ToggleButtonProps) => {
|
|
|
4
4
|
role?: import("react").AriaRole | undefined;
|
|
5
5
|
onLoad?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
6
6
|
onError?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
7
|
-
loading?: boolean
|
|
7
|
+
loading?: boolean;
|
|
8
8
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
9
|
-
suppressContentEditableWarning?: boolean | undefined
|
|
10
|
-
suppressHydrationWarning?: boolean | undefined
|
|
11
|
-
accessKey?: string | undefined
|
|
12
|
-
|
|
13
|
-
autoFocus?: boolean | undefined | undefined;
|
|
9
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
10
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
11
|
+
accessKey?: string | undefined;
|
|
12
|
+
autoFocus?: boolean | undefined;
|
|
14
13
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
15
|
-
contextMenu?: string | undefined
|
|
16
|
-
dir?: string | undefined
|
|
14
|
+
contextMenu?: string | undefined;
|
|
15
|
+
dir?: string | undefined;
|
|
17
16
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
slot?: string | undefined | undefined;
|
|
17
|
+
hidden?: boolean | undefined;
|
|
18
|
+
lang?: string | undefined;
|
|
19
|
+
nonce?: string | undefined;
|
|
20
|
+
slot?: string | undefined;
|
|
23
21
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
24
|
-
tabIndex?: number | undefined
|
|
25
|
-
title?: string | undefined
|
|
26
|
-
translate?: "yes" | "no" | undefined
|
|
27
|
-
radioGroup?: string | undefined
|
|
28
|
-
about?: string | undefined
|
|
29
|
-
content?: string | undefined
|
|
30
|
-
datatype?: string | undefined
|
|
22
|
+
tabIndex?: number | undefined;
|
|
23
|
+
title?: string | undefined;
|
|
24
|
+
translate?: "yes" | "no" | undefined;
|
|
25
|
+
radioGroup?: string | undefined;
|
|
26
|
+
about?: string | undefined;
|
|
27
|
+
content?: string | undefined;
|
|
28
|
+
datatype?: string | undefined;
|
|
31
29
|
inlist?: any;
|
|
32
|
-
prefix?: string | undefined
|
|
33
|
-
property?: string | undefined
|
|
34
|
-
rel?: string | undefined
|
|
35
|
-
resource?: string | undefined
|
|
36
|
-
rev?: string | undefined
|
|
37
|
-
typeof?: string | undefined
|
|
38
|
-
vocab?: string | undefined
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
30
|
+
prefix?: string | undefined;
|
|
31
|
+
property?: string | undefined;
|
|
32
|
+
rel?: string | undefined;
|
|
33
|
+
resource?: string | undefined;
|
|
34
|
+
rev?: string | undefined;
|
|
35
|
+
typeof?: string | undefined;
|
|
36
|
+
vocab?: string | undefined;
|
|
37
|
+
autoCapitalize?: string | undefined;
|
|
38
|
+
autoCorrect?: string | undefined;
|
|
39
|
+
autoSave?: string | undefined;
|
|
40
|
+
color?: string | undefined;
|
|
41
|
+
itemProp?: string | undefined;
|
|
42
|
+
itemScope?: boolean | undefined;
|
|
43
|
+
itemType?: string | undefined;
|
|
44
|
+
itemID?: string | undefined;
|
|
45
|
+
itemRef?: string | undefined;
|
|
46
|
+
results?: number | undefined;
|
|
47
|
+
security?: string | undefined;
|
|
48
|
+
unselectable?: "on" | "off" | undefined;
|
|
49
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
50
|
+
is?: string | undefined;
|
|
51
|
+
"aria-activedescendant"?: string | undefined;
|
|
53
52
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
54
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined
|
|
55
|
-
"aria-braillelabel"?: string | undefined
|
|
56
|
-
"aria-brailleroledescription"?: string | undefined
|
|
53
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
54
|
+
"aria-braillelabel"?: string | undefined;
|
|
55
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
57
56
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
58
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined
|
|
59
|
-
"aria-colcount"?: number | undefined
|
|
60
|
-
"aria-colindex"?: number | undefined
|
|
61
|
-
"aria-colindextext"?: string | undefined
|
|
62
|
-
"aria-colspan"?: number | undefined
|
|
63
|
-
"aria-controls"?: string | undefined
|
|
64
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined
|
|
65
|
-
"aria-describedby"?: string | undefined
|
|
66
|
-
"aria-description"?: string | undefined
|
|
67
|
-
"aria-details"?: string | undefined
|
|
57
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
58
|
+
"aria-colcount"?: number | undefined;
|
|
59
|
+
"aria-colindex"?: number | undefined;
|
|
60
|
+
"aria-colindextext"?: string | undefined;
|
|
61
|
+
"aria-colspan"?: number | undefined;
|
|
62
|
+
"aria-controls"?: string | undefined;
|
|
63
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
64
|
+
"aria-describedby"?: string | undefined;
|
|
65
|
+
"aria-description"?: string | undefined;
|
|
66
|
+
"aria-details"?: string | undefined;
|
|
68
67
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
69
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined
|
|
70
|
-
"aria-errormessage"?: string | undefined
|
|
68
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
69
|
+
"aria-errormessage"?: string | undefined;
|
|
71
70
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
72
|
-
"aria-flowto"?: string | undefined
|
|
71
|
+
"aria-flowto"?: string | undefined;
|
|
73
72
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
74
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined
|
|
73
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
75
74
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
76
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined
|
|
77
|
-
"aria-keyshortcuts"?: string | undefined
|
|
78
|
-
"aria-label"?: string | undefined
|
|
79
|
-
"aria-labelledby"?: string | undefined
|
|
80
|
-
"aria-level"?: number | undefined
|
|
81
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined
|
|
75
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
76
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
77
|
+
"aria-label"?: string | undefined;
|
|
78
|
+
"aria-labelledby"?: string | undefined;
|
|
79
|
+
"aria-level"?: number | undefined;
|
|
80
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
82
81
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
83
82
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
84
83
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
85
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined
|
|
86
|
-
"aria-owns"?: string | undefined
|
|
87
|
-
"aria-placeholder"?: string | undefined
|
|
88
|
-
"aria-posinset"?: number | undefined
|
|
89
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined
|
|
84
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
85
|
+
"aria-owns"?: string | undefined;
|
|
86
|
+
"aria-placeholder"?: string | undefined;
|
|
87
|
+
"aria-posinset"?: number | undefined;
|
|
88
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
90
89
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
91
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined
|
|
90
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
92
91
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
93
|
-
"aria-roledescription"?: string | undefined
|
|
94
|
-
"aria-rowcount"?: number | undefined
|
|
95
|
-
"aria-rowindex"?: number | undefined
|
|
96
|
-
"aria-rowindextext"?: string | undefined
|
|
97
|
-
"aria-rowspan"?: number | undefined
|
|
92
|
+
"aria-roledescription"?: string | undefined;
|
|
93
|
+
"aria-rowcount"?: number | undefined;
|
|
94
|
+
"aria-rowindex"?: number | undefined;
|
|
95
|
+
"aria-rowindextext"?: string | undefined;
|
|
96
|
+
"aria-rowspan"?: number | undefined;
|
|
98
97
|
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
99
|
-
"aria-setsize"?: number | undefined
|
|
100
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined
|
|
101
|
-
"aria-valuemax"?: number | undefined
|
|
102
|
-
"aria-valuemin"?: number | undefined
|
|
103
|
-
"aria-valuenow"?: number | undefined
|
|
104
|
-
"aria-valuetext"?: string | undefined
|
|
98
|
+
"aria-setsize"?: number | undefined;
|
|
99
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
100
|
+
"aria-valuemax"?: number | undefined;
|
|
101
|
+
"aria-valuemin"?: number | undefined;
|
|
102
|
+
"aria-valuenow"?: number | undefined;
|
|
103
|
+
"aria-valuetext"?: string | undefined;
|
|
105
104
|
dangerouslySetInnerHTML?: {
|
|
106
105
|
__html: string | TrustedHTML;
|
|
107
|
-
} | undefined
|
|
106
|
+
} | undefined;
|
|
108
107
|
onCopy?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
109
108
|
onCopyCapture?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
110
109
|
onCut?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|