@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
@@ -45,398 +45,44 @@ export declare const SingleValuePicker: <T extends AbstractConstructor<PickerFie
45
45
  readonly _pickerButtonIcon: string;
46
46
  _onPickerButtonClick(): void;
47
47
  _onOkClick(): void;
48
- helperText?: string | undefined;
49
- _helperTextSlottedContent?: HTMLElement[] | undefined;
50
- readonly _feedbackDescribedBy: string;
51
- _internalFeedback(): {
52
- type: import("../../feedback/feedback-message").FeedbackType;
53
- message: string;
54
- };
55
- _slottedHelperTextFeedbackType(): "none" | "helper";
56
- _getFeedbackTemplate(ctx: import("../../design-system/defineVividComponent").VividElementDefinitionContext): import("@microsoft/fast-element").ViewTemplate<{
57
- helperText?: string | undefined;
58
- _helperTextSlottedContent?: HTMLElement[] | undefined;
59
- readonly _feedbackDescribedBy: string;
60
- _internalFeedback(): {
61
- type: import("../../feedback/feedback-message").FeedbackType;
62
- message: string;
63
- };
64
- _slottedHelperTextFeedbackType(): "none" | "helper";
65
- _getFeedbackTemplate(ctx: import("../../design-system/defineVividComponent").VividElementDefinitionContext): import("@microsoft/fast-element").ViewTemplate<any, any>;
66
- connectedCallback(): void;
67
- _vividAriaBehaviour: import("../../aria/aria-mixin").VividAriaBehaviour;
68
- readonly $fastController: import("@microsoft/fast-element").Controller;
69
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
70
- disconnectedCallback(): void;
71
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
72
- accessKey: string;
73
- readonly accessKeyLabel: string;
74
- autocapitalize: string;
75
- dir: string;
76
- draggable: boolean;
77
- hidden: boolean;
78
- inert: boolean;
79
- innerText: string;
80
- lang: string;
81
- readonly offsetHeight: number;
82
- readonly offsetLeft: number;
83
- readonly offsetParent: Element | null;
84
- readonly offsetTop: number;
85
- readonly offsetWidth: number;
86
- outerText: string;
87
- spellcheck: boolean;
88
- title: string;
89
- translate: boolean;
90
- attachInternals(): ElementInternals;
91
- click(): void;
92
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
93
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
94
- removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
95
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
96
- readonly attributes: NamedNodeMap;
97
- readonly classList: DOMTokenList;
98
- className: string;
99
- readonly clientHeight: number;
100
- readonly clientLeft: number;
101
- readonly clientTop: number;
102
- readonly clientWidth: number;
103
- id: string;
104
- readonly localName: string;
105
- readonly namespaceURI: string | null;
106
- onfullscreenchange: ((this: Element, ev: Event) => any) | null;
107
- onfullscreenerror: ((this: Element, ev: Event) => any) | null;
108
- outerHTML: string;
109
- readonly ownerDocument: Document;
110
- readonly part: DOMTokenList;
111
- readonly prefix: string | null;
112
- readonly scrollHeight: number;
113
- scrollLeft: number;
114
- scrollTop: number;
115
- readonly scrollWidth: number;
116
- readonly shadowRoot: ShadowRoot | null;
117
- slot: string;
118
- readonly tagName: string;
119
- attachShadow(init: ShadowRootInit): ShadowRoot;
120
- checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
121
- closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
122
- closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
123
- closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
124
- closest<E extends Element = Element>(selectors: string): E | null;
125
- getAttribute(qualifiedName: string): string | null;
126
- getAttributeNS(namespace: string | null, localName: string): string | null;
127
- getAttributeNames(): string[];
128
- getAttributeNode(qualifiedName: string): Attr | null;
129
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
130
- getBoundingClientRect(): DOMRect;
131
- getClientRects(): DOMRectList;
132
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
133
- getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
134
- getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
135
- getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
136
- getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
137
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
138
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
139
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
140
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
141
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
142
- hasAttribute(qualifiedName: string): boolean;
143
- hasAttributeNS(namespace: string | null, localName: string): boolean;
144
- hasAttributes(): boolean;
145
- hasPointerCapture(pointerId: number): boolean;
146
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
147
- insertAdjacentHTML(position: InsertPosition, text: string): void;
148
- insertAdjacentText(where: InsertPosition, data: string): void;
149
- matches(selectors: string): boolean;
150
- releasePointerCapture(pointerId: number): void;
151
- removeAttribute(qualifiedName: string): void;
152
- removeAttributeNS(namespace: string | null, localName: string): void;
153
- removeAttributeNode(attr: Attr): Attr;
154
- requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
155
- requestPointerLock(): void;
156
- scroll(options?: ScrollToOptions | undefined): void;
157
- scroll(x: number, y: number): void;
158
- scrollBy(options?: ScrollToOptions | undefined): void;
159
- scrollBy(x: number, y: number): void;
160
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
161
- scrollTo(options?: ScrollToOptions | undefined): void;
162
- scrollTo(x: number, y: number): void;
163
- setAttribute(qualifiedName: string, value: string): void;
164
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
165
- setAttributeNode(attr: Attr): Attr | null;
166
- setAttributeNodeNS(attr: Attr): Attr | null;
167
- setPointerCapture(pointerId: number): void;
168
- toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
169
- webkitMatchesSelector(selectors: string): boolean;
170
- readonly baseURI: string;
171
- readonly childNodes: NodeListOf<ChildNode>;
172
- readonly firstChild: ChildNode | null;
173
- readonly isConnected: boolean;
174
- readonly lastChild: ChildNode | null;
175
- readonly nextSibling: ChildNode | null;
176
- readonly nodeName: string;
177
- readonly nodeType: number;
178
- nodeValue: string | null;
179
- readonly parentElement: HTMLElement | null;
180
- readonly parentNode: ParentNode | null;
181
- readonly previousSibling: ChildNode | null;
182
- textContent: string | null;
183
- appendChild<T_1 extends Node>(node: T_1): T_1;
184
- cloneNode(deep?: boolean | undefined): Node;
185
- compareDocumentPosition(other: Node): number;
186
- contains(other: Node | null): boolean;
187
- getRootNode(options?: GetRootNodeOptions | undefined): Node;
188
- hasChildNodes(): boolean;
189
- insertBefore<T_2 extends Node>(node: T_2, child: Node | null): T_2;
190
- isDefaultNamespace(namespace: string | null): boolean;
191
- isEqualNode(otherNode: Node | null): boolean;
192
- isSameNode(otherNode: Node | null): boolean;
193
- lookupNamespaceURI(prefix: string | null): string | null;
194
- lookupPrefix(namespace: string | null): string | null;
195
- normalize(): void;
196
- removeChild<T_3 extends Node>(child: T_3): T_3;
197
- replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
198
- readonly ELEMENT_NODE: 1;
199
- readonly ATTRIBUTE_NODE: 2;
200
- readonly TEXT_NODE: 3;
201
- readonly CDATA_SECTION_NODE: 4;
202
- readonly ENTITY_REFERENCE_NODE: 5;
203
- readonly ENTITY_NODE: 6;
204
- readonly PROCESSING_INSTRUCTION_NODE: 7;
205
- readonly COMMENT_NODE: 8;
206
- readonly DOCUMENT_NODE: 9;
207
- readonly DOCUMENT_TYPE_NODE: 10;
208
- readonly DOCUMENT_FRAGMENT_NODE: 11;
209
- readonly NOTATION_NODE: 12;
210
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
211
- readonly DOCUMENT_POSITION_PRECEDING: 2;
212
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
213
- readonly DOCUMENT_POSITION_CONTAINS: 8;
214
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
215
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
216
- dispatchEvent(event: Event): boolean;
217
- ariaAtomic: string | null;
218
- ariaAutoComplete: string | null;
219
- ariaBusy: string | null;
220
- ariaChecked: string | null;
221
- ariaColCount: string | null;
222
- ariaColIndex: string | null;
223
- ariaColSpan: string | null;
224
- ariaCurrent: string | null;
225
- ariaDisabled: string | null;
226
- ariaExpanded: string | null;
227
- ariaHasPopup: string | null;
228
- ariaHidden: string | null;
229
- ariaInvalid: string | null;
230
- ariaKeyShortcuts: string | null;
231
- ariaLabel: string | null;
232
- ariaLevel: string | null;
233
- ariaLive: string | null;
234
- ariaModal: string | null;
235
- ariaMultiLine: string | null;
236
- ariaMultiSelectable: string | null;
237
- ariaOrientation: string | null;
238
- ariaPlaceholder: string | null;
239
- ariaPosInSet: string | null;
240
- ariaPressed: string | null;
241
- ariaReadOnly: string | null;
242
- ariaRequired: string | null;
243
- ariaRoleDescription: string | null;
244
- ariaRowCount: string | null;
245
- ariaRowIndex: string | null;
246
- ariaRowSpan: string | null;
247
- ariaSelected: string | null;
248
- ariaSetSize: string | null;
249
- ariaSort: string | null;
250
- ariaValueMax: string | null;
251
- ariaValueMin: string | null;
252
- ariaValueNow: string | null;
253
- ariaValueText: string | null;
254
- role: string | null;
255
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
256
- getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
257
- after(...nodes: (string | Node)[]): void;
258
- before(...nodes: (string | Node)[]): void;
259
- remove(): void;
260
- replaceWith(...nodes: (string | Node)[]): void;
261
- innerHTML: string;
262
- readonly nextElementSibling: Element | null;
263
- readonly previousElementSibling: Element | null;
264
- readonly childElementCount: number;
265
- readonly children: HTMLCollection;
266
- readonly firstElementChild: Element | null;
267
- readonly lastElementChild: Element | null;
268
- append(...nodes: (string | Node)[]): void;
269
- prepend(...nodes: (string | Node)[]): void;
270
- querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
271
- querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
272
- querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
273
- querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
274
- querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
275
- querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
276
- querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
277
- querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
278
- querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
279
- querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
280
- replaceChildren(...nodes: (string | Node)[]): void;
281
- readonly assignedSlot: HTMLSlotElement | null;
282
- readonly style: CSSStyleDeclaration;
283
- contentEditable: string;
284
- enterKeyHint: string;
285
- inputMode: string;
286
- readonly isContentEditable: boolean;
287
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
288
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
289
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
290
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
291
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
292
- onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
293
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
294
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
295
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
296
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
297
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
298
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
299
- onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
300
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
301
- oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
302
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
303
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
304
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
305
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
306
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
307
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
308
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
309
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
310
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
311
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
312
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
313
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
314
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
315
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
316
- onerror: OnErrorEventHandler;
317
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
318
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
319
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
320
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
321
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
322
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
323
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
324
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
325
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
326
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
327
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
328
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
329
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
330
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
331
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
332
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
333
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
334
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
335
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
336
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
337
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
338
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
339
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
340
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
341
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
342
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
343
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
344
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
345
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
346
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
347
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
348
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
349
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
350
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
351
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
352
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
353
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
354
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
355
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
356
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
357
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
358
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
359
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
360
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
361
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
362
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
363
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
364
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
365
- ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
366
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
367
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
368
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
369
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
370
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
371
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
372
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
373
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
374
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
375
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
376
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
377
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
378
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
379
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
380
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
381
- autofocus: boolean;
382
- readonly dataset: DOMStringMap;
383
- nonce?: string | undefined;
384
- tabIndex: number;
385
- blur(): void;
386
- focus(options?: FocusOptions | undefined): void;
387
- ariaColIndexText: string | null;
388
- ariaDescription: string | null;
389
- ariaRowIndexText: string | null;
390
- ariaRelevant: string | null;
391
- roleChanged(prev: string | null, next: string | null): void;
392
- ariaAtomicChanged(prev: string | null, next: string | null): void;
393
- ariaAutoCompleteChanged(prev: string | null, next: string | null): void;
394
- ariaBusyChanged(prev: string | null, next: string | null): void;
395
- ariaCheckedChanged(prev: string | null, next: string | null): void;
396
- ariaColCountChanged(prev: string | null, next: string | null): void;
397
- ariaColIndexChanged(prev: string | null, next: string | null): void;
398
- ariaColIndexTextChanged(prev: string | null, next: string | null): void;
399
- ariaColSpanChanged(prev: string | null, next: string | null): void;
400
- ariaCurrentChanged(prev: string | null, next: string | null): void;
401
- ariaDescriptionChanged(prev: string | null, next: string | null): void;
402
- ariaDisabledChanged(prev: string | null, next: string | null): void;
403
- ariaExpandedChanged(prev: string | null, next: string | null): void;
404
- ariaHasPopupChanged(prev: string | null, next: string | null): void;
405
- ariaHiddenChanged(prev: string | null, next: string | null): void;
406
- ariaInvalidChanged(prev: string | null, next: string | null): void;
407
- ariaKeyShortcutsChanged(prev: string | null, next: string | null): void;
408
- ariaLabelChanged(prev: string | null, next: string | null): void;
409
- ariaLevelChanged(prev: string | null, next: string | null): void;
410
- ariaLiveChanged(prev: string | null, next: string | null): void;
411
- ariaModalChanged(prev: string | null, next: string | null): void;
412
- ariaMultiLineChanged(prev: string | null, next: string | null): void;
413
- ariaMultiSelectableChanged(prev: string | null, next: string | null): void;
414
- ariaOrientationChanged(prev: string | null, next: string | null): void;
415
- ariaPlaceholderChanged(prev: string | null, next: string | null): void;
416
- ariaPosInSetChanged(prev: string | null, next: string | null): void;
417
- ariaPressedChanged(prev: string | null, next: string | null): void;
418
- ariaReadOnlyChanged(prev: string | null, next: string | null): void;
419
- ariaRequiredChanged(prev: string | null, next: string | null): void;
420
- ariaRoleDescriptionChanged(prev: string | null, next: string | null): void;
421
- ariaRowCountChanged(prev: string | null, next: string | null): void;
422
- ariaRowIndexChanged(prev: string | null, next: string | null): void;
423
- ariaRowIndexTextChanged(prev: string | null, next: string | null): void;
424
- ariaRowSpanChanged(prev: string | null, next: string | null): void;
425
- ariaSelectedChanged(prev: string | null, next: string | null): void;
426
- ariaSetSizeChanged(prev: string | null, next: string | null): void;
427
- ariaSortChanged(prev: string | null, next: string | null): void;
428
- ariaValueMaxChanged(prev: string | null, next: string | null): void;
429
- ariaValueMinChanged(prev: string | null, next: string | null): void;
430
- ariaValueNowChanged(prev: string | null, next: string | null): void;
431
- ariaValueTextChanged(prev: string | null, next: string | null): void;
432
- ariaRelevantChanged(prev: string | null, next: string | null): void;
433
- "__#1@#handleReplacedProp"(replacedProp: {
434
- newPropertyName: string;
435
- deprecatedPropertyName: string;
436
- fromDeprecated: (v: any) => any;
437
- toDeprecated?: ((v: any) => any) | undefined;
438
- }): void;
439
- }, any>;
48
+ _contextualHelpSlottedContent?: HTMLElement[] | undefined;
49
+ readonly _hasContextualHelp: boolean;
50
+ _isFromContextualHelp(e: Event): boolean;
51
+ label?: string | undefined;
52
+ errorValidationMessage: string;
53
+ forceErrorDisplay: boolean;
54
+ hasBeenTouched: boolean;
55
+ "__#3@#handleInvalidEvent": (() => void) & (() => void);
56
+ formResetCallback: (() => void) & (() => void) & (() => void) & (() => void);
57
+ readonly validity: ValidityState;
58
+ readonly form: HTMLFormElement | null;
59
+ readonly validationMessage: string;
60
+ readonly willValidate: boolean;
61
+ readonly labels: readonly Node[];
62
+ dirtyValue: boolean;
63
+ proxySlot?: HTMLSlotElement | undefined;
64
+ value: string;
65
+ currentValue: string;
66
+ initialValue: string;
67
+ initialValueChanged: ((_previous: string, _next: string) => void) & ((_previous: string, _next: string) => void);
68
+ disabled: boolean;
69
+ disabledChanged: ((_previous: boolean, _next: boolean) => void) & ((_previous: boolean, _next: boolean) => void);
70
+ name: string;
71
+ nameChanged: ((_previous: string, _next: string) => void) & ((_previous: string, _next: string) => void);
72
+ required: boolean;
73
+ requiredChanged: ((_previous: boolean, _next: boolean) => void) & ((_previous: boolean, _next: boolean) => void);
74
+ readonly elementInternals: ElementInternals | null;
75
+ proxyEventsToBlock: string[];
76
+ checkValidity: (() => boolean) & (() => boolean);
77
+ reportValidity: (() => boolean) & (() => boolean);
78
+ setValidity: ((flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined) => void) & ((flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined) => void);
79
+ formDisabledCallback: ((disabled: boolean) => void) & ((disabled: boolean) => void);
80
+ proxyInitialized: boolean;
81
+ attachProxy: (() => void) & (() => void);
82
+ detachProxy: (() => void) & (() => void);
83
+ setFormValue: ((value: string | File | FormData | null, state?: string | File | FormData | null | undefined) => void) & ((value: string | File | FormData | null, state?: string | File | FormData | null | undefined) => void);
84
+ _keypressHandler: ((e: KeyboardEvent) => void) & ((e: KeyboardEvent) => void);
85
+ stopPropagation: ((e: Event) => void) & ((e: Event) => void);
440
86
  _vividAriaBehaviour: import("../../aria/aria-mixin").VividAriaBehaviour;
