@vonage/vivid 5.1.0 → 5.2.0

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.
Files changed (102) hide show
  1. package/audio-player/definition.cjs +37 -4
  2. package/audio-player/definition.js +37 -4
  3. package/audio-player/index.cjs +25 -25
  4. package/audio-player/index.js +86 -62
  5. package/bundled/definition13.cjs +2 -2
  6. package/bundled/definition13.js +4 -4
  7. package/bundled/definition19.cjs +18 -15
  8. package/bundled/definition19.js +85 -77
  9. package/bundled/definition6.cjs +6 -6
  10. package/bundled/definition6.js +34 -31
  11. package/bundled/localized.cjs +1 -1
  12. package/bundled/localized.js +2 -1
  13. package/bundled/picker-field.template.cjs +18 -13
  14. package/bundled/picker-field.template.js +44 -36
  15. package/bundled/text-field.cjs +1 -1
  16. package/bundled/text-field.js +1 -1
  17. package/bundled/vivid-element.cjs +1 -1
  18. package/bundled/vivid-element.js +1 -1
  19. package/bundled/with-contextual-help.cjs +1 -1
  20. package/bundled/with-contextual-help.js +17 -7
  21. package/combobox/definition.cjs +12 -5
  22. package/combobox/definition.js +12 -5
  23. package/combobox/index.cjs +15 -11
  24. package/combobox/index.js +83 -76
  25. package/custom-elements.json +95 -3
  26. package/dial-pad/definition.cjs +51 -1
  27. package/dial-pad/definition.js +52 -2
  28. package/dial-pad/index.cjs +21 -18
  29. package/dial-pad/index.js +123 -92
  30. package/file-picker/definition.cjs +14 -5
  31. package/file-picker/definition.js +15 -6
  32. package/file-picker/index.cjs +12 -9
  33. package/file-picker/index.js +102 -92
  34. package/lib/audio-player/audio-player.d.ts +4 -0
  35. package/lib/combobox/combobox.d.ts +483 -66
  36. package/lib/date-picker/date-picker.d.ts +839 -827
  37. package/lib/date-range-picker/date-range-picker.d.ts +580 -574
  38. package/lib/date-time-picker/date-time-picker.d.ts +863 -851
  39. package/lib/dial-pad/dial-pad.template.d.ts +1 -1
  40. package/lib/dial-pad/locale.d.ts +1 -0
  41. package/lib/file-picker/file-picker.d.ts +483 -66
  42. package/lib/menu/menu.d.ts +1 -0
  43. package/lib/number-field/number-field.d.ts +1 -0
  44. package/lib/searchable-select/searchable-select.d.ts +505 -88
  45. package/lib/select/select.d.ts +470 -53
  46. package/lib/text-area/text-area.d.ts +1 -0
  47. package/lib/text-field/text-field.d.ts +1 -0
  48. package/lib/time-picker/time-picker.d.ts +551 -545
  49. package/locales/de-DE.cjs +2 -1
  50. package/locales/de-DE.js +2 -1
  51. package/locales/en-GB.cjs +2 -1
  52. package/locales/en-GB.js +2 -1
  53. package/locales/en-US.cjs +2 -1
  54. package/locales/en-US.js +2 -1
  55. package/locales/ja-JP.cjs +2 -1
  56. package/locales/ja-JP.js +2 -1
  57. package/locales/zh-CN.cjs +2 -1
  58. package/locales/zh-CN.js +2 -1
  59. package/menu/definition.cjs +6 -2
  60. package/menu/definition.js +7 -3
  61. package/number-field/definition.cjs +2 -2
  62. package/number-field/definition.js +3 -3
  63. package/number-field/index.cjs +9 -9
  64. package/number-field/index.js +28 -27
  65. package/package.json +1 -1
  66. package/searchable-select/definition.cjs +27 -18
  67. package/searchable-select/definition.js +28 -19
  68. package/searchable-select/index.cjs +28 -25
  69. package/searchable-select/index.js +150 -141
  70. package/select/definition.cjs +14 -6
  71. package/select/definition.js +14 -6
  72. package/shared/patterns/form-elements/index.d.ts +1 -0
  73. package/shared/patterns/form-elements/with-contextual-help.d.ts +1 -0
  74. package/shared/picker-field/mixins/calendar-picker.d.ts +442 -439
  75. package/shared/picker-field/mixins/calendar-picker.template.d.ts +442 -439
  76. package/shared/picker-field/mixins/min-max-calendar-picker.d.ts +584 -578
  77. package/shared/picker-field/mixins/single-date-picker.d.ts +696 -687
  78. package/shared/picker-field/mixins/single-value-picker.d.ts +441 -438
  79. package/shared/picker-field/mixins/time-selection-picker.d.ts +562 -556
  80. package/shared/picker-field/mixins/time-selection-picker.template.d.ts +551 -545
  81. package/shared/picker-field/picker-field.d.ts +483 -66
  82. package/styles/core/all.css +1 -1
  83. package/styles/core/theme.css +1 -1
  84. package/styles/core/typography.css +1 -1
  85. package/styles/tokens/theme-dark.css +4 -4
  86. package/styles/tokens/theme-light.css +4 -4
  87. package/styles/tokens/vivid-2-compat.css +1 -1
  88. package/text-area/definition.cjs +1 -1
  89. package/text-area/definition.js +1 -1
  90. package/text-area/index.cjs +1 -1
  91. package/text-area/index.js +1 -1
  92. package/text-field/definition.cjs +1 -1
  93. package/text-field/definition.js +1 -1
  94. package/unbundled/picker-field.template.cjs +11 -3
  95. package/unbundled/picker-field.template.js +11 -3
  96. package/unbundled/text-field.cjs +1 -1
  97. package/unbundled/text-field.js +1 -1
  98. package/unbundled/vivid-element.cjs +1 -1
  99. package/unbundled/vivid-element.js +1 -1
  100. package/unbundled/with-contextual-help.cjs +11 -0
  101. package/unbundled/with-contextual-help.js +11 -0
  102. package/vivid.api.json +30 -0
@@ -5,6 +5,423 @@ import { VividElement } from '../../shared/foundation/vivid-element/vivid-elemen
5
5
  export type SearchableSelectAppearance = ExtractFromEnum<Appearance, Appearance.Fieldset | Appearance.Ghost>;
6
6
  export type SearchableSelectShape = ExtractFromEnum<Shape, Shape.Rounded | Shape.Pill>;
