@sebgroup/green-core 3.5.0 → 3.6.2
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/components/checkbox/checkbox.component.js +12 -2
- package/components/dialog/dialog.component.js +5 -3
- package/components/form/form-control.d.ts +6 -0
- package/components/form/form-control.js +8 -0
- package/components/index.d.ts +1 -0
- package/components/index.js +1 -0
- package/components/segmented-control/segmented-control.component.js +9 -4
- package/components/switch/index.d.ts +1 -0
- package/components/switch/index.js +1 -0
- package/components/switch/switch.component.d.ts +44 -0
- package/components/switch/switch.component.js +185 -0
- package/components/switch/switch.d.ts +2 -0
- package/components/switch/switch.js +6 -0
- package/components/switch/switch.styles.d.ts +1 -0
- package/components/switch/switch.styles.js +239 -0
- package/custom-elements.json +30103 -29008
- package/gds-element.js +1 -1
- package/generated/mcp/components.json +14 -1
- package/generated/mcp/form-summary/guidelines.md +6 -2
- package/generated/mcp/icons.json +1 -1
- package/generated/mcp/index.json +1 -1
- package/generated/mcp/pagination/guidelines.md +16 -6
- package/generated/mcp/switch/angular.md +24 -0
- package/generated/mcp/switch/api.md +56 -0
- package/generated/mcp/switch/guidelines.md +35 -0
- package/generated/mcp/switch/index.json +9 -0
- package/generated/mcp/switch/react.md +24 -0
- package/generated/mcp/tokens.json +1 -1
- package/generated/react/index.d.ts +2 -1
- package/generated/react/index.js +2 -1
- package/generated/react/input/index.d.ts +1 -1
- package/generated/react/switch/index.d.ts +701 -0
- package/generated/react/switch/index.js +24 -0
- package/generated/react/textarea/index.d.ts +1 -1
- package/package.json +3 -1
- package/pure.d.ts +1 -0
- package/pure.js +1 -0
- package/utils/helpers/component-meta.d.ts +1 -0
- package/utils/helpers/component-meta.js +5 -4
- package/utils/helpers/custom-element-scoping.js +1 -1
|
@@ -0,0 +1,701 @@
|
|
|
1
|
+
import { GdsSwitch as GdsSwitchClass } from '../../../components/switch/switch.component';
|
|
2
|
+
import { getReactComponent } from '../../../utils/react';
|
|
3
|
+
type GdsSwitchProps = Omit<React.ComponentProps<ReturnType<typeof getReactComponent<GdsSwitchClass>>>, 'onChange' | 'onInput'> & {
|
|
4
|
+
/** Callback fired when the value changes. In React, this fires on every input (following React conventions). */
|
|
5
|
+
onChange?: (event: Event & {
|
|
6
|
+
target: EventTarget & GdsSwitchClass;
|
|
7
|
+
}) => void;
|
|
8
|
+
/** Callback fired on input events. */
|
|
9
|
+
onInput?: (event: Event & {
|
|
10
|
+
target: EventTarget & GdsSwitchClass;
|
|
11
|
+
}) => void;
|
|
12
|
+
};
|
|
13
|
+
export declare const GdsSwitch: {
|
|
14
|
+
(props: GdsSwitchProps & {
|
|
15
|
+
ref?: React.Ref<GdsSwitchClass>;
|
|
16
|
+
}): import("react").ReactElement<Omit<Omit<{
|
|
17
|
+
'align-self'?: string | undefined;
|
|
18
|
+
'justify-self'?: string | undefined;
|
|
19
|
+
'place-self'?: string | undefined;
|
|
20
|
+
'grid-column'?: string | undefined;
|
|
21
|
+
'grid-row'?: string | undefined;
|
|
22
|
+
'grid-area'?: string | undefined;
|
|
23
|
+
flex?: string | undefined;
|
|
24
|
+
order?: string | undefined;
|
|
25
|
+
margin?: string | undefined;
|
|
26
|
+
'margin-inline'?: string | undefined;
|
|
27
|
+
'margin-block'?: string | undefined;
|
|
28
|
+
width?: string | undefined;
|
|
29
|
+
'min-width'?: string | undefined;
|
|
30
|
+
'max-width'?: string | undefined;
|
|
31
|
+
'inline-size'?: string | undefined;
|
|
32
|
+
'min-inline-size'?: string | undefined;
|
|
33
|
+
'max-inline-size'?: string | undefined;
|
|
34
|
+
checked?: boolean | undefined;
|
|
35
|
+
controlPlacement?: "start" | "end" | undefined;
|
|
36
|
+
size?: "small" | "large" | undefined;
|
|
37
|
+
'justify-content'?: string | undefined;
|
|
38
|
+
value?: string | undefined;
|
|
39
|
+
focus?: ((options?: FocusOptions) => void) | undefined;
|
|
40
|
+
render?: (() => any) | undefined;
|
|
41
|
+
connectedCallback?: (() => void) | undefined;
|
|
42
|
+
validator?: import("../../../components/form/form-control").GdsValidator | undefined;
|
|
43
|
+
required?: boolean | undefined;
|
|
44
|
+
errorMessage?: string | undefined;
|
|
45
|
+
invalid?: boolean | undefined;
|
|
46
|
+
label?: string | undefined;
|
|
47
|
+
name?: string | undefined;
|
|
48
|
+
disabled?: boolean | undefined;
|
|
49
|
+
readonly form?: HTMLFormElement | null | undefined;
|
|
50
|
+
readonly validity?: ValidityState | undefined;
|
|
51
|
+
readonly validationMessage?: string | undefined;
|
|
52
|
+
readonly willValidate?: boolean | undefined;
|
|
53
|
+
checkValidity?: (() => boolean) | undefined;
|
|
54
|
+
reportValidity?: (() => boolean) | undefined;
|
|
55
|
+
readonly semanticVersion?: "__GDS_SEM_VER__" | undefined;
|
|
56
|
+
syncFirstRender?: boolean | undefined;
|
|
57
|
+
gdsElementName?: string | undefined;
|
|
58
|
+
_isUsingTransitionalStyles?: boolean | undefined;
|
|
59
|
+
_dynamicStylesController?: import("../../../utils/controllers/dynamic-styles-controller").DynamicStylesController | undefined;
|
|
60
|
+
disconnectedCallback?: (() => void) | undefined;
|
|
61
|
+
dispatchStandardEvent?: ((name: string, options?: EventInit) => boolean) | undefined;
|
|
62
|
+
dispatchCustomEvent?: (<T>(name: string, options?: CustomEventInit<T>) => boolean) | undefined;
|
|
63
|
+
readonly renderOptions?: import("lit-html").RenderOptions | undefined;
|
|
64
|
+
readonly renderRoot?: HTMLElement | DocumentFragment | undefined;
|
|
65
|
+
isUpdatePending?: boolean | undefined;
|
|
66
|
+
hasUpdated?: boolean | undefined;
|
|
67
|
+
addController?: ((controller: import("lit").ReactiveController) => void) | undefined;
|
|
68
|
+
removeController?: ((controller: import("lit").ReactiveController) => void) | undefined;
|
|
69
|
+
attributeChangedCallback?: ((name: string, _old: string | null, value: string | null) => void) | undefined;
|
|
70
|
+
requestUpdate?: ((name?: PropertyKey, oldValue?: unknown, options?: import("lit").PropertyDeclaration, useNewValue?: boolean, newValue?: unknown) => void) | undefined;
|
|
71
|
+
readonly updateComplete?: Promise<boolean> | undefined;
|
|
72
|
+
accessKey?: string | undefined;
|
|
73
|
+
readonly accessKeyLabel?: string | undefined;
|
|
74
|
+
autocapitalize?: string | undefined;
|
|
75
|
+
dir?: string | undefined;
|
|
76
|
+
draggable?: boolean | undefined;
|
|
77
|
+
hidden?: boolean | undefined;
|
|
78
|
+
inert?: boolean | undefined;
|
|
79
|
+
innerText?: string | undefined;
|
|
80
|
+
lang?: string | undefined;
|
|
81
|
+
readonly offsetHeight?: number | undefined;
|
|
82
|
+
readonly offsetLeft?: number | undefined;
|
|
83
|
+
readonly offsetParent?: Element | null | undefined;
|
|
84
|
+
readonly offsetTop?: number | undefined;
|
|
85
|
+
readonly offsetWidth?: number | undefined;
|
|
86
|
+
outerText?: string | undefined;
|
|
87
|
+
popover?: string | null | undefined;
|
|
88
|
+
spellcheck?: boolean | undefined;
|
|
89
|
+
title?: string | undefined;
|
|
90
|
+
translate?: boolean | undefined;
|
|
91
|
+
attachInternals?: (() => ElementInternals) | undefined;
|
|
92
|
+
click?: (() => void) | undefined;
|
|
93
|
+
hidePopover?: (() => void) | undefined;
|
|
94
|
+
showPopover?: (() => void) | undefined;
|
|
95
|
+
togglePopover?: ((force?: boolean) => boolean) | undefined;
|
|
96
|
+
addEventListener?: {
|
|
97
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
98
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
99
|
+
} | undefined;
|
|
100
|
+
removeEventListener?: {
|
|
101
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
102
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
103
|
+
} | undefined;
|
|
104
|
+
readonly attributes?: NamedNodeMap | undefined;
|
|
105
|
+
readonly classList?: DOMTokenList | undefined;
|
|
106
|
+
className?: string | undefined;
|
|
107
|
+
readonly clientHeight?: number | undefined;
|
|
108
|
+
readonly clientLeft?: number | undefined;
|
|
109
|
+
readonly clientTop?: number | undefined;
|
|
110
|
+
readonly clientWidth?: number | undefined;
|
|
111
|
+
id?: string | undefined;
|
|
112
|
+
readonly localName?: string | undefined;
|
|
113
|
+
readonly namespaceURI?: string | null | undefined;
|
|
114
|
+
onfullscreenchange?: ((this: Element, ev: Event) => any) | null | undefined;
|
|
115
|
+
onfullscreenerror?: ((this: Element, ev: Event) => any) | null | undefined;
|
|
116
|
+
outerHTML?: string | undefined;
|
|
117
|
+
readonly ownerDocument?: Document | undefined;
|
|
118
|
+
readonly part?: DOMTokenList | undefined;
|
|
119
|
+
readonly prefix?: string | null | undefined;
|
|
120
|
+
readonly scrollHeight?: number | undefined;
|
|
121
|
+
scrollLeft?: number | undefined;
|
|
122
|
+
scrollTop?: number | undefined;
|
|
123
|
+
readonly scrollWidth?: number | undefined;
|
|
124
|
+
readonly shadowRoot?: ShadowRoot | null | undefined;
|
|
125
|
+
slot?: string | undefined;
|
|
126
|
+
readonly tagName?: string | undefined;
|
|
127
|
+
attachShadow?: ((init: ShadowRootInit) => ShadowRoot) | undefined;
|
|
128
|
+
checkVisibility?: ((options?: CheckVisibilityOptions) => boolean) | undefined;
|
|
129
|
+
closest?: {
|
|
130
|
+
<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
131
|
+
<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
132
|
+
<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
133
|
+
<E extends Element = Element>(selectors: string): E | null;
|
|
134
|
+
} | undefined;
|
|
135
|
+
computedStyleMap?: (() => StylePropertyMapReadOnly) | undefined;
|
|
136
|
+
getAttribute?: ((qualifiedName: string) => string | null) | undefined;
|
|
137
|
+
getAttributeNS?: ((namespace: string | null, localName: string) => string | null) | undefined;
|
|
138
|
+
getAttributeNames?: (() => string[]) | undefined;
|
|
139
|
+
getAttributeNode?: ((qualifiedName: string) => Attr | null) | undefined;
|
|
140
|
+
getAttributeNodeNS?: ((namespace: string | null, localName: string) => Attr | null) | undefined;
|
|
141
|
+
getBoundingClientRect?: (() => DOMRect) | undefined;
|
|
142
|
+
getClientRects?: (() => DOMRectList) | undefined;
|
|
143
|
+
getElementsByClassName?: ((classNames: string) => HTMLCollectionOf<Element>) | undefined;
|
|
144
|
+
getElementsByTagName?: {
|
|
145
|
+
<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
146
|
+
<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
147
|
+
<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
148
|
+
<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
149
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
150
|
+
} | undefined;
|
|
151
|
+
getElementsByTagNameNS?: {
|
|
152
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
153
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
154
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
155
|
+
(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
156
|
+
} | undefined;
|
|
157
|
+
hasAttribute?: ((qualifiedName: string) => boolean) | undefined;
|
|
158
|
+
hasAttributeNS?: ((namespace: string | null, localName: string) => boolean) | undefined;
|
|
159
|
+
hasAttributes?: (() => boolean) | undefined;
|
|
160
|
+
hasPointerCapture?: ((pointerId: number) => boolean) | undefined;
|
|
161
|
+
insertAdjacentElement?: ((where: InsertPosition, element: Element) => Element | null) | undefined;
|
|
162
|
+
insertAdjacentHTML?: ((position: InsertPosition, text: string) => void) | undefined;
|
|
163
|
+
insertAdjacentText?: ((where: InsertPosition, data: string) => void) | undefined;
|
|
164
|
+
matches?: ((selectors: string) => boolean) | undefined;
|
|
165
|
+
releasePointerCapture?: ((pointerId: number) => void) | undefined;
|
|
166
|
+
removeAttribute?: ((qualifiedName: string) => void) | undefined;
|
|
167
|
+
removeAttributeNS?: ((namespace: string | null, localName: string) => void) | undefined;
|
|
168
|
+
removeAttributeNode?: ((attr: Attr) => Attr) | undefined;
|
|
169
|
+
requestFullscreen?: ((options?: FullscreenOptions) => Promise<void>) | undefined;
|
|
170
|
+
requestPointerLock?: (() => void) | undefined;
|
|
171
|
+
scroll?: {
|
|
172
|
+
(options?: ScrollToOptions): void;
|
|
173
|
+
(x: number, y: number): void;
|
|
174
|
+
} | undefined;
|
|
175
|
+
scrollBy?: {
|
|
176
|
+
(options?: ScrollToOptions): void;
|
|
177
|
+
(x: number, y: number): void;
|
|
178
|
+
} | undefined;
|
|
179
|
+
scrollIntoView?: ((arg?: boolean | ScrollIntoViewOptions) => void) | undefined;
|
|
180
|
+
scrollTo?: {
|
|
181
|
+
(options?: ScrollToOptions): void;
|
|
182
|
+
(x: number, y: number): void;
|
|
183
|
+
} | undefined;
|
|
184
|
+
setAttribute?: ((qualifiedName: string, value: string) => void) | undefined;
|
|
185
|
+
setAttributeNS?: ((namespace: string | null, qualifiedName: string, value: string) => void) | undefined;
|
|
186
|
+
setAttributeNode?: ((attr: Attr) => Attr | null) | undefined;
|
|
187
|
+
setAttributeNodeNS?: ((attr: Attr) => Attr | null) | undefined;
|
|
188
|
+
setHTMLUnsafe?: ((html: string) => void) | undefined;
|
|
189
|
+
setPointerCapture?: ((pointerId: number) => void) | undefined;
|
|
190
|
+
toggleAttribute?: ((qualifiedName: string, force?: boolean) => boolean) | undefined;
|
|
191
|
+
webkitMatchesSelector?: ((selectors: string) => boolean) | undefined;
|
|
192
|
+
readonly baseURI?: string | undefined;
|
|
193
|
+
readonly childNodes?: NodeListOf<ChildNode> | undefined;
|
|
194
|
+
readonly firstChild?: ChildNode | null | undefined;
|
|
195
|
+
readonly isConnected?: boolean | undefined;
|
|
196
|
+
readonly lastChild?: ChildNode | null | undefined;
|
|
197
|
+
readonly nextSibling?: ChildNode | null | undefined;
|
|
198
|
+
readonly nodeName?: string | undefined;
|
|
199
|
+
readonly nodeType?: number | undefined;
|
|
200
|
+
nodeValue?: string | null | undefined;
|
|
201
|
+
readonly parentElement?: HTMLElement | null | undefined;
|
|
202
|
+
readonly parentNode?: ParentNode | null | undefined;
|
|
203
|
+
readonly previousSibling?: ChildNode | null | undefined;
|
|
204
|
+
textContent?: string | null | undefined;
|
|
205
|
+
appendChild?: (<T extends Node>(node: T) => T) | undefined;
|
|
206
|
+
cloneNode?: ((deep?: boolean) => Node) | undefined;
|
|
207
|
+
compareDocumentPosition?: ((other: Node) => number) | undefined;
|
|
208
|
+
contains?: ((other: Node | null) => boolean) | undefined;
|
|
209
|
+
getRootNode?: ((options?: GetRootNodeOptions) => Node) | undefined;
|
|
210
|
+
hasChildNodes?: (() => boolean) | undefined;
|
|
211
|
+
insertBefore?: (<T extends Node>(node: T, child: Node | null) => T) | undefined;
|
|
212
|
+
isDefaultNamespace?: ((namespace: string | null) => boolean) | undefined;
|
|
213
|
+
isEqualNode?: ((otherNode: Node | null) => boolean) | undefined;
|
|
214
|
+
isSameNode?: ((otherNode: Node | null) => boolean) | undefined;
|
|
215
|
+
lookupNamespaceURI?: ((prefix: string | null) => string | null) | undefined;
|
|
216
|
+
lookupPrefix?: ((namespace: string | null) => string | null) | undefined;
|
|
217
|
+
normalize?: (() => void) | undefined;
|
|
218
|
+
removeChild?: (<T extends Node>(child: T) => T) | undefined;
|
|
219
|
+
replaceChild?: (<T extends Node>(node: Node, child: T) => T) | undefined;
|
|
220
|
+
readonly ELEMENT_NODE?: 1 | undefined;
|
|
221
|
+
readonly ATTRIBUTE_NODE?: 2 | undefined;
|
|
222
|
+
readonly TEXT_NODE?: 3 | undefined;
|
|
223
|
+
readonly CDATA_SECTION_NODE?: 4 | undefined;
|
|
224
|
+
readonly ENTITY_REFERENCE_NODE?: 5 | undefined;
|
|
225
|
+
readonly ENTITY_NODE?: 6 | undefined;
|
|
226
|
+
readonly PROCESSING_INSTRUCTION_NODE?: 7 | undefined;
|
|
227
|
+
readonly COMMENT_NODE?: 8 | undefined;
|
|
228
|
+
readonly DOCUMENT_NODE?: 9 | undefined;
|
|
229
|
+
readonly DOCUMENT_TYPE_NODE?: 10 | undefined;
|
|
230
|
+
readonly DOCUMENT_FRAGMENT_NODE?: 11 | undefined;
|
|
231
|
+
readonly NOTATION_NODE?: 12 | undefined;
|
|
232
|
+
readonly DOCUMENT_POSITION_DISCONNECTED?: 1 | undefined;
|
|
233
|
+
readonly DOCUMENT_POSITION_PRECEDING?: 2 | undefined;
|
|
234
|
+
readonly DOCUMENT_POSITION_FOLLOWING?: 4 | undefined;
|
|
235
|
+
readonly DOCUMENT_POSITION_CONTAINS?: 8 | undefined;
|
|
236
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY?: 16 | undefined;
|
|
237
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC?: 32 | undefined;
|
|
238
|
+
dispatchEvent?: ((event: Event) => boolean) | undefined;
|
|
239
|
+
ariaAtomic?: string | null | undefined;
|
|
240
|
+
ariaAutoComplete?: string | null | undefined;
|
|
241
|
+
ariaBrailleLabel?: string | null | undefined;
|
|
242
|
+
ariaBrailleRoleDescription?: string | null | undefined;
|
|
243
|
+
ariaBusy?: string | null | undefined;
|
|
244
|
+
ariaChecked?: string | null | undefined;
|
|
245
|
+
ariaColCount?: string | null | undefined;
|
|
246
|
+
ariaColIndex?: string | null | undefined;
|
|
247
|
+
ariaColSpan?: string | null | undefined;
|
|
248
|
+
ariaCurrent?: string | null | undefined;
|
|
249
|
+
ariaDescription?: string | null | undefined;
|
|
250
|
+
ariaDisabled?: string | null | undefined;
|
|
251
|
+
ariaExpanded?: string | null | undefined;
|
|
252
|
+
ariaHasPopup?: string | null | undefined;
|
|
253
|
+
ariaHidden?: string | null | undefined;
|
|
254
|
+
ariaInvalid?: string | null | undefined;
|
|
255
|
+
ariaKeyShortcuts?: string | null | undefined;
|
|
256
|
+
ariaLabel?: string | null | undefined;
|
|
257
|
+
ariaLevel?: string | null | undefined;
|
|
258
|
+
ariaLive?: string | null | undefined;
|
|
259
|
+
ariaModal?: string | null | undefined;
|
|
260
|
+
ariaMultiLine?: string | null | undefined;
|
|
261
|
+
ariaMultiSelectable?: string | null | undefined;
|
|
262
|
+
ariaOrientation?: string | null | undefined;
|
|
263
|
+
ariaPlaceholder?: string | null | undefined;
|
|
264
|
+
ariaPosInSet?: string | null | undefined;
|
|
265
|
+
ariaPressed?: string | null | undefined;
|
|
266
|
+
ariaReadOnly?: string | null | undefined;
|
|
267
|
+
ariaRequired?: string | null | undefined;
|
|
268
|
+
ariaRoleDescription?: string | null | undefined;
|
|
269
|
+
ariaRowCount?: string | null | undefined;
|
|
270
|
+
ariaRowIndex?: string | null | undefined;
|
|
271
|
+
ariaRowSpan?: string | null | undefined;
|
|
272
|
+
ariaSelected?: string | null | undefined;
|
|
273
|
+
ariaSetSize?: string | null | undefined;
|
|
274
|
+
ariaSort?: string | null | undefined;
|
|
275
|
+
ariaValueMax?: string | null | undefined;
|
|
276
|
+
ariaValueMin?: string | null | undefined;
|
|
277
|
+
ariaValueNow?: string | null | undefined;
|
|
278
|
+
ariaValueText?: string | null | undefined;
|
|
279
|
+
role?: string | null | undefined;
|
|
280
|
+
animate?: ((keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions) => Animation) | undefined;
|
|
281
|
+
getAnimations?: ((options?: GetAnimationsOptions) => Animation[]) | undefined;
|
|
282
|
+
after?: ((...nodes: (Node | string)[]) => void) | undefined;
|
|
283
|
+
before?: ((...nodes: (Node | string)[]) => void) | undefined;
|
|
284
|
+
remove?: (() => void) | undefined;
|
|
285
|
+
replaceWith?: ((...nodes: (Node | string)[]) => void) | undefined;
|
|
286
|
+
innerHTML?: string | undefined;
|
|
287
|
+
readonly nextElementSibling?: Element | null | undefined;
|
|
288
|
+
readonly previousElementSibling?: Element | null | undefined;
|
|
289
|
+
readonly childElementCount?: number | undefined;
|
|
290
|
+
readonly children?: HTMLCollection | undefined;
|
|
291
|
+
readonly firstElementChild?: Element | null | undefined;
|
|
292
|
+
readonly lastElementChild?: Element | null | undefined;
|
|
293
|
+
append?: ((...nodes: (Node | string)[]) => void) | undefined;
|
|
294
|
+
prepend?: ((...nodes: (Node | string)[]) => void) | undefined;
|
|
295
|
+
querySelector?: {
|
|
296
|
+
<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
297
|
+
<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
298
|
+
<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
299
|
+
<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
300
|
+
<E extends Element = Element>(selectors: string): E | null;
|
|
301
|
+
} | undefined;
|
|
302
|
+
querySelectorAll?: {
|
|
303
|
+
<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
304
|
+
<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
305
|
+
<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
306
|
+
<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
307
|
+
<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
308
|
+
} | undefined;
|
|
309
|
+
replaceChildren?: ((...nodes: (Node | string)[]) => void) | undefined;
|
|
310
|
+
readonly assignedSlot?: HTMLSlotElement | null | undefined;
|
|
311
|
+
readonly attributeStyleMap?: StylePropertyMap | undefined;
|
|
312
|
+
readonly style?: CSSStyleDeclaration | undefined;
|
|
313
|
+
contentEditable?: string | undefined;
|
|
314
|
+
enterKeyHint?: string | undefined;
|
|
315
|
+
inputMode?: string | undefined;
|
|
316
|
+
readonly isContentEditable?: boolean | undefined;
|
|
317
|
+
onabort?: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null | undefined;
|
|
318
|
+
onanimationcancel?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
|
|
319
|
+
onanimationend?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
|
|
320
|
+
onanimationiteration?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
|
|
321
|
+
onanimationstart?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
|
|
322
|
+
onauxclick?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
|
|
323
|
+
onbeforeinput?: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null | undefined;
|
|
324
|
+
onbeforetoggle?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
325
|
+
onblur?: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null | undefined;
|
|
326
|
+
oncancel?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
327
|
+
oncanplay?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
328
|
+
oncanplaythrough?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
329
|
+
onchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
330
|
+
onclick?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
|
|
331
|
+
onclose?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
332
|
+
oncontextmenu?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
|
|
333
|
+
oncopy?: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null | undefined;
|
|
334
|
+
oncuechange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
335
|
+
oncut?: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null | undefined;
|
|
336
|
+
ondblclick?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
|
|
337
|
+
ondrag?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
|
|
338
|
+
ondragend?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
|
|
339
|
+
ondragenter?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
|
|
340
|
+
ondragleave?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
|
|
341
|
+
ondragover?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
|
|
342
|
+
ondragstart?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
|
|
343
|
+
ondrop?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
|
|
344
|
+
ondurationchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
345
|
+
onemptied?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
346
|
+
onended?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
347
|
+
onerror?: OnErrorEventHandler | undefined;
|
|
348
|
+
onfocus?: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null | undefined;
|
|
349
|
+
onformdata?: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null | undefined;
|
|
350
|
+
ongotpointercapture?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
351
|
+
oninput?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
352
|
+
oninvalid?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
353
|
+
onkeydown?: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null | undefined;
|
|
354
|
+
onkeypress?: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null | undefined;
|
|
355
|
+
onkeyup?: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null | undefined;
|
|
356
|
+
onload?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
357
|
+
onloadeddata?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
358
|
+
onloadedmetadata?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
359
|
+
onloadstart?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
360
|
+
onlostpointercapture?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
361
|
+
onmousedown?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
|
|
362
|
+
onmouseenter?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
|
|
363
|
+
onmouseleave?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
|
|
364
|
+
onmousemove?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
|
|
365
|
+
onmouseout?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
|
|
366
|
+
onmouseover?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
|
|
367
|
+
onmouseup?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
|
|
368
|
+
onpaste?: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null | undefined;
|
|
369
|
+
onpause?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
370
|
+
onplay?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
371
|
+
onplaying?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
372
|
+
onpointercancel?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
373
|
+
onpointerdown?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
374
|
+
onpointerenter?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
375
|
+
onpointerleave?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
376
|
+
onpointermove?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
377
|
+
onpointerout?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
378
|
+
onpointerover?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
379
|
+
onpointerup?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
380
|
+
onprogress?: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null | undefined;
|
|
381
|
+
onratechange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
382
|
+
onreset?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
383
|
+
onresize?: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null | undefined;
|
|
384
|
+
onscroll?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
385
|
+
onscrollend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
386
|
+
onsecuritypolicyviolation?: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null | undefined;
|
|
387
|
+
onseeked?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
388
|
+
onseeking?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
389
|
+
onselect?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
390
|
+
onselectionchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
391
|
+
onselectstart?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
392
|
+
onslotchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
393
|
+
onstalled?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
394
|
+
onsubmit?: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null | undefined;
|
|
395
|
+
onsuspend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
396
|
+
ontimeupdate?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
397
|
+
ontoggle?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
398
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
399
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
400
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
401
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
402
|
+
ontransitioncancel?: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null | undefined;
|
|
403
|
+
ontransitionend?: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null | undefined;
|
|
404
|
+
ontransitionrun?: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null | undefined;
|
|
405
|
+
ontransitionstart?: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null | undefined;
|
|
406
|
+
onvolumechange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
407
|
+
onwaiting?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
408
|
+
onwebkitanimationend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
409
|
+
onwebkitanimationiteration?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
410
|
+
onwebkitanimationstart?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
411
|
+
onwebkittransitionend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
412
|
+
onwheel?: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null | undefined;
|
|
413
|
+
autofocus?: boolean | undefined;
|
|
414
|
+
readonly dataset?: DOMStringMap | undefined;
|
|
415
|
+
nonce?: string | undefined;
|
|
416
|
+
tabIndex?: number | undefined;
|
|
417
|
+
blur?: (() => void) | undefined;
|
|
418
|
+
}, "dir" | "slot" | "style" | "title" | "role" | "aria-label" | "property" | "content" | "color" | "accessKey" | "draggable" | "hidden" | "inert" | "lang" | "popover" | "translate" | "className" | "id" | "prefix" | "contentEditable" | "enterKeyHint" | "inputMode" | "nonce" | "tabIndex" | "aria-selected" | "defaultChecked" | "defaultValue" | "popoverTargetAction" | "aria-haspopup" | "aria-expanded" | "rel" | "aria-multiselectable" | "aria-valuemin" | "aria-valuemax" | "aria-valuetext" | "aria-checked" | "aria-disabled" | "aria-description" | "aria-invalid" | "aria-describedby" | "aria-live" | "onToggle" | "resource" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "autoCapitalize" | "autoFocus" | "contextMenu" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popoverTarget" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-details" | "aria-dropeffect" | "aria-errormessage" | "aria-flowto" | "aria-grabbed" | "aria-hidden" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-modal" | "aria-multiline" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-setsize" | "aria-sort" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture">, "children"> & {
|
|
419
|
+
children?: import("react").ReactNode;
|
|
420
|
+
} & {
|
|
421
|
+
dir?: string | undefined;
|
|
422
|
+
slot?: string | undefined;
|
|
423
|
+
style?: import("react").CSSProperties | undefined;
|
|
424
|
+
title?: string | undefined;
|
|
425
|
+
role?: import("react").AriaRole | undefined;
|
|
426
|
+
"aria-label"?: string | undefined;
|
|
427
|
+
property?: string | undefined;
|
|
428
|
+
content?: string | undefined;
|
|
429
|
+
color?: string | undefined;
|
|
430
|
+
accessKey?: string | undefined;
|
|
431
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
432
|
+
hidden?: boolean | undefined;
|
|
433
|
+
inert?: boolean | undefined;
|
|
434
|
+
lang?: string | undefined;
|
|
435
|
+
popover?: "" | "auto" | "manual" | undefined;
|
|
436
|
+
translate?: "yes" | "no" | undefined;
|
|
437
|
+
className?: string | undefined;
|
|
438
|
+
id?: string | undefined;
|
|
439
|
+
prefix?: string | undefined;
|
|
440
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
441
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
442
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
443
|
+
nonce?: string | undefined;
|
|
444
|
+
tabIndex?: number | undefined;
|
|
445
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
446
|
+
defaultChecked?: boolean | undefined;
|
|
447
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
448
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
449
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
450
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
451
|
+
rel?: string | undefined;
|
|
452
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
453
|
+
"aria-valuemin"?: number | undefined;
|
|
454
|
+
"aria-valuemax"?: number | undefined;
|
|
455
|
+
"aria-valuetext"?: string | undefined;
|
|
456
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
457
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
458
|
+
"aria-description"?: string | undefined;
|
|
459
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
460
|
+
"aria-describedby"?: string | undefined;
|
|
461
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
462
|
+
onToggle?: import("react").ToggleEventHandler<HTMLElement> | undefined;
|
|
463
|
+
resource?: string | undefined;
|
|
464
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
465
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
466
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
467
|
+
autoFocus?: boolean | undefined;
|
|
468
|
+
contextMenu?: string | undefined;
|
|
469
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
470
|
+
radioGroup?: string | undefined;
|
|
471
|
+
about?: string | undefined;
|
|
472
|
+
datatype?: string | undefined;
|
|
473
|
+
inlist?: any;
|
|
474
|
+
rev?: string | undefined;
|
|
475
|
+
typeof?: string | undefined;
|
|
476
|
+
vocab?: string | undefined;
|
|
477
|
+
autoCorrect?: string | undefined;
|
|
478
|
+
autoSave?: string | undefined;
|
|
479
|
+
itemProp?: string | undefined;
|
|
480
|
+
itemScope?: boolean | undefined;
|
|
481
|
+
itemType?: string | undefined;
|
|
482
|
+
itemID?: string | undefined;
|
|
483
|
+
itemRef?: string | undefined;
|
|
484
|
+
results?: number | undefined;
|
|
485
|
+
security?: string | undefined;
|
|
486
|
+
unselectable?: "on" | "off" | undefined;
|
|
487
|
+
popoverTarget?: string | undefined;
|
|
488
|
+
is?: string | undefined;
|
|
489
|
+
"aria-activedescendant"?: string | undefined;
|
|
490
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
491
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
492
|
+
"aria-braillelabel"?: string | undefined;
|
|
493
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
494
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
495
|
+
"aria-colcount"?: number | undefined;
|
|
496
|
+
"aria-colindex"?: number | undefined;
|
|
497
|
+
"aria-colindextext"?: string | undefined;
|
|
498
|
+
"aria-colspan"?: number | undefined;
|
|
499
|
+
"aria-controls"?: string | undefined;
|
|
500
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
501
|
+
"aria-details"?: string | undefined;
|
|
502
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
503
|
+
"aria-errormessage"?: string | undefined;
|
|
504
|
+
"aria-flowto"?: string | undefined;
|
|
505
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
506
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
507
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
508
|
+
"aria-labelledby"?: string | undefined;
|
|
509
|
+
"aria-level"?: number | undefined;
|
|
510
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
511
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
512
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
513
|
+
"aria-owns"?: string | undefined;
|
|
514
|
+
"aria-placeholder"?: string | undefined;
|
|
515
|
+
"aria-posinset"?: number | undefined;
|
|
516
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
517
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
518
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
519
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
520
|
+
"aria-roledescription"?: string | undefined;
|
|
521
|
+
"aria-rowcount"?: number | undefined;
|
|
522
|
+
"aria-rowindex"?: number | undefined;
|
|
523
|
+
"aria-rowindextext"?: string | undefined;
|
|
524
|
+
"aria-rowspan"?: number | undefined;
|
|
525
|
+
"aria-setsize"?: number | undefined;
|
|
526
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
527
|
+
"aria-valuenow"?: number | undefined;
|
|
528
|
+
dangerouslySetInnerHTML?: {
|
|
529
|
+
__html: string | TrustedHTML;
|
|
530
|
+
} | undefined;
|
|
531
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
532
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
533
|
+
onCut?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
534
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
535
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
536
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
537
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
538
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
539
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
540
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
541
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
542
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
543
|
+
onFocus?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
544
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
545
|
+
onBlur?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
546
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
547
|
+
onChange?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
548
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
549
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
550
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
551
|
+
onInput?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
552
|
+
onInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
553
|
+
onReset?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
554
|
+
onResetCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
555
|
+
onSubmit?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
556
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
557
|
+
onInvalid?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
558
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
559
|
+
onLoad?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
560
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
561
|
+
onError?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
562
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
563
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
564
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
565
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
566
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
567
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
568
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
569
|
+
onAbort?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
570
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
571
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
572
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
573
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
574
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
575
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
576
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
577
|
+
onEmptied?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
578
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
579
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
580
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
581
|
+
onEnded?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
582
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
583
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
584
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
585
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
586
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
587
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
588
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
589
|
+
onPause?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
590
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
591
|
+
onPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
592
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
593
|
+
onPlaying?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
594
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
595
|
+
onProgress?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
596
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
597
|
+
onRateChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
598
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
599
|
+
onResize?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
600
|
+
onResizeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
601
|
+
onSeeked?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
602
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
603
|
+
onSeeking?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
604
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
605
|
+
onStalled?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
606
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
607
|
+
onSuspend?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
608
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
609
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
610
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
611
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
612
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
613
|
+
onWaiting?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
614
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
615
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
616
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
617
|
+
onClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
618
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
619
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
620
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
621
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
622
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
623
|
+
onDrag?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
624
|
+
onDragCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
625
|
+
onDragEnd?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
626
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
627
|
+
onDragEnter?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
628
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
629
|
+
onDragExit?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
630
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
631
|
+
onDragLeave?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
632
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
633
|
+
onDragOver?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
634
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
635
|
+
onDragStart?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
636
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
637
|
+
onDrop?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
638
|
+
onDropCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
639
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
640
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
641
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
642
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
643
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
644
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
645
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
646
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
647
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
648
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
649
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
650
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
651
|
+
onSelect?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
652
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
653
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
654
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
655
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
656
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
657
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
658
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
659
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
660
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
661
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
662
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
663
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
664
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
665
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
666
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
667
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
668
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
669
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
670
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
671
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
672
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
673
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
674
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
675
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
676
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
677
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
678
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
679
|
+
onScroll?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
680
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
681
|
+
onWheel?: import("react").WheelEventHandler<HTMLElement> | undefined;
|
|
682
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLElement> | undefined;
|
|
683
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
684
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
685
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
686
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
687
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
688
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
689
|
+
onBeforeToggle?: import("react").ToggleEventHandler<HTMLElement> | undefined;
|
|
690
|
+
onTransitionCancel?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
691
|
+
onTransitionCancelCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
692
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
693
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
694
|
+
onTransitionRun?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
695
|
+
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
696
|
+
onTransitionStart?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
697
|
+
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
698
|
+
} & import("react").RefAttributes<HTMLElement>, string | import("react").JSXElementConstructor<any>>;
|
|
699
|
+
displayName: string;
|
|
700
|
+
};
|
|
701
|
+
export {};
|