441
87
  readonly $fastController: import("@microsoft/fast-element").Controller;
442
88
  $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
@@ -461,9 +107,9 @@ export declare const SingleValuePicker: <T extends AbstractConstructor<PickerFie
461
107
  translate: boolean;
462
108
  attachInternals(): ElementInternals;
463
109
  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;
110
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
465
111
  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;
112
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
467
113
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
468
114
  readonly attributes: NamedNodeMap;
469
115
  readonly classList: DOMTokenList;
@@ -490,10 +136,10 @@ export declare const SingleValuePicker: <T extends AbstractConstructor<PickerFie
490
136
  readonly tagName: string;
491
137
  attachShadow(init: ShadowRootInit): ShadowRoot;
492
138
  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;
139
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
140
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
141
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
142
+ closest<E extends Element = Element>(selectors: string): E | null;
497
143
  getAttribute(qualifiedName: string): string | null;
498
144
  getAttributeNS(namespace: string | null, localName: string): string | null;
499
145
  getAttributeNames(): string[];
@@ -502,10 +148,10 @@ export declare const SingleValuePicker: <T extends AbstractConstructor<PickerFie
502
148
  getBoundingClientRect(): DOMRect;
503
149
  getClientRects(): DOMRectList;
504
150
  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]>;
151
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
152
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
153
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
154
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
509
155
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
510
156
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
511
157
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -558,7 +204,7 @@ export declare const SingleValuePicker: <T extends AbstractConstructor<PickerFie
558
204
  contains(other: Node | null): boolean;