7
7
  declare const SearchableSelect_base: {
8
+ new (...args: any[]): {
9
+ _contextualHelpSlottedContent?: HTMLElement[] | undefined;
10
+ readonly _hasContextualHelp: boolean;
11
+ _isFromContextualHelp(e: Event): boolean;
12
+ label?: string | undefined;
13
+ errorValidationMessage: string;
14
+ forceErrorDisplay: boolean;
15
+ hasBeenTouched: boolean;
16
+ connectedCallback: (() => void) & (() => void) & (() => void);
17
+ "__#3@#handleInvalidEvent": () => void;
18
+ disconnectedCallback: (() => void) & (() => void) & (() => void);
19
+ formResetCallback: (() => void) & (() => void);
20
+ validate: (() => void) & ((anchor?: HTMLElement | undefined) => void);
21
+ proxy: import("../../shared/foundation/form-associated/form-associated").ProxyElement;
22
+ readonly validity: ValidityState;
23
+ readonly form: HTMLFormElement | null;
24
+ readonly validationMessage: string;
25
+ readonly willValidate: boolean;
26
+ readonly labels: readonly Node[];
27
+ dirtyValue: boolean;
28
+ proxySlot?: HTMLSlotElement | undefined;
29
+ value: string;
30
+ valueChanged(_previous: string, _next: string): void;
31
+ currentValue: string;
32
+ initialValue: string;
33
+ initialValueChanged(_previous: string, _next: string): void;
34
+ disabled: boolean;
35
+ disabledChanged(_previous: boolean, _next: boolean): void;
36
+ name: string;
37
+ nameChanged(_previous: string, _next: string): void;
38
+ required: boolean;
39
+ requiredChanged(_previous: boolean, _next: boolean): void;
40
+ readonly elementInternals: ElementInternals | null;
41
+ proxyEventsToBlock: string[];
42
+ checkValidity(): boolean;
43
+ reportValidity(): boolean;
44
+ setValidity(flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined): void;
45
+ formDisabledCallback(disabled: boolean): void;
46
+ proxyInitialized: boolean;
47
+ attachProxy(): void;
48
+ detachProxy(): void;
49
+ setFormValue(value: string | File | FormData | null, state?: string | File | FormData | null | undefined): void;
50
+ _keypressHandler(e: KeyboardEvent): void;
51
+ stopPropagation(e: Event): void;
52
+ _vividAriaBehaviour: import("../../shared/aria/aria-mixin").VividAriaBehaviour;
53
+ readonly $fastController: import("@microsoft/fast-element").Controller;
54
+ $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
55
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
56
+ accessKey: string;
57
+ readonly accessKeyLabel: string;
58
+ autocapitalize: string;
59
+ dir: string;
60
+ draggable: boolean;
61
+ hidden: boolean;
62
+ inert: boolean;
63
+ innerText: string;
64
+ lang: string;
65
+ readonly offsetHeight: number;
66
+ readonly offsetLeft: number;
67
+ readonly offsetParent: Element | null;
68
+ readonly offsetTop: number;
69
+ readonly offsetWidth: number;
70
+ outerText: string;
71
+ spellcheck: boolean;
72
+ title: string;
73
+ translate: boolean;
74
+ attachInternals(): ElementInternals;
75
+ click(): void;
76
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
77
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
78
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
79
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
80
+ readonly attributes: NamedNodeMap;
81
+ readonly classList: DOMTokenList;
82
+ className: string;
83
+ readonly clientHeight: number;
84
+ readonly clientLeft: number;
85
+ readonly clientTop: number;
86
+ readonly clientWidth: number;
87
+ id: string;
88
+ readonly localName: string;
89
+ readonly namespaceURI: string | null;
90
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
91
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
92
+ outerHTML: string;
93
+ readonly ownerDocument: Document;
94
+ readonly part: DOMTokenList;
95
+ readonly prefix: string | null;
96
+ readonly scrollHeight: number;
97
+ scrollLeft: number;
98
+ scrollTop: number;
99
+ readonly scrollWidth: number;
100
+ readonly shadowRoot: ShadowRoot | null;
101
+ slot: string;
102
+ readonly tagName: string;
103
+ attachShadow(init: ShadowRootInit): ShadowRoot;
104
+ checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
105
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
106
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
107
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
108
+ closest<E extends Element = Element>(selectors: string): E | null;
109
+ getAttribute(qualifiedName: string): string | null;
110
+ getAttributeNS(namespace: string | null, localName: string): string | null;
111
+ getAttributeNames(): string[];
112
+ getAttributeNode(qualifiedName: string): Attr | null;
113
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
114
+ getBoundingClientRect(): DOMRect;
115
+ getClientRects(): DOMRectList;
116
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
117
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
118
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
119
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
120
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
121
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
122
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
123
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
124
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
125
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
126
+ hasAttribute(qualifiedName: string): boolean;
127
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
128
+ hasAttributes(): boolean;
129
+ hasPointerCapture(pointerId: number): boolean;
130
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
131
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
132
+ insertAdjacentText(where: InsertPosition, data: string): void;
133
+ matches(selectors: string): boolean;
134
+ releasePointerCapture(pointerId: number): void;
135
+ removeAttribute(qualifiedName: string): void;
136
+ removeAttributeNS(namespace: string | null, localName: string): void;
137
+ removeAttributeNode(attr: Attr): Attr;
138
+ requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
139
+ requestPointerLock(): void;
140
+ scroll(options?: ScrollToOptions | undefined): void;
141
+ scroll(x: number, y: number): void;
142
+ scrollBy(options?: ScrollToOptions | undefined): void;
143
+ scrollBy(x: number, y: number): void;
144
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
145
+ scrollTo(options?: ScrollToOptions | undefined): void;
146
+ scrollTo(x: number, y: number): void;
147
+ setAttribute(qualifiedName: string, value: string): void;
148
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
149
+ setAttributeNode(attr: Attr): Attr | null;
150
+ setAttributeNodeNS(attr: Attr): Attr | null;
151
+ setPointerCapture(pointerId: number): void;
152
+ toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
153
+ webkitMatchesSelector(selectors: string): boolean;
154
+ readonly baseURI: string;
155
+ readonly childNodes: NodeListOf<ChildNode>;
156
+ readonly firstChild: ChildNode | null;
157
+ readonly isConnected: boolean;
158
+ readonly lastChild: ChildNode | null;
159
+ readonly nextSibling: ChildNode | null;
160
+ readonly nodeName: string;
161
+ readonly nodeType: number;
162
+ nodeValue: string | null;
163
+ readonly parentElement: HTMLElement | null;
164
+ readonly parentNode: ParentNode | null;
165
+ readonly previousSibling: ChildNode | null;
166
+ textContent: string | null;
167
+ appendChild<T extends Node>(node: T): T;
168
+ cloneNode(deep?: boolean | undefined): Node;
169
+ compareDocumentPosition(other: Node): number;
170
+ contains(other: Node | null): boolean;
171
+ getRootNode(options?: GetRootNodeOptions | undefined): Node;
172
+ hasChildNodes(): boolean;
173
+ insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
174
+ isDefaultNamespace(namespace: string | null): boolean;
175
+ isEqualNode(otherNode: Node | null): boolean;
176
+ isSameNode(otherNode: Node | null): boolean;
177
+ lookupNamespaceURI(prefix: string | null): string | null;
178
+ lookupPrefix(namespace: string | null): string | null;
179
+ normalize(): void;
180
+ removeChild<T_2 extends Node>(child: T_2): T_2;
181
+ replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
182
+ readonly ELEMENT_NODE: 1;
183
+ readonly ATTRIBUTE_NODE: 2;
184
+ readonly TEXT_NODE: 3;
185
+ readonly CDATA_SECTION_NODE: 4;
186
+ readonly ENTITY_REFERENCE_NODE: 5;
187
+ readonly ENTITY_NODE: 6;
188
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
189
+ readonly COMMENT_NODE: 8;
190
+ readonly DOCUMENT_NODE: 9;
191
+ readonly DOCUMENT_TYPE_NODE: 10;
192
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
193
+ readonly NOTATION_NODE: 12;
194
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
195
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
196
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
197
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
198
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
199
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
200
+ dispatchEvent(event: Event): boolean;
201
+ ariaAtomic: string | null;
202
+ ariaAutoComplete: string | null;
203
+ ariaBusy: string | null;
204
+ ariaChecked: string | null;
205
+ ariaColCount: string | null;
206
+ ariaColIndex: string | null;
207
+ ariaColSpan: string | null;
208
+ ariaCurrent: string | null;
209
+ ariaDisabled: string | null;
210
+ ariaExpanded: string | null;
211
+ ariaHasPopup: string | null;
212
+ ariaHidden: string | null;
213
+ ariaInvalid: string | null;
214
+ ariaKeyShortcuts: string | null;
215
+ ariaLabel: string | null;
216
+ ariaLevel: string | null;
217
+ ariaLive: string | null;
218
+ ariaModal: string | null;
219
+ ariaMultiLine: string | null;
220
+ ariaMultiSelectable: string | null;
221
+ ariaOrientation: string | null;
222
+ ariaPlaceholder: string | null;
223
+ ariaPosInSet: string | null;
224
+ ariaPressed: string | null;
225
+ ariaReadOnly: string | null;
226
+ ariaRequired: string | null;
227
+ ariaRoleDescription: string | null;
228
+ ariaRowCount: string | null;
229
+ ariaRowIndex: string | null;
230
+ ariaRowSpan: string | null;
231
+ ariaSelected: string | null;
232
+ ariaSetSize: string | null;
233
+ ariaSort: string | null;
234
+ ariaValueMax: string | null;
235
+ ariaValueMin: string | null;
236
+ ariaValueNow: string | null;
237
+ ariaValueText: string | null;
238
+ role: string | null;
239
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
240
+ getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
241
+ after(...nodes: (string | Node)[]): void;
242
+ before(...nodes: (string | Node)[]): void;
243
+ remove(): void;
244
+ replaceWith(...nodes: (string | Node)[]): void;
245
+ innerHTML: string;
246
+ readonly nextElementSibling: Element | null;
247
+ readonly previousElementSibling: Element | null;
248
+ readonly childElementCount: number;
249
+ readonly children: HTMLCollection;
250
+ readonly firstElementChild: Element | null;
251
+ readonly lastElementChild: Element | null;
252
+ append(...nodes: (string | Node)[]): void;
253
+ prepend(...nodes: (string | Node)[]): void;
254
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
255
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
256
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
257
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
258
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
259
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
260
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
261
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
262
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
263
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
264
+ replaceChildren(...nodes: (string | Node)[]): void;
265
+ readonly assignedSlot: HTMLSlotElement | null;
266
+ readonly style: CSSStyleDeclaration;
267
+ contentEditable: string;
268
+ enterKeyHint: string;
269
+ inputMode: string;
270
+ readonly isContentEditable: boolean;
271
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
272
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
273
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
274
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
275
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
276
+ onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
277
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
278
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
279
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
280
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
281
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
282
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
283
+ onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
284
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
285
+ oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
286
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
287
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
288
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
289
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
290
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
291
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
292
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
293
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
294
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
295
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
296
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
297
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
298
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
299
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
300
+ onerror: OnErrorEventHandler;
301
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
302
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
303
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
304
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
305
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
306
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
307
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
308
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
309
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
310
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
311
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
312
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
313
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
314
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
315
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
316
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
317
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
318
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
319
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
320
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
321
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
322
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
323
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
324
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
325
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
326
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
327
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
328
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
329
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
330
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
331
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
332
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
333
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
334
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
336
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
337
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
338
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
339
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
340
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
341
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
342
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
343
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
344
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
345
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
346
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
347
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
348
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
349
+ ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
350
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
351
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
352
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
353
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
354
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
355
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
356
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
357
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
358
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
359
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
360
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
361
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
362
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
363
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
364
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
365
+ autofocus: boolean;
366
+ readonly dataset: DOMStringMap;
367
+ nonce?: string | undefined;
368
+ tabIndex: number;
369
+ blur(): void;
370
+ focus(options?: FocusOptions | undefined): void;
371
+ ariaColIndexText: string | null;
372
+ ariaDescription: string | null;
373
+ ariaRowIndexText: string | null;
374
+ ariaRelevant: string | null;
375
+ roleChanged(prev: string | null, next: string | null): void;
376
+ ariaAtomicChanged(prev: string | null, next: string | null): void;
377
+ ariaAutoCompleteChanged(prev: string | null, next: string | null): void;
378
+ ariaBusyChanged(prev: string | null, next: string | null): void;
379
+ ariaCheckedChanged(prev: string | null, next: string | null): void;
380
+ ariaColCountChanged(prev: string | null, next: string | null): void;
381
+ ariaColIndexChanged(prev: string | null, next: string | null): void;
382
+ ariaColIndexTextChanged(prev: string | null, next: string | null): void;
383
+ ariaColSpanChanged(prev: string | null, next: string | null): void;
384
+ ariaCurrentChanged(prev: string | null, next: string | null): void;
385
+ ariaDescriptionChanged(prev: string | null, next: string | null): void;
386
+ ariaDisabledChanged(prev: string | null, next: string | null): void;
387
+ ariaExpandedChanged(prev: string | null, next: string | null): void;
388
+ ariaHasPopupChanged(prev: string | null, next: string | null): void;
389
+ ariaHiddenChanged(prev: string | null, next: string | null): void;
390
+ ariaInvalidChanged(prev: string | null, next: string | null): void;
391
+ ariaKeyShortcutsChanged(prev: string | null, next: string | null): void;
392
+ ariaLabelChanged(prev: string | null, next: string | null): void;
393
+ ariaLevelChanged(prev: string | null, next: string | null): void;
394
+ ariaLiveChanged(prev: string | null, next: string | null): void;
395
+ ariaModalChanged(prev: string | null, next: string | null): void;
396
+ ariaMultiLineChanged(prev: string | null, next: string | null): void;
397
+ ariaMultiSelectableChanged(prev: string | null, next: string | null): void;
398
+ ariaOrientationChanged(prev: string | null, next: string | null): void;
399
+ ariaPlaceholderChanged(prev: string | null, next: string | null): void;
400
+ ariaPosInSetChanged(prev: string | null, next: string | null): void;
401
+ ariaPressedChanged(prev: string | null, next: string | null): void;
402
+ ariaReadOnlyChanged(prev: string | null, next: string | null): void;
403
+ ariaRequiredChanged(prev: string | null, next: string | null): void;
404
+ ariaRoleDescriptionChanged(prev: string | null, next: string | null): void;
405
+ ariaRowCountChanged(prev: string | null, next: string | null): void;
406
+ ariaRowIndexChanged(prev: string | null, next: string | null): void;
407
+ ariaRowIndexTextChanged(prev: string | null, next: string | null): void;
408
+ ariaRowSpanChanged(prev: string | null, next: string | null): void;
409
+ ariaSelectedChanged(prev: string | null, next: string | null): void;
410
+ ariaSetSizeChanged(prev: string | null, next: string | null): void;
411
+ ariaSortChanged(prev: string | null, next: string | null): void;
412
+ ariaValueMaxChanged(prev: string | null, next: string | null): void;
413
+ ariaValueMinChanged(prev: string | null, next: string | null): void;
414
+ ariaValueNowChanged(prev: string | null, next: string | null): void;
415
+ ariaValueTextChanged(prev: string | null, next: string | null): void;
416
+ ariaRelevantChanged(prev: string | null, next: string | null): void;
417
+ "__#1@#handleReplacedProp"(replacedProp: {
418
+ newPropertyName: string;
419
+ deprecatedPropertyName: string;
420
+ fromDeprecated: (v: any) => any;
421
+ toDeprecated?: ((v: any) => any) | undefined;
422
+ }): void;
423
+ };
424
+ } & {
8
425
  new (...args: any[]): {
9
426
  helperText?: string | undefined;
10
427
  _helperTextSlottedContent?: HTMLElement[] | undefined;
@@ -41,9 +458,9 @@ declare const SearchableSelect_base: {
41
458
  translate: boolean;
42
459
  attachInternals(): ElementInternals;
43
460
  click(): void;
44
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
461
+ addEventListener<K_17 extends keyof HTMLElementEventMap>(type: K_17, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_17]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
45
462
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
46
- removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
463
+ removeEventListener<K_18 extends keyof HTMLElementEventMap>(type: K_18, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_18]) => any, options?: boolean | EventListenerOptions | undefined): void;
47
464
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
48
465
  readonly attributes: NamedNodeMap;
49
466
  readonly classList: DOMTokenList;
@@ -70,10 +487,10 @@ declare const SearchableSelect_base: {
70
487
  readonly tagName: string;
71
488
  attachShadow(init: ShadowRootInit): ShadowRoot;
72
489
  checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
73
- closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
74
- closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
75
- closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
76
- closest<E extends Element = Element>(selectors: string): E | null;
490
+ closest<K_19 extends keyof HTMLElementTagNameMap>(selector: K_19): HTMLElementTagNameMap[K_19] | null;
491
+ closest<K_20 extends keyof SVGElementTagNameMap>(selector: K_20): SVGElementTagNameMap[K_20] | null;
492
+ closest<K_21 extends keyof MathMLElementTagNameMap>(selector: K_21): MathMLElementTagNameMap[K_21] | null;
493
+ closest<E_3 extends Element = Element>(selectors: string): E_3 | null;
77
494
  getAttribute(qualifiedName: string): string | null;
78
495
  getAttributeNS(namespace: string | null, localName: string): string | null;
79
496
  getAttributeNames(): string[];
@@ -82,10 +499,10 @@ declare const SearchableSelect_base: {
82
499
  getBoundingClientRect(): DOMRect;
83
500
  getClientRects(): DOMRectList;
84
501
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
85
- getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
86
- getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
87
- getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
88
- getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
502
+ getElementsByTagName<K_22 extends keyof HTMLElementTagNameMap>(qualifiedName: K_22): HTMLCollectionOf<HTMLElementTagNameMap[K_22]>;
503
+ getElementsByTagName<K_23 extends keyof SVGElementTagNameMap>(qualifiedName: K_23): HTMLCollectionOf<SVGElementTagNameMap[K_23]>;
504
+ getElementsByTagName<K_24 extends keyof MathMLElementTagNameMap>(qualifiedName: K_24): HTMLCollectionOf<MathMLElementTagNameMap[K_24]>;
505
+ getElementsByTagName<K_25 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_25): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_25]>;
89
506
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
90
507
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
91
508
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -138,7 +555,7 @@ declare const SearchableSelect_base: {
138
555
  contains(other: Node | null): boolean;
139
556
  getRootNode(options?: GetRootNodeOptions | undefined): Node;
140
557
  hasChildNodes(): boolean;
141
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
558
+ insertBefore<T_4 extends Node>(node: T_4, child: Node | null): T_4;
142
559
  isDefaultNamespace(namespace: string | null): boolean;
143
560
  isEqualNode(otherNode: Node | null): boolean;
144
561
  isSameNode(otherNode: Node | null): boolean;
@@ -461,9 +878,9 @@ declare const SearchableSelect_base: {
461
878
  translate: boolean;
462
879
  attachInternals(): ElementInternals;
463
880
  click(): void;
464
- addEventListener<K_17 extends keyof HTMLElementEventMap>(type: K_17, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_17]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
881
+ addEventListener<K_26 extends keyof HTMLElementEventMap>(type: K_26, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_26]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
465
882
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
466
- removeEventListener<K_18 extends keyof HTMLElementEventMap>(type: K_18, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_18]) => any, options?: boolean | EventListenerOptions | undefined): void;
883
+ removeEventListener<K_27 extends keyof HTMLElementEventMap>(type: K_27, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_27]) => any, options?: boolean | EventListenerOptions | undefined): void;
467
884
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
468
885
  readonly attributes: NamedNodeMap;
