@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
|
@@ -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;
|
|
@@ -17,117 +17,116 @@ declare const usePresenter: (props: SelectProps) => {
|
|
|
17
17
|
resetSelectedValue: () => void;
|
|
18
18
|
triggerProps: {
|
|
19
19
|
id?: string;
|
|
20
|
-
disabled?: boolean
|
|
21
|
-
required?: boolean
|
|
22
|
-
checked?: boolean
|
|
20
|
+
disabled?: boolean;
|
|
21
|
+
required?: boolean;
|
|
22
|
+
checked?: boolean;
|
|
23
23
|
value?: import("../..").FieldValue | undefined;
|
|
24
|
-
invalid?: boolean
|
|
24
|
+
invalid?: boolean;
|
|
25
25
|
onValueChange?: ((value: import("../..").FieldValue) => void) | undefined;
|
|
26
26
|
initialValue?: import("../..").FieldValue | undefined;
|
|
27
27
|
role?: import("react").AriaRole | undefined;
|
|
28
28
|
onLoad?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
29
29
|
onError?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
30
|
-
defaultChecked?: boolean | undefined
|
|
30
|
+
defaultChecked?: boolean | undefined;
|
|
31
31
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
32
|
-
suppressContentEditableWarning?: boolean | undefined
|
|
33
|
-
suppressHydrationWarning?: boolean | undefined
|
|
34
|
-
accessKey?: string | undefined
|
|
35
|
-
|
|
36
|
-
autoFocus?: boolean | undefined | undefined;
|
|
32
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
33
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
34
|
+
accessKey?: string | undefined;
|
|
35
|
+
autoFocus?: boolean | undefined;
|
|
37
36
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
38
|
-
contextMenu?: string | undefined
|
|
39
|
-
dir?: string | undefined
|
|
37
|
+
contextMenu?: string | undefined;
|
|
38
|
+
dir?: string | undefined;
|
|
40
39
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
slot?: string | undefined | undefined;
|
|
40
|
+
hidden?: boolean | undefined;
|
|
41
|
+
lang?: string | undefined;
|
|
42
|
+
nonce?: string | undefined;
|
|
43
|
+
slot?: string | undefined;
|
|
46
44
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
47
|
-
tabIndex?: number | undefined
|
|
48
|
-
title?: string | undefined
|
|
49
|
-
translate?: "yes" | "no" | undefined
|
|
50
|
-
radioGroup?: string | undefined
|
|
51
|
-
about?: string | undefined
|
|
52
|
-
content?: string | undefined
|
|
53
|
-
datatype?: string | undefined
|
|
45
|
+
tabIndex?: number | undefined;
|
|
46
|
+
title?: string | undefined;
|
|
47
|
+
translate?: "yes" | "no" | undefined;
|
|
48
|
+
radioGroup?: string | undefined;
|
|
49
|
+
about?: string | undefined;
|
|
50
|
+
content?: string | undefined;
|
|
51
|
+
datatype?: string | undefined;
|
|
54
52
|
inlist?: any;
|
|
55
|
-
prefix?: string | undefined
|
|
56
|
-
property?: string | undefined
|
|
57
|
-
rel?: string | undefined
|
|
58
|
-
resource?: string | undefined
|
|
59
|
-
rev?: string | undefined
|
|
60
|
-
typeof?: string | undefined
|
|
61
|
-
vocab?: string | undefined
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
53
|
+
prefix?: string | undefined;
|
|
54
|
+
property?: string | undefined;
|
|
55
|
+
rel?: string | undefined;
|
|
56
|
+
resource?: string | undefined;
|
|
57
|
+
rev?: string | undefined;
|
|
58
|
+
typeof?: string | undefined;
|
|
59
|
+
vocab?: string | undefined;
|
|
60
|
+
autoCapitalize?: string | undefined;
|
|
61
|
+
autoCorrect?: string | undefined;
|
|
62
|
+
autoSave?: string | undefined;
|
|
63
|
+
color?: string | undefined;
|
|
64
|
+
itemProp?: string | undefined;
|
|
65
|
+
itemScope?: boolean | undefined;
|
|
66
|
+
itemType?: string | undefined;
|
|
67
|
+
itemID?: string | undefined;
|
|
68
|
+
itemRef?: string | undefined;
|
|
69
|
+
results?: number | undefined;
|
|
70
|
+
security?: string | undefined;
|
|
71
|
+
unselectable?: "on" | "off" | undefined;
|
|
72
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
73
|
+
is?: string | undefined;
|
|
74
|
+
"aria-activedescendant"?: string | undefined;
|
|
76
75
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
77
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined
|
|
78
|
-
"aria-braillelabel"?: string | undefined
|
|
79
|
-
"aria-brailleroledescription"?: string | undefined
|
|
76
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
77
|
+
"aria-braillelabel"?: string | undefined;
|
|
78
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
80
79
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
81
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined
|
|
82
|
-
"aria-colcount"?: number | undefined
|
|
83
|
-
"aria-colindex"?: number | undefined
|
|
84
|
-
"aria-colindextext"?: string | undefined
|
|
85
|
-
"aria-colspan"?: number | undefined
|
|
86
|
-
"aria-controls"?: string | undefined
|
|
87
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined
|
|
88
|
-
"aria-describedby"?: string | undefined
|
|
89
|
-
"aria-description"?: string | undefined
|
|
90
|
-
"aria-details"?: string | undefined
|
|
80
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
81
|
+
"aria-colcount"?: number | undefined;
|
|
82
|
+
"aria-colindex"?: number | undefined;
|
|
83
|
+
"aria-colindextext"?: string | undefined;
|
|
84
|
+
"aria-colspan"?: number | undefined;
|
|
85
|
+
"aria-controls"?: string | undefined;
|
|
86
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
87
|
+
"aria-describedby"?: string | undefined;
|
|
88
|
+
"aria-description"?: string | undefined;
|
|
89
|
+
"aria-details"?: string | undefined;
|
|
91
90
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
92
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined
|
|
93
|
-
"aria-errormessage"?: string | undefined
|
|
91
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
92
|
+
"aria-errormessage"?: string | undefined;
|
|
94
93
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
95
|
-
"aria-flowto"?: string | undefined
|
|
94
|
+
"aria-flowto"?: string | undefined;
|
|
96
95
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
97
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined
|
|
96
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
98
97
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
99
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined
|
|
100
|
-
"aria-keyshortcuts"?: string | undefined
|
|
101
|
-
"aria-label"?: string | undefined
|
|
102
|
-
"aria-labelledby"?: string | undefined
|
|
103
|
-
"aria-level"?: number | undefined
|
|
104
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined
|
|
98
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
99
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
100
|
+
"aria-label"?: string | undefined;
|
|
101
|
+
"aria-labelledby"?: string | undefined;
|
|
102
|
+
"aria-level"?: number | undefined;
|
|
103
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
105
104
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
106
105
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
107
106
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
108
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined
|
|
109
|
-
"aria-owns"?: string | undefined
|
|
110
|
-
"aria-placeholder"?: string | undefined
|
|
111
|
-
"aria-posinset"?: number | undefined
|
|
112
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined
|
|
107
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
108
|
+
"aria-owns"?: string | undefined;
|
|
109
|
+
"aria-placeholder"?: string | undefined;
|
|
110
|
+
"aria-posinset"?: number | undefined;
|
|
111
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
113
112
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
114
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined
|
|
113
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
115
114
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
116
|
-
"aria-roledescription"?: string | undefined
|
|
117
|
-
"aria-rowcount"?: number | undefined
|
|
118
|
-
"aria-rowindex"?: number | undefined
|
|
119
|
-
"aria-rowindextext"?: string | undefined
|
|
120
|
-
"aria-rowspan"?: number | undefined
|
|
115
|
+
"aria-roledescription"?: string | undefined;
|
|
116
|
+
"aria-rowcount"?: number | undefined;
|
|
117
|
+
"aria-rowindex"?: number | undefined;
|
|
118
|
+
"aria-rowindextext"?: string | undefined;
|
|
119
|
+
"aria-rowspan"?: number | undefined;
|
|
121
120
|
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
122
|
-
"aria-setsize"?: number | undefined
|
|
123
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined
|
|
124
|
-
"aria-valuemax"?: number | undefined
|
|
125
|
-
"aria-valuemin"?: number | undefined
|
|
126
|
-
"aria-valuenow"?: number | undefined
|
|
127
|
-
"aria-valuetext"?: string | undefined
|
|
121
|
+
"aria-setsize"?: number | undefined;
|
|
122
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
123
|
+
"aria-valuemax"?: number | undefined;
|
|
124
|
+
"aria-valuemin"?: number | undefined;
|
|
125
|
+
"aria-valuenow"?: number | undefined;
|
|
126
|
+
"aria-valuetext"?: string | undefined;
|
|
128
127
|
dangerouslySetInnerHTML?: {
|
|
129
128
|
__html: string | TrustedHTML;
|
|
130
|
-
} | undefined
|
|
129
|
+
} | undefined;
|
|
131
130
|
onCopy?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
132
131
|
onCopyCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
133
132
|
onCut?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|