559
205
  getRootNode(options?: GetRootNodeOptions | undefined): Node;
560
206
  hasChildNodes(): boolean;
561
- insertBefore<T_5 extends Node>(node: T_5, child: Node | null): T_5;
207
+ insertBefore<T_2 extends Node>(node: T_2, child: Node | null): T_2;
562
208
  isDefaultNamespace(namespace: string | null): boolean;
563
209
  isEqualNode(otherNode: Node | null): boolean;
564
210
  isSameNode(otherNode: Node | null): boolean;
@@ -808,47 +454,404 @@ export declare const SingleValuePicker: <T extends AbstractConstructor<PickerFie
808
454
  fromDeprecated: (v: any) => any;
809
455
  toDeprecated?: ((v: any) => any) | undefined;
810
456
  }): void;
457
+ helperText?: string | undefined;
458
+ _helperTextSlottedContent?: HTMLElement[] | undefined;
459
+ readonly _feedbackDescribedBy: string;
460
+ _internalFeedback(): {
461
+ type: import("../../feedback/feedback-message").FeedbackType;
462
+ message: string;
463
+ };
464
+ _slottedHelperTextFeedbackType(): "none" | "helper";
465
+ _getFeedbackTemplate(ctx: import("../../design-system/defineVividComponent").VividElementDefinitionContext): import("@microsoft/fast-element").ViewTemplate<{
466
+ helperText?: string | undefined;
467
+ _helperTextSlottedContent?: HTMLElement[] | undefined;
468
+ readonly _feedbackDescribedBy: string;
469
+ _internalFeedback(): {
470
+ type: import("../../feedback/feedback-message").FeedbackType;
471
+ message: string;
472
+ };
473
+ _slottedHelperTextFeedbackType(): "none" | "helper";
474
+ _getFeedbackTemplate(ctx: import("../../design-system/defineVividComponent").VividElementDefinitionContext): import("@microsoft/fast-element").ViewTemplate<any, any>;
475
+ connectedCallback(): void;
476
+ _vividAriaBehaviour: import("../../aria/aria-mixin").VividAriaBehaviour;
477
+ readonly $fastController: import("@microsoft/fast-element").Controller;
478
+ $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
479
+ disconnectedCallback(): void;
480
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
481
+ accessKey: string;
482
+ readonly accessKeyLabel: string;
483
+ autocapitalize: string;
484
+ dir: string;
485
+ draggable: boolean;
486
+ hidden: boolean;
487
+ inert: boolean;
488
+ innerText: string;
489
+ lang: string;
490
+ readonly offsetHeight: number;
491
+ readonly offsetLeft: number;
492
+ readonly offsetParent: Element | null;
493
+ readonly offsetTop: number;
494
+ readonly offsetWidth: number;
495
+ outerText: string;
496
+ spellcheck: boolean;
497
+ title: string;
498
+ translate: boolean;
499
+ attachInternals(): ElementInternals;
500
+ click(): void;
501
+ addEventListener<K_17 extends keyof HTMLElementEventMap>(type: K_17, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_17]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
502
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
503
+ removeEventListener<K_18 extends keyof HTMLElementEventMap>(type: K_18, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_18]) => any, options?: boolean | EventListenerOptions | undefined): void;
504
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
505
+ readonly attributes: NamedNodeMap;
506
+ readonly classList: DOMTokenList;
507
+ className: string;
508
+ readonly clientHeight: number;
509
+ readonly clientLeft: number;
510
+ readonly clientTop: number;
511
+ readonly clientWidth: number;
512
+ id: string;
513
+ readonly localName: string;
514
+ readonly namespaceURI: string | null;
515
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
516
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
517
+ outerHTML: string;
518
+ readonly ownerDocument: Document;
519
+ readonly part: DOMTokenList;
520
+ readonly prefix: string | null;
521
+ readonly scrollHeight: number;
522
+ scrollLeft: number;
523
+ scrollTop: number;
524
+ readonly scrollWidth: number;
525
+ readonly shadowRoot: ShadowRoot | null;
526
+ slot: string;
527
+ readonly tagName: string;
528
+ attachShadow(init: ShadowRootInit): ShadowRoot;
529
+ checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
530
+ closest<K_19 extends keyof HTMLElementTagNameMap>(selector: K_19): HTMLElementTagNameMap[K_19] | null;
531
+ closest<K_20 extends keyof SVGElementTagNameMap>(selector: K_20): SVGElementTagNameMap[K_20] | null;
532
+ closest<K_21 extends keyof MathMLElementTagNameMap>(selector: K_21): MathMLElementTagNameMap[K_21] | null;
533
+ closest<E_3 extends Element = Element>(selectors: string): E_3 | null;
534
+ getAttribute(qualifiedName: string): string | null;
535
+ getAttributeNS(namespace: string | null, localName: string): string | null;
536
+ getAttributeNames(): string[];
537
+ getAttributeNode(qualifiedName: string): Attr | null;
538
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
539
+ getBoundingClientRect(): DOMRect;
540
+ getClientRects(): DOMRectList;
541
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
542
+ getElementsByTagName<K_22 extends keyof HTMLElementTagNameMap>(qualifiedName: K_22): HTMLCollectionOf<HTMLElementTagNameMap[K_22]>;
543
+ getElementsByTagName<K_23 extends keyof SVGElementTagNameMap>(qualifiedName: K_23): HTMLCollectionOf<SVGElementTagNameMap[K_23]>;
544
+ getElementsByTagName<K_24 extends keyof MathMLElementTagNameMap>(qualifiedName: K_24): HTMLCollectionOf<MathMLElementTagNameMap[K_24]>;
545
+ getElementsByTagName<K_25 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_25): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_25]>;
546
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
547
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
548
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
549
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
550
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
551
+ hasAttribute(qualifiedName: string): boolean;
552
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
553
+ hasAttributes(): boolean;
554
+ hasPointerCapture(pointerId: number): boolean;
555
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
556
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
557
+ insertAdjacentText(where: InsertPosition, data: string): void;
558
+ matches(selectors: string): boolean;
559
+ releasePointerCapture(pointerId: number): void;
560
+ removeAttribute(qualifiedName: string): void;
561
+ removeAttributeNS(namespace: string | null, localName: string): void;
562
+ removeAttributeNode(attr: Attr): Attr;
563
+ requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
564
+ requestPointerLock(): void;
565
+ scroll(options?: ScrollToOptions | undefined): void;
566
+ scroll(x: number, y: number): void;
567
+ scrollBy(options?: ScrollToOptions | undefined): void;
568
+ scrollBy(x: number, y: number): void;
569
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
570
+ scrollTo(options?: ScrollToOptions | undefined): void;
571
+ scrollTo(x: number, y: number): void;
572
+ setAttribute(qualifiedName: string, value: string): void;
573
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
574
+ setAttributeNode(attr: Attr): Attr | null;
575
+ setAttributeNodeNS(attr: Attr): Attr | null;
576
+ setPointerCapture(pointerId: number): void;
577
+ toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
578
+ webkitMatchesSelector(selectors: string): boolean;
579
+ readonly baseURI: string;
580
+ readonly childNodes: NodeListOf<ChildNode>;
581
+ readonly firstChild: ChildNode | null;
582
+ readonly isConnected: boolean;
583
+ readonly lastChild: ChildNode | null;
584
+ readonly nextSibling: ChildNode | null;
585
+ readonly nodeName: string;
586
+ readonly nodeType: number;
587
+ nodeValue: string | null;
588
+ readonly parentElement: HTMLElement | null;
589
+ readonly parentNode: ParentNode | null;
590
+ readonly previousSibling: ChildNode | null;
591
+ textContent: string | null;
592
+ appendChild<T_1 extends Node>(node: T_1): T_1;
593
+ cloneNode(deep?: boolean | undefined): Node;
594
+ compareDocumentPosition(other: Node): number;
595
+ contains(other: Node | null): boolean;
596
+ getRootNode(options?: GetRootNodeOptions | undefined): Node;
597
+ hasChildNodes(): boolean;
598
+ insertBefore<T_5 extends Node>(node: T_5, child: Node | null): T_5;
599
+ isDefaultNamespace(namespace: string | null): boolean;
600
+ isEqualNode(otherNode: Node | null): boolean;
601
+ isSameNode(otherNode: Node | null): boolean;
602
+ lookupNamespaceURI(prefix: string | null): string | null;
603
+ lookupPrefix(namespace: string | null): string | null;
604
+ normalize(): void;
605
+ removeChild<T_3 extends Node>(child: T_3): T_3;
606
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
607
+ readonly ELEMENT_NODE: 1;
608
+ readonly ATTRIBUTE_NODE: 2;
609
+ readonly TEXT_NODE: 3;
610
+ readonly CDATA_SECTION_NODE: 4;
611
+ readonly ENTITY_REFERENCE_NODE: 5;
612
+ readonly ENTITY_NODE: 6;
613
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
614
+ readonly COMMENT_NODE: 8;
615
+ readonly DOCUMENT_NODE: 9;
616
+ readonly DOCUMENT_TYPE_NODE: 10;
617
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
618
+ readonly NOTATION_NODE: 12;
619
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
620
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
621
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
622
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
623
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
624
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
625
+ dispatchEvent(event: Event): boolean;
626
+ ariaAtomic: string | null;
627
+ ariaAutoComplete: string | null;
628
+ ariaBusy: string | null;
629
+ ariaChecked: string | null;
630
+ ariaColCount: string | null;
631
+ ariaColIndex: string | null;
632
+ ariaColSpan: string | null;
633
+ ariaCurrent: string | null;
634
+ ariaDisabled: string | null;
635
+ ariaExpanded: string | null;
636
+ ariaHasPopup: string | null;
637
+ ariaHidden: string | null;
638
+ ariaInvalid: string | null;
639
+ ariaKeyShortcuts: string | null;
640
+ ariaLabel: string | null;
641
+ ariaLevel: string | null;
642
+ ariaLive: string | null;
643
+ ariaModal: string | null;
644
+ ariaMultiLine: string | null;
645
+ ariaMultiSelectable: string | null;
646
+ ariaOrientation: string | null;
647
+ ariaPlaceholder: string | null;
648
+ ariaPosInSet: string | null;
649
+ ariaPressed: string | null;
650
+ ariaReadOnly: string | null;
651
+ ariaRequired: string | null;
652
+ ariaRoleDescription: string | null;
653
+ ariaRowCount: string | null;
654
+ ariaRowIndex: string | null;
655
+ ariaRowSpan: string | null;
656
+ ariaSelected: string | null;
657
+ ariaSetSize: string | null;
658
+ ariaSort: string | null;
659
+ ariaValueMax: string | null;
660
+ ariaValueMin: string | null;
661
+ ariaValueNow: string | null;
662
+ ariaValueText: string | null;
663
+ role: string | null;
664
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
665
+ getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
666
+ after(...nodes: (string | Node)[]): void;
667
+ before(...nodes: (string | Node)[]): void;
668
+ remove(): void;
669
+ replaceWith(...nodes: (string | Node)[]): void;
670
+ innerHTML: string;
671
+ readonly nextElementSibling: Element | null;
672
+ readonly previousElementSibling: Element | null;
673
+ readonly childElementCount: number;
674
+ readonly children: HTMLCollection;
675
+ readonly firstElementChild: Element | null;
676
+ readonly lastElementChild: Element | null;
677
+ append(...nodes: (string | Node)[]): void;
678
+ prepend(...nodes: (string | Node)[]): void;
679
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
680
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
681
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
682
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
683
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
684
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
685
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
686
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
687
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
688
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
689
+ replaceChildren(...nodes: (string | Node)[]): void;
690
+ readonly assignedSlot: HTMLSlotElement | null;
691
+ readonly style: CSSStyleDeclaration;
692
+ contentEditable: string;
693
+ enterKeyHint: string;
694
+ inputMode: string;
695
+ readonly isContentEditable: boolean;
696
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
697
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
698
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
699
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
700
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
701
+ onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
702
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
703
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
704
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
705
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
706
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
707
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
708
+ onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
709
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
710
+ oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
711
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
712
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
713
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
714
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
715
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
716
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
717
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
718
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
719
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
720
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
721
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
722
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
723
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
724
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
725
+ onerror: OnErrorEventHandler;
726
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
727
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
728
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
729
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
730
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
731
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
732
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
733
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
734
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
735
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
736
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
737
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
738
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
739
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
740
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
741
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
742
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
743
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
744
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
745
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
746
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
747
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
748
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
749
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
750
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
751
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
752
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
753
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
754
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
755
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
756
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
757
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
758
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
759
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
760
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
761
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
762
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
763
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
764
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
765
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
766
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
767
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
768
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
769
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
770
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
771
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
772
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
773
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
774
+ ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
775
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
776
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
777
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
778
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
779
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
780
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
781
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
782
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
783
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
784
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
785
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
786
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
787
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
788
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
789
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
790
+ autofocus: boolean;
791
+ readonly dataset: DOMStringMap;
792
+ nonce?: string | undefined;
793
+ tabIndex: number;
794
+ blur(): void;
795
+ focus(options?: FocusOptions | undefined): void;
796
+ ariaColIndexText: string | null;
797
+ ariaDescription: string | null;
798
+ ariaRowIndexText: string | null;
799
+ ariaRelevant: string | null;
800
+ roleChanged(prev: string | null, next: string | null): void;
801
+ ariaAtomicChanged(prev: string | null, next: string | null): void;
802
+ ariaAutoCompleteChanged(prev: string | null, next: string | null): void;
803
+ ariaBusyChanged(prev: string | null, next: string | null): void;
804
+ ariaCheckedChanged(prev: string | null, next: string | null): void;
805
+ ariaColCountChanged(prev: string | null, next: string | null): void;
806
+ ariaColIndexChanged(prev: string | null, next: string | null): void;
807
+ ariaColIndexTextChanged(prev: string | null, next: string | null): void;
808
+ ariaColSpanChanged(prev: string | null, next: string | null): void;
809
+ ariaCurrentChanged(prev: string | null, next: string | null): void;
810
+ ariaDescriptionChanged(prev: string | null, next: string | null): void;
811
+ ariaDisabledChanged(prev: string | null, next: string | null): void;
812
+ ariaExpandedChanged(prev: string | null, next: string | null): void;
813
+ ariaHasPopupChanged(prev: string | null, next: string | null): void;
814
+ ariaHiddenChanged(prev: string | null, next: string | null): void;
815
+ ariaInvalidChanged(prev: string | null, next: string | null): void;
816
+ ariaKeyShortcutsChanged(prev: string | null, next: string | null): void;
817
+ ariaLabelChanged(prev: string | null, next: string | null): void;
818
+ ariaLevelChanged(prev: string | null, next: string | null): void;
819
+ ariaLiveChanged(prev: string | null, next: string | null): void;
820
+ ariaModalChanged(prev: string | null, next: string | null): void;
821
+ ariaMultiLineChanged(prev: string | null, next: string | null): void;
822
+ ariaMultiSelectableChanged(prev: string | null, next: string | null): void;
823
+ ariaOrientationChanged(prev: string | null, next: string | null): void;
824
+ ariaPlaceholderChanged(prev: string | null, next: string | null): void;
825
+ ariaPosInSetChanged(prev: string | null, next: string | null): void;
826
+ ariaPressedChanged(prev: string | null, next: string | null): void;
827
+ ariaReadOnlyChanged(prev: string | null, next: string | null): void;
828
+ ariaRequiredChanged(prev: string | null, next: string | null): void;
829
+ ariaRoleDescriptionChanged(prev: string | null, next: string | null): void;
830
+ ariaRowCountChanged(prev: string | null, next: string | null): void;
831
+ ariaRowIndexChanged(prev: string | null, next: string | null): void;
832
+ ariaRowIndexTextChanged(prev: string | null, next: string | null): void;
833
+ ariaRowSpanChanged(prev: string | null, next: string | null): void;
834
+ ariaSelectedChanged(prev: string | null, next: string | null): void;
835
+ ariaSetSizeChanged(prev: string | null, next: string | null): void;
836
+ ariaSortChanged(prev: string | null, next: string | null): void;
837
+ ariaValueMaxChanged(prev: string | null, next: string | null): void;
838
+ ariaValueMinChanged(prev: string | null, next: string | null): void;
839
+ ariaValueNowChanged(prev: string | null, next: string | null): void;
840
+ ariaValueTextChanged(prev: string | null, next: string | null): void;
841
+ ariaRelevantChanged(prev: string | null, next: string | null): void;
842
+ "__#1@#handleReplacedProp"(replacedProp: {
843
+ newPropertyName: string;
844
+ deprecatedPropertyName: string;
845
+ fromDeprecated: (v: any) => any;
846
+ toDeprecated?: ((v: any) => any) | undefined;
847
+ }): void;
848
+ }, any>;
811
849
  errorText?: string | undefined;
