@vonage/vivid-vue 3.13.0 → 3.14.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.
@@ -19,6 +19,10 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
19
19
  type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
20
20
  default: undefined;
21
21
  };
22
+ role: {
23
+ type: PropType<string>;
24
+ default: undefined;
25
+ };
22
26
  actionHref: {
23
27
  type: PropType<string>;
24
28
  default: undefined;
@@ -35,10 +39,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
35
39
  type: PropType<any>;
36
40
  default: undefined;
37
41
  };
38
- role: {
39
- type: PropType<string>;
40
- default: undefined;
41
- };
42
42
  text: {
43
43
  type: PropType<string>;
44
44
  default: undefined;
@@ -66,6 +66,10 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
66
66
  type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
67
67
  default: undefined;
68
68
  };
69
+ role: {
70
+ type: PropType<string>;
71
+ default: undefined;
72
+ };
69
73
  actionHref: {
70
74
  type: PropType<string>;
71
75
  default: undefined;
@@ -82,10 +86,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
82
86
  type: PropType<any>;
83
87
  default: undefined;
84
88
  };
85
- role: {
86
- type: PropType<string>;
87
- default: undefined;
88
- };
89
89
  text: {
90
90
  type: PropType<string>;
91
91
  default: undefined;
@@ -19,6 +19,10 @@ declare const _default: import("vue").DefineComponent<{
19
19
  type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
20
20
  default: undefined;
21
21
  };
22
+ role: {
23
+ type: PropType<string>;
24
+ default: undefined;
25
+ };
22
26
  actionHref: {
23
27
  type: PropType<string>;
24
28
  default: undefined;
@@ -35,10 +39,6 @@ declare const _default: import("vue").DefineComponent<{
35
39
  type: PropType<any>;
36
40
  default: undefined;
37
41
  };
38
- role: {
39
- type: PropType<string>;
40
- default: undefined;
41
- };
42
42
  text: {
43
43
  type: PropType<string>;
44
44
  default: undefined;
@@ -66,6 +66,10 @@ declare const _default: import("vue").DefineComponent<{
66
66
  type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
67
67
  default: undefined;
68
68
  };
69
+ role: {
70
+ type: PropType<string>;
71
+ default: undefined;
72
+ };
69
73
  actionHref: {
70
74
  type: PropType<string>;
71
75
  default: undefined;
@@ -82,10 +86,6 @@ declare const _default: import("vue").DefineComponent<{
82
86
  type: PropType<any>;
83
87
  default: undefined;
84
88
  };
85
- role: {
86
- type: PropType<string>;
87
- default: undefined;
88
- };
89
89
  text: {
90
90
  type: PropType<string>;
91
91
  default: undefined;
@@ -12,21 +12,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
12
12
  default: undefined;
13
13
  };
14
14
  /**
15
- * indicates whether the menu is open
16
- */
17
- open: {
18
- type: PropType<boolean>;
19
- default: undefined;
20
- };
21
- /**
22
- * the placement of the menu
15
+ * placement of the menu
23
16
  */
24
17
  placement: {
25
18
  type: PropType<"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "right" | "left" | "right-start" | "right-end" | "left-start" | "left-end">;
26
19
  default: undefined;
27
20
  };
28
21
  /**
29
- * ID reference to element in the menu's owner document.
22
+ * id or direct reference to the menu's anchor element
30
23
  */
31
24
  anchor: {
32
25
  type: PropType<string | HTMLElement>;
@@ -40,6 +33,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
40
33
  type: PropType<boolean>;
41
34
  default: undefined;
42
35
  };
36
+ /**
37
+ * indicates whether the menu is open
38
+ */
39
+ open: {
40
+ type: PropType<boolean>;
41
+ default: undefined;
42
+ };
43
43
  }, {
44
44
  componentName: import("vue").Ref<string>;
45
45
  element: import("vue").Ref<Menu | null>;
@@ -52,21 +52,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
52
52
  default: undefined;
53
53
  };
54
54
  /**
55
- * indicates whether the menu is open
56
- */
57
- open: {
58
- type: PropType<boolean>;
59
- default: undefined;
60
- };
61
- /**
62
- * the placement of the menu
55
+ * placement of the menu
63
56
  */
64
57
  placement: {
65
58
  type: PropType<"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "right" | "left" | "right-start" | "right-end" | "left-start" | "left-end">;
66
59
  default: undefined;
67
60
  };
68
61
  /**
69
- * ID reference to element in the menu's owner document.
62
+ * id or direct reference to the menu's anchor element
70
63
  */
71
64
  anchor: {
72
65
  type: PropType<string | HTMLElement>;
@@ -80,6 +73,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
80
73
  type: PropType<boolean>;
81
74
  default: undefined;
82
75
  };
76
+ /**
77
+ * indicates whether the menu is open
78
+ */
79
+ open: {
80
+ type: PropType<boolean>;
81
+ default: undefined;
82
+ };
83
83
  }>>, {
84
84
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
85
85
  anchor: string | HTMLElement;
@@ -12,21 +12,14 @@ declare const _default: import("vue").DefineComponent<{
12
12
  default: undefined;
13
13
  };
14
14
  /**
15
- * indicates whether the menu is open
16
- */
17
- open: {
18
- type: PropType<boolean>;
19
- default: undefined;
20
- };
21
- /**
22
- * the placement of the menu
15
+ * placement of the menu
23
16
  */
24
17
  placement: {
25
18
  type: PropType<"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "right" | "left" | "right-start" | "right-end" | "left-start" | "left-end">;
26
19
  default: undefined;
27
20
  };
28
21
  /**
29
- * ID reference to element in the menu's owner document.
22
+ * id or direct reference to the menu's anchor element
30
23
  */
31
24
  anchor: {
32
25
  type: PropType<string | HTMLElement>;
@@ -40,6 +33,13 @@ declare const _default: import("vue").DefineComponent<{
40
33
  type: PropType<boolean>;
41
34
  default: undefined;
42
35
  };
36
+ /**
37
+ * indicates whether the menu is open
38
+ */
39
+ open: {
40
+ type: PropType<boolean>;
41
+ default: undefined;
42
+ };
43
43
  }, {
44
44
  componentName: import("vue").Ref<string>;
45
45
  element: import("vue").Ref<Menu | null>;
@@ -52,21 +52,14 @@ declare const _default: import("vue").DefineComponent<{
52
52
  default: undefined;
53
53
  };
54
54
  /**
55
- * indicates whether the menu is open
56
- */
57
- open: {
58
- type: PropType<boolean>;
59
- default: undefined;
60
- };
61
- /**
62
- * the placement of the menu
55
+ * placement of the menu
63
56
  */
64
57
  placement: {
65
58
  type: PropType<"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "right" | "left" | "right-start" | "right-end" | "left-start" | "left-end">;
66
59
  default: undefined;
67
60
  };
68
61
  /**
69
- * ID reference to element in the menu's owner document.
62
+ * id or direct reference to the menu's anchor element
70
63
  */
71
64
  anchor: {
72
65
  type: PropType<string | HTMLElement>;
@@ -80,6 +73,13 @@ declare const _default: import("vue").DefineComponent<{
80
73
  type: PropType<boolean>;
81
74
  default: undefined;
82
75
  };
76
+ /**
77
+ * indicates whether the menu is open
78
+ */
79
+ open: {
80
+ type: PropType<boolean>;
81
+ default: undefined;
82
+ };
83
83
  }>> & {
84
84
  onKeydown?: ((...args: any[]) => any) | undefined;
85
85
  onClick?: ((...args: any[]) => any) | undefined;