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