@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
@@ -64,398 +64,44 @@ export declare const TimeSelectionPickerTemplate: (context: VividElementDefiniti
64
64
  readonly _pickerButtonLabel: string;
65
65
  readonly _pickerButtonIcon: string;
66
66
  _onOkClick(): void;
67
- helperText?: string | undefined;
68
- _helperTextSlottedContent?: HTMLElement[] | undefined;
69
- readonly _feedbackDescribedBy: string;
70
- _internalFeedback(): {
71
- type: import("../../feedback/feedback-message").FeedbackType;
72
- message: string;
73
- };
74
- _slottedHelperTextFeedbackType(): "none" | "helper";
75
- _getFeedbackTemplate(ctx: VividElementDefinitionContext): import("@microsoft/fast-element").ViewTemplate<{
76
- helperText?: string | undefined;
77
- _helperTextSlottedContent?: HTMLElement[] | undefined;
78
- readonly _feedbackDescribedBy: string;
79
- _internalFeedback(): {
80
- type: import("../../feedback/feedback-message").FeedbackType;
81
- message: string;
82
- };
83
- _slottedHelperTextFeedbackType(): "none" | "helper";
84
- _getFeedbackTemplate(ctx: VividElementDefinitionContext): import("@microsoft/fast-element").ViewTemplate<any, any>;
85
- connectedCallback(): void;
86
- _vividAriaBehaviour: import("../../aria/aria-mixin").VividAriaBehaviour;
87
- readonly $fastController: import("@microsoft/fast-element").Controller;
88
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
89
- disconnectedCallback(): void;
90
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
91
- accessKey: string;
92
- readonly accessKeyLabel: string;
93
- autocapitalize: string;
94
- dir: string;
95
- draggable: boolean;
96
- hidden: boolean;
97
- inert: boolean;
98
- innerText: string;
99
- lang: string;
100
- readonly offsetHeight: number;
101
- readonly offsetLeft: number;
102
- readonly offsetParent: Element | null;
103
- readonly offsetTop: number;
104
- readonly offsetWidth: number;
105
- outerText: string;
106
- spellcheck: boolean;
107
- title: string;
108
- translate: boolean;
109
- attachInternals(): ElementInternals;
110
- click(): void;
111
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
112
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
113
- removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
114
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
115
- readonly attributes: NamedNodeMap;
116
- readonly classList: DOMTokenList;
117
- className: string;
118
- readonly clientHeight: number;
119
- readonly clientLeft: number;
120
- readonly clientTop: number;
121
- readonly clientWidth: number;
122
- id: string;
123
- readonly localName: string;
124
- readonly namespaceURI: string | null;
125
- onfullscreenchange: ((this: Element, ev: Event) => any) | null;
126
- onfullscreenerror: ((this: Element, ev: Event) => any) | null;
127
- outerHTML: string;
128
- readonly ownerDocument: Document;
129
- readonly part: DOMTokenList;
130
- readonly prefix: string | null;
131
- readonly scrollHeight: number;
132
- scrollLeft: number;
133
- scrollTop: number;
134
- readonly scrollWidth: number;
135
- readonly shadowRoot: ShadowRoot | null;
136
- slot: string;
137
- readonly tagName: string;
138
- attachShadow(init: ShadowRootInit): ShadowRoot;
139
- checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
140
- closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
141
- closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
142
- closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
143
- closest<E extends Element = Element>(selectors: string): E | null;
144
- getAttribute(qualifiedName: string): string | null;
145
- getAttributeNS(namespace: string | null, localName: string): string | null;
146
- getAttributeNames(): string[];
147
- getAttributeNode(qualifiedName: string): Attr | null;
148
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
149
- getBoundingClientRect(): DOMRect;
150
- getClientRects(): DOMRectList;
151
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
152
- getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
153
- getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
154
- getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
155
- getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
156
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
157
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
158
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
159
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
160
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
161
- hasAttribute(qualifiedName: string): boolean;
162
- hasAttributeNS(namespace: string | null, localName: string): boolean;
163
- hasAttributes(): boolean;
164
- hasPointerCapture(pointerId: number): boolean;
165
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
166
- insertAdjacentHTML(position: InsertPosition, text: string): void;
167
- insertAdjacentText(where: InsertPosition, data: string): void;
168
- matches(selectors: string): boolean;
169
- releasePointerCapture(pointerId: number): void;
170
- removeAttribute(qualifiedName: string): void;
171
- removeAttributeNS(namespace: string | null, localName: string): void;
172
- removeAttributeNode(attr: Attr): Attr;
173
- requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
174
- requestPointerLock(): void;
175
- scroll(options?: ScrollToOptions | undefined): void;
176
- scroll(x: number, y: number): void;
177
- scrollBy(options?: ScrollToOptions | undefined): void;
178
- scrollBy(x: number, y: number): void;
179
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
180
- scrollTo(options?: ScrollToOptions | undefined): void;
181
- scrollTo(x: number, y: number): void;
182
- setAttribute(qualifiedName: string, value: string): void;
183
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
184
- setAttributeNode(attr: Attr): Attr | null;
185
- setAttributeNodeNS(attr: Attr): Attr | null;
186
- setPointerCapture(pointerId: number): void;
187
- toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
188
- webkitMatchesSelector(selectors: string): boolean;
189
- readonly baseURI: string;
190
- readonly childNodes: NodeListOf<ChildNode>;
191
- readonly firstChild: ChildNode | null;
192
- readonly isConnected: boolean;
193
- readonly lastChild: ChildNode | null;
194
- readonly nextSibling: ChildNode | null;
195
- readonly nodeName: string;
196
- readonly nodeType: number;
197
- nodeValue: string | null;
198
- readonly parentElement: HTMLElement | null;
199
- readonly parentNode: ParentNode | null;
200
- readonly previousSibling: ChildNode | null;
201
- textContent: string | null;
202
- appendChild<T extends Node>(node: T): T;
203
- cloneNode(deep?: boolean | undefined): Node;
204
- compareDocumentPosition(other: Node): number;
205
- contains(other: Node | null): boolean;
206
- getRootNode(options?: GetRootNodeOptions | undefined): Node;
207
- hasChildNodes(): boolean;
208
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
209
- isDefaultNamespace(namespace: string | null): boolean;
210
- isEqualNode(otherNode: Node | null): boolean;
211
- isSameNode(otherNode: Node | null): boolean;
212
- lookupNamespaceURI(prefix: string | null): string | null;
213
- lookupPrefix(namespace: string | null): string | null;
214
- normalize(): void;
215
- removeChild<T_2 extends Node>(child: T_2): T_2;
216
- replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
217
- readonly ELEMENT_NODE: 1;
218
- readonly ATTRIBUTE_NODE: 2;
219
- readonly TEXT_NODE: 3;
220
- readonly CDATA_SECTION_NODE: 4;
221
- readonly ENTITY_REFERENCE_NODE: 5;
222
- readonly ENTITY_NODE: 6;
223
- readonly PROCESSING_INSTRUCTION_NODE: 7;
224
- readonly COMMENT_NODE: 8;
225
- readonly DOCUMENT_NODE: 9;
226
- readonly DOCUMENT_TYPE_NODE: 10;
227
- readonly DOCUMENT_FRAGMENT_NODE: 11;
228
- readonly NOTATION_NODE: 12;
229
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
230
- readonly DOCUMENT_POSITION_PRECEDING: 2;
231
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
232
- readonly DOCUMENT_POSITION_CONTAINS: 8;
233
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
234
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
235
- dispatchEvent(event: Event): boolean;
236
- ariaAtomic: string | null;
237
- ariaAutoComplete: string | null;
238
- ariaBusy: string | null;
239
- ariaChecked: string | null;
240
- ariaColCount: string | null;
241
- ariaColIndex: string | null;
242
- ariaColSpan: string | null;
243
- ariaCurrent: string | null;
244
- ariaDisabled: string | null;
245
- ariaExpanded: string | null;
246
- ariaHasPopup: string | null;
247
- ariaHidden: string | null;
248
- ariaInvalid: string | null;
249
- ariaKeyShortcuts: string | null;
250
- ariaLabel: string | null;
251
- ariaLevel: string | null;
252
- ariaLive: string | null;
253
- ariaModal: string | null;
254
- ariaMultiLine: string | null;
255
- ariaMultiSelectable: string | null;
256
- ariaOrientation: string | null;
257
- ariaPlaceholder: string | null;
258
- ariaPosInSet: string | null;
259
- ariaPressed: string | null;
260
- ariaReadOnly: string | null;
261
- ariaRequired: string | null;
262
- ariaRoleDescription: string | null;
263
- ariaRowCount: string | null;
264
- ariaRowIndex: string | null;
265
- ariaRowSpan: string | null;
266
- ariaSelected: string | null;
267
- ariaSetSize: string | null;
268
- ariaSort: string | null;
269
- ariaValueMax: string | null;
270
- ariaValueMin: string | null;
271
- ariaValueNow: string | null;
272
- ariaValueText: string | null;
273
- role: string | null;
274
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
275
- getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
276
- after(...nodes: (string | Node)[]): void;
277
- before(...nodes: (string | Node)[]): void;
278
- remove(): void;
279
- replaceWith(...nodes: (string | Node)[]): void;
280
- innerHTML: string;
281
- readonly nextElementSibling: Element | null;
282
- readonly previousElementSibling: Element | null;
283
- readonly childElementCount: number;
284
- readonly children: HTMLCollection;
285
- readonly firstElementChild: Element | null;
286
- readonly lastElementChild: Element | null;
287
- append(...nodes: (string | Node)[]): void;
288
- prepend(...nodes: (string | Node)[]): void;
289
- querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
290
- querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
291
- querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
292
- querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
293
- querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
294
- querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
295
- querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
296
- querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
297
- querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
298
- querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
299
- replaceChildren(...nodes: (string | Node)[]): void;
300
- readonly assignedSlot: HTMLSlotElement | null;
301
- readonly style: CSSStyleDeclaration;
302
- contentEditable: string;
303
- enterKeyHint: string;
304
- inputMode: string;
305
- readonly isContentEditable: boolean;
306
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
307
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
308
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
309
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
310
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
311
- onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
312
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
313
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
314
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
315
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
316
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
317
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
318
- onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
319
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
320
- oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
321
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
322
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
323
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
324
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
325
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
326
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
327
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
328
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
329
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
330
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
331
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
332
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
333
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
334
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
- onerror: OnErrorEventHandler;
336
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
337
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
338
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
339
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
340
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
341
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
342
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
343
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
344
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
345
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
346
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
347
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
348
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
349
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
350
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
351
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
352
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
353
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
354
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
355
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
356
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
357
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
358
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
359
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
360
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
361
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
362
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
363
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
364
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
365
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
366
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
367
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
368
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
369
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
370
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
371
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
372
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
373
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
374
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
375
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
376
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
377
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
378
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
379
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
380
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
381
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
382
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
383
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
384
- ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
385
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
386
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
387
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
388
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
389
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
390
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
391
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
392
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
393
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
394
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
395
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
396
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
397
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
398
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
399
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
400
- autofocus: boolean;
401
- readonly dataset: DOMStringMap;
402
- nonce?: string | undefined;
403
- tabIndex: number;
404
- blur(): void;
405
- focus(options?: FocusOptions | undefined): void;
406
- ariaColIndexText: string | null;
407
- ariaDescription: string | null;
408
- ariaRowIndexText: string | null;
409
- ariaRelevant: string | null;
410
- roleChanged(prev: string | null, next: string | null): void;
411
- ariaAtomicChanged(prev: string | null, next: string | null): void;
412
- ariaAutoCompleteChanged(prev: string | null, next: string | null): void;
413
- ariaBusyChanged(prev: string | null, next: string | null): void;
414
- ariaCheckedChanged(prev: string | null, next: string | null): void;
415
- ariaColCountChanged(prev: string | null, next: string | null): void;
416
- ariaColIndexChanged(prev: string | null, next: string | null): void;
417
- ariaColIndexTextChanged(prev: string | null, next: string | null): void;
418
- ariaColSpanChanged(prev: string | null, next: string | null): void;
419
- ariaCurrentChanged(prev: string | null, next: string | null): void;
420
- ariaDescriptionChanged(prev: string | null, next: string | null): void;
421
- ariaDisabledChanged(prev: string | null, next: string | null): void;
422
- ariaExpandedChanged(prev: string | null, next: string | null): void;
423
- ariaHasPopupChanged(prev: string | null, next: string | null): void;
424
- ariaHiddenChanged(prev: string | null, next: string | null): void;
425
- ariaInvalidChanged(prev: string | null, next: string | null): void;
426
- ariaKeyShortcutsChanged(prev: string | null, next: string | null): void;
427
- ariaLabelChanged(prev: string | null, next: string | null): void;
428
- ariaLevelChanged(prev: string | null, next: string | null): void;
429
- ariaLiveChanged(prev: string | null, next: string | null): void;
430
- ariaModalChanged(prev: string | null, next: string | null): void;
431
- ariaMultiLineChanged(prev: string | null, next: string | null): void;
432
- ariaMultiSelectableChanged(prev: string | null, next: string | null): void;
433
- ariaOrientationChanged(prev: string | null, next: string | null): void;
434
- ariaPlaceholderChanged(prev: string | null, next: string | null): void;
435
- ariaPosInSetChanged(prev: string | null, next: string | null): void;
436
- ariaPressedChanged(prev: string | null, next: string | null): void;
437
- ariaReadOnlyChanged(prev: string | null, next: string | null): void;
438
- ariaRequiredChanged(prev: string | null, next: string | null): void;
439
- ariaRoleDescriptionChanged(prev: string | null, next: string | null): void;
440
- ariaRowCountChanged(prev: string | null, next: string | null): void;
441
- ariaRowIndexChanged(prev: string | null, next: string | null): void;
442
- ariaRowIndexTextChanged(prev: string | null, next: string | null): void;
443
- ariaRowSpanChanged(prev: string | null, next: string | null): void;
444
- ariaSelectedChanged(prev: string | null, next: string | null): void;
445
- ariaSetSizeChanged(prev: string | null, next: string | null): void;
446
- ariaSortChanged(prev: string | null, next: string | null): void;
447
- ariaValueMaxChanged(prev: string | null, next: string | null): void;
448
- ariaValueMinChanged(prev: string | null, next: string | null): void;
449
- ariaValueNowChanged(prev: string | null, next: string | null): void;
450
- ariaValueTextChanged(prev: string | null, next: string | null): void;
451
- ariaRelevantChanged(prev: string | null, next: string | null): void;
452
- "__#1@#handleReplacedProp"(replacedProp: {
453
- newPropertyName: string;
454
- deprecatedPropertyName: string;
455
- fromDeprecated: (v: any) => any;
456
- toDeprecated?: ((v: any) => any) | undefined;
457
- }): void;
458
- }, any>;
67
+ _contextualHelpSlottedContent?: HTMLElement[] | undefined;
68
+ readonly _hasContextualHelp: boolean;
69
+ _isFromContextualHelp(e: Event): boolean;
70
+ label?: string | undefined;
71
+ errorValidationMessage: string;
72
+ forceErrorDisplay: boolean;
73
+ hasBeenTouched: boolean;
74
+ "__#3@#handleInvalidEvent": (() => void) & (() => void);
75
+ formResetCallback: (() => void) & (() => void) & (() => void) & (() => void);
76
+ readonly validity: ValidityState;
77
+ readonly form: HTMLFormElement | null;
78
+ readonly validationMessage: string;
79
+ readonly willValidate: boolean;
80
+ readonly labels: readonly Node[];
81
+ dirtyValue: boolean;
82
+ proxySlot?: HTMLSlotElement | undefined;
83
+ value: string;
84
+ currentValue: string;
85
+ initialValue: string;
86
+ initialValueChanged: ((_previous: string, _next: string) => void) & ((_previous: string, _next: string) => void);
87
+ disabled: boolean;
88
+ disabledChanged: ((_previous: boolean, _next: boolean) => void) & ((_previous: boolean, _next: boolean) => void);
89
+ name: string;
90
+ nameChanged: ((_previous: string, _next: string) => void) & ((_previous: string, _next: string) => void);
91
+ required: boolean;
92
+ requiredChanged: ((_previous: boolean, _next: boolean) => void) & ((_previous: boolean, _next: boolean) => void);
93
+ readonly elementInternals: ElementInternals | null;
94
+ proxyEventsToBlock: string[];
95
+ checkValidity: (() => boolean) & (() => boolean);
96
+ reportValidity: (() => boolean) & (() => boolean);
97
+ setValidity: ((flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined) => void) & ((flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined) => void);
98
+ formDisabledCallback: ((disabled: boolean) => void) & ((disabled: boolean) => void);
99
+ proxyInitialized: boolean;
100
+ attachProxy: (() => void) & (() => void);
101
+ detachProxy: (() => void) & (() => void);
102
+ 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);
103
+ _keypressHandler: ((e: KeyboardEvent) => void) & ((e: KeyboardEvent) => void);
104
+ stopPropagation: ((e: Event) => void) & ((e: Event) => void);
459
105
  _vividAriaBehaviour: import("../../aria/aria-mixin").VividAriaBehaviour;
