@vonage/vivid-vue 5.19.0 → 5.20.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.
@@ -0,0 +1,7 @@
1
+ import { VNode } from 'vue';
2
+ import VKbdKeyVue2 from './VKbdKey.vue2';
3
+ import VKbdKeyVue3 from './VKbdKey.vue3';
4
+
5
+ type IsVue2 = "data" extends keyof VNode ? true : false;
6
+ declare const _default: IsVue2 extends true ? typeof VKbdKeyVue2 : typeof VKbdKeyVue3;
7
+ export default _default;
@@ -0,0 +1,9 @@
1
+ export interface VKbdKeyEvents {
2
+ }
3
+ export interface VKbdKeyProps {
4
+ appearance?: 'outlined' | 'subtle' | 'dropshadow';
5
+ keyboard?: 'auto' | 'standard' | 'apple';
6
+ keyshortcutsKey?: string;
7
+ name?: 'Alt' | 'Control' | 'Shift' | 'Enter' | 'Tab' | 'Space' | 'Backspace' | 'Escape' | 'ArrowUp' | 'ArrowDown' | 'ArrowLeft' | 'ArrowRight' | 'End' | 'Home' | 'PageUp' | 'PageDown' | 'A' | 'B' | 'C' | 'D' | 'E' | 'F' | 'G' | 'H' | 'I' | 'J' | 'K' | 'L' | 'M' | 'N' | 'O' | 'P' | 'Q' | 'R' | 'S' | 'T' | 'U' | 'V' | 'W' | 'X' | 'Y' | 'Z' | '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | 'Mod' | 'Custom';
8
+ size?: 'condensed' | 'normal' | 'expanded' | 'super-condensed';
9
+ }
@@ -0,0 +1,55 @@
1
+ import type { PropType } from 'vue';
2
+ import type { VwcKbdKeyElement } from '@vonage/vivid';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ appearance: {
5
+ type: PropType<"outlined" | "subtle" | "dropshadow">;
6
+ default: undefined;
7
+ };
8
+ keyboard: {
9
+ type: PropType<"auto" | "standard" | "apple">;
10
+ default: undefined;
11
+ };
12
+ keyshortcutsKey: {
13
+ type: PropType<string>;
14
+ default: undefined;
15
+ };
16
+ name: {
17
+ type: PropType<"Alt" | "Control" | "Shift" | "Enter" | "Tab" | "Space" | "Backspace" | "Escape" | "ArrowUp" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "End" | "Home" | "PageUp" | "PageDown" | "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "Mod" | "Custom">;
18
+ default: undefined;
19
+ };
20
+ size: {
21
+ type: PropType<"condensed" | "normal" | "expanded" | "super-condensed">;
22
+ default: undefined;
23
+ };
24
+ }, {
25
+ componentName: import("vue").Ref<string>;
26
+ element: import("vue").Ref<VwcKbdKeyElement | null>;
27
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, never[], string, Readonly<import("vue").ExtractPropTypes<{
28
+ appearance: {
29
+ type: PropType<"outlined" | "subtle" | "dropshadow">;
30
+ default: undefined;
31
+ };
32
+ keyboard: {
33
+ type: PropType<"auto" | "standard" | "apple">;
34
+ default: undefined;
35
+ };
36
+ keyshortcutsKey: {
37
+ type: PropType<string>;
38
+ default: undefined;
39
+ };
40
+ name: {
41
+ type: PropType<"Alt" | "Control" | "Shift" | "Enter" | "Tab" | "Space" | "Backspace" | "Escape" | "ArrowUp" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "End" | "Home" | "PageUp" | "PageDown" | "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "Mod" | "Custom">;
42
+ default: undefined;
43
+ };
44
+ size: {
45
+ type: PropType<"condensed" | "normal" | "expanded" | "super-condensed">;
46
+ default: undefined;
47
+ };
48
+ }>>, {
49
+ name: "2" | "P" | "B" | "D" | "C" | "M" | "0" | "1" | "3" | "5" | "4" | "6" | "7" | "Alt" | "Control" | "Shift" | "Enter" | "Tab" | "Space" | "Backspace" | "Escape" | "ArrowUp" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "End" | "Home" | "PageUp" | "PageDown" | "A" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "N" | "O" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" | "8" | "9" | "Mod" | "Custom";
50
+ size: "condensed" | "normal" | "expanded" | "super-condensed";
51
+ appearance: "outlined" | "subtle" | "dropshadow";
52
+ keyboard: "auto" | "standard" | "apple";
53
+ keyshortcutsKey: string;
54
+ }>;
55
+ export default _default;
@@ -0,0 +1,57 @@
1
+ import type { VwcKbdKeyElement } from '@vonage/vivid';
2
+ import type { SlotsType, PropType } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ appearance: {
5
+ type: PropType<"outlined" | "subtle" | "dropshadow">;
6
+ default: undefined;
7
+ };
8
+ keyboard: {
9
+ type: PropType<"auto" | "standard" | "apple">;
10
+ default: undefined;
11
+ };
12
+ keyshortcutsKey: {
13
+ type: PropType<string>;
14
+ default: undefined;
15
+ };
16
+ name: {
17
+ type: PropType<"Alt" | "Control" | "Shift" | "Enter" | "Tab" | "Space" | "Backspace" | "Escape" | "ArrowUp" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "End" | "Home" | "PageUp" | "PageDown" | "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "Mod" | "Custom">;
18
+ default: undefined;
19
+ };
20
+ size: {
21
+ type: PropType<"condensed" | "normal" | "expanded" | "super-condensed">;
22
+ default: undefined;
23
+ };
24
+ }>, {
25
+ componentName: import("vue").Ref<string>;
26
+ element: import("vue").Ref<VwcKbdKeyElement | null, VwcKbdKeyElement | null>;
27
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
28
+ appearance: {
29
+ type: PropType<"outlined" | "subtle" | "dropshadow">;
30
+ default: undefined;
31
+ };
32
+ keyboard: {
33
+ type: PropType<"auto" | "standard" | "apple">;
34
+ default: undefined;
35
+ };
36
+ keyshortcutsKey: {
37
+ type: PropType<string>;
38
+ default: undefined;
39
+ };
40
+ name: {
41
+ type: PropType<"Alt" | "Control" | "Shift" | "Enter" | "Tab" | "Space" | "Backspace" | "Escape" | "ArrowUp" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "End" | "Home" | "PageUp" | "PageDown" | "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "Mod" | "Custom">;
42
+ default: undefined;
43
+ };
44
+ size: {
45
+ type: PropType<"condensed" | "normal" | "expanded" | "super-condensed">;
46
+ default: undefined;
47
+ };
48
+ }>> & Readonly<{}>, {
49
+ name: "2" | "P" | "B" | "D" | "C" | "M" | "0" | "1" | "3" | "5" | "4" | "6" | "7" | "Alt" | "Control" | "Shift" | "Enter" | "Tab" | "Space" | "Backspace" | "Escape" | "ArrowUp" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "End" | "Home" | "PageUp" | "PageDown" | "A" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "N" | "O" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" | "8" | "9" | "Mod" | "Custom";
50
+ size: "condensed" | "normal" | "expanded" | "super-condensed";
51
+ appearance: "outlined" | "subtle" | "dropshadow";
52
+ keyboard: "auto" | "standard" | "apple";
53
+ keyshortcutsKey: string;
54
+ }, SlotsType<{
55
+ default: Record<string, never>;
56
+ }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
57
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import { VNode } from 'vue';
2
+ import VKbdShortcutVue2 from './VKbdShortcut.vue2';
3
+ import VKbdShortcutVue3 from './VKbdShortcut.vue3';
4
+
5
+ type IsVue2 = "data" extends keyof VNode ? true : false;
6
+ declare const _default: IsVue2 extends true ? typeof VKbdShortcutVue2 : typeof VKbdShortcutVue3;
7
+ export default _default;
@@ -0,0 +1,4 @@
1
+ export interface VKbdShortcutEvents {
2
+ }
3
+ export interface VKbdShortcutProps {
4
+ }
@@ -0,0 +1,8 @@
1
+ import type { VwcKbdShortcutElement } from '@vonage/vivid';
2
+ declare const _default: import("vue").DefineComponent<{}, {
3
+ componentName: import("vue").Ref<string>;
4
+ element: import("vue").Ref<VwcKbdShortcutElement | null>;
5
+ }, {}, {}, {
6
+ getKeyshortcutsValue(): null | string;
7
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, never[], string, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
8
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { VwcKbdShortcutElement } from '@vonage/vivid';
2
+ import type { SlotsType } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<{}, {
4
+ componentName: import("vue").Ref<string>;
5
+ element: import("vue").Ref<VwcKbdShortcutElement | null, VwcKbdShortcutElement | null>;
6
+ }, {}, {}, {
7
+ getKeyshortcutsValue(): null | string;
8
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, SlotsType<{
9
+ default: Record<string, never>;
10
+ }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
11
+ export default _default;
@@ -14,7 +14,7 @@ export interface VMenuProps {
14
14
  open?: boolean;
15
15
  placement?: 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-end' | 'left-start' | 'right-end' | 'right-start';
16
16
  positionStrategy?: 'fixed' | 'absolute';
17
- trigger?: 'off' | 'auto' | 'legacy';
17
+ trigger?: 'auto' | 'off' | 'legacy';
18
18
  'onClose'?: (event: VMenuEvents['close']) => void;
19
19
  'onOpen'?: (event: VMenuEvents['open']) => void;
20
20
  }
@@ -26,7 +26,7 @@ declare const _default: import("vue").DefineComponent<{
26
26
  default: undefined;
27
27
  };
28
28
  trigger: {
29
- type: PropType<"off" | "auto" | "legacy">;
29
+ type: PropType<"auto" | "off" | "legacy">;
30
30
  default: undefined;
31
31
  };
32
32
  }, {
@@ -62,7 +62,7 @@ declare const _default: import("vue").DefineComponent<{
62
62
  default: undefined;
63
63
  };
64
64
  trigger: {
65
- type: PropType<"off" | "auto" | "legacy">;
65
+ type: PropType<"auto" | "off" | "legacy">;
66
66
  default: undefined;
67
67
  };
68
68
  }>>, {
@@ -72,6 +72,6 @@ declare const _default: import("vue").DefineComponent<{
72
72
  autoDismiss: boolean;
73
73
  offset: number;
74
74
  positionStrategy: "fixed" | "absolute";
75
- trigger: "off" | "auto" | "legacy";
75
+ trigger: "auto" | "off" | "legacy";
76
76
  }>;
77
77
  export default _default;
@@ -26,7 +26,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
26
26
  default: undefined;
27
27
  };
28
28
  trigger: {
29
- type: PropType<"off" | "auto" | "legacy">;
29
+ type: PropType<"auto" | "off" | "legacy">;
30
30
  default: undefined;
31
31
  };
32
32
  }>, {
@@ -69,7 +69,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
69
69
  default: undefined;
70
70
  };