469
886
  readonly classList: DOMTokenList;
@@ -490,10 +907,10 @@ declare const SearchableSelect_base: {
490
907
  readonly tagName: string;
491
908
  attachShadow(init: ShadowRootInit): ShadowRoot;
492
909
  checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
493
- closest<K_19 extends keyof HTMLElementTagNameMap>(selector: K_19): HTMLElementTagNameMap[K_19] | null;
494
- closest<K_20 extends keyof SVGElementTagNameMap>(selector: K_20): SVGElementTagNameMap[K_20] | null;
495
- closest<K_21 extends keyof MathMLElementTagNameMap>(selector: K_21): MathMLElementTagNameMap[K_21] | null;
496
- closest<E_3 extends Element = Element>(selectors: string): E_3 | null;
910
+ closest<K_28 extends keyof HTMLElementTagNameMap>(selector: K_28): HTMLElementTagNameMap[K_28] | null;
911
+ closest<K_29 extends keyof SVGElementTagNameMap>(selector: K_29): SVGElementTagNameMap[K_29] | null;
912
+ closest<K_30 extends keyof MathMLElementTagNameMap>(selector: K_30): MathMLElementTagNameMap[K_30] | null;
913
+ closest<E_4 extends Element = Element>(selectors: string): E_4 | null;
497
914
  getAttribute(qualifiedName: string): string | null;
498
915
  getAttributeNS(namespace: string | null, localName: string): string | null;
499
916
  getAttributeNames(): string[];
@@ -502,10 +919,10 @@ declare const SearchableSelect_base: {
502
919
  getBoundingClientRect(): DOMRect;
503
920
  getClientRects(): DOMRectList;
504
921
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
505
- getElementsByTagName<K_22 extends keyof HTMLElementTagNameMap>(qualifiedName: K_22): HTMLCollectionOf<HTMLElementTagNameMap[K_22]>;
506
- getElementsByTagName<K_23 extends keyof SVGElementTagNameMap>(qualifiedName: K_23): HTMLCollectionOf<SVGElementTagNameMap[K_23]>;
507
- getElementsByTagName<K_24 extends keyof MathMLElementTagNameMap>(qualifiedName: K_24): HTMLCollectionOf<MathMLElementTagNameMap[K_24]>;
508
- getElementsByTagName<K_25 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_25): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_25]>;
922
+ getElementsByTagName<K_31 extends keyof HTMLElementTagNameMap>(qualifiedName: K_31): HTMLCollectionOf<HTMLElementTagNameMap[K_31]>;
923
+ getElementsByTagName<K_32 extends keyof SVGElementTagNameMap>(qualifiedName: K_32): HTMLCollectionOf<SVGElementTagNameMap[K_32]>;
924
+ getElementsByTagName<K_33 extends keyof MathMLElementTagNameMap>(qualifiedName: K_33): HTMLCollectionOf<MathMLElementTagNameMap[K_33]>;
925
+ getElementsByTagName<K_34 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_34): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_34]>;
509
926
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
510
927
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
511
928
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -558,7 +975,7 @@ declare const SearchableSelect_base: {
558
975
  contains(other: Node | null): boolean;
559
976
  getRootNode(options?: GetRootNodeOptions | undefined): Node;
560
977
  hasChildNodes(): boolean;
561
- insertBefore<T_4 extends Node>(node: T_4, child: Node | null): T_4;
978
+ insertBefore<T_5 extends Node>(node: T_5, child: Node | null): T_5;
562
979
  isDefaultNamespace(namespace: string | null): boolean;
563
980
  isEqualNode(otherNode: Node | null): boolean;
564
981
  isSameNode(otherNode: Node | null): boolean;
@@ -838,9 +1255,9 @@ declare const SearchableSelect_base: {
838
1255
  translate: boolean;
839
1256
  attachInternals(): ElementInternals;
840
1257
  click(): void;
841
- addEventListener<K_26 extends keyof HTMLElementEventMap>(type: K_26, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_26]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
1258
+ addEventListener<K_35 extends keyof HTMLElementEventMap>(type: K_35, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_35]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
842
1259
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
843
- removeEventListener<K_27 extends keyof HTMLElementEventMap>(type: K_27, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_27]) => any, options?: boolean | EventListenerOptions | undefined): void;
1260
+ removeEventListener<K_36 extends keyof HTMLElementEventMap>(type: K_36, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_36]) => any, options?: boolean | EventListenerOptions | undefined): void;
844
1261
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
845
1262
  readonly attributes: NamedNodeMap;