460
106
  readonly $fastController: import("@microsoft/fast-element").Controller;
461
107
  $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
@@ -480,9 +126,9 @@ export declare const TimeSelectionPickerTemplate: (context: VividElementDefiniti
480
126
  translate: boolean;
481
127
  attachInternals(): ElementInternals;
482
128
  click(): void;
483
- addEventListener<K_17 extends keyof HTMLElementEventMap>(type: K_17, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_17]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
129
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
484
130
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
485
- removeEventListener<K_18 extends keyof HTMLElementEventMap>(type: K_18, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_18]) => any, options?: boolean | EventListenerOptions | undefined): void;
131
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
486
132
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
487
133
  readonly attributes: NamedNodeMap;
488
134
  readonly classList: DOMTokenList;
@@ -509,10 +155,10 @@ export declare const TimeSelectionPickerTemplate: (context: VividElementDefiniti
509
155
  readonly tagName: string;
510
156
  attachShadow(init: ShadowRootInit): ShadowRoot;
511
157
  checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
512
- closest<K_19 extends keyof HTMLElementTagNameMap>(selector: K_19): HTMLElementTagNameMap[K_19] | null;
513
- closest<K_20 extends keyof SVGElementTagNameMap>(selector: K_20): SVGElementTagNameMap[K_20] | null;
514
- closest<K_21 extends keyof MathMLElementTagNameMap>(selector: K_21): MathMLElementTagNameMap[K_21] | null;
515
- closest<E_3 extends Element = Element>(selectors: string): E_3 | null;
158
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
159
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
160
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
161
+ closest<E extends Element = Element>(selectors: string): E | null;
516
162
  getAttribute(qualifiedName: string): string | null;
517
163
  getAttributeNS(namespace: string | null, localName: string): string | null;
518
164
  getAttributeNames(): string[];
@@ -521,10 +167,10 @@ export declare const TimeSelectionPickerTemplate: (context: VividElementDefiniti
521
167
  getBoundingClientRect(): DOMRect;
522
168
  getClientRects(): DOMRectList;
523
169
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
524
- getElementsByTagName<K_22 extends keyof HTMLElementTagNameMap>(qualifiedName: K_22): HTMLCollectionOf<HTMLElementTagNameMap[K_22]>;
525
- getElementsByTagName<K_23 extends keyof SVGElementTagNameMap>(qualifiedName: K_23): HTMLCollectionOf<SVGElementTagNameMap[K_23]>;
526
- getElementsByTagName<K_24 extends keyof MathMLElementTagNameMap>(qualifiedName: K_24): HTMLCollectionOf<MathMLElementTagNameMap[K_24]>;
527
- getElementsByTagName<K_25 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_25): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_25]>;
170
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
171
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
172
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
173
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
528
174
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
529
175
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
530
176
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -577,7 +223,7 @@ export declare const TimeSelectionPickerTemplate: (context: VividElementDefiniti
577
223
  contains(other: Node | null): boolean;
578
224
  getRootNode(options?: GetRootNodeOptions | undefined): Node;
579
225
  hasChildNodes(): boolean;
580
- insertBefore<T_4 extends Node>(node: T_4, child: Node | null): T_4;
226
+ insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
581
227
  isDefaultNamespace(namespace: string | null): boolean;
582
228
  isEqualNode(otherNode: Node | null): boolean;
583
229
  isSameNode(otherNode: Node | null): boolean;
@@ -819,102 +465,14 @@ export declare const TimeSelectionPickerTemplate: (context: VividElementDefiniti
819
465
  ariaValueMaxChanged(prev: string | null, next: string | null): void;
820
466
  ariaValueMinChanged(prev: string | null, next: string | null): void;
821
467
  ariaValueNowChanged(prev: string | null, next: string | null): void;
822
- ariaValueTextChanged(prev: string | null, next: string | null): void;
823
- ariaRelevantChanged(prev: string | null, next: string | null): void;
824
- "__#1@#handleReplacedProp"(replacedProp: {
825
- newPropertyName: string;
826
- deprecatedPropertyName: string;
827
- fromDeprecated: (v: any) => any;
828
- toDeprecated?: ((v: any) => any) | undefined;
829
- }): void;
830
- errorText?: string | undefined;
831
- errorTextChanged(_: string, newErrorText: string | undefined): void;
832
- "__#4@#blockValidateCalls": boolean;
833
- "__#4@#originalValidateFn": () => void;
834
- "__#4@#forceCustomError"(errorMessage: string): void;
835
- "__#4@#clearCustomErrorAndRevalidate"(): void;
836
- label?: string | undefined;
837
- errorValidationMessage: string;
838
- forceErrorDisplay: boolean;
839
- hasBeenTouched: boolean;
840
- "__#3@#handleInvalidEvent": (() => void) & (() => void);
841
- formResetCallback: (() => void) & (() => void) & (() => void) & (() => void);
842
- readonly validity: ValidityState;
843
- readonly form: HTMLFormElement | null;
844
- readonly validationMessage: string;
845
- readonly willValidate: boolean;
846
- readonly labels: readonly Node[];
847
- dirtyValue: boolean;
848
- proxySlot?: HTMLSlotElement | undefined;
849
- value: string;
850
- currentValue: string;
851
- initialValue: string;
852
- initialValueChanged: ((_previous: string, _next: string) => void) & ((_previous: string, _next: string) => void);
853
- disabled: boolean;
854
- disabledChanged: ((_previous: boolean, _next: boolean) => void) & ((_previous: boolean, _next: boolean) => void);
855
- name: string;
856
- nameChanged: ((_previous: string, _next: string) => void) & ((_previous: string, _next: string) => void);
857
- required: boolean;
858
- requiredChanged: ((_previous: boolean, _next: boolean) => void) & ((_previous: boolean, _next: boolean) => void);
859
- readonly elementInternals: ElementInternals | null;
860
- proxyEventsToBlock: string[];
861
- checkValidity: (() => boolean) & (() => boolean);
862
- reportValidity: (() => boolean) & (() => boolean);
863
- setValidity: ((flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined) => void) & ((flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined) => void);
864
- formDisabledCallback: ((disabled: boolean) => void) & ((disabled: boolean) => void);
865
- proxyInitialized: boolean;
866
- attachProxy: (() => void) & (() => void);
867
- detachProxy: (() => void) & (() => void);
868
- 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);
869
- _keypressHandler: ((e: KeyboardEvent) => void) & ((e: KeyboardEvent) => void);
870
- stopPropagation: ((e: Event) => void) & ((e: Event) => void);
871
- _trappedFocus(event: KeyboardEvent, getFocusableEls: () => NodeListOf<HTMLElement>): boolean;
872
- readonly locale: import("../../localization/Locale").Locale;
873
- } & {
874
- _isValidValue(value: string): boolean;
875
- _toPresentationValue(value: string): string;
876
- _parsePresentationValue(presentationValue: string): string;
877
- _isInternalValueUpdate: boolean;
878
- valueChanged(previous: string, next: string): void;
879
- _updatePresentationValue(): void;
880
- _updateValueDueToUserInteraction(newValue: string, isIntermediateUpdate: boolean): void;
881
- _onTextFieldChange(): void;
882
- _onTextFieldInput(event: Event): void;
883
- _isPresentationValueInvalid(): boolean;
884
- _onClearClick(): void;
885
- readOnly: boolean;
886
- readOnlyChanged(): void;
887
- _textFieldEl: import("../../..").VwcTextFieldElement;
888
- _dialogEl: HTMLElement;
889
- _pickerButtonEl: import("../../..").VwcButtonElement;
890
- connectedCallback(): void;
891
- disconnectedCallback(): void;
892
- "__#19@#onFocusIn": () => void;
893
- "__#19@#onFocusOut": () => void;
894
- proxy: HTMLInputElement;
895
- validate(): void;
896
- _getCustomValidationError(): string | null;
897
- "__#19@#localeChangeHandler": {
898
- handleChange: () => void;
899
- };
900
- "__#19@#localeChangeObserver": import("@microsoft/fast-element").BindingObserver<any, any, any>;
901
- "__#19@#startObservingLocaleChanges"(): void;
902
- "__#19@#stopObservingLocaleChanges"(): void;
903
- _popupOpen: boolean;
904
- "__#19@#dismissOnClickOutside": (event: MouseEvent) => void;
905
- "__#19@#openPopupIfPossible"(): void;
906
- _closePopup(restoreFocusToTextField?: boolean): void;
907
- _onBaseKeyDown(event: KeyboardEvent): boolean;
908
- _focusableElsWithinDialog(): NodeListOf<HTMLElement>;
909
- readonly _dialogLabel: string;
910
- _presentationValue: string;
911
- _presentationValueChanged(): void;
912
- readonly _textFieldPlaceholder: string;
913
- _textFieldSize?: string | undefined;
914
- readonly _pickerButtonLabel: string;
915
- readonly _pickerButtonIcon: string;
916
- _onPickerButtonClick(): void;
917
- _onOkClick(): void;
468
+ ariaValueTextChanged(prev: string | null, next: string | null): void;
469
+ ariaRelevantChanged(prev: string | null, next: string | null): void;
470
+ "__#1@#handleReplacedProp"(replacedProp: {
471
+ newPropertyName: string;
472
+ deprecatedPropertyName: string;
473
+ fromDeprecated: (v: any) => any;
474
+ toDeprecated?: ((v: any) => any) | undefined;
475
+ }): void;
918
476
  helperText?: string | undefined;
919
477
  _helperTextSlottedContent?: HTMLElement[] | undefined;
920
478
  readonly _feedbackDescribedBy: string;
@@ -959,9 +517,9 @@ export declare const TimeSelectionPickerTemplate: (context: VividElementDefiniti
959
517
  translate: boolean;
960
518
  attachInternals(): ElementInternals;
961
519
  click(): void;
962
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
520
+ addEventListener<K_17 extends keyof HTMLElementEventMap>(type: K_17, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_17]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
963
521
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
964
- removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
522
+ removeEventListener<K_18 extends keyof HTMLElementEventMap>(type: K_18, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_18]) => any, options?: boolean | EventListenerOptions | undefined): void;
965
523
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
966
524
  readonly attributes: NamedNodeMap;
