@vonage/vivid 4.23.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.
- package/custom-elements.json +574 -642
- package/lib/file-picker/file-picker.d.ts +2 -2
- package/lib/file-picker/locale.d.ts +1 -0
- package/lib/rich-text-editor/locale.d.ts +9 -0
- package/lib/rich-text-editor/menubar/menubar.d.ts +334 -1
- package/lib/searchable-select/locale.d.ts +1 -0
- package/lib/searchable-select/searchable-select.d.ts +1 -0
- package/lib/tabs/tabs.d.ts +5 -21
- package/locales/de-DE.cjs +15 -1
- package/locales/de-DE.js +15 -1
- package/locales/en-GB.cjs +15 -1
- package/locales/en-GB.js +15 -1
- package/locales/en-US.cjs +15 -1
- package/locales/en-US.js +15 -1
- package/locales/ja-JP.cjs +15 -1
- package/locales/ja-JP.js +15 -1
- package/locales/zh-CN.cjs +15 -1
- package/locales/zh-CN.js +15 -1
- package/package.json +1 -1
- package/shared/button.cjs +6 -3
- package/shared/button.js +6 -3
- package/shared/definition12.cjs +1 -1
- package/shared/definition12.js +1 -1
- package/shared/definition17.cjs +4 -1
- package/shared/definition17.js +4 -1
- package/shared/definition22.cjs +8 -2
- package/shared/definition22.js +8 -2
- package/shared/definition26.cjs +13 -2
- package/shared/definition26.js +13 -2
- package/shared/definition43.cjs +96 -32
- package/shared/definition43.js +96 -32
- package/shared/definition44.cjs +74 -4
- package/shared/definition44.js +74 -4
- package/shared/definition45.cjs +7 -1
- package/shared/definition45.js +7 -1
- package/shared/definition50.cjs +1 -1
- package/shared/definition50.js +1 -1
- package/shared/definition53.cjs +219 -297
- package/shared/definition53.js +221 -299
- package/shared/localization/Locale.d.ts +2 -0
- package/shared/vivid-element.cjs +1 -1
- package/shared/vivid-element.js +1 -1
- package/styles/core/all.css +1 -1
- package/styles/core/theme.css +1 -1
- package/styles/core/typography.css +1 -1
- package/styles/tokens/theme-dark.css +4 -4
- package/styles/tokens/theme-light.css +4 -4
- package/styles/tokens/vivid-2-compat.css +1 -1
- package/vivid.api.json +33 -3
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import Dropzone from 'dropzone';
|
|
2
|
-
import type { Size } from '../enums';
|
|
3
|
-
import { type ErrorText, type FormElement, FormElementHelperText } from '../../shared/patterns';
|
|
4
2
|
import type { Locale } from '../../shared/localization/Locale';
|
|
3
|
+
import { type ErrorText, type FormElement, FormElementHelperText } from '../../shared/patterns';
|
|
5
4
|
import type { ExtractFromEnum } from '../../shared/utils/enums';
|
|
5
|
+
import type { Size } from '../enums';
|
|
6
6
|
import { FormAssociatedFilePicker } from './file-picker.form-associated';
|
|
7
7
|
export type FilePickerSize = ExtractFromEnum<Size, Size.Normal | Size.Expanded>;
|
|
8
8
|
declare const FilePicker_base: {
|
|
@@ -1,7 +1,340 @@
|
|
|
1
1
|
import { VividElement } from '../../../shared/foundation/vivid-element/vivid-element';
|
|
2
|
-
|
|
2
|
+
declare const MenuBar_base: {
|
|
3
|
+
new (...args: any[]): {
|
|
4
|
+
readonly locale: import("../../shared/localization/Locale").Locale;
|
|
5
|
+
specialHandling: boolean;
|
|
6
|
+
_vividAriaBehaviour: import("../../shared/aria/aria-mixin").VividAriaBehaviour;
|
|
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;
|
|
12
|
+
accessKey: string;
|
|
13
|
+
readonly accessKeyLabel: string;
|
|
14
|
+
autocapitalize: string;
|
|
15
|
+
dir: string;
|
|
16
|
+
draggable: boolean;
|
|
17
|
+
hidden: boolean;
|
|
18
|
+
inert: boolean;
|
|
19
|
+
innerText: string;
|
|
20
|
+
lang: string;
|
|
21
|
+
readonly offsetHeight: number;
|
|
22
|
+
readonly offsetLeft: number;
|
|
23
|
+
readonly offsetParent: Element | null;
|
|
24
|
+
readonly offsetTop: number;
|
|
25
|
+
readonly offsetWidth: number;
|
|
26
|
+
outerText: string;
|
|
27
|
+
spellcheck: boolean;
|
|
28
|
+
title: string;
|
|
29
|
+
translate: boolean;
|
|
30
|
+
attachInternals(): ElementInternals;
|
|
31
|
+
click(): void;
|
|
32
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
33
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
34
|
+
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
35
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
|
|
36
|
+
dropzone: import("dropzone");
|
|
37
|
+
readonly attributes: NamedNodeMap;
|
|
38
|
+
readonly classList: DOMTokenList;
|
|
39
|
+
className: string;
|
|
40
|
+
readonly clientHeight: number;
|
|
41
|
+
readonly clientLeft: number;
|
|
42
|
+
readonly clientTop: number;
|
|
43
|
+
readonly clientWidth: number;
|
|
44
|
+
id: string;
|
|
45
|
+
readonly localName: string;
|
|
46
|
+
readonly namespaceURI: string | null;
|
|
47
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
|
48
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
|
49
|
+
outerHTML: string;
|
|
50
|
+
readonly ownerDocument: Document;
|
|
51
|
+
readonly part: DOMTokenList;
|
|
52
|
+
readonly prefix: string | null;
|
|
53
|
+
readonly scrollHeight: number;
|
|
54
|
+
scrollLeft: number;
|
|
55
|
+
scrollTop: number;
|
|
56
|
+
readonly scrollWidth: number;
|
|
57
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
58
|
+
slot: string;
|
|
59
|
+
readonly tagName: string;
|
|
60
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
61
|
+
checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
|
|
62
|
+
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
|
|
63
|
+
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
|
|
64
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
|
|
65
|
+
closest<E extends Element = Element>(selectors: string): E | null;
|
|
66
|
+
getAttribute(qualifiedName: string): string | null;
|
|
67
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
68
|
+
getAttributeNames(): string[];
|
|
69
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
|
70
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
71
|
+
getBoundingClientRect(): DOMRect;
|
|
72
|
+
getClientRects(): DOMRectList;
|
|
73
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
74
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
75
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
76
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
77
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
78
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
79
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
80
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
81
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
82
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
83
|
+
hasAttribute(qualifiedName: string): boolean;
|
|
84
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
85
|
+
hasAttributes(): boolean;
|
|
86
|
+
hasPointerCapture(pointerId: number): boolean;
|
|
87
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
88
|
+
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
89
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
90
|
+
matches(selectors: string): boolean;
|
|
91
|
+
releasePointerCapture(pointerId: number): void;
|
|
92
|
+
removeAttribute(qualifiedName: string): void;
|
|
93
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
94
|
+
removeAttributeNode(attr: Attr): Attr;
|
|
95
|
+
requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
|
|
96
|
+
requestPointerLock(): void;
|
|
97
|
+
scroll(options?: ScrollToOptions | undefined): void;
|
|
98
|
+
scroll(x: number, y: number): void;
|
|
99
|
+
scrollBy(options?: ScrollToOptions | undefined): void;
|
|
100
|
+
scrollBy(x: number, y: number): void;
|
|
101
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
|
|
102
|
+
scrollTo(options?: ScrollToOptions | undefined): void;
|
|
103
|
+
scrollTo(x: number, y: number): void;
|
|
104
|
+
setAttribute(qualifiedName: string, value: string): void;
|
|
105
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
106
|
+
setAttributeNode(attr: Attr): Attr | null;
|
|
107
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
108
|
+
setPointerCapture(pointerId: number): void;
|
|
109
|
+
toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
|
|
110
|
+
webkitMatchesSelector(selectors: string): boolean;
|
|
111
|
+
readonly baseURI: string;
|
|
112
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
113
|
+
readonly firstChild: ChildNode | null;
|
|
114
|
+
readonly isConnected: boolean;
|
|
115
|
+
readonly lastChild: ChildNode | null;
|
|
116
|
+
readonly nextSibling: ChildNode | null;
|
|
117
|
+
readonly nodeName: string;
|
|
118
|
+
readonly nodeType: number;
|
|
119
|
+
nodeValue: string | null;
|
|
120
|
+
readonly parentElement: HTMLElement | null;
|
|
121
|
+
readonly parentNode: ParentNode | null;
|
|
122
|
+
readonly previousSibling: ChildNode | null;
|
|
123
|
+
textContent: string | null;
|
|
124
|
+
appendChild<T extends Node>(node: T): T;
|
|
125
|
+
cloneNode(deep?: boolean | undefined): Node;
|
|
126
|
+
compareDocumentPosition(other: Node): number;
|
|
127
|
+
contains(other: Node | null): boolean;
|
|
128
|
+
getRootNode(options?: GetRootNodeOptions | undefined): Node;
|
|
129
|
+
hasChildNodes(): boolean;
|
|
130
|
+
insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
|
|
131
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
|
132
|
+
isEqualNode(otherNode: Node | null): boolean;
|
|
133
|
+
isSameNode(otherNode: Node | null): boolean;
|
|
134
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
|
135
|
+
lookupPrefix(namespace: string | null): string | null;
|
|
136
|
+
normalize(): void;
|
|
137
|
+
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
138
|
+
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
139
|
+
readonly ELEMENT_NODE: 1;
|
|
140
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
141
|
+
readonly TEXT_NODE: 3;
|
|
142
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
143
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
144
|
+
readonly ENTITY_NODE: 6;
|
|
145
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
146
|
+
readonly COMMENT_NODE: 8;
|
|
147
|
+
readonly DOCUMENT_NODE: 9;
|
|
148
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
149
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
150
|
+
readonly NOTATION_NODE: 12;
|
|
151
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
152
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
153
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
154
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
155
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
156
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
157
|
+
dispatchEvent(event: Event): boolean;
|
|
158
|
+
ariaAtomic: string | null;
|
|
159
|
+
ariaAutoComplete: string | null;
|
|
160
|
+
ariaBusy: string | null;
|
|
161
|
+
ariaChecked: string | null;
|
|
162
|
+
ariaColCount: string | null;
|
|
163
|
+
ariaColIndex: string | null;
|
|
164
|
+
ariaColSpan: string | null;
|
|
165
|
+
ariaCurrent: string | null;
|
|
166
|
+
ariaDisabled: string | null;
|
|
167
|
+
ariaExpanded: string | null;
|
|
168
|
+
ariaHasPopup: string | null;
|
|
169
|
+
ariaHidden: string | null;
|
|
170
|
+
ariaInvalid: string | null;
|
|
171
|
+
ariaKeyShortcuts: string | null;
|
|
172
|
+
ariaLabel: string | null;
|
|
173
|
+
ariaLevel: string | null;
|
|
174
|
+
ariaLive: string | null;
|
|
175
|
+
ariaModal: string | null;
|
|
176
|
+
ariaMultiLine: string | null;
|
|
177
|
+
ariaMultiSelectable: string | null;
|
|
178
|
+
ariaOrientation: string | null;
|
|
179
|
+
ariaPlaceholder: string | null;
|
|
180
|
+
ariaPosInSet: string | null;
|
|
181
|
+
ariaPressed: string | null;
|
|
182
|
+
ariaReadOnly: string | null;
|
|
183
|
+
ariaRequired: string | null;
|
|
184
|
+
ariaRoleDescription: string | null;
|
|
185
|
+
ariaRowCount: string | null;
|
|
186
|
+
ariaRowIndex: string | null;
|
|
187
|
+
ariaRowSpan: string | null;
|
|
188
|
+
ariaSelected: string | null;
|
|
189
|
+
ariaSetSize: string | null;
|
|
190
|
+
ariaSort: string | null;
|
|
191
|
+
ariaValueMax: string | null;
|
|
192
|
+
ariaValueMin: string | null;
|
|
193
|
+
ariaValueNow: string | null;
|
|
194
|
+
ariaValueText: string | null;
|
|
195
|
+
role: string | null;
|
|
196
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
|
|
197
|
+
getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
|
|
198
|
+
after(...nodes: (string | Node)[]): void;
|
|
199
|
+
before(...nodes: (string | Node)[]): void;
|
|
200
|
+
remove(): void;
|
|
201
|
+
replaceWith(...nodes: (string | Node)[]): void;
|
|
202
|
+
innerHTML: string;
|
|
203
|
+
readonly nextElementSibling: Element | null;
|
|
204
|
+
readonly previousElementSibling: Element | null;
|
|
205
|
+
readonly childElementCount: number;
|
|
206
|
+
readonly children: HTMLCollection;
|
|
207
|
+
readonly firstElementChild: Element | null;
|
|
208
|
+
readonly lastElementChild: Element | null;
|
|
209
|
+
append(...nodes: (string | Node)[]): void;
|
|
210
|
+
prepend(...nodes: (string | Node)[]): void;
|
|
211
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
|
|
212
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
|
|
213
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
|
|
214
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
|
|
215
|
+
querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
|
|
216
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
217
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
218
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
219
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
220
|
+
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
221
|
+
replaceChildren(...nodes: (string | Node)[]): void;
|
|
222
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
223
|
+
readonly style: CSSStyleDeclaration;
|
|
224
|
+
contentEditable: string;
|
|
225
|
+
enterKeyHint: string;
|
|
226
|
+
inputMode: string;
|
|
227
|
+
readonly isContentEditable: boolean;
|
|
228
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
229
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
230
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
231
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
232
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
233
|
+
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
234
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
235
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
236
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
237
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
238
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
239
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
240
|
+
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
241
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
242
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
243
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
244
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
245
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
246
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
247
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
248
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
249
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
250
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
251
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
252
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
253
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
254
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
255
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
256
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
257
|
+
onerror: OnErrorEventHandler;
|
|
258
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
259
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
260
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
261
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
262
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
263
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
264
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
265
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
266
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
267
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
268
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
269
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
270
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
271
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
272
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
273
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
274
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
275
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
276
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
277
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
278
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
279
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
280
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
281
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
282
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
283
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
284
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
285
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
286
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
287
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
288
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
289
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
290
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
|
|
291
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
292
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
293
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
294
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
295
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
296
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
297
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
298
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
299
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
300
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
301
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
302
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
303
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
304
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
305
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
306
|
+
ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
307
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
308
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
309
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
310
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
311
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
312
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
313
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
314
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
315
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
316
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
317
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
318
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
319
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
320
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
321
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
322
|
+
autofocus: boolean;
|
|
323
|
+
readonly dataset: DOMStringMap;
|
|
324
|
+
nonce?: string | undefined;
|
|
325
|
+
tabIndex: number;
|
|
326
|
+
blur(): void;
|
|
327
|
+
focus(options?: FocusOptions | undefined): void;
|
|
328
|
+
ariaColIndexText: string | null;
|
|
329
|
+
ariaDescription: string | null;
|
|
330
|
+
ariaRowIndexText: string | null;
|
|
331
|
+
ariaRelevant: string | null;
|
|
332
|
+
};
|
|
333
|
+
} & typeof VividElement;
|
|
334
|
+
export declare class MenuBar extends MenuBar_base {
|
|
3
335
|
#private;
|
|
4
336
|
menuItems?: string;
|
|
5
337
|
connectedCallback(): void;
|
|
6
338
|
disconnectedCallback(): void;
|
|
7
339
|
}
|
|
340
|
+
export {};
|
|
@@ -7,4 +7,5 @@ export interface SearchableSelectLocale {
|
|
|
7
7
|
optionSelectedMessage: (name: string) => string;
|
|
8
8
|
optionDeselectedMessage: (name: string) => string;
|
|
9
9
|
optionFocusedMessage: (name: string, position: number, total: number) => string;
|
|
10
|
+
maxSelectedMessage: (total: number, limit: number) => string;
|
|
10
11
|
}
|
|
@@ -1020,6 +1020,7 @@ export declare class SearchableSelect extends SearchableSelect_base {
|
|
|
1020
1020
|
optionFilter?: (option: ListboxOption, searchText: string) => boolean;
|
|
1021
1021
|
loading: boolean;
|
|
1022
1022
|
clearable: boolean;
|
|
1023
|
+
maxSelected: number | null;
|
|
1023
1024
|
setFormValue: (value: File | string | FormData | null, state?: File | string | FormData | null) => void;
|
|
1024
1025
|
connectedCallback(): void;
|
|
1025
1026
|
disconnectedCallback(): void;
|
package/lib/tabs/tabs.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import type { Connotation } from '../enums.js';
|
|
|
2
2
|
import { VividElement } from '../../shared/foundation/vivid-element/vivid-element';
|
|
3
3
|
import type { ExtractFromEnum } from '../../shared/utils/enums';
|
|
4
4
|
export declare const ACTIVE_TAB_WIDTH = "--_tabs-active-tab-inline-size";
|
|
5
|
-
export declare const TABLIST_COLUMN = "--_tabs-tablist-column";
|
|
6
5
|
export type TabsConnotation = ExtractFromEnum<Connotation, Connotation.Accent | Connotation.CTA>;
|
|
7
6
|
export declare const TabsGutters: {
|
|
8
7
|
readonly None: "none";
|
|
@@ -17,28 +16,12 @@ export type TabsOrientation = typeof TabsOrientation[keyof typeof TabsOrientatio
|
|
|
17
16
|
export declare class Tabs extends VividElement {
|
|
18
17
|
#private;
|
|
19
18
|
orientation: TabsOrientation;
|
|
19
|
+
private get _pairedTabs();
|
|
20
|
+
private get _validTabs();
|
|
20
21
|
activeid: string;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
private prevActiveTabIndex;
|
|
24
|
-
private activeTabIndex;
|
|
25
|
-
private tabIds;
|
|
26
|
-
private tabpanelIds;
|
|
27
|
-
private change;
|
|
28
|
-
private isDisabledElement;
|
|
29
|
-
private isHiddenElement;
|
|
30
|
-
private isFocusableElement;
|
|
31
|
-
private getActiveIndex;
|
|
32
|
-
private setTabs;
|
|
33
|
-
private setTabPanels;
|
|
34
|
-
private getTabIds;
|
|
35
|
-
private getTabPanelIds;
|
|
36
|
-
private setComponent;
|
|
37
|
-
private handleTabClick;
|
|
22
|
+
get activetab(): HTMLElement;
|
|
23
|
+
private _registerTabsChange;
|
|
38
24
|
adjust(adjustment: number): void;
|
|
39
|
-
private adjustForward;
|
|
40
|
-
private adjustBackward;
|
|
41
|
-
private focusTab;
|
|
42
25
|
tablist?: HTMLElement;
|
|
43
26
|
connotation?: TabsConnotation;
|
|
44
27
|
gutters?: TabsGutters;
|
|
@@ -46,4 +29,5 @@ export declare class Tabs extends VividElement {
|
|
|
46
29
|
tabsLayout?: 'align-start' | 'stretch';
|
|
47
30
|
connectedCallback(): void;
|
|
48
31
|
disconnectedCallback(): void;
|
|
32
|
+
activeindicator: boolean;
|
|
49
33
|
}
|
package/locales/de-DE.cjs
CHANGED
|
@@ -300,7 +300,8 @@ const deDE = {
|
|
|
300
300
|
invalidFileTypeError: "Sie können keine Dateien dieses Typs auswählen.",
|
|
301
301
|
maxFilesExceededError: "Sie können keine weiteren Dateien auswählen.",
|
|
302
302
|
fileTooBigError: "Die Datei ist zu groß ({{filesize}}MiB). Maximale Dateigröße: {{maxFilesize}}MiB.",
|
|
303
|
-
removeFileLabel: "Datei entfernen"
|
|
303
|
+
removeFileLabel: "Datei entfernen",
|
|
304
|
+
invalidFilesError: "Eine oder mehrere ausgewählte Dateien sind ungültig. Bitte laden Sie nur gültige Dateitypen innerhalb der Größenbeschränkung hoch."
|
|
304
305
|
},
|
|
305
306
|
audioPlayer: {
|
|
306
307
|
playButtonLabel: "Abspielen",
|
|
@@ -371,7 +372,20 @@ const deDE = {
|
|
|
371
372
|
optionFocusedMessage: (
|
|
372
373
|
/* istanbul ignore next */
|
|
373
374
|
(name, position, total) => `Option ${name} fokussiert, ${position} von ${total}.`
|
|
375
|
+
),
|
|
376
|
+
maxSelectedMessage: (
|
|
377
|
+
/* istanbul ignore next */
|
|
378
|
+
(total, limit) => `${total} von ${limit} ausgewählt.`
|
|
374
379
|
)
|
|
380
|
+
},
|
|
381
|
+
richTextEditor: {
|
|
382
|
+
textBlockType: "Textblocktyp",
|
|
383
|
+
textSize: "Textgröße",
|
|
384
|
+
bold: "Fett",
|
|
385
|
+
italics: "Kursiv",
|
|
386
|
+
underline: "Unterstrichen",
|
|
387
|
+
strikethrough: "Durchgestrichen",
|
|
388
|
+
monospace: "Monospace"
|
|
375
389
|
}
|
|
376
390
|
};
|
|
377
391
|
|
package/locales/de-DE.js
CHANGED
|
@@ -298,7 +298,8 @@ const deDE = {
|
|
|
298
298
|
invalidFileTypeError: "Sie können keine Dateien dieses Typs auswählen.",
|
|
299
299
|
maxFilesExceededError: "Sie können keine weiteren Dateien auswählen.",
|
|
300
300
|
fileTooBigError: "Die Datei ist zu groß ({{filesize}}MiB). Maximale Dateigröße: {{maxFilesize}}MiB.",
|
|
301
|
-
removeFileLabel: "Datei entfernen"
|
|
301
|
+
removeFileLabel: "Datei entfernen",
|
|
302
|
+
invalidFilesError: "Eine oder mehrere ausgewählte Dateien sind ungültig. Bitte laden Sie nur gültige Dateitypen innerhalb der Größenbeschränkung hoch."
|
|
302
303
|
},
|
|
303
304
|
audioPlayer: {
|
|
304
305
|
playButtonLabel: "Abspielen",
|
|
@@ -369,7 +370,20 @@ const deDE = {
|
|
|
369
370
|
optionFocusedMessage: (
|
|
370
371
|
/* istanbul ignore next */
|
|
371
372
|
(name, position, total) => `Option ${name} fokussiert, ${position} von ${total}.`
|
|
373
|
+
),
|
|
374
|
+
maxSelectedMessage: (
|
|
375
|
+
/* istanbul ignore next */
|
|
376
|
+
(total, limit) => `${total} von ${limit} ausgewählt.`
|
|
372
377
|
)
|
|
378
|
+
},
|
|
379
|
+
richTextEditor: {
|
|
380
|
+
textBlockType: "Textblocktyp",
|
|
381
|
+
textSize: "Textgröße",
|
|
382
|
+
bold: "Fett",
|
|
383
|
+
italics: "Kursiv",
|
|
384
|
+
underline: "Unterstrichen",
|
|
385
|
+
strikethrough: "Durchgestrichen",
|
|
386
|
+
monospace: "Monospace"
|
|
373
387
|
}
|
|
374
388
|
};
|
|
375
389
|
|
package/locales/en-GB.cjs
CHANGED
|
@@ -132,7 +132,8 @@ const enGB = {
|
|
|
132
132
|
invalidFileTypeError: "You can't select files of this type.",
|
|
133
133
|
maxFilesExceededError: "You can't select any more files.",
|
|
134
134
|
fileTooBigError: "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.",
|
|
135
|
-
removeFileLabel: "Remove file"
|
|
135
|
+
removeFileLabel: "Remove file",
|
|
136
|
+
invalidFilesError: "One or more selected files are invalid. Please upload only valid file types under the size limit."
|
|
136
137
|
},
|
|
137
138
|
audioPlayer: {
|
|
138
139
|
playButtonLabel: "Play",
|
|
@@ -203,7 +204,20 @@ const enGB = {
|
|
|
203
204
|
optionFocusedMessage: (
|
|
204
205
|
/* istanbul ignore next */
|
|
205
206
|
(name, position, total) => `Option ${name} focused, ${position} of ${total}.`
|
|
207
|
+
),
|
|
208
|
+
maxSelectedMessage: (
|
|
209
|
+
/* istanbul ignore next */
|
|
210
|
+
(total, limit) => `${total} of ${limit} selected.`
|
|
206
211
|
)
|
|
212
|
+
},
|
|
213
|
+
richTextEditor: {
|
|
214
|
+
textBlockType: "Text Block Type",
|
|
215
|
+
textSize: "Text Size",
|
|
216
|
+
bold: "Bold",
|
|
217
|
+
italics: "Italics",
|
|
218
|
+
underline: "Underline",
|
|
219
|
+
strikethrough: "Strikethrough",
|
|
220
|
+
monospace: "Monospace"
|
|
207
221
|
}
|
|
208
222
|
};
|
|
209
223
|
|
package/locales/en-GB.js
CHANGED
|
@@ -130,7 +130,8 @@ const enGB = {
|
|
|
130
130
|
invalidFileTypeError: "You can't select files of this type.",
|
|
131
131
|
maxFilesExceededError: "You can't select any more files.",
|
|
132
132
|
fileTooBigError: "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.",
|
|
133
|
-
removeFileLabel: "Remove file"
|
|
133
|
+
removeFileLabel: "Remove file",
|
|
134
|
+
invalidFilesError: "One or more selected files are invalid. Please upload only valid file types under the size limit."
|
|
134
135
|
},
|
|
135
136
|
audioPlayer: {
|
|
136
137
|
playButtonLabel: "Play",
|
|
@@ -201,7 +202,20 @@ const enGB = {
|
|
|
201
202
|
optionFocusedMessage: (
|
|
202
203
|
/* istanbul ignore next */
|
|
203
204
|
(name, position, total) => `Option ${name} focused, ${position} of ${total}.`
|
|
205
|
+
),
|
|
206
|
+
maxSelectedMessage: (
|
|
207
|
+
/* istanbul ignore next */
|
|
208
|
+
(total, limit) => `${total} of ${limit} selected.`
|
|
204
209
|
)
|
|
210
|
+
},
|
|
211
|
+
richTextEditor: {
|
|
212
|
+
textBlockType: "Text Block Type",
|
|
213
|
+
textSize: "Text Size",
|
|
214
|
+
bold: "Bold",
|
|
215
|
+
italics: "Italics",
|
|
216
|
+
underline: "Underline",
|
|
217
|
+
strikethrough: "Strikethrough",
|
|
218
|
+
monospace: "Monospace"
|
|
205
219
|
}
|
|
206
220
|
};
|
|
207
221
|
|
package/locales/en-US.cjs
CHANGED
|
@@ -300,7 +300,8 @@ const enUS = {
|
|
|
300
300
|
invalidFileTypeError: "You can't select files of this type.",
|
|
301
301
|
maxFilesExceededError: "You can't select any more files.",
|
|
302
302
|
fileTooBigError: "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.",
|
|
303
|
-
removeFileLabel: "Remove file"
|
|
303
|
+
removeFileLabel: "Remove file",
|
|
304
|
+
invalidFilesError: "One or more selected files are invalid. Please, upload only valid file types under the size limit."
|
|
304
305
|
},
|
|
305
306
|
audioPlayer: {
|
|
306
307
|
playButtonLabel: "Play",
|
|
@@ -371,7 +372,20 @@ const enUS = {
|
|
|
371
372
|
optionFocusedMessage: (
|
|
372
373
|
/* istanbul ignore next */
|
|
373
374
|
(name, position, total) => `Option ${name} focused, ${position} of ${total}.`
|
|
375
|
+
),
|
|
376
|
+
maxSelectedMessage: (
|
|
377
|
+
/* istanbul ignore next */
|
|
378
|
+
(total, limit) => `${total} of ${limit} selected.`
|
|
374
379
|
)
|
|
380
|
+
},
|
|
381
|
+
richTextEditor: {
|
|
382
|
+
textBlockType: "Text Block Type",
|
|
383
|
+
textSize: "Text Size",
|
|
384
|
+
bold: "Bold",
|
|
385
|
+
italics: "Italics",
|
|
386
|
+
underline: "Underline",
|
|
387
|
+
strikethrough: "Strikethrough",
|
|
388
|
+
monospace: "Monospace"
|
|
375
389
|
}
|
|
376
390
|
};
|
|
377
391
|
|
package/locales/en-US.js
CHANGED
|
@@ -298,7 +298,8 @@ const enUS = {
|
|
|
298
298
|
invalidFileTypeError: "You can't select files of this type.",
|
|
299
299
|
maxFilesExceededError: "You can't select any more files.",
|
|
300
300
|
fileTooBigError: "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.",
|
|
301
|
-
removeFileLabel: "Remove file"
|
|
301
|
+
removeFileLabel: "Remove file",
|
|
302
|
+
invalidFilesError: "One or more selected files are invalid. Please, upload only valid file types under the size limit."
|
|
302
303
|
},
|
|
303
304
|
audioPlayer: {
|
|
304
305
|
playButtonLabel: "Play",
|
|
@@ -369,7 +370,20 @@ const enUS = {
|
|
|
369
370
|
optionFocusedMessage: (
|
|
370
371
|
/* istanbul ignore next */
|
|
371
372
|
(name, position, total) => `Option ${name} focused, ${position} of ${total}.`
|
|
373
|
+
),
|
|
374
|
+
maxSelectedMessage: (
|
|
375
|
+
/* istanbul ignore next */
|
|
376
|
+
(total, limit) => `${total} of ${limit} selected.`
|
|
372
377
|
)
|
|
378
|
+
},
|
|
379
|
+
richTextEditor: {
|
|
380
|
+
textBlockType: "Text Block Type",
|
|
381
|
+
textSize: "Text Size",
|
|
382
|
+
bold: "Bold",
|
|
383
|
+
italics: "Italics",
|
|
384
|
+
underline: "Underline",
|
|
385
|
+
strikethrough: "Strikethrough",
|
|
386
|
+
monospace: "Monospace"
|
|
373
387
|
}
|
|
374
388
|
};
|
|
375
389
|
|
package/locales/ja-JP.cjs
CHANGED
|
@@ -299,7 +299,8 @@ const jaJP = {
|
|
|
299
299
|
invalidFileTypeError: "この種類のファイルは選択できません。",
|
|
300
300
|
maxFilesExceededError: "これ以上ファイルを選択できません。",
|
|
301
301
|
fileTooBigError: "ファイルが大きすぎます ({{filesize}}MiB)。最大ファイルサイズ: {{maxFilesize}}MiB。",
|
|
302
|
-
removeFileLabel: "ファイルを削除"
|
|
302
|
+
removeFileLabel: "ファイルを削除",
|
|
303
|
+
invalidFilesError: "選択したファイルの1つ以上が無効です。サイズ制限以下の有効なファイル形式のみをアップロードしてください。"
|
|
303
304
|
},
|
|
304
305
|
audioPlayer: {
|
|
305
306
|
playButtonLabel: "開始",
|
|
@@ -370,7 +371,20 @@ const jaJP = {
|
|
|
370
371
|
optionFocusedMessage: (
|
|
371
372
|
/* istanbul ignore next */
|
|
372
373
|
(name, position, total) => `オプション ${name} がフォーカスされました。${position}/${total}`
|
|
374
|
+
),
|
|
375
|
+
maxSelectedMessage: (
|
|
376
|
+
/* istanbul ignore next */
|
|
377
|
+
(total, limit) => `${limit}件中${total}件を選択。`
|
|
373
378
|
)
|
|
379
|
+
},
|
|
380
|
+
richTextEditor: {
|
|
381
|
+
textBlockType: "テキストブロックタイプ",
|
|
382
|
+
textSize: "文字サイズ",
|
|
383
|
+
bold: "太字",
|
|
384
|
+
italics: "斜体",
|
|
385
|
+
underline: "下線",
|
|
386
|
+
strikethrough: "取り消し線",
|
|
387
|
+
monospace: "等幅"
|
|
374
388
|
}
|
|
375
389
|
};
|
|
376
390
|
|