846
1263
  readonly classList: DOMTokenList;
@@ -867,10 +1284,10 @@ declare const SearchableSelect_base: {
867
1284
  readonly tagName: string;
868
1285
  attachShadow(init: ShadowRootInit): ShadowRoot;
869
1286
  checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
870
- closest<K_28 extends keyof HTMLElementTagNameMap>(selector: K_28): HTMLElementTagNameMap[K_28] | null;
871
- closest<K_29 extends keyof SVGElementTagNameMap>(selector: K_29): SVGElementTagNameMap[K_29] | null;
872
- closest<K_30 extends keyof MathMLElementTagNameMap>(selector: K_30): MathMLElementTagNameMap[K_30] | null;
873
- closest<E_4 extends Element = Element>(selectors: string): E_4 | null;
1287
+ closest<K_37 extends keyof HTMLElementTagNameMap>(selector: K_37): HTMLElementTagNameMap[K_37] | null;
1288
+ closest<K_38 extends keyof SVGElementTagNameMap>(selector: K_38): SVGElementTagNameMap[K_38] | null;
1289
+ closest<K_39 extends keyof MathMLElementTagNameMap>(selector: K_39): MathMLElementTagNameMap[K_39] | null;
1290
+ closest<E_5 extends Element = Element>(selectors: string): E_5 | null;
874
1291
  getAttribute(qualifiedName: string): string | null;
875
1292
  getAttributeNS(namespace: string | null, localName: string): string | null;
876
1293
  getAttributeNames(): string[];
@@ -879,10 +1296,10 @@ declare const SearchableSelect_base: {
879
1296
  getBoundingClientRect(): DOMRect;
880
1297
  getClientRects(): DOMRectList;
881
1298
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
882
- getElementsByTagName<K_31 extends keyof HTMLElementTagNameMap>(qualifiedName: K_31): HTMLCollectionOf<HTMLElementTagNameMap[K_31]>;
883
- getElementsByTagName<K_32 extends keyof SVGElementTagNameMap>(qualifiedName: K_32): HTMLCollectionOf<SVGElementTagNameMap[K_32]>;
884
- getElementsByTagName<K_33 extends keyof MathMLElementTagNameMap>(qualifiedName: K_33): HTMLCollectionOf<MathMLElementTagNameMap[K_33]>;
885
- getElementsByTagName<K_34 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_34): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_34]>;
1299
+ getElementsByTagName<K_40 extends keyof HTMLElementTagNameMap>(qualifiedName: K_40): HTMLCollectionOf<HTMLElementTagNameMap[K_40]>;
1300
+ getElementsByTagName<K_41 extends keyof SVGElementTagNameMap>(qualifiedName: K_41): HTMLCollectionOf<SVGElementTagNameMap[K_41]>;
1301
+ getElementsByTagName<K_42 extends keyof MathMLElementTagNameMap>(qualifiedName: K_42): HTMLCollectionOf<MathMLElementTagNameMap[K_42]>;
1302
+ getElementsByTagName<K_43 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_43): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_43]>;
886
1303
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
887
1304
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
888
1305
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -935,7 +1352,7 @@ declare const SearchableSelect_base: {
935
1352
  contains(other: Node | null): boolean;
936
1353
  getRootNode(options?: GetRootNodeOptions | undefined): Node;
937
1354
  hasChildNodes(): boolean;
938
- insertBefore<T_5 extends Node>(node: T_5, child: Node | null): T_5;
1355
+ insertBefore<T_6 extends Node>(node: T_6, child: Node | null): T_6;
939
1356
  isDefaultNamespace(namespace: string | null): boolean;
940
1357
  isEqualNode(otherNode: Node | null): boolean;
941
1358
  isSameNode(otherNode: Node | null): boolean;
@@ -1252,9 +1669,9 @@ declare const SearchableSelect_base: {
1252
1669
  translate: boolean;
1253
1670
  attachInternals(): ElementInternals;
1254
1671
  click(): void;
1255
- addEventListener<K_35 extends keyof HTMLElementEventMap>(type: K_35, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_35]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
1672
+ addEventListener<K_44 extends keyof HTMLElementEventMap>(type: K_44, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_44]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
1256
1673
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
1257
- removeEventListener<K_36 extends keyof HTMLElementEventMap>(type: K_36, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_36]) => any, options?: boolean | EventListenerOptions | undefined): void;
1674
+ removeEventListener<K_45 extends keyof HTMLElementEventMap>(type: K_45, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_45]) => any, options?: boolean | EventListenerOptions | undefined): void;
1258
1675
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
1259
1676
  readonly attributes: NamedNodeMap;