71
71
  trigger: {
72
- type: PropType<"off" | "auto" | "legacy">;
72
+ type: PropType<"auto" | "off" | "legacy">;
73
73
  default: undefined;
74
74
  };
75
75
  }>> & Readonly<{
@@ -86,7 +86,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
86
86
  autoDismiss: boolean;
87
87
  offset: number;
88
88
  positionStrategy: "fixed" | "absolute";
89
- trigger: "off" | "auto" | "legacy";
89
+ trigger: "auto" | "off" | "legacy";
90
90
  }, SlotsType<{
91
91
  "action-items": Record<string, never>;
92
92
  anchor: Record<string, never>;
@@ -132,6 +132,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
132
132
  controlType: "checkbox" | "radio";
133
133
  textSecondary: string;
134
134
  }, SlotsType<{
135
+ "kbd-shortcut": Record<string, never>;
135
136
  meta: Record<string, never>;
136
137
  submenu: Record<string, never>;
137
138
  "trailing-meta": Record<string, never>;
@@ -0,0 +1,7 @@
1
+ import { VNode } from 'vue';
2
+ import VPlatformSwitchVue2 from './VPlatformSwitch.vue2';
3
+ import VPlatformSwitchVue3 from './VPlatformSwitch.vue3';
4
+
5
+ type IsVue2 = "data" extends keyof VNode ? true : false;
6
+ declare const _default: IsVue2 extends true ? typeof VPlatformSwitchVue2 : typeof VPlatformSwitchVue3;
7
+ export default _default;
@@ -0,0 +1,4 @@
1
+ export interface VPlatformSwitchEvents {
2
+ }
3
+ export interface VPlatformSwitchProps {
4
+ }
@@ -0,0 +1,6 @@
1
+ import type { VwcPlatformSwitchElement } from '@vonage/vivid';
2
+ declare const _default: import("vue").DefineComponent<{}, {
3
+ componentName: import("vue").Ref<string>;
4
+ element: import("vue").Ref<VwcPlatformSwitchElement | null>;
5
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, never[], string, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
6
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import type { VwcPlatformSwitchElement } from '@vonage/vivid';
2
+ import type { SlotsType } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<{}, {
4
+ componentName: import("vue").Ref<string>;
5
+ element: import("vue").Ref<VwcPlatformSwitchElement | null, VwcPlatformSwitchElement | null>;
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, SlotsType<{
7
+ default: Record<string, never>;
8
+ }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
9
+ export default _default;
@@ -32,6 +32,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
32
32
  }>> & Readonly<{}>, {
33
33
  instance: RteInstance;
34
34
  }, SlotsType<{
35
+ "editor-after": Record<string, never>;
36
+ "editor-before": Record<string, never>;
35
37
  "editor-end": Record<string, never>;
36
38
  "editor-start": Record<string, never>;
37
39
  "inline-image-placeholder": {
@@ -44,5 +44,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
44
44
  placement: "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left" | "right" | "left-end" | "left-start" | "right-end" | "right-start";
45
45
  }, SlotsType<{
46
46
  anchor: Record<string, never>;
47
+ "kbd-shortcut": Record<string, never>;
47
48
  }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
48
49
  export default _default;
@@ -33,6 +33,8 @@ export { default as VFilePicker } from './VFilePicker';
33
33
  export { default as VFlag } from './VFlag';
34
34
  export { default as VHeader } from './VHeader';
35
35
  export { default as VIcon } from './VIcon';
36
+ export { default as VKbdKey } from './VKbdKey';
37
+ export { default as VKbdShortcut } from './VKbdShortcut';
36
38
  export { default as VLayout } from './VLayout';
37
39
  export { default as VMenu } from './VMenu';
38
40
  export { default as VMenuItem } from './VMenuItem';
@@ -43,6 +45,7 @@ export { default as VNote } from './VNote';
43
45
  export { default as VNumberField } from './VNumberField';
44
46
  export { default as VOption } from './VOption';
45
47
  export { default as VPagination } from './VPagination';
48
+ export { default as VPlatformSwitch } from './VPlatformSwitch';
46
49
  export { default as VPopover } from './VPopover';
47
50
  export { default as VProgress } from './VProgress';
48
51
  export { default as VProgressRing } from './VProgressRing';
@@ -68,6 +68,10 @@ import type { VHeader } from './components';
68
68
  import type { VHeaderProps, VHeaderEvents } from './components/VHeader.types';
69
69
  import type { VIcon } from './components';
70
70
  import type { VIconProps, VIconEvents } from './components/VIcon.types';
71
+ import type { VKbdKey } from './components';
72
+ import type { VKbdKeyProps, VKbdKeyEvents } from './components/VKbdKey.types';
73
+ import type { VKbdShortcut } from './components';
74
+ import type { VKbdShortcutProps, VKbdShortcutEvents } from './components/VKbdShortcut.types';
71
75
  import type { VLayout } from './components';
72
76
  import type { VLayoutProps, VLayoutEvents } from './components/VLayout.types';
73
77
  import type { VMenu } from './components';
@@ -88,6 +92,8 @@ import type { VOption } from './components';
88
92
  import type { VOptionProps, VOptionEvents } from './components/VOption.types';
89
93
  import type { VPagination } from './components';
90
94
  import type { VPaginationProps, VPaginationEvents } from './components/VPagination.types';
95
+ import type { VPlatformSwitch } from './components';
96
+ import type { VPlatformSwitchProps, VPlatformSwitchEvents } from './components/VPlatformSwitch.types';
91
97
  import type { VPopover } from './components';
92
98
  import type { VPopoverProps, VPopoverEvents } from './components/VPopover.types';
93
99
  import type { VProgress } from './components';
@@ -199,6 +205,8 @@ export type VProps = {
199
205
  VFlag: VFlagProps;
200
206
  VHeader: VHeaderProps;
201
207
  VIcon: VIconProps;
208
+ VKbdKey: VKbdKeyProps;
209
+ VKbdShortcut: VKbdShortcutProps;
202
210
  VLayout: VLayoutProps;
203
211
  VMenu: VMenuProps;
204
212
  VMenuItem: VMenuItemProps;
@@ -209,6 +217,7 @@ export type VProps = {
209
217
  VNumberField: VNumberFieldProps;
210
218
  VOption: VOptionProps;
211
219
  VPagination: VPaginationProps;
220
+ VPlatformSwitch: VPlatformSwitchProps;
212
221
  VPopover: VPopoverProps;
213
222
  VProgress: VProgressProps;
214
223
  VProgressRing: VProgressRingProps;
@@ -283,6 +292,8 @@ export type VEvents = {
283
292
  VFlag: VFlagEvents;
284
293
  VHeader: VHeaderEvents;
285
294
  VIcon: VIconEvents;
295
+ VKbdKey: VKbdKeyEvents;
296
+ VKbdShortcut: VKbdShortcutEvents;
286
297
  VLayout: VLayoutEvents;
287
298
  VMenu: VMenuEvents;
288
299
  VMenuItem: VMenuItemEvents;
@@ -293,6 +304,7 @@ export type VEvents = {
293
304
  VNumberField: VNumberFieldEvents;
294
305
  VOption: VOptionEvents;
295
306
  VPagination: VPaginationEvents;
307
+ VPlatformSwitch: VPlatformSwitchEvents;
296
308
  VPopover: VPopoverEvents;
297
309
  VProgress: VProgressEvents;
298
310
  VProgressRing: VProgressRingEvents;
@@ -367,6 +379,8 @@ export type VSlots = {
367
379
  VFlag: ComponentSlots<typeof VFlag>;
368
380
  VHeader: ComponentSlots<typeof VHeader>;
369
381
  VIcon: ComponentSlots<typeof VIcon>;
382
+ VKbdKey: ComponentSlots<typeof VKbdKey>;
383
+ VKbdShortcut: ComponentSlots<typeof VKbdShortcut>;
370
384
  VLayout: ComponentSlots<typeof VLayout>;
371
385
  VMenu: ComponentSlots<typeof VMenu>;
372
386
  VMenuItem: ComponentSlots<typeof VMenuItem>;
@@ -377,6 +391,7 @@ export type VSlots = {
377
391
  VNumberField: ComponentSlots<typeof VNumberField>;
378
392
  VOption: ComponentSlots<typeof VOption>;
379
393
  VPagination: ComponentSlots<typeof VPagination>;
394
+ VPlatformSwitch: ComponentSlots<typeof VPlatformSwitch>;
380
395
  VPopover: ComponentSlots<typeof VPopover>;
381
396
  VProgress: ComponentSlots<typeof VProgress>;
382
397
  VProgressRing: ComponentSlots<typeof VProgressRing>;