812
850
  errorTextChanged(_: string, newErrorText: string | undefined): void;
813
851
  "__#4@#blockValidateCalls": boolean;
814
852
  "__#4@#originalValidateFn": () => void;
815
853
  "__#4@#forceCustomError"(errorMessage: string): void;
816
854
  "__#4@#clearCustomErrorAndRevalidate"(): void;
817
- label?: string | undefined;
818
- errorValidationMessage: string;
819
- forceErrorDisplay: boolean;
820
- hasBeenTouched: boolean;
821
- "__#3@#handleInvalidEvent": (() => void) & (() => void);
822
- formResetCallback: (() => void) & (() => void) & (() => void) & (() => void);
823
- readonly validity: ValidityState;
824
- readonly form: HTMLFormElement | null;
825
- readonly validationMessage: string;
826
- readonly willValidate: boolean;
827
- readonly labels: readonly Node[];
828
- dirtyValue: boolean;
829
- proxySlot?: HTMLSlotElement | undefined;
830
- value: string;
831
- currentValue: string;
832
- initialValue: string;
833
- initialValueChanged: ((_previous: string, _next: string) => void) & ((_previous: string, _next: string) => void);
834
- disabled: boolean;
835
- disabledChanged: ((_previous: boolean, _next: boolean) => void) & ((_previous: boolean, _next: boolean) => void);
836
- name: string;
837
- nameChanged: ((_previous: string, _next: string) => void) & ((_previous: string, _next: string) => void);
838
- required: boolean;
839
- requiredChanged: ((_previous: boolean, _next: boolean) => void) & ((_previous: boolean, _next: boolean) => void);
840
- readonly elementInternals: ElementInternals | null;
841
- proxyEventsToBlock: string[];
842
- checkValidity: (() => boolean) & (() => boolean);
843
- reportValidity: (() => boolean) & (() => boolean);
844
- setValidity: ((flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined) => void) & ((flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined) => void);
845
- formDisabledCallback: ((disabled: boolean) => void) & ((disabled: boolean) => void);
846
- proxyInitialized: boolean;
847
- attachProxy: (() => void) & (() => void);
848
- detachProxy: (() => void) & (() => void);
849
- setFormValue: ((value: string | File | FormData | null, state?: string | File | FormData | null | undefined) => void) & ((value: string | File | FormData | null, state?: string | File | FormData | null | undefined) => void);
850
- _keypressHandler: ((e: KeyboardEvent) => void) & ((e: KeyboardEvent) => void);
851
- stopPropagation: ((e: Event) => void) & ((e: Event) => void);
852
855
  _trappedFocus(event: KeyboardEvent, getFocusableEls: () => NodeListOf<HTMLElement>): boolean;
853
856
  readonly locale: import("../../localization/Locale").Locale;
854
857
  }) & T;