@vonage/vivid 5.8.0 → 5.10.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 (158) hide show
  1. package/bundled/affix.js +1 -1
  2. package/bundled/anchored.cjs +1 -1
  3. package/bundled/anchored.js +6 -6
  4. package/bundled/data-grid.options.cjs +1 -0
  5. package/bundled/data-grid.options.js +29 -0
  6. package/bundled/definition10.js +4 -4
  7. package/bundled/definition2.cjs +1 -1
  8. package/bundled/definition2.js +1 -1
  9. package/bundled/definition3.cjs +1 -1
  10. package/bundled/definition3.js +1 -1
  11. package/bundled/definition7.js +3 -3
  12. package/bundled/definition9.cjs +9 -9
  13. package/bundled/definition9.js +113 -1342
  14. package/bundled/floating-ui.dom.cjs +1 -0
  15. package/bundled/floating-ui.dom.js +1242 -0
  16. package/bundled/host-semantics.js +4 -4
  17. package/bundled/localized.cjs +1 -1
  18. package/bundled/localized.js +21 -16
  19. package/bundled/mixins.cjs +2 -2
  20. package/bundled/mixins.js +6 -6
  21. package/bundled/slottable-request.cjs +4 -0
  22. package/bundled/slottable-request.js +2907 -0
  23. package/bundled/vivid-element.cjs +3 -3
  24. package/bundled/vivid-element.js +89 -69
  25. package/card/definition.cjs +1 -1
  26. package/card/definition.js +1 -1
  27. package/card/index.cjs +10 -10
  28. package/card/index.js +42 -42
  29. package/combobox/definition.cjs +14 -15
  30. package/combobox/definition.js +15 -16
  31. package/combobox/index.cjs +4 -4
  32. package/combobox/index.js +82 -87
  33. package/country/definition.cjs +340 -0
  34. package/country/definition.js +334 -0
  35. package/country/index.cjs +12 -0
  36. package/country/index.js +317 -0
  37. package/custom-elements.json +4835 -613
  38. package/data-grid/definition.cjs +23 -49
  39. package/data-grid/definition.js +1 -27
  40. package/data-grid/index.cjs +27 -27
  41. package/data-grid/index.js +44 -64
  42. package/file-picker/definition.cjs +10 -8
  43. package/file-picker/definition.js +10 -8
  44. package/file-picker/index.cjs +5 -5
  45. package/file-picker/index.js +12 -12
  46. package/icon/definition.cjs +1 -1
  47. package/icon/definition.js +1 -1
  48. package/index.cjs +38 -4
  49. package/index.js +7 -2
  50. package/lib/components.d.ts +6 -1
  51. package/lib/country/countries-data.d.ts +6 -0
  52. package/lib/country/country-code-to-flag-icon.d.ts +5 -0
  53. package/lib/country/country.d.ts +5 -0
  54. package/lib/country/country.template.d.ts +3 -0
  55. package/lib/country/definition.d.ts +3 -0
  56. package/lib/popover/definition.d.ts +4 -0
  57. package/lib/popover/locale.d.ts +3 -0
  58. package/lib/popover/popover.d.ts +781 -0
  59. package/lib/popover/popover.template.d.ts +3 -0
  60. package/lib/rich-text-editor/locale.d.ts +2 -0
  61. package/lib/rich-text-editor/popover.d.ts +1 -0
  62. package/lib/rich-text-editor/rte/config.d.ts +5 -1
  63. package/lib/rich-text-editor/rte/document.d.ts +2 -0
  64. package/lib/rich-text-editor/rte/exports.d.ts +5 -0
  65. package/lib/rich-text-editor/rte/feature.d.ts +7 -1
  66. package/lib/rich-text-editor/rte/features/internal/basic-text-blocks.d.ts +1 -1
  67. package/lib/rich-text-editor/rte/features/internal/foreign-html.d.ts +1 -1
  68. package/lib/rich-text-editor/rte/features/internal/history.d.ts +1 -1
  69. package/lib/rich-text-editor/rte/features/internal/input-rules.d.ts +15 -0
  70. package/lib/rich-text-editor/rte/instance.d.ts +4 -2
  71. package/lib/rich-text-editor/rte/utils/feature-state.d.ts +8 -0
  72. package/lib/rich-text-editor/rte/utils/text-before-cursor.d.ts +2 -0
  73. package/lib/rich-text-editor/rte/utils/ui.d.ts +2 -0
  74. package/lib/rich-text-editor/rte/view.d.ts +30 -0
  75. package/lib/rich-text-view/definition.d.ts +5 -0
  76. package/lib/rich-text-view/rich-text-view.d.ts +19 -0
  77. package/lib/rich-text-view/rich-text-view.template.d.ts +3 -0
  78. package/lib/selectable-box/selectable-box.d.ts +1 -0
  79. package/lib/status/definition.d.ts +4 -0
  80. package/lib/status/status.d.ts +388 -0
  81. package/lib/status/status.template.d.ts +3 -0
  82. package/lib/table/definition.d.ts +8 -0
  83. package/lib/table/table-body.d.ts +3 -0
  84. package/lib/table/table-body.template.d.ts +3 -0
  85. package/lib/table/table-cell.d.ts +381 -0
  86. package/lib/table/table-cell.template.d.ts +3 -0
  87. package/lib/table/table-head.d.ts +3 -0
  88. package/lib/table/table-head.template.d.ts +3 -0
  89. package/lib/table/table-header-cell.d.ts +381 -0
  90. package/lib/table/table-header-cell.template.d.ts +3 -0
  91. package/lib/table/table-row.d.ts +381 -0
  92. package/lib/table/table-row.template.d.ts +3 -0
  93. package/lib/table/table.d.ts +3 -0
  94. package/lib/table/table.template.d.ts +3 -0
  95. package/lib/tag/tag.d.ts +1 -1
  96. package/lib/tag-name-map.d.ts +11 -1
  97. package/locales/de-DE.cjs +6 -1
  98. package/locales/de-DE.js +6 -1
  99. package/locales/en-GB.cjs +6 -1
  100. package/locales/en-GB.js +6 -1
  101. package/locales/en-US.cjs +6 -1
  102. package/locales/en-US.js +6 -1
  103. package/locales/ja-JP.cjs +6 -1
  104. package/locales/ja-JP.js +6 -1
  105. package/locales/zh-CN.cjs +6 -1
  106. package/locales/zh-CN.js +6 -1
  107. package/package.json +10 -9
  108. package/popover/definition.cjs +363 -0
  109. package/popover/definition.js +357 -0
  110. package/popover/index.cjs +27 -0
  111. package/popover/index.js +263 -0
  112. package/rich-text-editor/definition.cjs +12125 -14657
  113. package/rich-text-editor/definition.js +8876 -11412
  114. package/rich-text-editor/index.cjs +20 -22
  115. package/rich-text-editor/index.js +5046 -7096
  116. package/rich-text-view/definition.cjs +171 -0
  117. package/rich-text-view/definition.js +165 -0
  118. package/rich-text-view/index.cjs +1 -0
  119. package/rich-text-view/index.js +103 -0
  120. package/selectable-box/definition.cjs +16 -5
  121. package/selectable-box/definition.js +16 -5
  122. package/selectable-box/index.cjs +11 -9
  123. package/selectable-box/index.js +86 -78
  124. package/shared/localization/Locale.d.ts +2 -0
  125. package/shared/utils/slottable-request.d.ts +7 -0
  126. package/status/definition.cjs +76 -0
  127. package/status/definition.js +70 -0
  128. package/status/index.cjs +11 -0
  129. package/status/index.js +55 -0
  130. package/styles/core/all.css +2 -2
  131. package/styles/core/theme.css +2 -2
  132. package/styles/core/typography.css +1 -1
  133. package/styles/tokens/theme-dark.css +4 -4
  134. package/styles/tokens/theme-light.css +4 -4
  135. package/styles/tokens/vivid-2-compat.css +1 -1
  136. package/table/definition.cjs +168 -0
  137. package/table/definition.js +152 -0
  138. package/table/index.cjs +37 -0
  139. package/table/index.js +107 -0
  140. package/tag/definition.cjs +1 -1
  141. package/tag/definition.js +1 -1
  142. package/tag/index.cjs +24 -24
  143. package/tag/index.js +89 -89
  144. package/unbundled/_commonjsHelpers.cjs +26 -0
  145. package/unbundled/_commonjsHelpers.js +26 -1
  146. package/unbundled/data-grid.options.cjs +34 -0
  147. package/unbundled/data-grid.options.js +28 -0
  148. package/unbundled/definition.cjs +1 -1
  149. package/unbundled/definition.js +1 -1
  150. package/unbundled/slottable-request.cjs +3702 -0
  151. package/unbundled/slottable-request.js +3684 -0
  152. package/unbundled/vivid-element.cjs +1 -1
  153. package/unbundled/vivid-element.js +1 -1
  154. package/video-player/definition.cjs +11 -1
  155. package/video-player/definition.js +12 -2
  156. package/video-player/index.cjs +30 -30
  157. package/video-player/index.js +705 -702
  158. package/vivid.api.json +1957 -143