1260
1677
  readonly classList: DOMTokenList;
@@ -1281,10 +1698,10 @@ declare const SearchableSelect_base: {
1281
1698
  readonly tagName: string;
1282
1699
  attachShadow(init: ShadowRootInit): ShadowRoot;
1283
1700
  checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
1284
- closest<K_37 extends keyof HTMLElementTagNameMap>(selector: K_37): HTMLElementTagNameMap[K_37] | null;
1285
- closest<K_38 extends keyof SVGElementTagNameMap>(selector: K_38): SVGElementTagNameMap[K_38] | null;
1286
- closest<K_39 extends keyof MathMLElementTagNameMap>(selector: K_39): MathMLElementTagNameMap[K_39] | null;
1287
- closest<E_5 extends Element = Element>(selectors: string): E_5 | null;
1701
+ closest<K_46 extends keyof HTMLElementTagNameMap>(selector: K_46): HTMLElementTagNameMap[K_46] | null;
1702
+ closest<K_47 extends keyof SVGElementTagNameMap>(selector: K_47): SVGElementTagNameMap[K_47] | null;
1703
+ closest<K_48 extends keyof MathMLElementTagNameMap>(selector: K_48): MathMLElementTagNameMap[K_48] | null;
1704
+ closest<E_6 extends Element = Element>(selectors: string): E_6 | null;
1288
1705
  getAttribute(qualifiedName: string): string | null;
1289
1706
  getAttributeNS(namespace: string | null, localName: string): string | null;
1290
1707
  getAttributeNames(): string[];
@@ -1293,10 +1710,10 @@ declare const SearchableSelect_base: {
1293
1710
  getBoundingClientRect(): DOMRect;
1294
1711
  getClientRects(): DOMRectList;
1295
1712
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
1296
- getElementsByTagName<K_40 extends keyof HTMLElementTagNameMap>(qualifiedName: K_40): HTMLCollectionOf<HTMLElementTagNameMap[K_40]>;
1297
- getElementsByTagName<K_41 extends keyof SVGElementTagNameMap>(qualifiedName: K_41): HTMLCollectionOf<SVGElementTagNameMap[K_41]>;
1298
- getElementsByTagName<K_42 extends keyof MathMLElementTagNameMap>(qualifiedName: K_42): HTMLCollectionOf<MathMLElementTagNameMap[K_42]>;
1299
- getElementsByTagName<K_43 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_43): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_43]>;
1713
+ getElementsByTagName<K_49 extends keyof HTMLElementTagNameMap>(qualifiedName: K_49): HTMLCollectionOf<HTMLElementTagNameMap[K_49]>;
1714
+ getElementsByTagName<K_50 extends keyof SVGElementTagNameMap>(qualifiedName: K_50): HTMLCollectionOf<SVGElementTagNameMap[K_50]>;
1715
+ getElementsByTagName<K_51 extends keyof MathMLElementTagNameMap>(qualifiedName: K_51): HTMLCollectionOf<MathMLElementTagNameMap[K_51]>;
1716
+ getElementsByTagName<K_52 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_52): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_52]>;
1300
1717
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
1301
1718
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
1302
1719
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -1349,7 +1766,7 @@ declare const SearchableSelect_base: {
1349
1766
  contains(other: Node | null): boolean;
1350
1767
  getRootNode(options?: GetRootNodeOptions | undefined): Node;
1351
1768
  hasChildNodes(): boolean;
1352
- insertBefore<T_6 extends Node>(node: T_6, child: Node | null): T_6;
1769
+ insertBefore<T_7 extends Node>(node: T_7, child: Node | null): T_7;
1353
1770
  isDefaultNamespace(namespace: string | null): boolean;
1354
1771
  isEqualNode(otherNode: Node | null): boolean;
1355
1772
  isSameNode(otherNode: Node | null): boolean;
@@ -1628,9 +2045,9 @@ declare const SearchableSelect_base: {
1628
2045
  translate: boolean;
1629
2046
  attachInternals(): ElementInternals;
1630
2047
  click(): void;
1631
- addEventListener<K_44 extends keyof HTMLElementEventMap>(type: K_44, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_44]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
2048
+ addEventListener<K_53 extends keyof HTMLElementEventMap>(type: K_53, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_53]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
1632
2049
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
1633
- removeEventListener<K_45 extends keyof HTMLElementEventMap>(type: K_45, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_45]) => any, options?: boolean | EventListenerOptions | undefined): void;
2050
+ removeEventListener<K_54 extends keyof HTMLElementEventMap>(type: K_54, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_54]) => any, options?: boolean | EventListenerOptions | undefined): void;
1634
2051
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
1635
2052
  readonly attributes: NamedNodeMap;
