@swc-react/tags 0.31.0 → 0.31.1-react.3

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/next.d.ts ADDED
@@ -0,0 +1,1170 @@
1
+ /// <reference types="react" />
2
+ export declare const Tag: import("react").ComponentType<Partial<{
3
+ dir?: string | undefined;
4
+ slot?: string | undefined;
5
+ style?: import("react").CSSProperties | undefined;
6
+ title?: string | undefined;
7
+ tabIndex?: number | undefined;
8
+ id?: string | undefined;
9
+ className?: string | undefined;
10
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
11
+ role?: import("react").AriaRole | undefined;
12
+ 'aria-label'?: string | undefined;
13
+ defaultChecked?: boolean | undefined;
14
+ defaultValue?: string | number | readonly string[] | undefined;
15
+ suppressContentEditableWarning?: boolean | undefined;
16
+ suppressHydrationWarning?: boolean | undefined;
17
+ accessKey?: string | undefined;
18
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
19
+ contextMenu?: string | undefined;
20
+ draggable?: (boolean | "true" | "false") | undefined;
21
+ hidden?: boolean | undefined;
22
+ lang?: string | undefined;
23
+ nonce?: string | undefined;
24
+ placeholder?: string | undefined;
25
+ spellCheck?: (boolean | "true" | "false") | undefined;
26
+ translate?: "yes" | "no" | undefined;
27
+ radioGroup?: string | undefined;
28
+ about?: string | undefined;
29
+ datatype?: string | undefined;
30
+ inlist?: any;
31
+ prefix?: string | undefined;
32
+ property?: string | undefined;
33
+ resource?: string | undefined;
34
+ typeof?: string | undefined;
35
+ vocab?: string | undefined;
36
+ autoCapitalize?: string | undefined;
37
+ autoCorrect?: string | undefined;
38
+ autoSave?: string | undefined;
39
+ color?: string | undefined;
40
+ itemProp?: string | undefined;
41
+ itemScope?: boolean | undefined;
42
+ itemType?: string | undefined;
43
+ itemID?: string | undefined;
44
+ itemRef?: string | undefined;
45
+ results?: number | undefined;
46
+ security?: string | undefined;
47
+ unselectable?: "on" | "off" | undefined;
48
+ inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
49
+ is?: string | undefined;
50
+ 'aria-activedescendant'?: string | undefined;
51
+ 'aria-atomic'?: (boolean | "true" | "false") | undefined;
52
+ 'aria-autocomplete'?: "both" | "none" | "list" | "inline" | undefined;
53
+ 'aria-busy'?: (boolean | "true" | "false") | undefined;
54
+ 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
55
+ 'aria-colcount'?: number | undefined;
56
+ 'aria-colindex'?: number | undefined;
57
+ 'aria-colspan'?: number | undefined;
58
+ 'aria-controls'?: string | undefined;
59
+ 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
60
+ 'aria-describedby'?: string | undefined;
61
+ 'aria-details'?: string | undefined;
62
+ 'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
63
+ 'aria-errormessage'?: string | undefined;
64
+ 'aria-expanded'?: (boolean | "true" | "false") | undefined;
65
+ 'aria-flowto'?: string | undefined;
66
+ 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
67
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "true" | "false" | "listbox" | "tree" | undefined;
68
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
69
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
70
+ 'aria-keyshortcuts'?: string | undefined;
71
+ 'aria-labelledby'?: string | undefined;
72
+ 'aria-level'?: number | undefined;
73
+ 'aria-live'?: "off" | "assertive" | "polite" | undefined;
74
+ 'aria-modal'?: (boolean | "true" | "false") | undefined;
75
+ 'aria-multiline'?: (boolean | "true" | "false") | undefined;
76
+ 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
77
+ 'aria-orientation'?: "horizontal" | "vertical" | undefined;
78
+ 'aria-owns'?: string | undefined;
79
+ 'aria-placeholder'?: string | undefined;
80
+ 'aria-posinset'?: number | undefined;
81
+ 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
82
+ 'aria-readonly'?: (boolean | "true" | "false") | undefined;
83
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
84
+ 'aria-required'?: (boolean | "true" | "false") | undefined;
85
+ 'aria-roledescription'?: string | undefined;
86
+ 'aria-rowcount'?: number | undefined;
87
+ 'aria-rowindex'?: number | undefined;
88
+ 'aria-rowspan'?: number | undefined;
89
+ 'aria-selected'?: (boolean | "true" | "false") | undefined;
90
+ 'aria-setsize'?: number | undefined;
91
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
92
+ 'aria-valuemax'?: number | undefined;
93
+ 'aria-valuemin'?: number | undefined;
94
+ 'aria-valuenow'?: number | undefined;
95
+ 'aria-valuetext'?: string | undefined;
96
+ children?: import("react").ReactNode;
97
+ dangerouslySetInnerHTML?: {
98
+ __html: string;
99
+ } | undefined;
100
+ onCopy?: import("react").ClipboardEventHandler<import("tags/src").Tag> | undefined;
101
+ onCopyCapture?: import("react").ClipboardEventHandler<import("tags/src").Tag> | undefined;
102
+ onCut?: import("react").ClipboardEventHandler<import("tags/src").Tag> | undefined;
103
+ onCutCapture?: import("react").ClipboardEventHandler<import("tags/src").Tag> | undefined;
104
+ onPaste?: import("react").ClipboardEventHandler<import("tags/src").Tag> | undefined;
105
+ onPasteCapture?: import("react").ClipboardEventHandler<import("tags/src").Tag> | undefined;
106
+ onCompositionEnd?: import("react").CompositionEventHandler<import("tags/src").Tag> | undefined;
107
+ onCompositionEndCapture?: import("react").CompositionEventHandler<import("tags/src").Tag> | undefined;
108
+ onCompositionStart?: import("react").CompositionEventHandler<import("tags/src").Tag> | undefined;
109
+ onCompositionStartCapture?: import("react").CompositionEventHandler<import("tags/src").Tag> | undefined;
110
+ onCompositionUpdate?: import("react").CompositionEventHandler<import("tags/src").Tag> | undefined;
111
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<import("tags/src").Tag> | undefined;
112
+ onFocus?: import("react").FocusEventHandler<import("tags/src").Tag> | undefined;
113
+ onFocusCapture?: import("react").FocusEventHandler<import("tags/src").Tag> | undefined;
114
+ onBlur?: import("react").FocusEventHandler<import("tags/src").Tag> | undefined;
115
+ onBlurCapture?: import("react").FocusEventHandler<import("tags/src").Tag> | undefined;
116
+ onChange?: import("react").FormEventHandler<import("tags/src").Tag> | undefined;
117
+ onChangeCapture?: import("react").FormEventHandler<import("tags/src").Tag> | undefined;
118
+ onBeforeInput?: import("react").FormEventHandler<import("tags/src").Tag> | undefined;
119
+ onBeforeInputCapture?: import("react").FormEventHandler<import("tags/src").Tag> | undefined;
120
+ onInput?: import("react").FormEventHandler<import("tags/src").Tag> | undefined;
121
+ onInputCapture?: import("react").FormEventHandler<import("tags/src").Tag> | undefined;
122
+ onReset?: import("react").FormEventHandler<import("tags/src").Tag> | undefined;
123
+ onResetCapture?: import("react").FormEventHandler<import("tags/src").Tag> | undefined;
124
+ onSubmit?: import("react").FormEventHandler<import("tags/src").Tag> | undefined;
125
+ onSubmitCapture?: import("react").FormEventHandler<import("tags/src").Tag> | undefined;
126
+ onInvalid?: import("react").FormEventHandler<import("tags/src").Tag> | undefined;
127
+ onInvalidCapture?: import("react").FormEventHandler<import("tags/src").Tag> | undefined;
128
+ onLoad?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
129
+ onLoadCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
130
+ onError?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
131
+ onErrorCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
132
+ onKeyDown?: import("react").KeyboardEventHandler<import("tags/src").Tag> | undefined;
133
+ onKeyDownCapture?: import("react").KeyboardEventHandler<import("tags/src").Tag> | undefined;
134
+ onKeyPress?: import("react").KeyboardEventHandler<import("tags/src").Tag> | undefined;
135
+ onKeyPressCapture?: import("react").KeyboardEventHandler<import("tags/src").Tag> | undefined;
136
+ onKeyUp?: import("react").KeyboardEventHandler<import("tags/src").Tag> | undefined;
137
+ onKeyUpCapture?: import("react").KeyboardEventHandler<import("tags/src").Tag> | undefined;
138
+ onAbort?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
139
+ onAbortCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
140
+ onCanPlay?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
141
+ onCanPlayCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
142
+ onCanPlayThrough?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
143
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
144
+ onDurationChange?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
145
+ onDurationChangeCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
146
+ onEmptied?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
147
+ onEmptiedCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
148
+ onEncrypted?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
149
+ onEncryptedCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
150
+ onEnded?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
151
+ onEndedCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
152
+ onLoadedData?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
153
+ onLoadedDataCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
154
+ onLoadedMetadata?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
155
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
156
+ onLoadStart?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
157
+ onLoadStartCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
158
+ onPause?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
159
+ onPauseCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
160
+ onPlay?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
161
+ onPlayCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
162
+ onPlaying?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
163
+ onPlayingCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
164
+ onProgress?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
165
+ onProgressCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
166
+ onRateChange?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
167
+ onRateChangeCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
168
+ onResize?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
169
+ onResizeCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
170
+ onSeeked?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
171
+ onSeekedCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
172
+ onSeeking?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
173
+ onSeekingCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
174
+ onStalled?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
175
+ onStalledCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
176
+ onSuspend?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
177
+ onSuspendCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
178
+ onTimeUpdate?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
179
+ onTimeUpdateCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
180
+ onVolumeChange?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
181
+ onVolumeChangeCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
182
+ onWaiting?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
183
+ onWaitingCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
184
+ onAuxClick?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
185
+ onAuxClickCapture?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
186
+ onClick?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
187
+ onClickCapture?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
188
+ onContextMenu?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
189
+ onContextMenuCapture?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
190
+ onDoubleClick?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
191
+ onDoubleClickCapture?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
192
+ onDrag?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
193
+ onDragCapture?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
194
+ onDragEnd?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
195
+ onDragEndCapture?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
196
+ onDragEnter?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
197
+ onDragEnterCapture?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
198
+ onDragExit?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
199
+ onDragExitCapture?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
200
+ onDragLeave?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
201
+ onDragLeaveCapture?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
202
+ onDragOver?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
203
+ onDragOverCapture?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
204
+ onDragStart?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
205
+ onDragStartCapture?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
206
+ onDrop?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
207
+ onDropCapture?: import("react").DragEventHandler<import("tags/src").Tag> | undefined;
208
+ onMouseDown?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
209
+ onMouseDownCapture?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
210
+ onMouseEnter?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
211
+ onMouseLeave?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
212
+ onMouseMove?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
213
+ onMouseMoveCapture?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
214
+ onMouseOut?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
215
+ onMouseOutCapture?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
216
+ onMouseOver?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
217
+ onMouseOverCapture?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
218
+ onMouseUp?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
219
+ onMouseUpCapture?: import("react").MouseEventHandler<import("tags/src").Tag> | undefined;
220
+ onSelect?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
221
+ onSelectCapture?: import("react").ReactEventHandler<import("tags/src").Tag> | undefined;
222
+ onTouchCancel?: import("react").TouchEventHandler<import("tags/src").Tag> | undefined;
223
+ onTouchCancelCapture?: import("react").TouchEventHandler<import("tags/src").Tag> | undefined;
224
+ onTouchEnd?: import("react").TouchEventHandler<import("tags/src").Tag> | undefined;
225
+ onTouchEndCapture?: import("react").TouchEventHandler<import("tags/src").Tag> | undefined;
226
+ onTouchMove?: import("react").TouchEventHandler<import("tags/src").Tag> | undefined;
227
+ onTouchMoveCapture?: import("react").TouchEventHandler<import("tags/src").Tag> | undefined;
228
+ onTouchStart?: import("react").TouchEventHandler<import("tags/src").Tag> | undefined;
229
+ onTouchStartCapture?: import("react").TouchEventHandler<import("tags/src").Tag> | undefined;
230
+ onPointerDown?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
231
+ onPointerDownCapture?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
232
+ onPointerMove?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
233
+ onPointerMoveCapture?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
234
+ onPointerUp?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
235
+ onPointerUpCapture?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
236
+ onPointerCancel?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
237
+ onPointerCancelCapture?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
238
+ onPointerEnter?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
239
+ onPointerEnterCapture?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
240
+ onPointerLeave?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
241
+ onPointerLeaveCapture?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
242
+ onPointerOver?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
243
+ onPointerOverCapture?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
244
+ onPointerOut?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
245
+ onPointerOutCapture?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
246
+ onGotPointerCapture?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
247
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
248
+ onLostPointerCapture?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
249
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<import("tags/src").Tag> | undefined;
250
+ onScroll?: import("react").UIEventHandler<import("tags/src").Tag> | undefined;
251
+ onScrollCapture?: import("react").UIEventHandler<import("tags/src").Tag> | undefined;
252
+ onWheel?: import("react").WheelEventHandler<import("tags/src").Tag> | undefined;
253
+ onWheelCapture?: import("react").WheelEventHandler<import("tags/src").Tag> | undefined;
254
+ onAnimationStart?: import("react").AnimationEventHandler<import("tags/src").Tag> | undefined;
255
+ onAnimationStartCapture?: import("react").AnimationEventHandler<import("tags/src").Tag> | undefined;
256
+ onAnimationEnd?: import("react").AnimationEventHandler<import("tags/src").Tag> | undefined;
257
+ onAnimationEndCapture?: import("react").AnimationEventHandler<import("tags/src").Tag> | undefined;
258
+ onAnimationIteration?: import("react").AnimationEventHandler<import("tags/src").Tag> | undefined;
259
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<import("tags/src").Tag> | undefined;
260
+ onTransitionEnd?: import("react").TransitionEventHandler<import("tags/src").Tag> | undefined;
261
+ onTransitionEndCapture?: import("react").TransitionEventHandler<import("tags/src").Tag> | undefined;
262
+ } & {
263
+ readonly attributes: NamedNodeMap;
264
+ readonly localName: string;
265
+ size: import("@spectrum-web-components/base").ElementSize;
266
+ animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
267
+ blur: () => void;
268
+ click: () => void;
269
+ focus: (options?: FocusOptions | undefined) => void;
270
+ scroll: {
271
+ (options?: ScrollToOptions | undefined): void;
272
+ (x: number, y: number): void;
273
+ };
274
+ ariaHidden: string | null;
275
+ disabled: boolean;
276
+ autofocus: boolean;
277
+ normalize: () => void;
278
+ readonly childNodes: NodeListOf<ChildNode>;
279
+ deletable: boolean;
280
+ readonly: boolean;
281
+ readonly accessKeyLabel: string;
282
+ autocapitalize: string;
283
+ inert: boolean;
284
+ innerText: string;
285
+ readonly offsetHeight: number;
286
+ readonly offsetLeft: number;
287
+ readonly offsetParent: Element | null;
288
+ readonly offsetTop: number;
289
+ readonly offsetWidth: number;
290
+ outerText: string;
291
+ spellcheck: boolean;
292
+ attachInternals: () => ElementInternals;
293
+ addEventListener: {
294
+ <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
295
+ (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
296
+ };
297
+ removeEventListener: {
298
+ <K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
299
+ (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
300
+ };
301
+ readonly classList: DOMTokenList;
302
+ readonly clientHeight: number;
303
+ readonly clientLeft: number;
304
+ readonly clientTop: number;
305
+ readonly clientWidth: number;
306
+ readonly namespaceURI: string | null;
307
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
308
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
309
+ outerHTML: string;
310
+ readonly ownerDocument: Document;
311
+ readonly part: DOMTokenList;
312
+ readonly scrollHeight: number;
313
+ scrollLeft: number;
314
+ scrollTop: number;
315
+ readonly scrollWidth: number;
316
+ shadowRoot: ShadowRoot;
317
+ readonly tagName: string;
318
+ attachShadow: (init: ShadowRootInit) => ShadowRoot;
319
+ closest: {
320
+ <K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
321
+ <K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
322
+ <E extends Element = Element>(selectors: string): E | null;
323
+ };
324
+ getAttribute: (qualifiedName: string) => string | null;
325
+ getAttributeNS: (namespace: string | null, localName: string) => string | null;
326
+ getAttributeNames: () => string[];
327
+ getAttributeNode: (qualifiedName: string) => Attr | null;
328
+ getAttributeNodeNS: (namespace: string | null, localName: string) => Attr | null;
329
+ getBoundingClientRect: () => DOMRect;
330
+ getClientRects: () => DOMRectList;
331
+ getElementsByClassName: (classNames: string) => HTMLCollectionOf<Element>;
332
+ getElementsByTagName: {
333
+ <K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
334
+ <K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
335
+ (qualifiedName: string): HTMLCollectionOf<Element>;
336
+ };
337
+ getElementsByTagNameNS: {
338
+ (namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
339
+ (namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
340
+ (namespace: string | null, localName: string): HTMLCollectionOf<Element>;
341
+ };
342
+ hasAttribute: (qualifiedName: string) => boolean;
343
+ hasAttributeNS: (namespace: string | null, localName: string) => boolean;
344
+ hasAttributes: () => boolean;
345
+ hasPointerCapture: (pointerId: number) => boolean;
346
+ insertAdjacentElement: (where: InsertPosition, element: Element) => Element | null;
347
+ insertAdjacentHTML: (position: InsertPosition, text: string) => void;
348
+ insertAdjacentText: (where: InsertPosition, data: string) => void;
349
+ matches: (selectors: string) => boolean;
350
+ releasePointerCapture: (pointerId: number) => void;
351
+ removeAttribute: (qualifiedName: string) => void;
352
+ removeAttributeNS: (namespace: string | null, localName: string) => void;
353
+ removeAttributeNode: (attr: Attr) => Attr;
354
+ requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
355
+ requestPointerLock: () => void;
356
+ scrollBy: {
357
+ (options?: ScrollToOptions | undefined): void;
358
+ (x: number, y: number): void;
359
+ };
360
+ scrollIntoView: (arg?: boolean | ScrollIntoViewOptions | undefined) => void;
361
+ scrollTo: {
362
+ (options?: ScrollToOptions | undefined): void;
363
+ (x: number, y: number): void;
364
+ };
365
+ setAttribute: (qualifiedName: string, value: string) => void;
366
+ setAttributeNS: (namespace: string | null, qualifiedName: string, value: string) => void;
367
+ setAttributeNode: (attr: Attr) => Attr | null;
368
+ setAttributeNodeNS: (attr: Attr) => Attr | null;
369
+ setPointerCapture: (pointerId: number) => void;
370
+ toggleAttribute: (qualifiedName: string, force?: boolean | undefined) => boolean;
371
+ webkitMatchesSelector: (selectors: string) => boolean;
372
+ readonly baseURI: string;
373
+ readonly firstChild: ChildNode | null;
374
+ readonly isConnected: boolean;
375
+ readonly lastChild: ChildNode | null;
376
+ readonly nextSibling: ChildNode | null;
377
+ readonly nodeName: string;
378
+ readonly nodeType: number;
379
+ nodeValue: string | null;
380
+ readonly parentElement: HTMLElement | null;
381
+ readonly parentNode: ParentNode | null;
382
+ readonly previousSibling: ChildNode | null;
383
+ textContent: string | null;
384
+ appendChild: <T extends Node>(node: T) => T;
385
+ cloneNode: (deep?: boolean | undefined) => Node;
386
+ compareDocumentPosition: (other: Node) => number;
387
+ contains: (other: Node | null) => boolean;
388
+ getRootNode: (options?: GetRootNodeOptions | undefined) => Node;
389
+ hasChildNodes: () => boolean;
390
+ insertBefore: <T_1 extends Node>(node: T_1, child: Node | null) => T_1;
391
+ isDefaultNamespace: (namespace: string | null) => boolean;
392
+ isEqualNode: (otherNode: Node | null) => boolean;
393
+ isSameNode: (otherNode: Node | null) => boolean;
394
+ lookupNamespaceURI: (prefix: string | null) => string | null;
395
+ lookupPrefix: (namespace: string | null) => string | null;
396
+ removeChild: <T_2 extends Node>(child: T_2) => T_2;
397
+ replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
398
+ readonly ATTRIBUTE_NODE: number;
399
+ readonly CDATA_SECTION_NODE: number;
400
+ readonly COMMENT_NODE: number;
401
+ readonly DOCUMENT_FRAGMENT_NODE: number;
402
+ readonly DOCUMENT_NODE: number;
403
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
404
+ readonly DOCUMENT_POSITION_CONTAINS: number;
405
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
406
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
407
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
408
+ readonly DOCUMENT_POSITION_PRECEDING: number;
409
+ readonly DOCUMENT_TYPE_NODE: number;
410
+ readonly ELEMENT_NODE: number;
411
+ readonly ENTITY_NODE: number;
412
+ readonly ENTITY_REFERENCE_NODE: number;
413
+ readonly NOTATION_NODE: number;
414
+ readonly PROCESSING_INSTRUCTION_NODE: number;
415
+ readonly TEXT_NODE: number;
416
+ dispatchEvent: (event: Event) => boolean;
417
+ ariaAtomic: string | null;
418
+ ariaAutoComplete: string | null;
419
+ ariaBusy: string | null;
420
+ ariaChecked: string | null;
421
+ ariaColCount: string | null;
422
+ ariaColIndex: string | null;
423
+ ariaColSpan: string | null;
424
+ ariaCurrent: string | null;
425
+ ariaDisabled: string | null;
426
+ ariaExpanded: string | null;
427
+ ariaHasPopup: string | null;
428
+ ariaKeyShortcuts: string | null;
429
+ ariaLabel: string | null;
430
+ ariaLevel: string | null;
431
+ ariaLive: string | null;
432
+ ariaModal: string | null;
433
+ ariaMultiLine: string | null;
434
+ ariaMultiSelectable: string | null;
435
+ ariaOrientation: string | null;
436
+ ariaPlaceholder: string | null;
437
+ ariaPosInSet: string | null;
438
+ ariaPressed: string | null;
439
+ ariaReadOnly: string | null;
440
+ ariaRequired: string | null;
441
+ ariaRoleDescription: string | null;
442
+ ariaRowCount: string | null;
443
+ ariaRowIndex: string | null;
444
+ ariaRowSpan: string | null;
445
+ ariaSelected: string | null;
446
+ ariaSetSize: string | null;
447
+ ariaSort: string | null;
448
+ ariaValueMax: string | null;
449
+ ariaValueMin: string | null;
450
+ ariaValueNow: string | null;
451
+ ariaValueText: string | null;
452
+ getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
453
+ after: (...nodes: (string | Node)[]) => void;
454
+ before: (...nodes: (string | Node)[]) => void;
455
+ remove: () => void;
456
+ replaceWith: (...nodes: (string | Node)[]) => void;
457
+ innerHTML: string;
458
+ readonly nextElementSibling: Element | null;
459
+ readonly previousElementSibling: Element | null;
460
+ readonly childElementCount: number;
461
+ readonly firstElementChild: Element | null;
462
+ readonly lastElementChild: Element | null;
463
+ append: (...nodes: (string | Node)[]) => void;
464
+ prepend: (...nodes: (string | Node)[]) => void;
465
+ querySelector: {
466
+ <K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6] | null;
467
+ <K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7] | null;
468
+ <E_1 extends Element = Element>(selectors: string): E_1 | null;
469
+ };
470
+ querySelectorAll: {
471
+ <K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
472
+ <K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
473
+ <E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
474
+ };
475
+ replaceChildren: (...nodes: (string | Node)[]) => void;
476
+ readonly assignedSlot: HTMLSlotElement | null;
477
+ oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
478
+ oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
479
+ onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
480
+ enterKeyHint: string;
481
+ readonly isContentEditable: boolean;
482
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
483
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
484
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
485
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
486
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
487
+ onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
488
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
489
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
490
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
491
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
492
+ onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
493
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
494
+ oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
495
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
496
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
497
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
498
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
499
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
500
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
501
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
502
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
503
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
504
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
505
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
506
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
507
+ onerror: OnErrorEventHandler;
508
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
509
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
510
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
511
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
512
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
513
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
514
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
515
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
516
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
517
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
518
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
519
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
520
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
521
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
522
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
523
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
524
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
525
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
526
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
527
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
528
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
529
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
530
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
531
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
532
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
533
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
534
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
535
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
536
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
537
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
538
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
539
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
540
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
541
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
542
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
543
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
544
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
545
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
546
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
547
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
548
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
549
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
550
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
551
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
552
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
553
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
554
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
555
+ ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
556
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
557
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
558
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
559
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
560
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
561
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
562
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
563
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
564
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
565
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
566
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
567
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
568
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
569
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
570
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
571
+ readonly dataset: DOMStringMap;
572
+ readonly renderOptions: import("lit-html").RenderOptions;
573
+ connectedCallback: () => void;
574
+ disconnectedCallback: () => void;
575
+ readonly renderRoot: HTMLElement | ShadowRoot;
576
+ isUpdatePending: boolean;
577
+ hasUpdated: boolean;
578
+ addController: (controller: import("lit").ReactiveController) => void;
579
+ removeController: (controller: import("lit").ReactiveController) => void;
580
+ attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
581
+ requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
582
+ readonly updateComplete: Promise<boolean>;
583
+ isLTR: boolean;
584
+ hasVisibleFocusInTree: () => boolean;
585
+ } & {
586
+ delete: (e: Event) => void;
587
+ }> & import("react").RefAttributes<import("tags/src").Tag>>;
588
+ export declare const Tags: import("react").ComponentType<Partial<{
589
+ dir?: string | undefined;
590
+ slot?: string | undefined;
591
+ style?: import("react").CSSProperties | undefined;
592
+ title?: string | undefined;
593
+ tabIndex?: number | undefined;
594
+ id?: string | undefined;
595
+ className?: string | undefined;
596
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
597
+ role?: import("react").AriaRole | undefined;
598
+ 'aria-label'?: string | undefined;
599
+ defaultChecked?: boolean | undefined;
600
+ defaultValue?: string | number | readonly string[] | undefined;
601
+ suppressContentEditableWarning?: boolean | undefined;
602
+ suppressHydrationWarning?: boolean | undefined;
603
+ accessKey?: string | undefined;
604
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
605
+ contextMenu?: string | undefined;
606
+ draggable?: (boolean | "true" | "false") | undefined;
607
+ hidden?: boolean | undefined;
608
+ lang?: string | undefined;
609
+ nonce?: string | undefined;
610
+ placeholder?: string | undefined;
611
+ spellCheck?: (boolean | "true" | "false") | undefined;
612
+ translate?: "yes" | "no" | undefined;
613
+ radioGroup?: string | undefined;
614
+ about?: string | undefined;
615
+ datatype?: string | undefined;
616
+ inlist?: any;
617
+ prefix?: string | undefined;
618
+ property?: string | undefined;
619
+ resource?: string | undefined;
620
+ typeof?: string | undefined;
621
+ vocab?: string | undefined;
622
+ autoCapitalize?: string | undefined;
623
+ autoCorrect?: string | undefined;
624
+ autoSave?: string | undefined;
625
+ color?: string | undefined;
626
+ itemProp?: string | undefined;
627
+ itemScope?: boolean | undefined;
628
+ itemType?: string | undefined;
629
+ itemID?: string | undefined;
630
+ itemRef?: string | undefined;
631
+ results?: number | undefined;
632
+ security?: string | undefined;
633
+ unselectable?: "on" | "off" | undefined;
634
+ inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
635
+ is?: string | undefined;
636
+ 'aria-activedescendant'?: string | undefined;
637
+ 'aria-atomic'?: (boolean | "true" | "false") | undefined;
638
+ 'aria-autocomplete'?: "both" | "none" | "list" | "inline" | undefined;
639
+ 'aria-busy'?: (boolean | "true" | "false") | undefined;
640
+ 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
641
+ 'aria-colcount'?: number | undefined;
642
+ 'aria-colindex'?: number | undefined;
643
+ 'aria-colspan'?: number | undefined;
644
+ 'aria-controls'?: string | undefined;
645
+ 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
646
+ 'aria-describedby'?: string | undefined;
647
+ 'aria-details'?: string | undefined;
648
+ 'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
649
+ 'aria-errormessage'?: string | undefined;
650
+ 'aria-expanded'?: (boolean | "true" | "false") | undefined;
651
+ 'aria-flowto'?: string | undefined;
652
+ 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
653
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "true" | "false" | "listbox" | "tree" | undefined;
654
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
655
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
656
+ 'aria-keyshortcuts'?: string | undefined;
657
+ 'aria-labelledby'?: string | undefined;
658
+ 'aria-level'?: number | undefined;
659
+ 'aria-live'?: "off" | "assertive" | "polite" | undefined;
660
+ 'aria-modal'?: (boolean | "true" | "false") | undefined;
661
+ 'aria-multiline'?: (boolean | "true" | "false") | undefined;
662
+ 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
663
+ 'aria-orientation'?: "horizontal" | "vertical" | undefined;
664
+ 'aria-owns'?: string | undefined;
665
+ 'aria-placeholder'?: string | undefined;
666
+ 'aria-posinset'?: number | undefined;
667
+ 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
668
+ 'aria-readonly'?: (boolean | "true" | "false") | undefined;
669
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
670
+ 'aria-required'?: (boolean | "true" | "false") | undefined;
671
+ 'aria-roledescription'?: string | undefined;
672
+ 'aria-rowcount'?: number | undefined;
673
+ 'aria-rowindex'?: number | undefined;
674
+ 'aria-rowspan'?: number | undefined;
675
+ 'aria-selected'?: (boolean | "true" | "false") | undefined;
676
+ 'aria-setsize'?: number | undefined;
677
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
678
+ 'aria-valuemax'?: number | undefined;
679
+ 'aria-valuemin'?: number | undefined;
680
+ 'aria-valuenow'?: number | undefined;
681
+ 'aria-valuetext'?: string | undefined;
682
+ children?: import("react").ReactNode;
683
+ dangerouslySetInnerHTML?: {
684
+ __html: string;
685
+ } | undefined;
686
+ onCopy?: import("react").ClipboardEventHandler<import("tags/src").Tags> | undefined;
687
+ onCopyCapture?: import("react").ClipboardEventHandler<import("tags/src").Tags> | undefined;
688
+ onCut?: import("react").ClipboardEventHandler<import("tags/src").Tags> | undefined;
689
+ onCutCapture?: import("react").ClipboardEventHandler<import("tags/src").Tags> | undefined;
690
+ onPaste?: import("react").ClipboardEventHandler<import("tags/src").Tags> | undefined;
691
+ onPasteCapture?: import("react").ClipboardEventHandler<import("tags/src").Tags> | undefined;
692
+ onCompositionEnd?: import("react").CompositionEventHandler<import("tags/src").Tags> | undefined;
693
+ onCompositionEndCapture?: import("react").CompositionEventHandler<import("tags/src").Tags> | undefined;
694
+ onCompositionStart?: import("react").CompositionEventHandler<import("tags/src").Tags> | undefined;
695
+ onCompositionStartCapture?: import("react").CompositionEventHandler<import("tags/src").Tags> | undefined;
696
+ onCompositionUpdate?: import("react").CompositionEventHandler<import("tags/src").Tags> | undefined;
697
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<import("tags/src").Tags> | undefined;
698
+ onFocus?: import("react").FocusEventHandler<import("tags/src").Tags> | undefined;
699
+ onFocusCapture?: import("react").FocusEventHandler<import("tags/src").Tags> | undefined;
700
+ onBlur?: import("react").FocusEventHandler<import("tags/src").Tags> | undefined;
701
+ onBlurCapture?: import("react").FocusEventHandler<import("tags/src").Tags> | undefined;
702
+ onChange?: import("react").FormEventHandler<import("tags/src").Tags> | undefined;
703
+ onChangeCapture?: import("react").FormEventHandler<import("tags/src").Tags> | undefined;
704
+ onBeforeInput?: import("react").FormEventHandler<import("tags/src").Tags> | undefined;
705
+ onBeforeInputCapture?: import("react").FormEventHandler<import("tags/src").Tags> | undefined;
706
+ onInput?: import("react").FormEventHandler<import("tags/src").Tags> | undefined;
707
+ onInputCapture?: import("react").FormEventHandler<import("tags/src").Tags> | undefined;
708
+ onReset?: import("react").FormEventHandler<import("tags/src").Tags> | undefined;
709
+ onResetCapture?: import("react").FormEventHandler<import("tags/src").Tags> | undefined;
710
+ onSubmit?: import("react").FormEventHandler<import("tags/src").Tags> | undefined;
711
+ onSubmitCapture?: import("react").FormEventHandler<import("tags/src").Tags> | undefined;
712
+ onInvalid?: import("react").FormEventHandler<import("tags/src").Tags> | undefined;
713
+ onInvalidCapture?: import("react").FormEventHandler<import("tags/src").Tags> | undefined;
714
+ onLoad?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
715
+ onLoadCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
716
+ onError?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
717
+ onErrorCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
718
+ onKeyDown?: import("react").KeyboardEventHandler<import("tags/src").Tags> | undefined;
719
+ onKeyDownCapture?: import("react").KeyboardEventHandler<import("tags/src").Tags> | undefined;
720
+ onKeyPress?: import("react").KeyboardEventHandler<import("tags/src").Tags> | undefined;
721
+ onKeyPressCapture?: import("react").KeyboardEventHandler<import("tags/src").Tags> | undefined;
722
+ onKeyUp?: import("react").KeyboardEventHandler<import("tags/src").Tags> | undefined;
723
+ onKeyUpCapture?: import("react").KeyboardEventHandler<import("tags/src").Tags> | undefined;
724
+ onAbort?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
725
+ onAbortCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
726
+ onCanPlay?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
727
+ onCanPlayCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
728
+ onCanPlayThrough?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
729
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
730
+ onDurationChange?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
731
+ onDurationChangeCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
732
+ onEmptied?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
733
+ onEmptiedCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
734
+ onEncrypted?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
735
+ onEncryptedCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
736
+ onEnded?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
737
+ onEndedCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
738
+ onLoadedData?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
739
+ onLoadedDataCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
740
+ onLoadedMetadata?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
741
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
742
+ onLoadStart?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
743
+ onLoadStartCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
744
+ onPause?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
745
+ onPauseCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
746
+ onPlay?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
747
+ onPlayCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
748
+ onPlaying?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
749
+ onPlayingCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
750
+ onProgress?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
751
+ onProgressCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
752
+ onRateChange?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
753
+ onRateChangeCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
754
+ onResize?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
755
+ onResizeCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
756
+ onSeeked?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
757
+ onSeekedCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
758
+ onSeeking?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
759
+ onSeekingCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
760
+ onStalled?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
761
+ onStalledCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
762
+ onSuspend?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
763
+ onSuspendCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
764
+ onTimeUpdate?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
765
+ onTimeUpdateCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
766
+ onVolumeChange?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
767
+ onVolumeChangeCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
768
+ onWaiting?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
769
+ onWaitingCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
770
+ onAuxClick?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
771
+ onAuxClickCapture?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
772
+ onClick?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
773
+ onClickCapture?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
774
+ onContextMenu?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
775
+ onContextMenuCapture?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
776
+ onDoubleClick?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
777
+ onDoubleClickCapture?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
778
+ onDrag?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
779
+ onDragCapture?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
780
+ onDragEnd?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
781
+ onDragEndCapture?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
782
+ onDragEnter?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
783
+ onDragEnterCapture?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
784
+ onDragExit?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
785
+ onDragExitCapture?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
786
+ onDragLeave?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
787
+ onDragLeaveCapture?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
788
+ onDragOver?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
789
+ onDragOverCapture?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
790
+ onDragStart?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
791
+ onDragStartCapture?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
792
+ onDrop?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
793
+ onDropCapture?: import("react").DragEventHandler<import("tags/src").Tags> | undefined;
794
+ onMouseDown?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
795
+ onMouseDownCapture?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
796
+ onMouseEnter?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
797
+ onMouseLeave?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
798
+ onMouseMove?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
799
+ onMouseMoveCapture?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
800
+ onMouseOut?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
801
+ onMouseOutCapture?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
802
+ onMouseOver?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
803
+ onMouseOverCapture?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
804
+ onMouseUp?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
805
+ onMouseUpCapture?: import("react").MouseEventHandler<import("tags/src").Tags> | undefined;
806
+ onSelect?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
807
+ onSelectCapture?: import("react").ReactEventHandler<import("tags/src").Tags> | undefined;
808
+ onTouchCancel?: import("react").TouchEventHandler<import("tags/src").Tags> | undefined;
809
+ onTouchCancelCapture?: import("react").TouchEventHandler<import("tags/src").Tags> | undefined;
810
+ onTouchEnd?: import("react").TouchEventHandler<import("tags/src").Tags> | undefined;
811
+ onTouchEndCapture?: import("react").TouchEventHandler<import("tags/src").Tags> | undefined;
812
+ onTouchMove?: import("react").TouchEventHandler<import("tags/src").Tags> | undefined;
813
+ onTouchMoveCapture?: import("react").TouchEventHandler<import("tags/src").Tags> | undefined;
814
+ onTouchStart?: import("react").TouchEventHandler<import("tags/src").Tags> | undefined;
815
+ onTouchStartCapture?: import("react").TouchEventHandler<import("tags/src").Tags> | undefined;
816
+ onPointerDown?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
817
+ onPointerDownCapture?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
818
+ onPointerMove?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
819
+ onPointerMoveCapture?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
820
+ onPointerUp?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
821
+ onPointerUpCapture?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
822
+ onPointerCancel?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
823
+ onPointerCancelCapture?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
824
+ onPointerEnter?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
825
+ onPointerEnterCapture?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
826
+ onPointerLeave?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
827
+ onPointerLeaveCapture?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
828
+ onPointerOver?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
829
+ onPointerOverCapture?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
830
+ onPointerOut?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
831
+ onPointerOutCapture?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
832
+ onGotPointerCapture?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
833
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
834
+ onLostPointerCapture?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
835
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<import("tags/src").Tags> | undefined;
836
+ onScroll?: import("react").UIEventHandler<import("tags/src").Tags> | undefined;
837
+ onScrollCapture?: import("react").UIEventHandler<import("tags/src").Tags> | undefined;
838
+ onWheel?: import("react").WheelEventHandler<import("tags/src").Tags> | undefined;
839
+ onWheelCapture?: import("react").WheelEventHandler<import("tags/src").Tags> | undefined;
840
+ onAnimationStart?: import("react").AnimationEventHandler<import("tags/src").Tags> | undefined;
841
+ onAnimationStartCapture?: import("react").AnimationEventHandler<import("tags/src").Tags> | undefined;
842
+ onAnimationEnd?: import("react").AnimationEventHandler<import("tags/src").Tags> | undefined;
843
+ onAnimationEndCapture?: import("react").AnimationEventHandler<import("tags/src").Tags> | undefined;
844
+ onAnimationIteration?: import("react").AnimationEventHandler<import("tags/src").Tags> | undefined;
845
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<import("tags/src").Tags> | undefined;
846
+ onTransitionEnd?: import("react").TransitionEventHandler<import("tags/src").Tags> | undefined;
847
+ onTransitionEndCapture?: import("react").TransitionEventHandler<import("tags/src").Tags> | undefined;
848
+ } & {
849
+ readonly attributes: NamedNodeMap;
850
+ readonly localName: string;
851
+ animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
852
+ blur: () => void;
853
+ click: () => void;
854
+ focus: () => void;
855
+ scroll: {
856
+ (options?: ScrollToOptions | undefined): void;
857
+ (x: number, y: number): void;
858
+ };
859
+ ariaHidden: string | null;
860
+ autofocus: boolean;
861
+ normalize: () => void;
862
+ readonly childNodes: NodeListOf<ChildNode>;
863
+ readonly accessKeyLabel: string;
864
+ autocapitalize: string;
865
+ inert: boolean;
866
+ innerText: string;
867
+ readonly offsetHeight: number;
868
+ readonly offsetLeft: number;
869
+ readonly offsetParent: Element | null;
870
+ readonly offsetTop: number;
871
+ readonly offsetWidth: number;
872
+ outerText: string;
873
+ spellcheck: boolean;
874
+ attachInternals: () => ElementInternals;
875
+ addEventListener: {
876
+ <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
877
+ (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
878
+ };
879
+ removeEventListener: {
880
+ <K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
881
+ (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
882
+ };
883
+ readonly classList: DOMTokenList;
884
+ readonly clientHeight: number;
885
+ readonly clientLeft: number;
886
+ readonly clientTop: number;
887
+ readonly clientWidth: number;
888
+ readonly namespaceURI: string | null;
889
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
890
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
891
+ outerHTML: string;
892
+ readonly ownerDocument: Document;
893
+ readonly part: DOMTokenList;
894
+ readonly scrollHeight: number;
895
+ scrollLeft: number;
896
+ scrollTop: number;
897
+ readonly scrollWidth: number;
898
+ shadowRoot: ShadowRoot;
899
+ readonly tagName: string;
900
+ attachShadow: (init: ShadowRootInit) => ShadowRoot;
901
+ closest: {
902
+ <K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
903
+ <K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
904
+ <E extends Element = Element>(selectors: string): E | null;
905
+ };
906
+ getAttribute: (qualifiedName: string) => string | null;
907
+ getAttributeNS: (namespace: string | null, localName: string) => string | null;
908
+ getAttributeNames: () => string[];
909
+ getAttributeNode: (qualifiedName: string) => Attr | null;
910
+ getAttributeNodeNS: (namespace: string | null, localName: string) => Attr | null;
911
+ getBoundingClientRect: () => DOMRect;
912
+ getClientRects: () => DOMRectList;
913
+ getElementsByClassName: (classNames: string) => HTMLCollectionOf<Element>;
914
+ getElementsByTagName: {
915
+ <K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
916
+ <K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
917
+ (qualifiedName: string): HTMLCollectionOf<Element>;
918
+ };
919
+ getElementsByTagNameNS: {
920
+ (namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
921
+ (namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
922
+ (namespace: string | null, localName: string): HTMLCollectionOf<Element>;
923
+ };
924
+ hasAttribute: (qualifiedName: string) => boolean;
925
+ hasAttributeNS: (namespace: string | null, localName: string) => boolean;
926
+ hasAttributes: () => boolean;
927
+ hasPointerCapture: (pointerId: number) => boolean;
928
+ insertAdjacentElement: (where: InsertPosition, element: Element) => Element | null;
929
+ insertAdjacentHTML: (position: InsertPosition, text: string) => void;
930
+ insertAdjacentText: (where: InsertPosition, data: string) => void;
931
+ matches: (selectors: string) => boolean;
932
+ releasePointerCapture: (pointerId: number) => void;
933
+ removeAttribute: (qualifiedName: string) => void;
934
+ removeAttributeNS: (namespace: string | null, localName: string) => void;
935
+ removeAttributeNode: (attr: Attr) => Attr;
936
+ requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
937
+ requestPointerLock: () => void;
938
+ scrollBy: {
939
+ (options?: ScrollToOptions | undefined): void;
940
+ (x: number, y: number): void;
941
+ };
942
+ scrollIntoView: (arg?: boolean | ScrollIntoViewOptions | undefined) => void;
943
+ scrollTo: {
944
+ (options?: ScrollToOptions | undefined): void;
945
+ (x: number, y: number): void;
946
+ };
947
+ setAttribute: (qualifiedName: string, value: string) => void;
948
+ setAttributeNS: (namespace: string | null, qualifiedName: string, value: string) => void;
949
+ setAttributeNode: (attr: Attr) => Attr | null;
950
+ setAttributeNodeNS: (attr: Attr) => Attr | null;
951
+ setPointerCapture: (pointerId: number) => void;
952
+ toggleAttribute: (qualifiedName: string, force?: boolean | undefined) => boolean;
953
+ webkitMatchesSelector: (selectors: string) => boolean;
954
+ readonly baseURI: string;
955
+ readonly firstChild: ChildNode | null;
956
+ readonly isConnected: boolean;
957
+ readonly lastChild: ChildNode | null;
958
+ readonly nextSibling: ChildNode | null;
959
+ readonly nodeName: string;
960
+ readonly nodeType: number;
961
+ nodeValue: string | null;
962
+ readonly parentElement: HTMLElement | null;
963
+ readonly parentNode: ParentNode | null;
964
+ readonly previousSibling: ChildNode | null;
965
+ textContent: string | null;
966
+ appendChild: <T extends Node>(node: T) => T;
967
+ cloneNode: (deep?: boolean | undefined) => Node;
968
+ compareDocumentPosition: (other: Node) => number;
969
+ contains: (other: Node | null) => boolean;
970
+ getRootNode: (options?: GetRootNodeOptions | undefined) => Node;
971
+ hasChildNodes: () => boolean;
972
+ insertBefore: <T extends Node>(node: T, child: Node | null) => T;
973
+ isDefaultNamespace: (namespace: string | null) => boolean;
974
+ isEqualNode: (otherNode: Node | null) => boolean;
975
+ isSameNode: (otherNode: Node | null) => boolean;
976
+ lookupNamespaceURI: (prefix: string | null) => string | null;
977
+ lookupPrefix: (namespace: string | null) => string | null;
978
+ removeChild: <T_2 extends Node>(child: T_2) => T_2;
979
+ replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
980
+ readonly ATTRIBUTE_NODE: number;
981
+ readonly CDATA_SECTION_NODE: number;
982
+ readonly COMMENT_NODE: number;
983
+ readonly DOCUMENT_FRAGMENT_NODE: number;
984
+ readonly DOCUMENT_NODE: number;
985
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
986
+ readonly DOCUMENT_POSITION_CONTAINS: number;
987
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
988
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
989
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
990
+ readonly DOCUMENT_POSITION_PRECEDING: number;
991
+ readonly DOCUMENT_TYPE_NODE: number;
992
+ readonly ELEMENT_NODE: number;
993
+ readonly ENTITY_NODE: number;
994
+ readonly ENTITY_REFERENCE_NODE: number;
995
+ readonly NOTATION_NODE: number;
996
+ readonly PROCESSING_INSTRUCTION_NODE: number;
997
+ readonly TEXT_NODE: number;
998
+ dispatchEvent: (event: Event) => boolean;
999
+ ariaAtomic: string | null;
1000
+ ariaAutoComplete: string | null;
1001
+ ariaBusy: string | null;
1002
+ ariaChecked: string | null;
1003
+ ariaColCount: string | null;
1004
+ ariaColIndex: string | null;
1005
+ ariaColSpan: string | null;
1006
+ ariaCurrent: string | null;
1007
+ ariaDisabled: string | null;
1008
+ ariaExpanded: string | null;
1009
+ ariaHasPopup: string | null;
1010
+ ariaKeyShortcuts: string | null;
1011
+ ariaLabel: string | null;
1012
+ ariaLevel: string | null;
1013
+ ariaLive: string | null;
1014
+ ariaModal: string | null;
1015
+ ariaMultiLine: string | null;
1016
+ ariaMultiSelectable: string | null;
1017
+ ariaOrientation: string | null;
1018
+ ariaPlaceholder: string | null;
1019
+ ariaPosInSet: string | null;
1020
+ ariaPressed: string | null;
1021
+ ariaReadOnly: string | null;
1022
+ ariaRequired: string | null;
1023
+ ariaRoleDescription: string | null;
1024
+ ariaRowCount: string | null;
1025
+ ariaRowIndex: string | null;
1026
+ ariaRowSpan: string | null;
1027
+ ariaSelected: string | null;
1028
+ ariaSetSize: string | null;
1029
+ ariaSort: string | null;
1030
+ ariaValueMax: string | null;
1031
+ ariaValueMin: string | null;
1032
+ ariaValueNow: string | null;
1033
+ ariaValueText: string | null;
1034
+ getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
1035
+ after: (...nodes: (string | Node)[]) => void;
1036
+ before: (...nodes: (string | Node)[]) => void;
1037
+ remove: () => void;
1038
+ replaceWith: (...nodes: (string | Node)[]) => void;
1039
+ innerHTML: string;
1040
+ readonly nextElementSibling: Element | null;
1041
+ readonly previousElementSibling: Element | null;
1042
+ readonly childElementCount: number;
1043
+ readonly firstElementChild: Element | null;
1044
+ readonly lastElementChild: Element | null;
1045
+ append: (...nodes: (string | Node)[]) => void;
1046
+ prepend: (...nodes: (string | Node)[]) => void;
1047
+ querySelector: {
1048
+ <K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6] | null;
1049
+ <K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7] | null;
1050
+ <E_1 extends Element = Element>(selectors: string): E_1 | null;
1051
+ };
1052
+ querySelectorAll: {
1053
+ <K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
1054
+ <K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
1055
+ <E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
1056
+ };
1057
+ replaceChildren: (...nodes: (string | Node)[]) => void;
1058
+ readonly assignedSlot: HTMLSlotElement | null;
1059
+ oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
1060
+ oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
1061
+ onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
1062
+ enterKeyHint: string;
1063
+ readonly isContentEditable: boolean;
1064
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1065
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1066
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1067
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1068
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1069
+ onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1070
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1071
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1072
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1073
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1074
+ onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1075
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1076
+ oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1077
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1078
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1079
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1080
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1081
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1082
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1083
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1084
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1085
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1086
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1087
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1088
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1089
+ onerror: OnErrorEventHandler;
1090
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1091
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
1092
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1093
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1094
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1095
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1096
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1097
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1098
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1099
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1100
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1101
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1102
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1103
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1104
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1105
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1106
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1107
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1108
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1109
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1110
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1111
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1112
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1113
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1114
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1115
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1116
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1117
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1118
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1119
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1120
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1121
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
1122
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1123
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1124
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1125
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1126
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
1127
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1128
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1129
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1130
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1131
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1132
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1133
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1134
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
1135
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1136
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1137
+ ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1138
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1139
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1140
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1141
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1142
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1143
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1144
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1145
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1146
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1147
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1148
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1149
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1150
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1151
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1152
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1153
+ readonly dataset: DOMStringMap;
1154
+ readonly renderOptions: import("lit-html").RenderOptions;
1155
+ connectedCallback: () => void;
1156
+ disconnectedCallback: () => void;
1157
+ readonly renderRoot: HTMLElement | ShadowRoot;
1158
+ isUpdatePending: boolean;
1159
+ hasUpdated: boolean;
1160
+ addController: (controller: import("lit").ReactiveController) => void;
1161
+ removeController: (controller: import("lit").ReactiveController) => void;
1162
+ attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
1163
+ requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
1164
+ readonly updateComplete: Promise<boolean>;
1165
+ isLTR: boolean;
1166
+ hasVisibleFocusInTree: () => boolean;
1167
+ defaultNodes: Node[];
1168
+ readonly tags: import("tags/src").Tag[];
1169
+ rovingTabindexController: import("@spectrum-web-components/reactive-controllers/src/RovingTabindex").RovingTabindexController<import("tags/src").Tag>;
1170
+ } & {}> & import("react").RefAttributes<import("tags/src").Tags>>;
package/next.dev.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ import dynamic from "next/dynamic";
3
+ export const Tag = dynamic(() => import(".").then(({ Tag: Tag2 }) => Tag2), { ssr: false });
4
+ export const Tags = dynamic(() => import(".").then(({ Tags: Tags2 }) => Tags2), { ssr: false });
5
+ //# sourceMappingURL=next.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["next.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2023 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ComponentProps } from 'react';\nimport dynamic from 'next/dynamic';\n\nimport { Tag as SpTag } from '.';\nimport { Tags as SpTags } from '.';\n\nexport const Tag = dynamic<\n JSX.LibraryManagedAttributes<typeof SpTag, ComponentProps<typeof SpTag>>\n>(() => import('.').then(({ Tag }) => Tag), { ssr: false });\nexport const Tags = dynamic<\n JSX.LibraryManagedAttributes<typeof SpTags, ComponentProps<typeof SpTags>>\n>(() => import('.').then(({ Tags }) => Tags), { ssr: false });\n"],
5
+ "mappings": ";AAaA,OAAO,aAAa;AAKb,aAAM,MAAM,QAEjB,MAAM,OAAO,GAAG,EAAE,KAAK,CAAC,EAAE,KAAAA,KAAI,MAAMA,IAAG,GAAG,EAAE,KAAK,MAAM,CAAC;AACnD,aAAM,OAAO,QAElB,MAAM,OAAO,GAAG,EAAE,KAAK,CAAC,EAAE,MAAAC,MAAK,MAAMA,KAAI,GAAG,EAAE,KAAK,MAAM,CAAC;",
6
+ "names": ["Tag", "Tags"]
7
+ }
package/next.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";import t from"next/dynamic";export const Tag=t(()=>import(".").then(({Tag:o})=>o),{ssr:!1}),Tags=t(()=>import(".").then(({Tags:o})=>o),{ssr:!1});
2
+ //# sourceMappingURL=next.js.map
package/next.js.map ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["next.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2023 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ComponentProps } from 'react';\nimport dynamic from 'next/dynamic';\n\nimport { Tag as SpTag } from '.';\nimport { Tags as SpTags } from '.';\n\nexport const Tag = dynamic<\n JSX.LibraryManagedAttributes<typeof SpTag, ComponentProps<typeof SpTag>>\n>(() => import('.').then(({ Tag }) => Tag), { ssr: false });\nexport const Tags = dynamic<\n JSX.LibraryManagedAttributes<typeof SpTags, ComponentProps<typeof SpTags>>\n>(() => import('.').then(({ Tags }) => Tags), { ssr: false });\n"],
5
+ "mappings": "aAaA,OAAOA,MAAa,eAKb,aAAM,IAAMA,EAEjB,IAAM,OAAO,GAAG,EAAE,KAAK,CAAC,CAAE,IAAAC,CAAI,IAAMA,CAAG,EAAG,CAAE,IAAK,EAAM,CAAC,EAC7C,KAAOD,EAElB,IAAM,OAAO,GAAG,EAAE,KAAK,CAAC,CAAE,KAAAE,CAAK,IAAMA,CAAI,EAAG,CAAE,IAAK,EAAM,CAAC",
6
+ "names": ["dynamic", "Tag", "Tags"]
7
+ }
package/package.json CHANGED
@@ -1,13 +1,23 @@
1
1
  {
2
2
  "name": "@swc-react/tags",
3
- "version": "0.31.0",
3
+ "version": "0.31.1-react.3+886f51591",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "description": "React wrapper of the @spectrum-web-components/tags component",
7
+ "description": "React and Next.js wrapper of the @spectrum-web-components/tags component",
8
8
  "license": "Apache-2.0",
9
9
  "author": "",
10
- "main": "index.js",
10
+ "type": "module",
11
+ "exports": {
12
+ ".": {
13
+ "development": "./index.dev.js",
14
+ "default": "./index.js"
15
+ },
16
+ "./next.js": {
17
+ "development": "./next.dev.js",
18
+ "default": "./next.js"
19
+ }
20
+ },
11
21
  "files": [
12
22
  "**/*.d.ts",
13
23
  "**/*.js",
@@ -20,7 +30,15 @@
20
30
  ],
21
31
  "dependencies": {
22
32
  "@lit-labs/react": "^1.1.1",
23
- "@spectrum-web-components/tags": "0.31.0"
33
+ "@spectrum-web-components/tags": "^0.31.1-react.3+886f51591"
34
+ },
35
+ "peerDependencies": {
36
+ "next": "^13.4.1 || latest"
37
+ },
38
+ "peerDependenciesMeta": {
39
+ "next": {
40
+ "optional": true
41
+ }
24
42
  },
25
- "gitHead": "a30eeed27948a9a372b792b751f968c54337ab9e"
43
+ "gitHead": "886f515919ca0e8a1cec52a00babb1d4a195ae01"
26
44
  }