@@ -0,0 +1,381 @@
1
+ import { VividElement } from '../../shared/foundation/vivid-element/vivid-element';
2
+ declare const TableRow_base: {
3
+ new (...args: any[]): {
4
+ _vividAriaBehaviour: "host";
5
+ connectedCallback(): void;
6
+ readonly $fastController: import("@microsoft/fast-element").ElementController<HTMLElement>;
7
+ $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail"> | undefined): boolean | void;
8
+ disconnectedCallback(): void;
9
+ attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
10
+ accessKey: string;
11
+ readonly accessKeyLabel: string;
12
+ autocapitalize: string;
13
+ dir: string;
14
+ draggable: boolean;
15
+ hidden: boolean;
16
+ inert: boolean;
17
+ innerText: string;
18
+ lang: string;
19
+ readonly offsetHeight: number;
20
+ readonly offsetLeft: number;
21
+ readonly offsetParent: Element | null;
22
+ readonly offsetTop: number;
23
+ readonly offsetWidth: number;
24
+ outerText: string;
25
+ spellcheck: boolean;
26
+ title: string;
27
+ translate: boolean;
28
+ attachInternals(): ElementInternals;
29
+ click(): void;
30
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
31
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
32
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
33
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
34
+ readonly attributes: NamedNodeMap;
35
+ readonly classList: DOMTokenList;
36
+ className: string;
37
+ readonly clientHeight: number;
38
+ readonly clientLeft: number;
39
+ readonly clientTop: number;
40
+ readonly clientWidth: number;
41
+ id: string;
42
+ readonly localName: string;
43
+ readonly namespaceURI: string | null;
44
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
45
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
46
+ outerHTML: string;
47
+ readonly ownerDocument: Document;
48
+ readonly part: DOMTokenList;
49
+ readonly prefix: string | null;
50
+ readonly scrollHeight: number;
51
+ scrollLeft: number;
52
+ scrollTop: number;
53
+ readonly scrollWidth: number;
54
+ readonly shadowRoot: ShadowRoot | null;
55
+ slot: string;
56
+ readonly tagName: string;
57
+ attachShadow(init: ShadowRootInit): ShadowRoot;
58
+ checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
59
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
60
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
61
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
62
+ closest<E extends Element = Element>(selectors: string): E | null;
63
+ getAttribute(qualifiedName: string): string | null;
64
+ getAttributeNS(namespace: string | null, localName: string): string | null;
65
+ getAttributeNames(): string[];
66
+ getAttributeNode(qualifiedName: string): Attr | null;
67
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
68
+ getBoundingClientRect(): DOMRect;
69
+ getClientRects(): DOMRectList;
70
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
71
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
72
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
73
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
74
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
75
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
76
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
77
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
78
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
79
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
80
+ hasAttribute(qualifiedName: string): boolean;
81
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
82
+ hasAttributes(): boolean;
83
+ hasPointerCapture(pointerId: number): boolean;
84
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
85
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
86
+ insertAdjacentText(where: InsertPosition, data: string): void;
87
+ matches(selectors: string): boolean;
88
+ releasePointerCapture(pointerId: number): void;
89
+ removeAttribute(qualifiedName: string): void;
90
+ removeAttributeNS(namespace: string | null, localName: string): void;
91
+ removeAttributeNode(attr: Attr): Attr;
92
+ requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
93
+ requestPointerLock(): void;
94
+ scroll(options?: ScrollToOptions | undefined): void;
95
+ scroll(x: number, y: number): void;
96
+ scrollBy(options?: ScrollToOptions | undefined): void;
97
+ scrollBy(x: number, y: number): void;
98
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
99
+ scrollTo(options?: ScrollToOptions | undefined): void;
100
+ scrollTo(x: number, y: number): void;
101
+ setAttribute(qualifiedName: string, value: string): void;
102
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
103
+ setAttributeNode(attr: Attr): Attr | null;
104
+ setAttributeNodeNS(attr: Attr): Attr | null;
105
+ setPointerCapture(pointerId: number): void;
106
+ toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
107
+ webkitMatchesSelector(selectors: string): boolean;
108
+ readonly baseURI: string;
109
+ readonly childNodes: NodeListOf<ChildNode>;
110
+ readonly firstChild: ChildNode | null;
111
+ readonly isConnected: boolean;
112
+ readonly lastChild: ChildNode | null;
113
+ readonly nextSibling: ChildNode | null;
114
+ readonly nodeName: string;
115
+ readonly nodeType: number;
116
+ nodeValue: string | null;
117
+ readonly parentElement: HTMLElement | null;
118
+ readonly parentNode: ParentNode | null;
119
+ readonly previousSibling: ChildNode | null;
120
+ textContent: string | null;
121
+ appendChild<T extends Node>(node: T): T;
122
+ cloneNode(deep?: boolean | undefined): Node;
123
+ compareDocumentPosition(other: Node): number;
124
+ contains(other: Node | null): boolean;
125
+ getRootNode(options?: GetRootNodeOptions | undefined): Node;
126
+ hasChildNodes(): boolean;
127
+ insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
128
+ isDefaultNamespace(namespace: string | null): boolean;
129
+ isEqualNode(otherNode: Node | null): boolean;
130
+ isSameNode(otherNode: Node | null): boolean;
131
+ lookupNamespaceURI(prefix: string | null): string | null;
132
+ lookupPrefix(namespace: string | null): string | null;
133
+ normalize(): void;
134
+ removeChild<T_2 extends Node>(child: T_2): T_2;
135
+ replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
136
+ readonly ELEMENT_NODE: 1;
137
+ readonly ATTRIBUTE_NODE: 2;
138
+ readonly TEXT_NODE: 3;
139
+ readonly CDATA_SECTION_NODE: 4;
140
+ readonly ENTITY_REFERENCE_NODE: 5;
141
+ readonly ENTITY_NODE: 6;
142
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
143
+ readonly COMMENT_NODE: 8;
144
+ readonly DOCUMENT_NODE: 9;
145
+ readonly DOCUMENT_TYPE_NODE: 10;
146
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
147
+ readonly NOTATION_NODE: 12;
148
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
149
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
150
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
151
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
152
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
153
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
154
+ dispatchEvent(event: Event): boolean;
155
+ ariaAtomic: string | null;
156
+ ariaAutoComplete: string | null;
157
+ ariaBusy: string | null;
158
+ ariaChecked: string | null;
159
+ ariaColCount: string | null;
160
+ ariaColIndex: string | null;
161
+ ariaColSpan: string | null;
162
+ ariaCurrent: string | null;
163
+ ariaDisabled: string | null;
164
+ ariaExpanded: string | null;
165
+ ariaHasPopup: string | null;
166
+ ariaHidden: string | null;
167
+ ariaInvalid: string | null;
168
+ ariaKeyShortcuts: string | null;
169
+ ariaLabel: string | null;
170
+ ariaLevel: string | null;
171
+ ariaLive: string | null;
172
+ ariaModal: string | null;
173
+ ariaMultiLine: string | null;
174
+ ariaMultiSelectable: string | null;
175
+ ariaOrientation: string | null;
176
+ ariaPlaceholder: string | null;
177
+ ariaPosInSet: string | null;
178
+ ariaPressed: string | null;
179
+ ariaReadOnly: string | null;
180
+ ariaRequired: string | null;
181
+ ariaRoleDescription: string | null;
182
+ ariaRowCount: string | null;
183
+ ariaRowIndex: string | null;
184
+ ariaRowSpan: string | null;
185
+ ariaSelected: string | null;
186
+ ariaSetSize: string | null;
187
+ ariaSort: string | null;
188
+ ariaValueMax: string | null;
189
+ ariaValueMin: string | null;
190
+ ariaValueNow: string | null;
191
+ ariaValueText: string | null;
192
+ role: string | null;
193
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
194
+ getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
195
+ after(...nodes: (string | Node)[]): void;
196
+ before(...nodes: (string | Node)[]): void;
197
+ remove(): void;
198
+ replaceWith(...nodes: (string | Node)[]): void;
199
+ innerHTML: string;
200
+ readonly nextElementSibling: Element | null;
201
+ readonly previousElementSibling: Element | null;
202
+ readonly childElementCount: number;
203
+ readonly children: HTMLCollection;
204
+ readonly firstElementChild: Element | null;
205
+ readonly lastElementChild: Element | null;
206
+ append(...nodes: (string | Node)[]): void;
207
+ prepend(...nodes: (string | Node)[]): void;
208
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
209
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
210
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
211
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
212
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
213
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
214
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
215
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
216
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
217
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
218
+ replaceChildren(...nodes: (string | Node)[]): void;
219
+ readonly assignedSlot: HTMLSlotElement | null;
220
+ readonly style: CSSStyleDeclaration;
221
+ contentEditable: string;
222
+ enterKeyHint: string;
223
+ inputMode: string;
224
+ readonly isContentEditable: boolean;
225
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
226
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
227
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
228
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
229
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
230
+ onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
231
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
232
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
233
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
234
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
235
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
236
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
237
+ onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
238
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
239
+ oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
240
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
241
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
242
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
243
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
244
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
245
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
246
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
247
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
248
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
249
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
250
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
251
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
252
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
253
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
254
+ onerror: OnErrorEventHandler;
255
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
256
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
257
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
258
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
259
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
260
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
261
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
262
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
263
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
264
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
265
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
266
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
267
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
268
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
269
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
270
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
271
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
272
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
273
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
274
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
275
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
276
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
277
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
278
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
279
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
280
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
281
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
282
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
283
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
284
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
285
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
286
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
287
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
288
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
289
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
290
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
291
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
292
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
293
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
294
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
295
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
296
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
297
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
298
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
299
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
300
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
301
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
302
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
303
+ ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
304
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
305
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
306
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
307
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
308
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
309
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
310
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
311
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
312
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
313
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
314
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
315
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
316
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
317
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
318
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
319
+ autofocus: boolean;
320
+ readonly dataset: DOMStringMap;
321
+ nonce?: string | undefined;
322
+ tabIndex: number;
323
+ blur(): void;
324
+ focus(options?: FocusOptions | undefined): void;
325
+ ariaColIndexText: string | null;
326
+ ariaDescription: string | null;
327
+ ariaRowIndexText: string | null;
328
+ ariaRelevant: string | null;
329
+ roleChanged(prev: string | null, next: string | null): void;
330
+ ariaAtomicChanged(prev: string | null, next: string | null): void;
331
+ ariaAutoCompleteChanged(prev: string | null, next: string | null): void;
332
+ ariaBusyChanged(prev: string | null, next: string | null): void;
333
+ ariaCheckedChanged(prev: string | null, next: string | null): void;
334
+ ariaColCountChanged(prev: string | null, next: string | null): void;
335
+ ariaColIndexChanged(prev: string | null, next: string | null): void;
336
+ ariaColIndexTextChanged(prev: string | null, next: string | null): void;
337
+ ariaColSpanChanged(prev: string | null, next: string | null): void;
338
+ ariaCurrentChanged(prev: string | null, next: string | null): void;
339
+ ariaDescriptionChanged(prev: string | null, next: string | null): void;
340
+ ariaDisabledChanged(prev: string | null, next: string | null): void;
341
+ ariaExpandedChanged(prev: string | null, next: string | null): void;
342
+ ariaHasPopupChanged(prev: string | null, next: string | null): void;
343
+ ariaHiddenChanged(prev: string | null, next: string | null): void;
344
+ ariaInvalidChanged(prev: string | null, next: string | null): void;
345
+ ariaKeyShortcutsChanged(prev: string | null, next: string | null): void;
346
+ ariaLabelChanged(prev: string | null, next: string | null): void;
347
+ ariaLevelChanged(prev: string | null, next: string | null): void;
348
+ ariaLiveChanged(prev: string | null, next: string | null): void;
349
+ ariaModalChanged(prev: string | null, next: string | null): void;
350
+ ariaMultiLineChanged(prev: string | null, next: string | null): void;
351
+ ariaMultiSelectableChanged(prev: string | null, next: string | null): void;
352
+ ariaOrientationChanged(prev: string | null, next: string | null): void;
353
+ ariaPlaceholderChanged(prev: string | null, next: string | null): void;
354
+ ariaPosInSetChanged(prev: string | null, next: string | null): void;
355
+ ariaPressedChanged(prev: string | null, next: string | null): void;
356
+ ariaReadOnlyChanged(prev: string | null, next: string | null): void;
357
+ ariaRequiredChanged(prev: string | null, next: string | null): void;
358
+ ariaRoleDescriptionChanged(prev: string | null, next: string | null): void;
359
+ ariaRowCountChanged(prev: string | null, next: string | null): void;
360
+ ariaRowIndexChanged(prev: string | null, next: string | null): void;
361
+ ariaRowIndexTextChanged(prev: string | null, next: string | null): void;
362
+ ariaRowSpanChanged(prev: string | null, next: string | null): void;
363
+ ariaSelectedChanged(prev: string | null, next: string | null): void;
364
+ ariaSetSizeChanged(prev: string | null, next: string | null): void;
365
+ ariaSortChanged(prev: string | null, next: string | null): void;
366
+ ariaValueMaxChanged(prev: string | null, next: string | null): void;
367
+ ariaValueMinChanged(prev: string | null, next: string | null): void;
368
+ ariaValueNowChanged(prev: string | null, next: string | null): void;
369
+ ariaValueTextChanged(prev: string | null, next: string | null): void;
370
+ ariaRelevantChanged(prev: string | null, next: string | null): void;
371
+ "__#1@#handleReplacedProp"(replacedProp: {
372
+ newPropertyName: string;
373
+ deprecatedPropertyName: string;
374
+ fromDeprecated: (v: any) => any;
375
+ toDeprecated?: ((v: any) => any) | undefined;
376
+ }): void;
377
+ };
378
+ } & typeof VividElement;
379
+ export declare class TableRow extends TableRow_base {
380
+ }
381
+ export {};
@@ -0,0 +1,3 @@
1
+ import type { VividElementDefinitionContext } from '../../shared/design-system/defineVividComponent';
2
+ import type { TableRow } from './table-row';
3
+ export declare const TableRowTemplate: (context: VividElementDefinitionContext) => import("@microsoft/fast-element").ViewTemplate<TableRow, any>;
@@ -0,0 +1,3 @@
1
+ import { VividElement } from '../../shared/foundation/vivid-element/vivid-element';
2
+ export declare class Table extends VividElement {
3
+ }
@@ -0,0 +1,3 @@
1
+ import type { VividElementDefinitionContext } from '../../shared/design-system/defineVividComponent';
2
+ import type { Table } from './table';
3
+ export declare const TableTemplate: (context: VividElementDefinitionContext) => import("@microsoft/fast-element").ViewTemplate<Table, any>;
package/lib/tag/tag.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import type { Appearance, Connotation, Shape } from '../enums.js';
2
2
  import { VividElement } from '../../shared/foundation/vivid-element/vivid-element';