967
525
  readonly classList: DOMTokenList;
@@ -988,10 +546,10 @@ export declare const TimeSelectionPickerTemplate: (context: VividElementDefiniti
988
546
  readonly tagName: string;
989
547
  attachShadow(init: ShadowRootInit): ShadowRoot;
990
548
  checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
991
- closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
992
- closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
993
- closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
994
- closest<E extends Element = Element>(selectors: string): E | null;
549
+ closest<K_19 extends keyof HTMLElementTagNameMap>(selector: K_19): HTMLElementTagNameMap[K_19] | null;
550
+ closest<K_20 extends keyof SVGElementTagNameMap>(selector: K_20): SVGElementTagNameMap[K_20] | null;
551
+ closest<K_21 extends keyof MathMLElementTagNameMap>(selector: K_21): MathMLElementTagNameMap[K_21] | null;
552
+ closest<E_3 extends Element = Element>(selectors: string): E_3 | null;
995
553
  getAttribute(qualifiedName: string): string | null;
996
554
  getAttributeNS(namespace: string | null, localName: string): string | null;
997
555
  getAttributeNames(): string[];
@@ -1000,10 +558,10 @@ export declare const TimeSelectionPickerTemplate: (context: VividElementDefiniti
1000
558
  getBoundingClientRect(): DOMRect;
1001
559
  getClientRects(): DOMRectList;
1002
560
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
1003
- getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
1004
- getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
1005
- getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
1006
- getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
561
+ getElementsByTagName<K_22 extends keyof HTMLElementTagNameMap>(qualifiedName: K_22): HTMLCollectionOf<HTMLElementTagNameMap[K_22]>;
562
+ getElementsByTagName<K_23 extends keyof SVGElementTagNameMap>(qualifiedName: K_23): HTMLCollectionOf<SVGElementTagNameMap[K_23]>;
563
+ getElementsByTagName<K_24 extends keyof MathMLElementTagNameMap>(qualifiedName: K_24): HTMLCollectionOf<MathMLElementTagNameMap[K_24]>;
564
+ getElementsByTagName<K_25 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_25): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_25]>;
1007
565
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
1008
566
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
1009
567
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -1056,7 +614,7 @@ export declare const TimeSelectionPickerTemplate: (context: VividElementDefiniti
1056
614
  contains(other: Node | null): boolean;
1057
615
  getRootNode(options?: GetRootNodeOptions | undefined): Node;
1058
616
  hasChildNodes(): boolean;
1059
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
617
+ insertBefore<T_4 extends Node>(node: T_4, child: Node | null): T_4;
1060
618
  isDefaultNamespace(namespace: string | null): boolean;
1061
619
  isEqualNode(otherNode: Node | null): boolean;
1062
620
  isSameNode(otherNode: Node | null): boolean;
@@ -1307,6 +865,97 @@ export declare const TimeSelectionPickerTemplate: (context: VividElementDefiniti
1307
865
  toDeprecated?: ((v: any) => any) | undefined;
1308
866
  }): void;
