@vonage/vivid 4.22.0 → 4.24.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 (232) hide show
  1. package/custom-elements.json +1658 -370
  2. package/lib/accordion-item/accordion-item.d.ts +11 -5
  3. package/lib/action-group/action-group.d.ts +8 -6
  4. package/lib/alert/alert.d.ts +21 -9
  5. package/lib/audio-player/audio-player.d.ts +11 -5
  6. package/lib/badge/badge.d.ts +11 -5
  7. package/lib/banner/banner.d.ts +26 -12
  8. package/lib/breadcrumb/breadcrumb.d.ts +333 -1
  9. package/lib/breadcrumb/breadcrumb.template.d.ts +2 -3
  10. package/lib/breadcrumb-item/breadcrumb-item.d.ts +8 -6
  11. package/lib/button/button.d.ts +11 -5
  12. package/lib/calendar-event/calendar-event.d.ts +333 -1
  13. package/lib/checkbox/checkbox.d.ts +8 -6
  14. package/lib/combobox/combobox.d.ts +11 -5
  15. package/lib/date-picker/date-picker.d.ts +74 -50
  16. package/lib/date-range-picker/date-range-picker.d.ts +38 -26
  17. package/lib/date-time-picker/date-time-picker.d.ts +76 -52
  18. package/lib/dial-pad/dial-pad.d.ts +11 -5
  19. package/lib/dialog/dialog.d.ts +16 -8
  20. package/lib/divider/divider.d.ts +8 -6
  21. package/lib/fab/fab.d.ts +11 -5
  22. package/lib/file-picker/file-picker.d.ts +337 -1
  23. package/lib/file-picker/locale.d.ts +1 -0
  24. package/lib/header/header.d.ts +333 -1
  25. package/lib/menu/menu.d.ts +16 -8
  26. package/lib/menu-item/menu-item.d.ts +338 -2
  27. package/lib/nav/nav.d.ts +333 -1
  28. package/lib/nav-disclosure/nav-disclosure.d.ts +16 -8
  29. package/lib/nav-item/nav-item.d.ts +11 -5
  30. package/lib/note/note.d.ts +11 -5
  31. package/lib/number-field/number-field.d.ts +26 -12
  32. package/lib/option/option.d.ts +339 -3
  33. package/lib/progress/progress.d.ts +8 -6
  34. package/lib/progress-ring/progress-ring.d.ts +8 -6
  35. package/lib/radio-group/radio-group.d.ts +333 -1
  36. package/lib/range-slider/range-slider.d.ts +11 -5
  37. package/lib/rich-text-editor/facades/prose-mirror-vivid.schema.d.ts +1 -1
  38. package/lib/rich-text-editor/facades/vivid-prose-mirror.facade.d.ts +7 -1
  39. package/lib/rich-text-editor/locale.d.ts +9 -0
  40. package/lib/rich-text-editor/menubar/consts.d.ts +18 -0
  41. package/lib/rich-text-editor/menubar/menubar.d.ts +337 -1
  42. package/lib/rich-text-editor/rich-text-editor.d.ts +10 -0
  43. package/lib/searchable-select/locale.d.ts +1 -0
  44. package/lib/searchable-select/option-tag.d.ts +11 -5
  45. package/lib/searchable-select/searchable-select.d.ts +350 -7
  46. package/lib/select/select.d.ts +339 -3
  47. package/lib/selectable-box/selectable-box.d.ts +8 -6
  48. package/lib/slider/slider.d.ts +16 -8
  49. package/lib/split-button/split-button.d.ts +26 -12
  50. package/lib/switch/switch.d.ts +8 -6
  51. package/lib/tab/tab.d.ts +349 -7
  52. package/lib/tab-panel/tab-panel.d.ts +333 -1
  53. package/lib/tabs/tabs.d.ts +5 -21
  54. package/lib/tag/tag.d.ts +338 -2
  55. package/lib/tag-group/tag-group.d.ts +8 -6
  56. package/lib/text-anchor/text-anchor.d.ts +16 -8
  57. package/lib/text-area/text-area.d.ts +8 -6
  58. package/lib/text-field/text-field.d.ts +16 -8
  59. package/lib/time-picker/time-picker.d.ts +38 -26
  60. package/lib/toggletip/toggletip.d.ts +9 -3
  61. package/lib/tooltip/tooltip.d.ts +9 -3
  62. package/lib/tree-item/tree-item.d.ts +338 -2
  63. package/lib/tree-view/tree-view.d.ts +333 -1
  64. package/lib/video-player/video-player.d.ts +11 -5
  65. package/locales/de-DE.cjs +15 -1
  66. package/locales/de-DE.js +15 -1
  67. package/locales/en-GB.cjs +15 -1
  68. package/locales/en-GB.js +15 -1
  69. package/locales/en-US.cjs +15 -1
  70. package/locales/en-US.js +15 -1
  71. package/locales/ja-JP.cjs +15 -1
  72. package/locales/ja-JP.js +15 -1
  73. package/locales/zh-CN.cjs +15 -1
  74. package/locales/zh-CN.js +15 -1
  75. package/package.json +1 -1
  76. package/shared/affix.js +1 -1
  77. package/shared/aria/aria-change-subscription.d.ts +6 -0
  78. package/shared/aria/aria-mixin.d.ts +338 -0
  79. package/shared/aria/delegate-aria-behavior.d.ts +31 -0
  80. package/shared/aria/delegates-aria.d.ts +14 -9
  81. package/shared/aria/host-semantics-behavior.d.ts +22 -0
  82. package/shared/aria/host-semantics.d.ts +337 -0
  83. package/shared/attribute-binding-behaviour.cjs +41 -0
  84. package/shared/attribute-binding-behaviour.js +39 -0
  85. package/shared/button.cjs +6 -3
  86. package/shared/button.js +6 -3
  87. package/shared/calendar-event.cjs +2 -1
  88. package/shared/calendar-event.js +2 -1
  89. package/shared/definition.js +1 -1
  90. package/shared/definition10.cjs +8 -2
  91. package/shared/definition10.js +9 -3
  92. package/shared/definition11.cjs +4 -28
  93. package/shared/definition11.js +5 -29
  94. package/shared/definition12.cjs +5 -2
  95. package/shared/definition12.js +6 -3
  96. package/shared/definition13.js +1 -1
  97. package/shared/definition14.js +1 -1
  98. package/shared/definition15.cjs +8 -7
  99. package/shared/definition15.js +10 -9
  100. package/shared/definition16.js +1 -1
  101. package/shared/definition17.cjs +4 -1
  102. package/shared/definition17.js +5 -2
  103. package/shared/definition18.js +1 -1
  104. package/shared/definition19.js +1 -1
  105. package/shared/definition2.js +1 -1
  106. package/shared/definition20.js +1 -1
  107. package/shared/definition21.js +1 -1
  108. package/shared/definition22.cjs +11 -4
  109. package/shared/definition22.js +13 -6
  110. package/shared/definition23.cjs +4 -2
  111. package/shared/definition23.js +6 -4
  112. package/shared/definition24.js +1 -1
  113. package/shared/definition25.cjs +2 -14
  114. package/shared/definition25.js +3 -15
  115. package/shared/definition26.cjs +19 -3
  116. package/shared/definition26.js +20 -4
  117. package/shared/definition27.cjs +3 -2
  118. package/shared/definition27.js +4 -3
  119. package/shared/definition28.js +1 -1
  120. package/shared/definition29.js +1 -1
  121. package/shared/definition3.cjs +3 -2
  122. package/shared/definition3.js +5 -4
  123. package/shared/definition30.cjs +33 -34
  124. package/shared/definition30.js +35 -36
  125. package/shared/definition31.cjs +6 -4
  126. package/shared/definition31.js +8 -6
  127. package/shared/definition32.js +1 -1
  128. package/shared/definition33.cjs +7 -2
  129. package/shared/definition33.js +8 -3
  130. package/shared/definition34.js +1 -1
  131. package/shared/definition35.cjs +2 -13
  132. package/shared/definition35.js +4 -15
  133. package/shared/definition36.cjs +8 -5
  134. package/shared/definition36.js +9 -6
  135. package/shared/definition37.js +1 -1
  136. package/shared/definition38.cjs +7 -8
  137. package/shared/definition38.js +9 -10
  138. package/shared/definition39.cjs +7 -8
  139. package/shared/definition39.js +9 -10
  140. package/shared/definition4.js +1 -1
  141. package/shared/definition40.cjs +8 -5
  142. package/shared/definition40.js +9 -6
  143. package/shared/definition41.js +1 -1
  144. package/shared/definition42.js +1 -1
  145. package/shared/definition43.cjs +558 -134
  146. package/shared/definition43.js +550 -126
  147. package/shared/definition44.cjs +83 -10
  148. package/shared/definition44.js +84 -11
  149. package/shared/definition45.cjs +20 -8
  150. package/shared/definition45.js +21 -9
  151. package/shared/definition46.cjs +18 -6
  152. package/shared/definition46.js +20 -8
  153. package/shared/definition47.js +1 -1
  154. package/shared/definition48.js +1 -1
  155. package/shared/definition49.cjs +10 -3
  156. package/shared/definition49.js +12 -5
  157. package/shared/definition5.cjs +7 -2
  158. package/shared/definition5.js +8 -3
  159. package/shared/definition50.cjs +8 -7
  160. package/shared/definition50.js +10 -9
  161. package/shared/definition51.cjs +3 -2
  162. package/shared/definition51.js +4 -3
  163. package/shared/definition52.cjs +8 -4
  164. package/shared/definition52.js +9 -5
  165. package/shared/definition53.cjs +219 -297
  166. package/shared/definition53.js +221 -299
  167. package/shared/definition54.cjs +4 -3
  168. package/shared/definition54.js +6 -5
  169. package/shared/definition55.cjs +7 -4
  170. package/shared/definition55.js +8 -5
  171. package/shared/definition56.cjs +68 -14
  172. package/shared/definition56.js +69 -15
  173. package/shared/definition57.cjs +163 -112
  174. package/shared/definition57.js +165 -114
  175. package/shared/definition58.js +1 -1
  176. package/shared/definition59.js +1 -1
  177. package/shared/definition6.js +1 -1
  178. package/shared/definition60.js +1 -1
  179. package/shared/definition61.cjs +8 -5
  180. package/shared/definition61.js +9 -6
  181. package/shared/definition62.cjs +5 -2
  182. package/shared/definition62.js +6 -3
  183. package/shared/definition63.js +1 -1
  184. package/shared/definition64.js +1 -1
  185. package/shared/definition65.js +1 -1
  186. package/shared/definition7.js +1 -1
  187. package/shared/definition8.cjs +4 -2
  188. package/shared/definition8.js +6 -4
  189. package/shared/definition9.js +1 -1
  190. package/shared/delegates-aria.cjs +106 -56
  191. package/shared/delegates-aria.js +107 -58
  192. package/shared/foundation/button/button.d.ts +8 -6
  193. package/shared/foundation/vivid-element/vivid-element.d.ts +339 -1
  194. package/shared/host-semantics.cjs +65 -0
  195. package/shared/host-semantics.js +62 -0
  196. package/shared/localization/Locale.d.ts +2 -0
  197. package/shared/option.cjs +4 -1
  198. package/shared/option.js +4 -1
  199. package/shared/patterns/affix.d.ts +22 -10
  200. package/shared/patterns/anchored.d.ts +18 -6
  201. package/shared/patterns/localized.d.ts +11 -5
  202. package/shared/patterns/trapped-focus.d.ts +11 -5
  203. package/shared/picker-field/mixins/calendar-picker.d.ts +19 -13
  204. package/shared/picker-field/mixins/calendar-picker.template.d.ts +19 -13
  205. package/shared/picker-field/mixins/inline-time-picker/inline-time-picker.d.ts +11 -5
  206. package/shared/picker-field/mixins/min-max-calendar-picker.d.ts +38 -26
  207. package/shared/picker-field/mixins/single-date-picker.d.ts +55 -37
  208. package/shared/picker-field/mixins/single-value-picker.d.ts +17 -11
  209. package/shared/picker-field/mixins/time-selection-picker.d.ts +38 -26
  210. package/shared/picker-field/mixins/time-selection-picker.template.d.ts +38 -26
  211. package/shared/picker-field/picker-field.d.ts +21 -9
  212. package/shared/picker-field.template.js +1 -1
  213. package/shared/repeat.js +1 -1
  214. package/shared/slider.template.cjs +10 -9
  215. package/shared/slider.template.js +10 -9
  216. package/shared/templating/attribute-binding-behaviour.d.ts +15 -0
  217. package/shared/templating/render-in-light-dom.d.ts +22 -0
  218. package/shared/text-anchor.template.cjs +2 -13
  219. package/shared/text-anchor.template.js +2 -13
  220. package/shared/time-selection-picker.template.js +1 -1
  221. package/shared/vivid-element.cjs +96 -2
  222. package/shared/vivid-element.js +93 -3
  223. package/styles/core/all.css +1 -1
  224. package/styles/core/theme.css +1 -1
  225. package/styles/core/typography.css +1 -1
  226. package/styles/tokens/theme-dark.css +4 -4
  227. package/styles/tokens/theme-light.css +4 -4
  228. package/styles/tokens/vivid-2-compat.css +1 -1
  229. package/text-anchor/index.js +1 -1
  230. package/vivid.api.json +188 -17
  231. package/shared/Reflector.cjs +0 -71
  232. package/shared/Reflector.js +0 -69