3
3
  import type { ExtractFromEnum } from '../../shared/utils/enums';
4
- export type TagConnotation = ExtractFromEnum<Connotation, Connotation.Accent | Connotation.CTA>;
4
+ export type TagConnotation = ExtractFromEnum<Connotation, Connotation.Accent | Connotation.CTA | Connotation.Success | Connotation.Alert | Connotation.Warning | Connotation.Information | Connotation.Announcement>;
5
5
  export type TagAppearance = ExtractFromEnum<Appearance, Appearance.Subtle | Appearance.Duotone | Appearance.SubtleLight>;
6
6
  export type TagShape = ExtractFromEnum<Shape, Shape.Rounded | Shape.Pill>;
7
7
  declare const Tag_base: {
@@ -1,4 +1,4 @@
1
- import type { VwcAccordionElement, VwcAccordionItemElement, VwcActionGroupElement, VwcAlertElement, VwcAudioPlayerElement, VwcAvatarElement, VwcBadgeElement, VwcBannerElement, VwcBreadcrumbElement, VwcBreadcrumbItemElement, VwcButtonElement, VwcCalendarElement, VwcCalendarEventElement, VwcCardElement, VwcCheckboxElement, VwcColorPickerElement, VwcComboboxElement, VwcContextualHelpElement, VwcDataGridCellElement, VwcDataGridElement, VwcDataGridRowElement, VwcDatePickerElement, VwcDateRangePickerElement, VwcDateTimePickerElement, VwcDialogElement, VwcDialPadElement, VwcDividerElement, VwcEmptyStateElement, VwcFabElement, VwcFilePickerElement, VwcHeaderElement, VwcIconElement, VwcLayoutElement, VwcMenuElement, VwcMenuItemElement, VwcNavDisclosureElement, VwcNavElement, VwcNavItemElement, VwcNoteElement, VwcNumberFieldElement, VwcOptionElement, VwcPaginationElement, VwcProgressElement, VwcProgressRingElement, VwcRadioElement, VwcRadioGroupElement, VwcRangeSliderElement, VwcRichTextEditorElement, VwcSearchableSelectElement, VwcSelectableBoxElement, VwcSelectElement, VwcSideDrawerElement, VwcSimpleColorPickerElement, VwcSliderElement, VwcSplitButtonElement, VwcSwitchElement, VwcTabElement, VwcTabPanelElement, VwcTabsElement, VwcTagElement, VwcTagGroupElement, VwcTextAreaElement, VwcTextFieldElement, VwcTimePickerElement, VwcToggletipElement, VwcTooltipElement, VwcTreeItemElement, VwcTreeViewElement, VwcVideoPlayerElement } from './components';
1
+ import type { VwcAccordionElement, VwcAccordionItemElement, VwcActionGroupElement, VwcAlertElement, VwcAudioPlayerElement, VwcAvatarElement, VwcBadgeElement, VwcBannerElement, VwcBreadcrumbElement, VwcBreadcrumbItemElement, VwcButtonElement, VwcCalendarElement, VwcCalendarEventElement, VwcCardElement, VwcCheckboxElement, VwcColorPickerElement, VwcComboboxElement, VwcContextualHelpElement, VwcCountryElement, VwcDataGridCellElement, VwcDataGridElement, VwcDataGridRowElement, VwcDatePickerElement, VwcDateRangePickerElement, VwcDateTimePickerElement, VwcDialogElement, VwcDialPadElement, VwcDividerElement, VwcEmptyStateElement, VwcFabElement, VwcFilePickerElement, VwcHeaderElement, VwcIconElement, VwcLayoutElement, VwcMenuElement, VwcMenuItemElement, VwcNavDisclosureElement, VwcNavElement, VwcNavItemElement, VwcNoteElement, VwcNumberFieldElement, VwcOptionElement, VwcPaginationElement, VwcPopoverElement, VwcProgressElement, VwcProgressRingElement, VwcRadioElement, VwcRadioGroupElement, VwcRangeSliderElement, VwcRichTextEditorElement, VwcRichTextViewElement, VwcSearchableSelectElement, VwcSelectableBoxElement, VwcSelectElement, VwcSideDrawerElement, VwcSimpleColorPickerElement, VwcSliderElement, VwcSplitButtonElement, VwcStatusElement, VwcSwitchElement, VwcTabElement, VwcTableBodyElement, VwcTableCellElement, VwcTableElement, VwcTableHeadElement, VwcTableHeaderCellElement, VwcTableRowElement, VwcTabPanelElement, VwcTabsElement, VwcTagElement, VwcTagGroupElement, VwcTextAreaElement, VwcTextFieldElement, VwcTimePickerElement, VwcToggletipElement, VwcTooltipElement, VwcTreeItemElement, VwcTreeViewElement, VwcVideoPlayerElement } from './components';
2
2
  type DefaultVividTagNameMap = {
3
3
  'vwc-accordion': VwcAccordionElement;
4
4
  'vwc-accordion-item': VwcAccordionItemElement;
@@ -18,9 +18,16 @@ type DefaultVividTagNameMap = {
18
18
  'vwc-color-picker': VwcColorPickerElement;
19
19
  'vwc-contextual-help': VwcContextualHelpElement;
20
20
  'vwc-combobox': VwcComboboxElement;
21
+ 'vwc-country': VwcCountryElement;
21
22
  'vwc-data-grid-cell': VwcDataGridCellElement;
22
23
  'vwc-data-grid': VwcDataGridElement;
23
24
  'vwc-data-grid-row': VwcDataGridRowElement;
25
+ 'vwc-table': VwcTableElement;
26
+ 'vwc-table-body': VwcTableBodyElement;
27
+ 'vwc-table-cell': VwcTableCellElement;
28
+ 'vwc-table-head': VwcTableHeadElement;
29
+ 'vwc-table-header-cell': VwcTableHeaderCellElement;
30
+ 'vwc-table-row': VwcTableRowElement;
24
31
  'vwc-date-picker': VwcDatePickerElement;
25
32
  'vwc-date-range-picker': VwcDateRangePickerElement;
26
33
  'vwc-date-time-picker': VwcDateTimePickerElement;
@@ -42,11 +49,13 @@ type DefaultVividTagNameMap = {
42
49
  'vwc-number-field': VwcNumberFieldElement;
43
50
  'vwc-option': VwcOptionElement;
44
51
  'vwc-pagination': VwcPaginationElement;
52
+ 'vwc-popover': VwcPopoverElement;
45
53
  'vwc-progress': VwcProgressElement;
46
54
  'vwc-progress-ring': VwcProgressRingElement;
47
55
  'vwc-radio': VwcRadioElement;
48
56
  'vwc-radio-group': VwcRadioGroupElement;
49
57
  'vwc-range-slider': VwcRangeSliderElement;
58
+ 'vwc-rich-text-view': VwcRichTextViewElement;
50
59
  'vwc-rich-text-editor': VwcRichTextEditorElement;
51
60
  'vwc-searchable-select': VwcSearchableSelectElement;
52
61
  'vwc-selectable-box': VwcSelectableBoxElement;
@@ -55,6 +64,7 @@ type DefaultVividTagNameMap = {
55
64
  'vwc-simple-color-picker': VwcSimpleColorPickerElement;
56
65
  'vwc-slider': VwcSliderElement;
57
66
  'vwc-split-button': VwcSplitButtonElement;
67
+ 'vwc-status': VwcStatusElement;
58
68
  'vwc-switch': VwcSwitchElement;
59
69
  'vwc-tab': VwcTabElement;
60
70
  'vwc-tab-panel': VwcTabPanelElement;
package/locales/de-DE.cjs CHANGED
@@ -328,6 +328,9 @@ const deDE = {
328
328
  dialog: {
329
329
  dismissButtonLabel: "Schließen"
330
330
  },
331
+ popover: {
332
+ dismissButtonLabel: "Schließen"
333
+ },
331
334
  banner: {
332
335
  dismissButtonLabel: "Schließen"
333
336
  },
@@ -438,7 +441,9 @@ const deDE = {
438
441
  small: "Klein",
439
442
  fit: "Anpassen",
440
443
  original: "Originalgröße"
441
- }
444
+ },
445
+ suggestLoading: "Laden...",
446
+ suggestNoResults: "Keine Ergebnisse"
442
447
  },
443
448
  button: {
444
449
  pendingLabel: "Laden..."
package/locales/de-DE.js CHANGED
@@ -326,6 +326,9 @@ const deDE = {
326
326
  dialog: {
327
327
  dismissButtonLabel: "Schließen"
328
328
  },
329
+ popover: {
330
+ dismissButtonLabel: "Schließen"
331
+ },
329
332
  banner: {
330
333
  dismissButtonLabel: "Schließen"
331
334
  },
@@ -436,7 +439,9 @@ const deDE = {
436
439
  small: "Klein",
437
440
  fit: "Anpassen",
438
441
  original: "Originalgröße"
439
- }
442
+ },
443
+ suggestLoading: "Laden...",
444
+ suggestNoResults: "Keine Ergebnisse"
440
445
  },
441
446
  button: {
442
447
  pendingLabel: "Laden..."
package/locales/en-GB.cjs CHANGED
@@ -160,6 +160,9 @@ const enGB = {
160
160
  dialog: {
161
161
  dismissButtonLabel: "Close"
162
162
  },
163
+ popover: {
164
+ dismissButtonLabel: "Close"
165
+ },
163
166
  banner: {
164
167
  dismissButtonLabel: "Close"
165
168
  },
@@ -270,7 +273,9 @@ const enGB = {
270
273
  small: "Small",
271
274
  fit: "Fit",
272
275
  original: "Original size"
273
- }
276
+ },
277
+ suggestLoading: "Loading...",
278
+ suggestNoResults: "No results"
274
279
  },
275
280
  button: {
276
281
  pendingLabel: "Loading..."
package/locales/en-GB.js CHANGED
@@ -158,6 +158,9 @@ const enGB = {
158
158
  dialog: {
159
159
  dismissButtonLabel: "Close"
160
160
  },
161
+ popover: {
162
+ dismissButtonLabel: "Close"
163
+ },
161
164
  banner: {
162
165
  dismissButtonLabel: "Close"
163
166
  },
@@ -268,7 +271,9 @@ const enGB = {
268
271
  small: "Small",
269
272
  fit: "Fit",
270
273
  original: "Original size"
271
- }
274
+ },
275
+ suggestLoading: "Loading...",
276
+ suggestNoResults: "No results"
272
277
  },
273
278
  button: {
274
279
  pendingLabel: "Loading..."
package/locales/en-US.cjs CHANGED
@@ -328,6 +328,9 @@ const enUS = {
328
328
  dialog: {
329
329
  dismissButtonLabel: "Close"
330
330
  },
331
+ popover: {
332
+ dismissButtonLabel: "Close"
333
+ },
331
334
  banner: {
332
335
  dismissButtonLabel: "Close"
333
336
  },
@@ -438,7 +441,9 @@ const enUS = {
438
441
  small: "Small",
439
442
  fit: "Fit",
440
443
  original: "Original size"
441
- }
444
+ },
445
+ suggestLoading: "Loading...",
446
+ suggestNoResults: "No results"
442
447
  },
443
448
  button: {
444
449
  pendingLabel: "Loading..."
package/locales/en-US.js CHANGED
@@ -326,6 +326,9 @@ const enUS = {
326
326
  dialog: {
327
327
  dismissButtonLabel: "Close"
328
328
  },
329
+ popover: {
330
+ dismissButtonLabel: "Close"
331
+ },
329
332
  banner: {
330
333
  dismissButtonLabel: "Close"
331
334
  },
@@ -436,7 +439,9 @@ const enUS = {
436
439
  small: "Small",
437
440
  fit: "Fit",
438
441
  original: "Original size"
439
- }
442
+ },
443
+ suggestLoading: "Loading...",
444
+ suggestNoResults: "No results"
440
445
  },
441
446
  button: {
442
447
  pendingLabel: "Loading..."
package/locales/ja-JP.cjs CHANGED
@@ -327,6 +327,9 @@ const jaJP = {
327
327
  dialog: {
328
328
  dismissButtonLabel: "閉じる"
329
329
  },
330
+ popover: {
331
+ dismissButtonLabel: "閉じる"
332
+ },
330
333
  banner: {
331
334
  dismissButtonLabel: "閉じる"
332
335
  },
@@ -437,7 +440,9 @@ const jaJP = {
437
440
  small: "小",
438
441
  fit: "フィット",
439
442
  original: "元のサイズ"
440
- }
443
+ },
444
+ suggestLoading: "読み込み中...",
445
+ suggestNoResults: "結果なし"
441
446
  },
442
447
  button: {
443
448
  pendingLabel: "読み込み中"
package/locales/ja-JP.js CHANGED
@@ -325,6 +325,9 @@ const jaJP = {
325
325
  dialog: {
326
326
  dismissButtonLabel: "閉じる"
327
327
  },
328
+ popover: {
329
+ dismissButtonLabel: "閉じる"
330
+ },
328
331
  banner: {
329
332
  dismissButtonLabel: "閉じる"
330
333
  },
@@ -435,7 +438,9 @@ const jaJP = {
435
438
  small: "小",
436
439
  fit: "フィット",
437
440
  original: "元のサイズ"
438
- }
441
+ },
442
+ suggestLoading: "読み込み中...",
443
+ suggestNoResults: "結果なし"
439
444
  },
440
445
  button: {
441
446
  pendingLabel: "読み込み中"
package/locales/zh-CN.cjs CHANGED
@@ -329,6 +329,9 @@ const zhCN = {
329
329
  dialog: {
330
330
  dismissButtonLabel: "关"
331
331
  },
332
+ popover: {
333
+ dismissButtonLabel: "关"
334
+ },
332
335
  banner: {
333
336
  dismissButtonLabel: "关"
334
337
  },
@@ -439,7 +442,9 @@ const zhCN = {
439
442
  small: "小",
440
443
  fit: "适应",
441
444
  original: "原始大小"
442
- }
445
+ },
446
+ suggestLoading: "加载中...",
447
+ suggestNoResults: "无结果"
443
448
  },
444
449
  button: {
445
450
  pendingLabel: "加载中"