1309
867
  }, any>;
868
+ errorText?: string | undefined;
869
+ errorTextChanged(_: string, newErrorText: string | undefined): void;
870
+ "__#4@#blockValidateCalls": boolean;
871
+ "__#4@#originalValidateFn": () => void;
872
+ "__#4@#forceCustomError"(errorMessage: string): void;
873
+ "__#4@#clearCustomErrorAndRevalidate"(): void;
874
+ _trappedFocus(event: KeyboardEvent, getFocusableEls: () => NodeListOf<HTMLElement>): boolean;
875
+ readonly locale: import("../../localization/Locale").Locale;
876
+ } & {
877
+ _isValidValue(value: string): boolean;
878
+ _toPresentationValue(value: string): string;
879
+ _parsePresentationValue(presentationValue: string): string;
880
+ _isInternalValueUpdate: boolean;
881
+ valueChanged(previous: string, next: string): void;
882
+ _updatePresentationValue(): void;
883
+ _updateValueDueToUserInteraction(newValue: string, isIntermediateUpdate: boolean): void;
884
+ _onTextFieldChange(): void;
885
+ _onTextFieldInput(event: Event): void;
886
+ _isPresentationValueInvalid(): boolean;
887
+ _onClearClick(): void;
888
+ readOnly: boolean;
889
+ readOnlyChanged(): void;
890
+ _textFieldEl: import("../../..").VwcTextFieldElement;
891
+ _dialogEl: HTMLElement;
892
+ _pickerButtonEl: import("../../..").VwcButtonElement;
893
+ connectedCallback(): void;
894
+ disconnectedCallback(): void;
895
+ "__#19@#onFocusIn": () => void;
896
+ "__#19@#onFocusOut": () => void;
897
+ proxy: HTMLInputElement;
898
+ validate(): void;
899
+ _getCustomValidationError(): string | null;
900
+ "__#19@#localeChangeHandler": {
901
+ handleChange: () => void;
902
+ };
903
+ "__#19@#localeChangeObserver": import("@microsoft/fast-element").BindingObserver<any, any, any>;
904
+ "__#19@#startObservingLocaleChanges"(): void;
905
+ "__#19@#stopObservingLocaleChanges"(): void;
906
+ _popupOpen: boolean;
907
+ "__#19@#dismissOnClickOutside": (event: MouseEvent) => void;
908
+ "__#19@#openPopupIfPossible"(): void;
909
+ _closePopup(restoreFocusToTextField?: boolean): void;
910
+ _onBaseKeyDown(event: KeyboardEvent): boolean;
911
+ _focusableElsWithinDialog(): NodeListOf<HTMLElement>;
912
+ readonly _dialogLabel: string;
913
+ _presentationValue: string;
914
+ _presentationValueChanged(): void;
915
+ readonly _textFieldPlaceholder: string;
916
+ _textFieldSize?: string | undefined;
917
+ readonly _pickerButtonLabel: string;
918
+ readonly _pickerButtonIcon: string;
919
+ _onPickerButtonClick(): void;
920
+ _onOkClick(): void;
921
+ _contextualHelpSlottedContent?: HTMLElement[] | undefined;
922
+ readonly _hasContextualHelp: boolean;
923
+ _isFromContextualHelp(e: Event): boolean;
924
+ label?: string | undefined;
925
+ errorValidationMessage: string;
926
+ forceErrorDisplay: boolean;
927
+ hasBeenTouched: boolean;
928
+ "__#3@#handleInvalidEvent": (() => void) & (() => void);
929
+ formResetCallback: (() => void) & (() => void) & (() => void) & (() => void);
930
+ readonly validity: ValidityState;
931
+ readonly form: HTMLFormElement | null;
932
+ readonly validationMessage: string;
933
+ readonly willValidate: boolean;
934
+ readonly labels: readonly Node[];
935
+ dirtyValue: boolean;
936
+ proxySlot?: HTMLSlotElement | undefined;
937
+ value: string;
938
+ currentValue: string;
939
+ initialValue: string;
940
+ initialValueChanged: ((_previous: string, _next: string) => void) & ((_previous: string, _next: string) => void);
941
+ disabled: boolean;
942
+ disabledChanged: ((_previous: boolean, _next: boolean) => void) & ((_previous: boolean, _next: boolean) => void);
943
+ name: string;
944
+ nameChanged: ((_previous: string, _next: string) => void) & ((_previous: string, _next: string) => void);
945
+ required: boolean;
946
+ requiredChanged: ((_previous: boolean, _next: boolean) => void) & ((_previous: boolean, _next: boolean) => void);
947
+ readonly elementInternals: ElementInternals | null;
948
+ proxyEventsToBlock: string[];
949
+ checkValidity: (() => boolean) & (() => boolean);
950
+ reportValidity: (() => boolean) & (() => boolean);
951
+ setValidity: ((flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined) => void) & ((flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined) => void);
952
+ formDisabledCallback: ((disabled: boolean) => void) & ((disabled: boolean) => void);
953
+ proxyInitialized: boolean;
954
+ attachProxy: (() => void) & (() => void);
955
+ detachProxy: (() => void) & (() => void);
956
+ 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);
957
+ _keypressHandler: ((e: KeyboardEvent) => void) & ((e: KeyboardEvent) => void);
958
+ stopPropagation: ((e: Event) => void) & ((e: Event) => void);
1310
959
  _vividAriaBehaviour: import("../../aria/aria-mixin").VividAriaBehaviour;