1636
2053
  readonly classList: DOMTokenList;
@@ -1657,10 +2074,10 @@ declare const SearchableSelect_base: {
1657
2074
  readonly tagName: string;
1658
2075
  attachShadow(init: ShadowRootInit): ShadowRoot;
1659
2076
  checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
1660
- closest<K_46 extends keyof HTMLElementTagNameMap>(selector: K_46): HTMLElementTagNameMap[K_46] | null;
1661
- closest<K_47 extends keyof SVGElementTagNameMap>(selector: K_47): SVGElementTagNameMap[K_47] | null;
1662
- closest<K_48 extends keyof MathMLElementTagNameMap>(selector: K_48): MathMLElementTagNameMap[K_48] | null;
1663
- closest<E_6 extends Element = Element>(selectors: string): E_6 | null;
2077
+ closest<K_55 extends keyof HTMLElementTagNameMap>(selector: K_55): HTMLElementTagNameMap[K_55] | null;
2078
+ closest<K_56 extends keyof SVGElementTagNameMap>(selector: K_56): SVGElementTagNameMap[K_56] | null;
2079
+ closest<K_57 extends keyof MathMLElementTagNameMap>(selector: K_57): MathMLElementTagNameMap[K_57] | null;
2080
+ closest<E_7 extends Element = Element>(selectors: string): E_7 | null;
1664
2081
  getAttribute(qualifiedName: string): string | null;
1665
2082
  getAttributeNS(namespace: string | null, localName: string): string | null;
1666
2083
  getAttributeNames(): string[];
@@ -1669,10 +2086,10 @@ declare const SearchableSelect_base: {
1669
2086
  getBoundingClientRect(): DOMRect;
1670
2087
  getClientRects(): DOMRectList;
1671
2088
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
1672
- getElementsByTagName<K_49 extends keyof HTMLElementTagNameMap>(qualifiedName: K_49): HTMLCollectionOf<HTMLElementTagNameMap[K_49]>;
1673
- getElementsByTagName<K_50 extends keyof SVGElementTagNameMap>(qualifiedName: K_50): HTMLCollectionOf<SVGElementTagNameMap[K_50]>;
1674
- getElementsByTagName<K_51 extends keyof MathMLElementTagNameMap>(qualifiedName: K_51): HTMLCollectionOf<MathMLElementTagNameMap[K_51]>;
1675
- getElementsByTagName<K_52 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_52): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_52]>;
2089
+ getElementsByTagName<K_58 extends keyof HTMLElementTagNameMap>(qualifiedName: K_58): HTMLCollectionOf<HTMLElementTagNameMap[K_58]>;
2090
+ getElementsByTagName<K_59 extends keyof SVGElementTagNameMap>(qualifiedName: K_59): HTMLCollectionOf<SVGElementTagNameMap[K_59]>;
2091
+ getElementsByTagName<K_60 extends keyof MathMLElementTagNameMap>(qualifiedName: K_60): HTMLCollectionOf<MathMLElementTagNameMap[K_60]>;
2092
+ getElementsByTagName<K_61 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_61): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_61]>;
1676
2093
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
1677
2094
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
1678
2095
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -1725,7 +2142,7 @@ declare const SearchableSelect_base: {
1725
2142
  contains(other: Node | null): boolean;
1726
2143
  getRootNode(options?: GetRootNodeOptions | undefined): Node;
1727
2144
  hasChildNodes(): boolean;
1728
- insertBefore<T_7 extends Node>(node: T_7, child: Node | null): T_7;
2145
+ insertBefore<T_8 extends Node>(node: T_8, child: Node | null): T_8;
1729
2146
  isDefaultNamespace(namespace: string | null): boolean;
1730
2147
  isEqualNode(otherNode: Node | null): boolean;
1731
2148
  isSameNode(otherNode: Node | null): boolean;
@@ -2007,9 +2424,9 @@ declare const SearchableSelect_base: {
2007
2424
  translate: boolean;
2008
2425
  attachInternals(): ElementInternals;
2009
2426
  click(): void;
2010
- addEventListener<K_53 extends keyof HTMLElementEventMap>(type: K_53, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_53]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
2427
+ addEventListener<K_62 extends keyof HTMLElementEventMap>(type: K_62, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_62]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
2011
2428
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
2012
- removeEventListener<K_54 extends keyof HTMLElementEventMap>(type: K_54, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_54]) => any, options?: boolean | EventListenerOptions | undefined): void;
2429
+ removeEventListener<K_63 extends keyof HTMLElementEventMap>(type: K_63, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_63]) => any, options?: boolean | EventListenerOptions | undefined): void;
2013
2430
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
2014
2431
  readonly attributes: NamedNodeMap;
