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