1311
960
  readonly $fastController: import("@microsoft/fast-element").Controller;
1312
961
  $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
@@ -1678,47 +1327,404 @@ export declare const TimeSelectionPickerTemplate: (context: VividElementDefiniti
1678
1327
  fromDeprecated: (v: any) => any;
1679
1328
  toDeprecated?: ((v: any) => any) | undefined;
1680
1329
  }): void;
1330
+ helperText?: string | undefined;
1331
+ _helperTextSlottedContent?: HTMLElement[] | undefined;
1332
+ readonly _feedbackDescribedBy: string;
1333
+ _internalFeedback(): {
1334
+ type: import("../../feedback/feedback-message").FeedbackType;
1335
+ message: string;
1336
+ };
1337
+ _slottedHelperTextFeedbackType(): "none" | "helper";
1338
+ _getFeedbackTemplate(ctx: VividElementDefinitionContext): import("@microsoft/fast-element").ViewTemplate<{
1339
+ helperText?: string | undefined;
1340
+ _helperTextSlottedContent?: HTMLElement[] | undefined;
1341
+ readonly _feedbackDescribedBy: string;
1342
+ _internalFeedback(): {
1343
+ type: import("../../feedback/feedback-message").FeedbackType;
1344
+ message: string;
1345
+ };
1346
+ _slottedHelperTextFeedbackType(): "none" | "helper";
1347
+ _getFeedbackTemplate(ctx: VividElementDefinitionContext): import("@microsoft/fast-element").ViewTemplate<any, any>;
1348
+ connectedCallback(): void;
1349
+ _vividAriaBehaviour: import("../../aria/aria-mixin").VividAriaBehaviour;
1350
+ readonly $fastController: import("@microsoft/fast-element").Controller;
1351
+ $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
1352
+ disconnectedCallback(): void;
1353
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
1354
+ accessKey: string;
1355
+ readonly accessKeyLabel: string;
1356
+ autocapitalize: string;
1357
+ dir: string;
1358
+ draggable: boolean;
1359
+ hidden: boolean;
1360
+ inert: boolean;
1361
+ innerText: string;
1362
+ lang: string;
1363
+ readonly offsetHeight: number;
1364
+ readonly offsetLeft: number;
1365
+ readonly offsetParent: Element | null;
1366
+ readonly offsetTop: number;
1367
+ readonly offsetWidth: number;
1368
+ outerText: string;
1369
+ spellcheck: boolean;
1370
+ title: string;
1371
+ translate: boolean;
1372
+ attachInternals(): ElementInternals;
1373
+ click(): void;
1374
+ addEventListener<K_17 extends keyof HTMLElementEventMap>(type: K_17, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_17]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
1375
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
1376
+ removeEventListener<K_18 extends keyof HTMLElementEventMap>(type: K_18, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_18]) => any, options?: boolean | EventListenerOptions | undefined): void;
1377
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
1378
+ readonly attributes: NamedNodeMap;
1379
+ readonly classList: DOMTokenList;
1380
+ className: string;
1381
+ readonly clientHeight: number;
1382
+ readonly clientLeft: number;
1383
+ readonly clientTop: number;
1384
+ readonly clientWidth: number;
1385
+ id: string;
1386
+ readonly localName: string;
1387
+ readonly namespaceURI: string | null;
1388
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
1389
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
1390
+ outerHTML: string;
1391
+ readonly ownerDocument: Document;
1392
+ readonly part: DOMTokenList;
1393
+ readonly prefix: string | null;
1394
+ readonly scrollHeight: number;
1395
+ scrollLeft: number;
1396
+ scrollTop: number;
1397
+ readonly scrollWidth: number;
1398
+ readonly shadowRoot: ShadowRoot | null;
1399
+ slot: string;
1400
+ readonly tagName: string;
1401
+ attachShadow(init: ShadowRootInit): ShadowRoot;
1402
+ checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
1403
+ closest<K_19 extends keyof HTMLElementTagNameMap>(selector: K_19): HTMLElementTagNameMap[K_19] | null;
1404
+ closest<K_20 extends keyof SVGElementTagNameMap>(selector: K_20): SVGElementTagNameMap[K_20] | null;
1405
+ closest<K_21 extends keyof MathMLElementTagNameMap>(selector: K_21): MathMLElementTagNameMap[K_21] | null;
1406
+ closest<E_3 extends Element = Element>(selectors: string): E_3 | null;
1407
+ getAttribute(qualifiedName: string): string | null;
1408
+ getAttributeNS(namespace: string | null, localName: string): string | null;
1409
+ getAttributeNames(): string[];
1410
+ getAttributeNode(qualifiedName: string): Attr | null;
1411
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
1412
+ getBoundingClientRect(): DOMRect;
1413
+ getClientRects(): DOMRectList;
1414
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
1415
+ getElementsByTagName<K_22 extends keyof HTMLElementTagNameMap>(qualifiedName: K_22): HTMLCollectionOf<HTMLElementTagNameMap[K_22]>;
1416
+ getElementsByTagName<K_23 extends keyof SVGElementTagNameMap>(qualifiedName: K_23): HTMLCollectionOf<SVGElementTagNameMap[K_23]>;
1417
+ getElementsByTagName<K_24 extends keyof MathMLElementTagNameMap>(qualifiedName: K_24): HTMLCollectionOf<MathMLElementTagNameMap[K_24]>;
1418
+ getElementsByTagName<K_25 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_25): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_25]>;
1419
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
1420
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
1421
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
1422
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
1423
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
1424
+ hasAttribute(qualifiedName: string): boolean;
1425
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
1426
+ hasAttributes(): boolean;
1427
+ hasPointerCapture(pointerId: number): boolean;
1428
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
1429
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
1430
+ insertAdjacentText(where: InsertPosition, data: string): void;
1431
+ matches(selectors: string): boolean;
1432
+ releasePointerCapture(pointerId: number): void;
1433
+ removeAttribute(qualifiedName: string): void;
1434
+ removeAttributeNS(namespace: string | null, localName: string): void;
1435
+ removeAttributeNode(attr: Attr): Attr;
1436
+ requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
1437
+ requestPointerLock(): void;
1438
+ scroll(options?: ScrollToOptions | undefined): void;
1439
+ scroll(x: number, y: number): void;
1440
+ scrollBy(options?: ScrollToOptions | undefined): void;
1441
+ scrollBy(x: number, y: number): void;
1442
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
1443
+ scrollTo(options?: ScrollToOptions | undefined): void;
1444
+ scrollTo(x: number, y: number): void;
1445
+ setAttribute(qualifiedName: string, value: string): void;
1446
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
1447
+ setAttributeNode(attr: Attr): Attr | null;
1448
+ setAttributeNodeNS(attr: Attr): Attr | null;
1449
+ setPointerCapture(pointerId: number): void;
1450
+ toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
1451
+ webkitMatchesSelector(selectors: string): boolean;
1452
+ readonly baseURI: string;
1453
+ readonly childNodes: NodeListOf<ChildNode>;
1454
+ readonly firstChild: ChildNode | null;
1455
+ readonly isConnected: boolean;
1456
+ readonly lastChild: ChildNode | null;
1457
+ readonly nextSibling: ChildNode | null;
1458
+ readonly nodeName: string;
1459
+ readonly nodeType: number;
1460
+ nodeValue: string | null;
1461
+ readonly parentElement: HTMLElement | null;
1462
+ readonly parentNode: ParentNode | null;
1463
+ readonly previousSibling: ChildNode | null;
1464
+ textContent: string | null;
1465
+ appendChild<T extends Node>(node: T): T;
1466
+ cloneNode(deep?: boolean | undefined): Node;
1467
+ compareDocumentPosition(other: Node): number;
1468
+ contains(other: Node | null): boolean;
1469
+ getRootNode(options?: GetRootNodeOptions | undefined): Node;
1470
+ hasChildNodes(): boolean;
1471
+ insertBefore<T_4 extends Node>(node: T_4, child: Node | null): T_4;
1472
+ isDefaultNamespace(namespace: string | null): boolean;
1473
+ isEqualNode(otherNode: Node | null): boolean;
1474
+ isSameNode(otherNode: Node | null): boolean;
1475
+ lookupNamespaceURI(prefix: string | null): string | null;
1476
+ lookupPrefix(namespace: string | null): string | null;
1477
+ normalize(): void;
1478
+ removeChild<T_2 extends Node>(child: T_2): T_2;
1479
+ replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
1480
+ readonly ELEMENT_NODE: 1;
1481
+ readonly ATTRIBUTE_NODE: 2;
1482
+ readonly TEXT_NODE: 3;
1483
+ readonly CDATA_SECTION_NODE: 4;
1484
+ readonly ENTITY_REFERENCE_NODE: 5;
1485
+ readonly ENTITY_NODE: 6;
1486
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
1487
+ readonly COMMENT_NODE: 8;
1488
+ readonly DOCUMENT_NODE: 9;
1489
+ readonly DOCUMENT_TYPE_NODE: 10;
1490
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
1491
+ readonly NOTATION_NODE: 12;
1492
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
1493
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
1494
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
1495
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
1496
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
1497
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
1498
+ dispatchEvent(event: Event): boolean;
1499
+ ariaAtomic: string | null;
1500
+ ariaAutoComplete: string | null;
1501
+ ariaBusy: string | null;
1502
+ ariaChecked: string | null;
1503
+ ariaColCount: string | null;
1504
+ ariaColIndex: string | null;
1505
+ ariaColSpan: string | null;
1506
+ ariaCurrent: string | null;
1507
+ ariaDisabled: string | null;
1508
+ ariaExpanded: string | null;
1509
+ ariaHasPopup: string | null;
1510
+ ariaHidden: string | null;
1511
+ ariaInvalid: string | null;
1512
+ ariaKeyShortcuts: string | null;
1513
+ ariaLabel: string | null;
1514
+ ariaLevel: string | null;
1515
+ ariaLive: string | null;
1516
+ ariaModal: string | null;
1517
+ ariaMultiLine: string | null;
1518
+ ariaMultiSelectable: string | null;
1519
+ ariaOrientation: string | null;
1520
+ ariaPlaceholder: string | null;
1521
+ ariaPosInSet: string | null;
1522
+ ariaPressed: string | null;
1523
+ ariaReadOnly: string | null;
1524
+ ariaRequired: string | null;
1525
+ ariaRoleDescription: string | null;
1526
+ ariaRowCount: string | null;
1527
+ ariaRowIndex: string | null;
1528
+ ariaRowSpan: string | null;
1529
+ ariaSelected: string | null;
1530
+ ariaSetSize: string | null;
1531
+ ariaSort: string | null;
1532
+ ariaValueMax: string | null;
1533
+ ariaValueMin: string | null;
1534
+ ariaValueNow: string | null;
1535
+ ariaValueText: string | null;
1536
+ role: string | null;
1537
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
1538
+ getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
1539
+ after(...nodes: (string | Node)[]): void;
1540
+ before(...nodes: (string | Node)[]): void;
1541
+ remove(): void;
1542
+ replaceWith(...nodes: (string | Node)[]): void;
1543
+ innerHTML: string;
1544
+ readonly nextElementSibling: Element | null;
1545
+ readonly previousElementSibling: Element | null;
1546
+ readonly childElementCount: number;
1547
+ readonly children: HTMLCollection;
1548
+ readonly firstElementChild: Element | null;
1549
+ readonly lastElementChild: Element | null;
1550
+ append(...nodes: (string | Node)[]): void;
1551
+ prepend(...nodes: (string | Node)[]): void;
1552
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
1553
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
1554
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
1555
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
1556
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
1557
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
1558
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
1559
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
1560
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
1561
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
1562
+ replaceChildren(...nodes: (string | Node)[]): void;
1563
+ readonly assignedSlot: HTMLSlotElement | null;
1564
+ readonly style: CSSStyleDeclaration;
1565
+ contentEditable: string;
1566
+ enterKeyHint: string;
1567
+ inputMode: string;
1568
+ readonly isContentEditable: boolean;
1569
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1570
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1571
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1572
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1573
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1574
+ onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1575
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
1576
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1577
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1578
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1579
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1580
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1581
+ onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1582
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1583
+ oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1584
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1585
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1586
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1587
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1588
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1589
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1590
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1591
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1592
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1593
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1594
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1595
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1596
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1597
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1598
+ onerror: OnErrorEventHandler;
1599
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1600
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
1601
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1602
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1603
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1604
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1605
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1606
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1607
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1608
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1609
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1610
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1611
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1612
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1613
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1614
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1615
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1616
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1617
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1618
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1619
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1620
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1621
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1622
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1623
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1624
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1625
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1626
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1627
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1628
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1629
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1630
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1631
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
1632
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1633
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1634
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1635
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1636
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
1637
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1638
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1639
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1640
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1641
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1642
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1643
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1644
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
1645
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1646
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1647
+ ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1648
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1649
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1650
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1651
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1652
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1653
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1654
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1655
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1656
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1657
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1658
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1659
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1660
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1661
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1662
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1663
+ autofocus: boolean;
1664
+ readonly dataset: DOMStringMap;
1665
+ nonce?: string | undefined;
1666
+ tabIndex: number;
1667
+ blur(): void;
1668
+ focus(options?: FocusOptions | undefined): void;
1669
+ ariaColIndexText: string | null;
1670
+ ariaDescription: string | null;
1671
+ ariaRowIndexText: string | null;
1672
+ ariaRelevant: string | null;
1673
+ roleChanged(prev: string | null, next: string | null): void;
1674
+ ariaAtomicChanged(prev: string | null, next: string | null): void;
1675
+ ariaAutoCompleteChanged(prev: string | null, next: string | null): void;
1676
+ ariaBusyChanged(prev: string | null, next: string | null): void;
1677
+ ariaCheckedChanged(prev: string | null, next: string | null): void;
1678
+ ariaColCountChanged(prev: string | null, next: string | null): void;
1679
+ ariaColIndexChanged(prev: string | null, next: string | null): void;
1680
+ ariaColIndexTextChanged(prev: string | null, next: string | null): void;
1681
+ ariaColSpanChanged(prev: string | null, next: string | null): void;
1682
+ ariaCurrentChanged(prev: string | null, next: string | null): void;
1683
+ ariaDescriptionChanged(prev: string | null, next: string | null): void;
1684
+ ariaDisabledChanged(prev: string | null, next: string | null): void;
1685
+ ariaExpandedChanged(prev: string | null, next: string | null): void;
1686
+ ariaHasPopupChanged(prev: string | null, next: string | null): void;
1687
+ ariaHiddenChanged(prev: string | null, next: string | null): void;
1688
+ ariaInvalidChanged(prev: string | null, next: string | null): void;
1689
+ ariaKeyShortcutsChanged(prev: string | null, next: string | null): void;
1690
+ ariaLabelChanged(prev: string | null, next: string | null): void;
1691
+ ariaLevelChanged(prev: string | null, next: string | null): void;
1692
+ ariaLiveChanged(prev: string | null, next: string | null): void;
1693
+ ariaModalChanged(prev: string | null, next: string | null): void;
1694
+ ariaMultiLineChanged(prev: string | null, next: string | null): void;
1695
+ ariaMultiSelectableChanged(prev: string | null, next: string | null): void;
1696
+ ariaOrientationChanged(prev: string | null, next: string | null): void;
1697
+ ariaPlaceholderChanged(prev: string | null, next: string | null): void;
1698
+ ariaPosInSetChanged(prev: string | null, next: string | null): void;
1699
+ ariaPressedChanged(prev: string | null, next: string | null): void;
1700
+ ariaReadOnlyChanged(prev: string | null, next: string | null): void;
1701
+ ariaRequiredChanged(prev: string | null, next: string | null): void;
1702
+ ariaRoleDescriptionChanged(prev: string | null, next: string | null): void;
1703
+ ariaRowCountChanged(prev: string | null, next: string | null): void;
1704
+ ariaRowIndexChanged(prev: string | null, next: string | null): void;
1705
+ ariaRowIndexTextChanged(prev: string | null, next: string | null): void;
1706
+ ariaRowSpanChanged(prev: string | null, next: string | null): void;
1707
+ ariaSelectedChanged(prev: string | null, next: string | null): void;
1708
+ ariaSetSizeChanged(prev: string | null, next: string | null): void;
1709
+ ariaSortChanged(prev: string | null, next: string | null): void;
1710
+ ariaValueMaxChanged(prev: string | null, next: string | null): void;
1711
+ ariaValueMinChanged(prev: string | null, next: string | null): void;
1712
+ ariaValueNowChanged(prev: string | null, next: string | null): void;
1713
+ ariaValueTextChanged(prev: string | null, next: string | null): void;
1714
+ ariaRelevantChanged(prev: string | null, next: string | null): void;
1715
+ "__#1@#handleReplacedProp"(replacedProp: {
1716
+ newPropertyName: string;
1717
+ deprecatedPropertyName: string;
1718
+ fromDeprecated: (v: any) => any;
1719
+ toDeprecated?: ((v: any) => any) | undefined;
1720
+ }): void;
1721
+ }, any>;
1681
1722
  errorText?: string | undefined;