2015
2432
  readonly classList: DOMTokenList;
@@ -2036,10 +2453,10 @@ declare const SearchableSelect_base: {
2036
2453
  readonly tagName: string;
2037
2454
  attachShadow(init: ShadowRootInit): ShadowRoot;
2038
2455
  checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
2039
- closest<K_55 extends keyof HTMLElementTagNameMap>(selector: K_55): HTMLElementTagNameMap[K_55] | null;
2040
- closest<K_56 extends keyof SVGElementTagNameMap>(selector: K_56): SVGElementTagNameMap[K_56] | null;
2041
- closest<K_57 extends keyof MathMLElementTagNameMap>(selector: K_57): MathMLElementTagNameMap[K_57] | null;
2042
- closest<E_7 extends Element = Element>(selectors: string): E_7 | null;
2456
+ closest<K_64 extends keyof HTMLElementTagNameMap>(selector: K_64): HTMLElementTagNameMap[K_64] | null;
2457
+ closest<K_65 extends keyof SVGElementTagNameMap>(selector: K_65): SVGElementTagNameMap[K_65] | null;
2458
+ closest<K_66 extends keyof MathMLElementTagNameMap>(selector: K_66): MathMLElementTagNameMap[K_66] | null;
2459
+ closest<E_8 extends Element = Element>(selectors: string): E_8 | null;
2043
2460
  getAttribute(qualifiedName: string): string | null;
2044
2461
  getAttributeNS(namespace: string | null, localName: string): string | null;
2045
2462
  getAttributeNames(): string[];
@@ -2048,10 +2465,10 @@ declare const SearchableSelect_base: {
2048
2465
  getBoundingClientRect(): DOMRect;
2049
2466
  getClientRects(): DOMRectList;
2050
2467
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
2051
- getElementsByTagName<K_58 extends keyof HTMLElementTagNameMap>(qualifiedName: K_58): HTMLCollectionOf<HTMLElementTagNameMap[K_58]>;
2052
- getElementsByTagName<K_59 extends keyof SVGElementTagNameMap>(qualifiedName: K_59): HTMLCollectionOf<SVGElementTagNameMap[K_59]>;
2053
- getElementsByTagName<K_60 extends keyof MathMLElementTagNameMap>(qualifiedName: K_60): HTMLCollectionOf<MathMLElementTagNameMap[K_60]>;
2054
- getElementsByTagName<K_61 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_61): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_61]>;
2468
+ getElementsByTagName<K_67 extends keyof HTMLElementTagNameMap>(qualifiedName: K_67): HTMLCollectionOf<HTMLElementTagNameMap[K_67]>;
2469
+ getElementsByTagName<K_68 extends keyof SVGElementTagNameMap>(qualifiedName: K_68): HTMLCollectionOf<SVGElementTagNameMap[K_68]>;
2470
+ getElementsByTagName<K_69 extends keyof MathMLElementTagNameMap>(qualifiedName: K_69): HTMLCollectionOf<MathMLElementTagNameMap[K_69]>;
2471
+ getElementsByTagName<K_70 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_70): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_70]>;
2055
2472
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
2056
2473
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
2057
2474
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -2104,7 +2521,7 @@ declare const SearchableSelect_base: {
2104
2521
  contains(other: Node | null): boolean;
2105
2522
  getRootNode(options?: GetRootNodeOptions | undefined): Node;
2106
2523
  hasChildNodes(): boolean;
2107
- insertBefore<T_8 extends Node>(node: T_8, child: Node | null): T_8;
2524
+ insertBefore<T_9 extends Node>(node: T_9, child: Node | null): T_9;
2108
2525
  isDefaultNamespace(namespace: string | null): boolean;
2109
2526
  isEqualNode(otherNode: Node | null): boolean;
2110
2527
  isSameNode(otherNode: Node | null): boolean;
@@ -2384,9 +2801,9 @@ declare const SearchableSelect_base: {
2384
2801
  translate: boolean;
2385
2802
  attachInternals(): ElementInternals;
2386
2803
  click(): void;
2387
- addEventListener<K_62 extends keyof HTMLElementEventMap>(type: K_62, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_62]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
2804
+ addEventListener<K_71 extends keyof HTMLElementEventMap>(type: K_71, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_71]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
2388
2805
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
2389
- removeEventListener<K_63 extends keyof HTMLElementEventMap>(type: K_63, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_63]) => any, options?: boolean | EventListenerOptions | undefined): void;
2806
+ removeEventListener<K_72 extends keyof HTMLElementEventMap>(type: K_72, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_72]) => any, options?: boolean | EventListenerOptions | undefined): void;
2390
2807
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
2391
2808
  readonly attributes: NamedNodeMap;
2392
2809
  readonly classList: DOMTokenList;
