@swc-react/swatch 0.31.0 → 0.31.1-react.21

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