1682
1723
  errorTextChanged(_: string, newErrorText: string | undefined): void;
1683
1724
  "__#4@#blockValidateCalls": boolean;
1684
1725
  "__#4@#originalValidateFn": () => void;
1685
1726
  "__#4@#forceCustomError"(errorMessage: string): void;
1686
1727
  "__#4@#clearCustomErrorAndRevalidate"(): void;
1687
- label?: string | undefined;
1688
- errorValidationMessage: string;
1689
- forceErrorDisplay: boolean;
1690
- hasBeenTouched: boolean;
1691
- "__#3@#handleInvalidEvent": (() => void) & (() => void);
1692
- formResetCallback: (() => void) & (() => void) & (() => void) & (() => void);
1693
- readonly validity: ValidityState;
1694
- readonly form: HTMLFormElement | null;
1695
- readonly validationMessage: string;
1696
- readonly willValidate: boolean;
1697
- readonly labels: readonly Node[];
1698
- dirtyValue: boolean;
1699
- proxySlot?: HTMLSlotElement | undefined;
1700
- value: string;
1701
- currentValue: string;
1702
- initialValue: string;
1703
- initialValueChanged: ((_previous: string, _next: string) => void) & ((_previous: string, _next: string) => void);
1704
- disabled: boolean;
1705
- disabledChanged: ((_previous: boolean, _next: boolean) => void) & ((_previous: boolean, _next: boolean) => void);
1706
- name: string;
1707
- nameChanged: ((_previous: string, _next: string) => void) & ((_previous: string, _next: string) => void);
1708
- required: boolean;
1709
- requiredChanged: ((_previous: boolean, _next: boolean) => void) & ((_previous: boolean, _next: boolean) => void);
1710
- readonly elementInternals: ElementInternals | null;
1711
- proxyEventsToBlock: string[];
1712
- checkValidity: (() => boolean) & (() => boolean);
1713
- reportValidity: (() => boolean) & (() => boolean);
1714
- setValidity: ((flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined) => void) & ((flags: ValidityStateFlags, message?: string | undefined, anchor?: HTMLElement | undefined) => void);
1715
- formDisabledCallback: ((disabled: boolean) => void) & ((disabled: boolean) => void);
1716
- proxyInitialized: boolean;
1717
- attachProxy: (() => void) & (() => void);
1718
- detachProxy: (() => void) & (() => void);
1719
- 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);
1720
- _keypressHandler: ((e: KeyboardEvent) => void) & ((e: KeyboardEvent) => void);
1721
- stopPropagation: ((e: Event) => void) & ((e: Event) => void);
1722
1728
  _trappedFocus(event: KeyboardEvent, getFocusableEls: () => NodeListOf<HTMLElement>): boolean;
1723
1729
  readonly locale: import("../../localization/Locale").Locale;
1724
1730
  } & import("../picker-field").PickerField, any>;