@vonage/vivid-vue 4.16.2 → 4.17.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/generated/components/VCalendar.vue2.d.ts +15 -0
- package/generated/components/VCalendar.vue3.d.ts +15 -0
- package/generated/components/VCombobox.vue2.d.ts +4 -4
- package/generated/components/VCombobox.vue3.d.ts +4 -4
- package/generated/components/VMenu.vue2.d.ts +14 -14
- package/generated/components/VMenu.vue3.d.ts +14 -14
- package/generated/components/VRichTextEditor.d.ts +7 -0
- package/generated/components/VRichTextEditor.vue2.d.ts +42 -0
- package/generated/components/VRichTextEditor.vue3.d.ts +105 -0
- package/generated/components/VTextArea.vue2.d.ts +1 -1
- package/generated/components/VTextArea.vue3.d.ts +1 -1
- package/generated/components/VToggletip.vue2.d.ts +13 -13
- package/generated/components/VToggletip.vue3.d.ts +14 -14
- package/generated/components/VTooltip.vue2.d.ts +11 -11
- package/generated/components/VTooltip.vue3.d.ts +14 -14
- package/generated/components/index.d.ts +1 -0
- package/index.cjs +179 -38
- package/index.js +180 -40
- package/package.json +2 -2
- package/web-types.json +62 -25
|
@@ -47,6 +47,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
47
47
|
type: PropType<boolean>;
|
|
48
48
|
default: undefined;
|
|
49
49
|
};
|
|
50
|
+
/**
|
|
51
|
+
* Sticky header and sticky column options
|
|
52
|
+
*/
|
|
53
|
+
stickyMode: {
|
|
54
|
+
type: PropType<"none" | "header" | "column" | "all">;
|
|
55
|
+
default: undefined;
|
|
56
|
+
};
|
|
50
57
|
}, {
|
|
51
58
|
componentName: import("vue").Ref<string>;
|
|
52
59
|
element: import("vue").Ref<Calendar | null>;
|
|
@@ -99,11 +106,19 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
99
106
|
type: PropType<boolean>;
|
|
100
107
|
default: undefined;
|
|
101
108
|
};
|
|
109
|
+
/**
|
|
110
|
+
* Sticky header and sticky column options
|
|
111
|
+
*/
|
|
112
|
+
stickyMode: {
|
|
113
|
+
type: PropType<"none" | "header" | "column" | "all">;
|
|
114
|
+
default: undefined;
|
|
115
|
+
};
|
|
102
116
|
}>>, {
|
|
103
117
|
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
104
118
|
datetime: string | Date;
|
|
105
119
|
startDay: "sunday" | "monday";
|
|
106
120
|
locales: string | string[];
|
|
107
121
|
hour12: boolean;
|
|
122
|
+
stickyMode: "none" | "header" | "column" | "all";
|
|
108
123
|
}>;
|
|
109
124
|
export default _default;
|
|
@@ -48,6 +48,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
48
48
|
type: PropType<boolean>;
|
|
49
49
|
default: undefined;
|
|
50
50
|
};
|
|
51
|
+
/**
|
|
52
|
+
* Sticky header and sticky column options
|
|
53
|
+
*/
|
|
54
|
+
stickyMode: {
|
|
55
|
+
type: PropType<"none" | "header" | "column" | "all">;
|
|
56
|
+
default: undefined;
|
|
57
|
+
};
|
|
51
58
|
}, {
|
|
52
59
|
componentName: import("vue").Ref<string>;
|
|
53
60
|
element: import("vue").Ref<Calendar | null>;
|
|
@@ -143,6 +150,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
143
150
|
type: PropType<boolean>;
|
|
144
151
|
default: undefined;
|
|
145
152
|
};
|
|
153
|
+
/**
|
|
154
|
+
* Sticky header and sticky column options
|
|
155
|
+
*/
|
|
156
|
+
stickyMode: {
|
|
157
|
+
type: PropType<"none" | "header" | "column" | "all">;
|
|
158
|
+
default: undefined;
|
|
159
|
+
};
|
|
146
160
|
}>> & {
|
|
147
161
|
onKeydown?: ((event: KeyboardEvent & {
|
|
148
162
|
target: Calendar;
|
|
@@ -168,6 +182,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
168
182
|
startDay: "sunday" | "monday";
|
|
169
183
|
locales: string | string[];
|
|
170
184
|
hour12: boolean;
|
|
185
|
+
stickyMode: "none" | "header" | "column" | "all";
|
|
171
186
|
}, SlotsType<{
|
|
172
187
|
/**
|
|
173
188
|
* Default slot.
|
|
@@ -157,17 +157,17 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
157
157
|
componentName: import("vue").Ref<string>;
|
|
158
158
|
element: import("vue").Ref<{
|
|
159
159
|
autocomplete: import("@vonage/vivid/lib/combobox/combobox.options").ComboboxAutocomplete | undefined;
|
|
160
|
-
filteredOptions: import("@vonage/vivid
|
|
160
|
+
filteredOptions: import("@vonage/vivid").VwcOptionElement[];
|
|
161
161
|
appearance?: import("@vonage/vivid").ComboboxAppearance | undefined;
|
|
162
162
|
shape?: import("@vonage/vivid/lib/combobox/combobox").ComboboxShape | undefined;
|
|
163
163
|
scale?: import("@vonage/vivid/lib/combobox/combobox").ComboboxSize | undefined;
|
|
164
164
|
placement?: import("@vonage/vivid").PopupPlacement | undefined;
|
|
165
165
|
fixedDropdown: boolean;
|
|
166
|
-
_popup:
|
|
166
|
+
_popup: import("@vonage/vivid/lib/popup/popup").Popup;
|
|
167
167
|
_anchor: HTMLElement;
|
|
168
168
|
validate: () => void;
|
|
169
169
|
open: boolean;
|
|
170
|
-
options: import("@vonage/vivid
|
|
170
|
+
options: import("@vonage/vivid").VwcOptionElement[];
|
|
171
171
|
placeholder: string;
|
|
172
172
|
value: string;
|
|
173
173
|
connectedCallback: () => void;
|
|
@@ -369,7 +369,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
369
369
|
successText: string;
|
|
370
370
|
errorText: string;
|
|
371
371
|
helperText: string;
|
|
372
|
-
autocomplete: "
|
|
372
|
+
autocomplete: "none" | "inline" | "list" | "both";
|
|
373
373
|
scale: "condensed" | "normal";
|
|
374
374
|
fixedDropdown: boolean;
|
|
375
375
|
placeholder: string;
|
|
@@ -159,17 +159,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
159
159
|
componentName: import("vue").Ref<string>;
|
|
160
160
|
element: import("vue").Ref<{
|
|
161
161
|
autocomplete: import("@vonage/vivid/lib/combobox/combobox.options").ComboboxAutocomplete | undefined;
|
|
162
|
-
filteredOptions: import("@vonage/vivid
|
|
162
|
+
filteredOptions: import("@vonage/vivid").VwcOptionElement[];
|
|
163
163
|
appearance?: import("@vonage/vivid").ComboboxAppearance | undefined;
|
|
164
164
|
shape?: import("@vonage/vivid/lib/combobox/combobox").ComboboxShape | undefined;
|
|
165
165
|
scale?: import("@vonage/vivid/lib/combobox/combobox").ComboboxSize | undefined;
|
|
166
166
|
placement?: import("@vonage/vivid").PopupPlacement | undefined;
|
|
167
167
|
fixedDropdown: boolean;
|
|
168
|
-
_popup:
|
|
168
|
+
_popup: import("@vonage/vivid/lib/popup/popup").Popup;
|
|
169
169
|
_anchor: HTMLElement;
|
|
170
170
|
validate: () => void;
|
|
171
171
|
open: boolean;
|
|
172
|
-
options: import("@vonage/vivid
|
|
172
|
+
options: import("@vonage/vivid").VwcOptionElement[];
|
|
173
173
|
placeholder: string;
|
|
174
174
|
value: string;
|
|
175
175
|
connectedCallback: () => void;
|
|
@@ -453,7 +453,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
453
453
|
successText: string;
|
|
454
454
|
errorText: string;
|
|
455
455
|
helperText: string;
|
|
456
|
-
autocomplete: "
|
|
456
|
+
autocomplete: "none" | "inline" | "list" | "both";
|
|
457
457
|
scale: "condensed" | "normal";
|
|
458
458
|
fixedDropdown: boolean;
|
|
459
459
|
placeholder: string;
|
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import type { Menu } from '@vonage/vivid/lib/menu/menu';
|
|
3
3
|
declare const _default: import("vue/types/v3-define-component").DefineComponent<{
|
|
4
|
-
/**
|
|
5
|
-
* ID or direct reference to the component's anchor element.
|
|
6
|
-
*/
|
|
7
|
-
anchor: {
|
|
8
|
-
type: PropType<string | HTMLElement>;
|
|
9
|
-
default: undefined;
|
|
10
|
-
};
|
|
11
4
|
/**
|
|
12
5
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
13
6
|
*/
|
|
@@ -54,6 +47,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
54
47
|
type: PropType<boolean>;
|
|
55
48
|
default: undefined;
|
|
56
49
|
};
|
|
50
|
+
/**
|
|
51
|
+
* ID or direct reference to the component's anchor element.
|
|
52
|
+
*/
|
|
53
|
+
anchor: {
|
|
54
|
+
type: PropType<string | HTMLElement>;
|
|
55
|
+
default: undefined;
|
|
56
|
+
};
|
|
57
57
|
}, {
|
|
58
58
|
componentName: import("vue").Ref<string>;
|
|
59
59
|
element: import("vue").Ref<Menu | null>;
|
|
@@ -69,13 +69,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
69
69
|
collapseExpandedItem(): void;
|
|
70
70
|
openChanged(_: boolean, newValue: boolean): void;
|
|
71
71
|
}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "open" | "close")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
72
|
-
/**
|
|
73
|
-
* ID or direct reference to the component's anchor element.
|
|
74
|
-
*/
|
|
75
|
-
anchor: {
|
|
76
|
-
type: PropType<string | HTMLElement>;
|
|
77
|
-
default: undefined;
|
|
78
|
-
};
|
|
79
72
|
/**
|
|
80
73
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
81
74
|
*/
|
|
@@ -122,6 +115,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
122
115
|
type: PropType<boolean>;
|
|
123
116
|
default: undefined;
|
|
124
117
|
};
|
|
118
|
+
/**
|
|
119
|
+
* ID or direct reference to the component's anchor element.
|
|
120
|
+
*/
|
|
121
|
+
anchor: {
|
|
122
|
+
type: PropType<string | HTMLElement>;
|
|
123
|
+
default: undefined;
|
|
124
|
+
};
|
|
125
125
|
}>>, {
|
|
126
126
|
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
127
127
|
anchor: string | HTMLElement;
|
|
@@ -2,13 +2,6 @@ import { PropType } from 'vue';
|
|
|
2
2
|
import type { Menu } from '@vonage/vivid/lib/menu/menu';
|
|
3
3
|
import type { SlotsType } from 'vue';
|
|
4
4
|
declare const _default: import("vue").DefineComponent<{
|
|
5
|
-
/**
|
|
6
|
-
* ID or direct reference to the component's anchor element.
|
|
7
|
-
*/
|
|
8
|
-
anchor: {
|
|
9
|
-
type: PropType<string | HTMLElement>;
|
|
10
|
-
default: undefined;
|
|
11
|
-
};
|
|
12
5
|
/**
|
|
13
6
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
14
7
|
*/
|
|
@@ -55,6 +48,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
55
48
|
type: PropType<boolean>;
|
|
56
49
|
default: undefined;
|
|
57
50
|
};
|
|
51
|
+
/**
|
|
52
|
+
* ID or direct reference to the component's anchor element.
|
|
53
|
+
*/
|
|
54
|
+
anchor: {
|
|
55
|
+
type: PropType<string | HTMLElement>;
|
|
56
|
+
default: undefined;
|
|
57
|
+
};
|
|
58
58
|
}, {
|
|
59
59
|
componentName: import("vue").Ref<string>;
|
|
60
60
|
element: import("vue").Ref<Menu | null>;
|
|
@@ -127,13 +127,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
127
127
|
target: Menu;
|
|
128
128
|
}): true;
|
|
129
129
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
130
|
-
/**
|
|
131
|
-
* ID or direct reference to the component's anchor element.
|
|
132
|
-
*/
|
|
133
|
-
anchor: {
|
|
134
|
-
type: PropType<string | HTMLElement>;
|
|
135
|
-
default: undefined;
|
|
136
|
-
};
|
|
137
130
|
/**
|
|
138
131
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
139
132
|
*/
|
|
@@ -180,6 +173,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
180
173
|
type: PropType<boolean>;
|
|
181
174
|
default: undefined;
|
|
182
175
|
};
|
|
176
|
+
/**
|
|
177
|
+
* ID or direct reference to the component's anchor element.
|
|
178
|
+
*/
|
|
179
|
+
anchor: {
|
|
180
|
+
type: PropType<string | HTMLElement>;
|
|
181
|
+
default: undefined;
|
|
182
|
+
};
|
|
183
183
|
}>> & {
|
|
184
184
|
onKeydown?: ((event: KeyboardEvent & {
|
|
185
185
|
target: Menu;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { VNode } from 'vue';
|
|
2
|
+
import VRichTextEditorVue2 from './VRichTextEditor.vue2';
|
|
3
|
+
import VRichTextEditorVue3 from './VRichTextEditor.vue3';
|
|
4
|
+
|
|
5
|
+
type IsVue2 = "data" extends keyof VNode ? true : false;
|
|
6
|
+
declare const _default: IsVue2 extends true ? typeof VRichTextEditorVue2 : typeof VRichTextEditorVue3;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import type { RichTextEditor } from '@vonage/vivid/lib/rich-text-editor/rich-text-editor';
|
|
3
|
+
declare const _default: import("vue/types/v3-define-component").DefineComponent<{
|
|
4
|
+
/**
|
|
5
|
+
* Indicates the element that represents the current item within a container or set of related elements.
|
|
6
|
+
*/
|
|
7
|
+
ariaCurrent: {
|
|
8
|
+
type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
9
|
+
default: undefined;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Indicates the rich text editor's value.
|
|
13
|
+
*/
|
|
14
|
+
value: {
|
|
15
|
+
type: PropType<string>;
|
|
16
|
+
default: undefined;
|
|
17
|
+
};
|
|
18
|
+
}, {
|
|
19
|
+
componentName: import("vue").Ref<string>;
|
|
20
|
+
element: import("vue").Ref<RichTextEditor | null>;
|
|
21
|
+
}, import("vue").Data, {}, {
|
|
22
|
+
valueChanged(_: string, newValue: string): void;
|
|
23
|
+
}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
+
/**
|
|
25
|
+
* Indicates the element that represents the current item within a container or set of related elements.
|
|
26
|
+
*/
|
|
27
|
+
ariaCurrent: {
|
|
28
|
+
type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
29
|
+
default: undefined;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Indicates the rich text editor's value.
|
|
33
|
+
*/
|
|
34
|
+
value: {
|
|
35
|
+
type: PropType<string>;
|
|
36
|
+
default: undefined;
|
|
37
|
+
};
|
|
38
|
+
}>>, {
|
|
39
|
+
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
40
|
+
value: string;
|
|
41
|
+
}>;
|
|
42
|
+
export default _default;
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import type { RichTextEditor } from '@vonage/vivid/lib/rich-text-editor/rich-text-editor';
|
|
3
|
+
import type { SlotsType } from 'vue';
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
/**
|
|
6
|
+
* Indicates the element that represents the current item within a container or set of related elements.
|
|
7
|
+
*/
|
|
8
|
+
ariaCurrent: {
|
|
9
|
+
type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
10
|
+
default: undefined;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* Indicates the rich text editor's value.
|
|
14
|
+
*/
|
|
15
|
+
value: {
|
|
16
|
+
type: PropType<string>;
|
|
17
|
+
default: undefined;
|
|
18
|
+
};
|
|
19
|
+
}, {
|
|
20
|
+
componentName: import("vue").Ref<string>;
|
|
21
|
+
element: import("vue").Ref<RichTextEditor | null>;
|
|
22
|
+
}, unknown, {}, {
|
|
23
|
+
valueChanged(_: string, newValue: string): void;
|
|
24
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
|
+
/**
|
|
26
|
+
* Fires when a pointing device button (such as a mouse's primary mouse button) is both pressed and released while the pointer is located inside the element.
|
|
27
|
+
* @type {MouseEvent}
|
|
28
|
+
*/
|
|
29
|
+
click(event: MouseEvent & {
|
|
30
|
+
target: RichTextEditor;
|
|
31
|
+
}): true;
|
|
32
|
+
/**
|
|
33
|
+
* Fires when the element receives focus.
|
|
34
|
+
* @type {FocusEvent}
|
|
35
|
+
*/
|
|
36
|
+
focus(event: FocusEvent & {
|
|
37
|
+
target: RichTextEditor;
|
|
38
|
+
}): true;
|
|
39
|
+
/**
|
|
40
|
+
* Fires when the element loses focus.
|
|
41
|
+
* @type {FocusEvent}
|
|
42
|
+
*/
|
|
43
|
+
blur(event: FocusEvent & {
|
|
44
|
+
target: RichTextEditor;
|
|
45
|
+
}): true;
|
|
46
|
+
/**
|
|
47
|
+
* Fires when a key is pressed.
|
|
48
|
+
* @type {KeyboardEvent}
|
|
49
|
+
*/
|
|
50
|
+
keydown(event: KeyboardEvent & {
|
|
51
|
+
target: RichTextEditor;
|
|
52
|
+
}): true;
|
|
53
|
+
/**
|
|
54
|
+
* Fires when a key is released.
|
|
55
|
+
* @type {KeyboardEvent}
|
|
56
|
+
*/
|
|
57
|
+
keyup(event: KeyboardEvent & {
|
|
58
|
+
target: RichTextEditor;
|
|
59
|
+
}): true;
|
|
60
|
+
/**
|
|
61
|
+
* Fires when the value of an element has been changed.
|
|
62
|
+
* @type {Event}
|
|
63
|
+
*/
|
|
64
|
+
input(event: Event & {
|
|
65
|
+
target: RichTextEditor;
|
|
66
|
+
}): true;
|
|
67
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
68
|
+
/**
|
|
69
|
+
* Indicates the element that represents the current item within a container or set of related elements.
|
|
70
|
+
*/
|
|
71
|
+
ariaCurrent: {
|
|
72
|
+
type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
73
|
+
default: undefined;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Indicates the rich text editor's value.
|
|
77
|
+
*/
|
|
78
|
+
value: {
|
|
79
|
+
type: PropType<string>;
|
|
80
|
+
default: undefined;
|
|
81
|
+
};
|
|
82
|
+
}>> & {
|
|
83
|
+
onKeydown?: ((event: KeyboardEvent & {
|
|
84
|
+
target: RichTextEditor;
|
|
85
|
+
}) => any) | undefined;
|
|
86
|
+
onClick?: ((event: MouseEvent & {
|
|
87
|
+
target: RichTextEditor;
|
|
88
|
+
}) => any) | undefined;
|
|
89
|
+
onFocus?: ((event: FocusEvent & {
|
|
90
|
+
target: RichTextEditor;
|
|
91
|
+
}) => any) | undefined;
|
|
92
|
+
onBlur?: ((event: FocusEvent & {
|
|
93
|
+
target: RichTextEditor;
|
|
94
|
+
}) => any) | undefined;
|
|
95
|
+
onKeyup?: ((event: KeyboardEvent & {
|
|
96
|
+
target: RichTextEditor;
|
|
97
|
+
}) => any) | undefined;
|
|
98
|
+
onInput?: ((event: Event & {
|
|
99
|
+
target: RichTextEditor;
|
|
100
|
+
}) => any) | undefined;
|
|
101
|
+
}, {
|
|
102
|
+
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
103
|
+
value: string;
|
|
104
|
+
}, SlotsType<Record<string, never>>>;
|
|
105
|
+
export default _default;
|
|
@@ -390,7 +390,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
390
390
|
maxlength: number;
|
|
391
391
|
minlength: number;
|
|
392
392
|
readOnly: boolean;
|
|
393
|
-
resize: "
|
|
393
|
+
resize: "none" | "both" | "horizontal" | "vertical";
|
|
394
394
|
cols: number;
|
|
395
395
|
rows: number;
|
|
396
396
|
spellcheck: boolean;
|
|
@@ -473,7 +473,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
473
473
|
maxlength: number;
|
|
474
474
|
minlength: number;
|
|
475
475
|
readOnly: boolean;
|
|
476
|
-
resize: "
|
|
476
|
+
resize: "none" | "both" | "horizontal" | "vertical";
|
|
477
477
|
cols: number;
|
|
478
478
|
rows: number;
|
|
479
479
|
spellcheck: boolean;
|
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import type { Toggletip } from '@vonage/vivid/lib/toggletip/toggletip';
|
|
3
3
|
declare const _default: import("vue/types/v3-define-component").DefineComponent<{
|
|
4
|
-
/**
|
|
5
|
-
* ID or direct reference to the component's anchor element.
|
|
6
|
-
*/
|
|
7
|
-
anchor: {
|
|
8
|
-
type: PropType<string | HTMLElement>;
|
|
9
|
-
default: undefined;
|
|
10
|
-
};
|
|
11
4
|
/**
|
|
12
5
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
13
6
|
*/
|
|
@@ -43,12 +36,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
43
36
|
type: PropType<boolean>;
|
|
44
37
|
default: undefined;
|
|
45
38
|
};
|
|
46
|
-
}, {
|
|
47
|
-
componentName: import("vue").Ref<string>;
|
|
48
|
-
element: import("vue").Ref<Toggletip | null>;
|
|
49
|
-
}, import("vue").Data, {}, {
|
|
50
|
-
openChanged(oldValue: boolean, newValue: boolean): void;
|
|
51
|
-
}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
52
39
|
/**
|
|
53
40
|
* ID or direct reference to the component's anchor element.
|
|
54
41
|
*/
|
|
@@ -56,6 +43,12 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
56
43
|
type: PropType<string | HTMLElement>;
|
|
57
44
|
default: undefined;
|
|
58
45
|
};
|
|
46
|
+
}, {
|
|
47
|
+
componentName: import("vue").Ref<string>;
|
|
48
|
+
element: import("vue").Ref<Toggletip | null>;
|
|
49
|
+
}, import("vue").Data, {}, {
|
|
50
|
+
openChanged(oldValue: boolean, newValue: boolean): void;
|
|
51
|
+
}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
59
52
|
/**
|
|
60
53
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
61
54
|
*/
|
|
@@ -91,6 +84,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
91
84
|
type: PropType<boolean>;
|
|
92
85
|
default: undefined;
|
|
93
86
|
};
|
|
87
|
+
/**
|
|
88
|
+
* ID or direct reference to the component's anchor element.
|
|
89
|
+
*/
|
|
90
|
+
anchor: {
|
|
91
|
+
type: PropType<string | HTMLElement>;
|
|
92
|
+
default: undefined;
|
|
93
|
+
};
|
|
94
94
|
}>>, {
|
|
95
95
|
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
96
96
|
anchor: string | HTMLElement;
|
|
@@ -2,13 +2,6 @@ import { PropType } from 'vue';
|
|
|
2
2
|
import type { Toggletip } from '@vonage/vivid/lib/toggletip/toggletip';
|
|
3
3
|
import type { SlotsType } from 'vue';
|
|
4
4
|
declare const _default: import("vue").DefineComponent<{
|
|
5
|
-
/**
|
|
6
|
-
* ID or direct reference to the component's anchor element.
|
|
7
|
-
*/
|
|
8
|
-
anchor: {
|
|
9
|
-
type: PropType<string | HTMLElement>;
|
|
10
|
-
default: undefined;
|
|
11
|
-
};
|
|
12
5
|
/**
|
|
13
6
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
14
7
|
*/
|
|
@@ -44,6 +37,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
44
37
|
type: PropType<boolean>;
|
|
45
38
|
default: undefined;
|
|
46
39
|
};
|
|
40
|
+
/**
|
|
41
|
+
* ID or direct reference to the component's anchor element.
|
|
42
|
+
*/
|
|
43
|
+
anchor: {
|
|
44
|
+
type: PropType<string | HTMLElement>;
|
|
45
|
+
default: undefined;
|
|
46
|
+
};
|
|
47
47
|
}, {
|
|
48
48
|
componentName: import("vue").Ref<string>;
|
|
49
49
|
element: import("vue").Ref<Toggletip | null>;
|
|
@@ -93,13 +93,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
93
93
|
target: Toggletip;
|
|
94
94
|
}): true;
|
|
95
95
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
96
|
-
/**
|
|
97
|
-
* ID or direct reference to the component's anchor element.
|
|
98
|
-
*/
|
|
99
|
-
anchor: {
|
|
100
|
-
type: PropType<string | HTMLElement>;
|
|
101
|
-
default: undefined;
|
|
102
|
-
};
|
|
103
96
|
/**
|
|
104
97
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
105
98
|
*/
|
|
@@ -135,6 +128,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
135
128
|
type: PropType<boolean>;
|
|
136
129
|
default: undefined;
|
|
137
130
|
};
|
|
131
|
+
/**
|
|
132
|
+
* ID or direct reference to the component's anchor element.
|
|
133
|
+
*/
|
|
134
|
+
anchor: {
|
|
135
|
+
type: PropType<string | HTMLElement>;
|
|
136
|
+
default: undefined;
|
|
137
|
+
};
|
|
138
138
|
}>> & {
|
|
139
139
|
onKeydown?: ((event: KeyboardEvent & {
|
|
140
140
|
target: Toggletip;
|
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import type { Tooltip } from '@vonage/vivid/lib/tooltip/tooltip';
|
|
3
3
|
declare const _default: import("vue/types/v3-define-component").DefineComponent<{
|
|
4
|
-
/**
|
|
5
|
-
* ID or direct reference to the component's anchor element.
|
|
6
|
-
*/
|
|
7
|
-
anchor: {
|
|
8
|
-
type: PropType<string | HTMLElement>;
|
|
9
|
-
default: undefined;
|
|
10
|
-
};
|
|
11
4
|
/**
|
|
12
5
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
13
6
|
*/
|
|
@@ -31,10 +24,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
31
24
|
type: PropType<boolean>;
|
|
32
25
|
default: undefined;
|
|
33
26
|
};
|
|
34
|
-
}, {
|
|
35
|
-
componentName: import("vue").Ref<string>;
|
|
36
|
-
element: import("vue").Ref<Tooltip | null>;
|
|
37
|
-
}, import("vue").Data, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
38
27
|
/**
|
|
39
28
|
* ID or direct reference to the component's anchor element.
|
|
40
29
|
*/
|
|
@@ -42,6 +31,10 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
42
31
|
type: PropType<string | HTMLElement>;
|
|
43
32
|
default: undefined;
|
|
44
33
|
};
|
|
34
|
+
}, {
|
|
35
|
+
componentName: import("vue").Ref<string>;
|
|
36
|
+
element: import("vue").Ref<Tooltip | null>;
|
|
37
|
+
}, import("vue").Data, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
45
38
|
/**
|
|
46
39
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
47
40
|
*/
|
|
@@ -65,6 +58,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
65
58
|
type: PropType<boolean>;
|
|
66
59
|
default: undefined;
|
|
67
60
|
};
|
|
61
|
+
/**
|
|
62
|
+
* ID or direct reference to the component's anchor element.
|
|
63
|
+
*/
|
|
64
|
+
anchor: {
|
|
65
|
+
type: PropType<string | HTMLElement>;
|
|
66
|
+
default: undefined;
|
|
67
|
+
};
|
|
68
68
|
}>>, {
|
|
69
69
|
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
70
70
|
anchor: string | HTMLElement;
|
|
@@ -2,13 +2,6 @@ import { PropType } from 'vue';
|
|
|
2
2
|
import type { Tooltip } from '@vonage/vivid/lib/tooltip/tooltip';
|
|
3
3
|
import type { SlotsType } from 'vue';
|
|
4
4
|
declare const _default: import("vue").DefineComponent<{
|
|
5
|
-
/**
|
|
6
|
-
* ID or direct reference to the component's anchor element.
|
|
7
|
-
*/
|
|
8
|
-
anchor: {
|
|
9
|
-
type: PropType<string | HTMLElement>;
|
|
10
|
-
default: undefined;
|
|
11
|
-
};
|
|
12
5
|
/**
|
|
13
6
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
14
7
|
*/
|
|
@@ -32,6 +25,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
25
|
type: PropType<boolean>;
|
|
33
26
|
default: undefined;
|
|
34
27
|
};
|
|
28
|
+
/**
|
|
29
|
+
* ID or direct reference to the component's anchor element.
|
|
30
|
+
*/
|
|
31
|
+
anchor: {
|
|
32
|
+
type: PropType<string | HTMLElement>;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
35
35
|
}, {
|
|
36
36
|
componentName: import("vue").Ref<string>;
|
|
37
37
|
element: import("vue").Ref<Tooltip | null>;
|
|
@@ -79,13 +79,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
79
79
|
target: Tooltip;
|
|
80
80
|
}): true;
|
|
81
81
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
82
|
-
/**
|
|
83
|
-
* ID or direct reference to the component's anchor element.
|
|
84
|
-
*/
|
|
85
|
-
anchor: {
|
|
86
|
-
type: PropType<string | HTMLElement>;
|
|
87
|
-
default: undefined;
|
|
88
|
-
};
|
|
89
82
|
/**
|
|
90
83
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
91
84
|
*/
|
|
@@ -109,6 +102,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
109
102
|
type: PropType<boolean>;
|
|
110
103
|
default: undefined;
|
|
111
104
|
};
|
|
105
|
+
/**
|
|
106
|
+
* ID or direct reference to the component's anchor element.
|
|
107
|
+
*/
|
|
108
|
+
anchor: {
|
|
109
|
+
type: PropType<string | HTMLElement>;
|
|
110
|
+
default: undefined;
|
|
111
|
+
};
|
|
112
112
|
}>> & {
|
|
113
113
|
onKeydown?: ((event: KeyboardEvent & {
|
|
114
114
|
target: Tooltip;
|
|
@@ -42,6 +42,7 @@ export { default as VProgressRing } from './VProgressRing';
|
|
|
42
42
|
export { default as VRadio } from './VRadio';
|
|
43
43
|
export { default as VRadioGroup } from './VRadioGroup';
|
|
44
44
|
export { default as VRangeSlider } from './VRangeSlider';
|
|
45
|
+
export { default as VRichTextEditor } from './VRichTextEditor';
|
|
45
46
|
export { default as VSearchableSelect } from './VSearchableSelect';
|
|
46
47
|
export { default as VSelect } from './VSelect';
|
|
47
48
|
export { default as VSelectableBox } from './VSelectableBox';
|