@@ -2413,10 +2830,10 @@ declare const SearchableSelect_base: {
2413
2830
  readonly tagName: string;
2414
2831
  attachShadow(init: ShadowRootInit): ShadowRoot;
2415
2832
  checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
2416
- closest<K_64 extends keyof HTMLElementTagNameMap>(selector: K_64): HTMLElementTagNameMap[K_64] | null;
2417
- closest<K_65 extends keyof SVGElementTagNameMap>(selector: K_65): SVGElementTagNameMap[K_65] | null;
2418
- closest<K_66 extends keyof MathMLElementTagNameMap>(selector: K_66): MathMLElementTagNameMap[K_66] | null;
2419
- closest<E_8 extends Element = Element>(selectors: string): E_8 | null;
2833
+ closest<K_73 extends keyof HTMLElementTagNameMap>(selector: K_73): HTMLElementTagNameMap[K_73] | null;
2834
+ closest<K_74 extends keyof SVGElementTagNameMap>(selector: K_74): SVGElementTagNameMap[K_74] | null;
2835
+ closest<K_75 extends keyof MathMLElementTagNameMap>(selector: K_75): MathMLElementTagNameMap[K_75] | null;
2836
+ closest<E_9 extends Element = Element>(selectors: string): E_9 | null;
2420
2837
  getAttribute(qualifiedName: string): string | null;
2421
2838
  getAttributeNS(namespace: string | null, localName: string): string | null;
2422
2839
  getAttributeNames(): string[];
@@ -2425,10 +2842,10 @@ declare const SearchableSelect_base: {
2425
2842
  getBoundingClientRect(): DOMRect;
2426
2843
  getClientRects(): DOMRectList;
2427
2844
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
2428
- getElementsByTagName<K_67 extends keyof HTMLElementTagNameMap>(qualifiedName: K_67): HTMLCollectionOf<HTMLElementTagNameMap[K_67]>;
2429
- getElementsByTagName<K_68 extends keyof SVGElementTagNameMap>(qualifiedName: K_68): HTMLCollectionOf<SVGElementTagNameMap[K_68]>;
2430
- getElementsByTagName<K_69 extends keyof MathMLElementTagNameMap>(qualifiedName: K_69): HTMLCollectionOf<MathMLElementTagNameMap[K_69]>;
2431
- getElementsByTagName<K_70 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_70): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_70]>;
2845
+ getElementsByTagName<K_76 extends keyof HTMLElementTagNameMap>(qualifiedName: K_76): HTMLCollectionOf<HTMLElementTagNameMap[K_76]>;
2846
+ getElementsByTagName<K_77 extends keyof SVGElementTagNameMap>(qualifiedName: K_77): HTMLCollectionOf<SVGElementTagNameMap[K_77]>;
2847
+ getElementsByTagName<K_78 extends keyof MathMLElementTagNameMap>(qualifiedName: K_78): HTMLCollectionOf<MathMLElementTagNameMap[K_78]>;
2848
+ getElementsByTagName<K_79 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_79): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_79]>;
2432
2849
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
2433
2850
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
2434
2851
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -2481,7 +2898,7 @@ declare const SearchableSelect_base: {
2481
2898
  contains(other: Node | null): boolean;
2482
2899
  getRootNode(options?: GetRootNodeOptions | undefined): Node;
2483
2900
  hasChildNodes(): boolean;
2484
- insertBefore<T_9 extends Node>(node: T_9, child: Node | null): T_9;
2901
+ insertBefore<T_10 extends Node>(node: T_10, child: Node | null): T_10;
2485
2902
  isDefaultNamespace(namespace: string | null): boolean;
2486
2903
  isEqualNode(otherNode: Node | null): boolean;
2487
2904
  isSameNode(otherNode: Node | null): boolean;
@@ -2793,9 +3210,9 @@ declare const SearchableSelect_base: {
2793
3210
  translate: boolean;
2794
3211
  attachInternals(): ElementInternals;
2795
3212
  click(): void;
2796
- addEventListener<K_71 extends keyof HTMLElementEventMap>(type: K_71, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_71]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
3213
+ addEventListener<K_80 extends keyof HTMLElementEventMap>(type: K_80, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_80]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
2797
3214
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
2798
- removeEventListener<K_72 extends keyof HTMLElementEventMap>(type: K_72, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_72]) => any, options?: boolean | EventListenerOptions | undefined): void;
3215
+ removeEventListener<K_81 extends keyof HTMLElementEventMap>(type: K_81, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_81]) => any, options?: boolean | EventListenerOptions | undefined): void;
2799
3216
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
2800
3217
  readonly attributes: NamedNodeMap;
2801
3218
  readonly classList: DOMTokenList;
@@ -2822,10 +3239,10 @@ declare const SearchableSelect_base: {
2822
3239
  readonly tagName: string;
2823
3240
  attachShadow(init: ShadowRootInit): ShadowRoot;
2824
3241
  checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
2825
- closest<K_73 extends keyof HTMLElementTagNameMap>(selector: K_73): HTMLElementTagNameMap[K_73] | null;
2826
- closest<K_74 extends keyof SVGElementTagNameMap>(selector: K_74): SVGElementTagNameMap[K_74] | null;
2827
- closest<K_75 extends keyof MathMLElementTagNameMap>(selector: K_75): MathMLElementTagNameMap[K_75] | null;
2828
- closest<E_9 extends Element = Element>(selectors: string): E_9 | null;
3242
+ closest<K_82 extends keyof HTMLElementTagNameMap>(selector: K_82): HTMLElementTagNameMap[K_82] | null;
3243
+ closest<K_83 extends keyof SVGElementTagNameMap>(selector: K_83): SVGElementTagNameMap[K_83] | null;
3244
+ closest<K_84 extends keyof MathMLElementTagNameMap>(selector: K_84): MathMLElementTagNameMap[K_84] | null;
3245
+ closest<E_10 extends Element = Element>(selectors: string): E_10 | null;
2829
3246
  getAttribute(qualifiedName: string): string | null;
2830
3247
  getAttributeNS(namespace: string | null, localName: string): string | null;
2831
3248
  getAttributeNames(): string[];
@@ -2834,10 +3251,10 @@ declare const SearchableSelect_base: {
2834
3251
  getBoundingClientRect(): DOMRect;
2835
3252
  getClientRects(): DOMRectList;
2836
3253
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
2837
- getElementsByTagName<K_76 extends keyof HTMLElementTagNameMap>(qualifiedName: K_76): HTMLCollectionOf<HTMLElementTagNameMap[K_76]>;
2838
- getElementsByTagName<K_77 extends keyof SVGElementTagNameMap>(qualifiedName: K_77): HTMLCollectionOf<SVGElementTagNameMap[K_77]>;
2839
- getElementsByTagName<K_78 extends keyof MathMLElementTagNameMap>(qualifiedName: K_78): HTMLCollectionOf<MathMLElementTagNameMap[K_78]>;
2840
- getElementsByTagName<K_79 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_79): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_79]>;
3254
+ getElementsByTagName<K_85 extends keyof HTMLElementTagNameMap>(qualifiedName: K_85): HTMLCollectionOf<HTMLElementTagNameMap[K_85]>;
3255
+ getElementsByTagName<K_86 extends keyof SVGElementTagNameMap>(qualifiedName: K_86): HTMLCollectionOf<SVGElementTagNameMap[K_86]>;
3256
+ getElementsByTagName<K_87 extends keyof MathMLElementTagNameMap>(qualifiedName: K_87): HTMLCollectionOf<MathMLElementTagNameMap[K_87]>;
3257
+ getElementsByTagName<K_88 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_88): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_88]>;
2841
3258
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
2842
3259
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
2843
3260
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -2890,7 +3307,7 @@ declare const SearchableSelect_base: {
2890
3307
  contains(other: Node | null): boolean;
2891
3308
  getRootNode(options?: GetRootNodeOptions | undefined): Node;
2892
3309
  hasChildNodes(): boolean;
2893
- insertBefore<T_10 extends Node>(node: T_10, child: Node | null): T_10;
3310
+ insertBefore<T_11 extends Node>(node: T_11, child: Node | null): T_11;
2894
3311
  isDefaultNamespace(namespace: string | null): boolean;
2895
3312
  isEqualNode(otherNode: Node | null): boolean;
2896
3313
  isSameNode(otherNode: Node | null): boolean;