@@ -13,6 +13,11 @@ declare const Toggletip_base: {
13
13
  "__#7@#cleanupObserverIfNeeded": () => void;
14
14
  connectedCallback(): void;
15
15
  disconnectedCallback(): void;
16
+ specialHandling: boolean;
17
+ _vividAriaBehaviour: import("../shared/aria/aria-mixin").VividAriaBehaviour;
18
+ readonly $fastController: import("@microsoft/fast-element").Controller;
19
+ $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
20
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
16
21
  accessKey: string;
17
22
  readonly accessKeyLabel: string;
18
23
  autocapitalize: string;
@@ -329,9 +334,10 @@ declare const Toggletip_base: {
329
334
  tabIndex: number;
330
335
  blur(): void;
331
336
  focus(options?: FocusOptions | undefined): void;
332
- readonly $fastController: import("@microsoft/fast-element").Controller;
333
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
334
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
337
+ ariaColIndexText: string | null;
338
+ ariaDescription: string | null;
339
+ ariaRowIndexText: string | null;
340
+ ariaRelevant: string | null;
335
341
  };
336
342
  } & typeof VividElement;
337
343
  export declare class Toggletip extends Toggletip_base {
@@ -13,6 +13,11 @@ declare const Tooltip_base: {
13
13
  "__#7@#cleanupObserverIfNeeded": () => void;
14
14
  connectedCallback(): void;
15
15
  disconnectedCallback(): void;
16
+ specialHandling: boolean;
17
+ _vividAriaBehaviour: import("../shared/aria/aria-mixin").VividAriaBehaviour;
18
+ readonly $fastController: import("@microsoft/fast-element").Controller;
19
+ $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
20
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
16
21
  accessKey: string;
17
22
  readonly accessKeyLabel: string;
18
23
  autocapitalize: string;
@@ -329,9 +334,10 @@ declare const Tooltip_base: {
329
334
  tabIndex: number;
330
335
  blur(): void;
331
336
  focus(options?: FocusOptions | undefined): void;
332
- readonly $fastController: import("@microsoft/fast-element").Controller;
333
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
334
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
337
+ ariaColIndexText: string | null;
338
+ ariaDescription: string | null;
339
+ ariaRowIndexText: string | null;
340
+ ariaRelevant: string | null;
335
341
  };
336
342
  } & typeof VividElement;
337
343
  export declare class Tooltip extends Tooltip_base {
@@ -2,8 +2,13 @@ import { VividElement } from '../../shared/foundation/vivid-element/vivid-elemen
2
2
  export declare function isTreeItemElement(el: Element): el is HTMLElement;
3
3
  declare const TreeItem_base: {
4
4
  new (...args: any[]): {
5
- icon?: string | undefined;
6
- iconSlottedContent?: HTMLElement[] | undefined;
5
+ _vividAriaBehaviour: "host";
6
+ specialHandling: boolean;
7
+ readonly $fastController: import("@microsoft/fast-element").Controller;
8
+ $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
9
+ connectedCallback(): void;
10
+ disconnectedCallback(): void;
11
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
7
12
  accessKey: string;
8
13
  readonly accessKeyLabel: string;
9
14
  autocapitalize: string;
@@ -320,11 +325,342 @@ declare const TreeItem_base: {
320
325
  tabIndex: number;
321
326
  blur(): void;
322
327
  focus(options?: FocusOptions | undefined): void;
328
+ ariaColIndexText: string | null;
329
+ ariaDescription: string | null;
330
+ ariaRowIndexText: string | null;
331
+ ariaRelevant: string | null;
332
+ };
333
+ } & {
334
+ new (...args: any[]): {
335
+ icon?: string | undefined;
336
+ iconSlottedContent?: HTMLElement[] | undefined;
337
+ specialHandling: boolean;
338
+ _vividAriaBehaviour: import("../shared/aria/aria-mixin").VividAriaBehaviour;
323
339
  readonly $fastController: import("@microsoft/fast-element").Controller;
324
340
  $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
325
341
  connectedCallback(): void;
326
342
  disconnectedCallback(): void;
327
343
  attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
344
+ accessKey: string;
345
+ readonly accessKeyLabel: string;
346
+ autocapitalize: string;
347
+ dir: string;
348
+ draggable: boolean;
349
+ hidden: boolean;
350
+ inert: boolean;
351
+ innerText: string;
352
+ lang: string;
353
+ readonly offsetHeight: number;
354
+ readonly offsetLeft: number;
355
+ readonly offsetParent: Element | null;
356
+ readonly offsetTop: number;
357
+ readonly offsetWidth: number;
358
+ outerText: string;
359
+ spellcheck: boolean;
360
+ title: string;
361
+ translate: boolean;
362
+ attachInternals(): ElementInternals;
363
+ click(): void;
364
+ addEventListener<K_17 extends keyof HTMLElementEventMap>(type: K_17, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_17]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
365
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
366
+ removeEventListener<K_18 extends keyof HTMLElementEventMap>(type: K_18, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_18]) => any, options?: boolean | EventListenerOptions | undefined): void;
367
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
368
+ dropzone: import("dropzone");
369
+ readonly attributes: NamedNodeMap;
370
+ readonly classList: DOMTokenList;
371
+ className: string;
372
+ readonly clientHeight: number;
373
+ readonly clientLeft: number;
374
+ readonly clientTop: number;
375
+ readonly clientWidth: number;
376
+ id: string;
377
+ readonly localName: string;
378
+ readonly namespaceURI: string | null;
379
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
380
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
381
+ outerHTML: string;
382
+ readonly ownerDocument: Document;
383
+ readonly part: DOMTokenList;
384
+ readonly prefix: string | null;
385
+ readonly scrollHeight: number;
386
+ scrollLeft: number;
387
+ scrollTop: number;
388
+ readonly scrollWidth: number;
389
+ readonly shadowRoot: ShadowRoot | null;
390
+ slot: string;
391
+ readonly tagName: string;
392
+ attachShadow(init: ShadowRootInit): ShadowRoot;
393
+ checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
394
+ closest<K_19 extends keyof HTMLElementTagNameMap>(selector: K_19): HTMLElementTagNameMap[K_19] | null;
395
+ closest<K_20 extends keyof SVGElementTagNameMap>(selector: K_20): SVGElementTagNameMap[K_20] | null;
396
+ closest<K_21 extends keyof MathMLElementTagNameMap>(selector: K_21): MathMLElementTagNameMap[K_21] | null;
397
+ closest<E_3 extends Element = Element>(selectors: string): E_3 | null;
398
+ getAttribute(qualifiedName: string): string | null;
399
+ getAttributeNS(namespace: string | null, localName: string): string | null;
400
+ getAttributeNames(): string[];
401
+ getAttributeNode(qualifiedName: string): Attr | null;
402
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
403
+ getBoundingClientRect(): DOMRect;
404
+ getClientRects(): DOMRectList;
405
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
406
+ getElementsByTagName<K_22 extends keyof HTMLElementTagNameMap>(qualifiedName: K_22): HTMLCollectionOf<HTMLElementTagNameMap[K_22]>;
407
+ getElementsByTagName<K_23 extends keyof SVGElementTagNameMap>(qualifiedName: K_23): HTMLCollectionOf<SVGElementTagNameMap[K_23]>;
408
+ getElementsByTagName<K_24 extends keyof MathMLElementTagNameMap>(qualifiedName: K_24): HTMLCollectionOf<MathMLElementTagNameMap[K_24]>;
409
+ getElementsByTagName<K_25 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_25): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_25]>;
410
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
411
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
412
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
413
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
414
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
415
+ hasAttribute(qualifiedName: string): boolean;
416
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
417
+ hasAttributes(): boolean;
418
+ hasPointerCapture(pointerId: number): boolean;
419
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
420
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
421
+ insertAdjacentText(where: InsertPosition, data: string): void;
422
+ matches(selectors: string): boolean;
423
+ releasePointerCapture(pointerId: number): void;
424
+ removeAttribute(qualifiedName: string): void;
425
+ removeAttributeNS(namespace: string | null, localName: string): void;
426
+ removeAttributeNode(attr: Attr): Attr;
427
+ requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
428
+ requestPointerLock(): void;
429
+ scroll(options?: ScrollToOptions | undefined): void;
430
+ scroll(x: number, y: number): void;
431
+ scrollBy(options?: ScrollToOptions | undefined): void;
432
+ scrollBy(x: number, y: number): void;
433
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
434
+ scrollTo(options?: ScrollToOptions | undefined): void;
435
+ scrollTo(x: number, y: number): void;
436
+ setAttribute(qualifiedName: string, value: string): void;
437
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
438
+ setAttributeNode(attr: Attr): Attr | null;
439
+ setAttributeNodeNS(attr: Attr): Attr | null;
440
+ setPointerCapture(pointerId: number): void;
441
+ toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
442
+ webkitMatchesSelector(selectors: string): boolean;
443
+ readonly baseURI: string;
444
+ readonly childNodes: NodeListOf<ChildNode>;
445
+ readonly firstChild: ChildNode | null;
446
+ readonly isConnected: boolean;
447
+ readonly lastChild: ChildNode | null;
448
+ readonly nextSibling: ChildNode | null;
449
+ readonly nodeName: string;
450
+ readonly nodeType: number;
451
+ nodeValue: string | null;
452
+ readonly parentElement: HTMLElement | null;
453
+ readonly parentNode: ParentNode | null;
454
+ readonly previousSibling: ChildNode | null;
455
+ textContent: string | null;
456
+ appendChild<T extends Node>(node: T): T;
457
+ cloneNode(deep?: boolean | undefined): Node;
458
+ compareDocumentPosition(other: Node): number;
459
+ contains(other: Node | null): boolean;
460
+ getRootNode(options?: GetRootNodeOptions | undefined): Node;
461
+ hasChildNodes(): boolean;
462
+ insertBefore<T_4 extends Node>(node: T_4, child: Node | null): T_4;
463
+ isDefaultNamespace(namespace: string | null): boolean;
464
+ isEqualNode(otherNode: Node | null): boolean;
465
+ isSameNode(otherNode: Node | null): boolean;
466
+ lookupNamespaceURI(prefix: string | null): string | null;
467
+ lookupPrefix(namespace: string | null): string | null;
468
+ normalize(): void;
469
+ removeChild<T_2 extends Node>(child: T_2): T_2;
470
+ replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
471
+ readonly ELEMENT_NODE: 1;
472
+ readonly ATTRIBUTE_NODE: 2;
473
+ readonly TEXT_NODE: 3;
474
+ readonly CDATA_SECTION_NODE: 4;
475
+ readonly ENTITY_REFERENCE_NODE: 5;
476
+ readonly ENTITY_NODE: 6;
477
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
478
+ readonly COMMENT_NODE: 8;
479
+ readonly DOCUMENT_NODE: 9;
480
+ readonly DOCUMENT_TYPE_NODE: 10;
481
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
482
+ readonly NOTATION_NODE: 12;
483
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
484
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
485
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
486
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
487
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
488
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
489
+ dispatchEvent(event: Event): boolean;
490
+ ariaAtomic: string | null;
491
+ ariaAutoComplete: string | null;
492
+ ariaBusy: string | null;
493
+ ariaChecked: string | null;
494
+ ariaColCount: string | null;
495
+ ariaColIndex: string | null;
496
+ ariaColSpan: string | null;
497
+ ariaCurrent: string | null;
498
+ ariaDisabled: string | null;
499
+ ariaExpanded: string | null;
500
+ ariaHasPopup: string | null;
501
+ ariaHidden: string | null;
502
+ ariaInvalid: string | null;
503
+ ariaKeyShortcuts: string | null;
504
+ ariaLabel: string | null;
505
+ ariaLevel: string | null;
506
+ ariaLive: string | null;
507
+ ariaModal: string | null;
508
+ ariaMultiLine: string | null;
509
+ ariaMultiSelectable: string | null;
510
+ ariaOrientation: string | null;
511
+ ariaPlaceholder: string | null;
512
+ ariaPosInSet: string | null;
513
+ ariaPressed: string | null;
514
+ ariaReadOnly: string | null;
515
+ ariaRequired: string | null;
516
+ ariaRoleDescription: string | null;
517
+ ariaRowCount: string | null;
518
+ ariaRowIndex: string | null;
519
+ ariaRowSpan: string | null;
520
+ ariaSelected: string | null;
521
+ ariaSetSize: string | null;
522
+ ariaSort: string | null;
523
+ ariaValueMax: string | null;
524
+ ariaValueMin: string | null;
525
+ ariaValueNow: string | null;
526
+ ariaValueText: string | null;
527
+ role: string | null;
528
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
529
+ getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
530
+ after(...nodes: (string | Node)[]): void;
531
+ before(...nodes: (string | Node)[]): void;
532
+ remove(): void;
533
+ replaceWith(...nodes: (string | Node)[]): void;
534
+ innerHTML: string;
535
+ readonly nextElementSibling: Element | null;
536
+ readonly previousElementSibling: Element | null;
537
+ readonly childElementCount: number;
538
+ readonly children: HTMLCollection;
539
+ readonly firstElementChild: Element | null;
540
+ readonly lastElementChild: Element | null;
541
+ append(...nodes: (string | Node)[]): void;
542
+ prepend(...nodes: (string | Node)[]): void;
543
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
544
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
545
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
546
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
547
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
548
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
549
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
550
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
551
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
552
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
553
+ replaceChildren(...nodes: (string | Node)[]): void;
554
+ readonly assignedSlot: HTMLSlotElement | null;
555
+ readonly style: CSSStyleDeclaration;
556
+ contentEditable: string;
557
+ enterKeyHint: string;
558
+ inputMode: string;
559
+ readonly isContentEditable: boolean;
560
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
561
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
562
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
563
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
564
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
565
+ onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
566
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
567
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
568
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
569
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
570
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
571
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
572
+ onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
573
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
574
+ oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
575
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
576
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
577
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
578
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
579
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
580
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
581
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
582
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
583
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
584
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
585
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
586
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
587
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
588
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
589
+ onerror: OnErrorEventHandler;
590
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
591
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
592
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
593
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
594
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
595
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
596
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
597
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
598
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
599
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
600
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
601
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
602
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
603
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
604
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
605
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
606
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
607
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
608
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
609
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
610
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
611
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
612
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
613
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
614
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
615
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
616
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
617
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
618
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
619
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
620
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
621
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
622
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
623
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
624
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
625
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
626
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
627
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
628
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
629
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
630
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
631
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
632
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
633
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
634
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
635
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
636
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
637
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
638
+ ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
639
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
640
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
641
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
642
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
643
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
644
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
645
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
646
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
647
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
648
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
649
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
650
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
651
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
652
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
653
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
654
+ autofocus: boolean;
655
+ readonly dataset: DOMStringMap;
656
+ nonce?: string | undefined;
657
+ tabIndex: number;
658
+ blur(): void;
659
+ focus(options?: FocusOptions | undefined): void;
660
+ ariaColIndexText: string | null;
661
+ ariaDescription: string | null;
662
+ ariaRowIndexText: string | null;
663
+ ariaRelevant: string | null;
328
664
  };
329
665
  } & typeof VividElement;
330
666
  export declare class TreeItem extends TreeItem_base {