@vonage/vivid-vue 3.4.0 → 3.6.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.
@@ -104,6 +104,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
104
104
  type: PropType<boolean>;
105
105
  default: undefined;
106
106
  };
107
+ /**
108
+ * The connotation the checklist should have.
109
+ */
110
+ connotation: {
111
+ type: PropType<"accent" | "cta">;
112
+ default: undefined;
113
+ };
107
114
  }, {
108
115
  componentName: import("vue").Ref<string>;
109
116
  element: import("vue").Ref<Checkbox | null>;
@@ -208,10 +215,18 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
208
215
  type: PropType<boolean>;
209
216
  default: undefined;
210
217
  };
218
+ /**
219
+ * The connotation the checklist should have.
220
+ */
221
+ connotation: {
222
+ type: PropType<"accent" | "cta">;
223
+ default: undefined;
224
+ };
211
225
  }>>, {
212
226
  name: string;
213
227
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
214
228
  value: string;
229
+ connotation: "accent" | "cta";
215
230
  disabled: boolean;
216
231
  currentValue: string;
217
232
  required: boolean;
@@ -104,6 +104,13 @@ declare const _default: import("vue").DefineComponent<{
104
104
  type: PropType<boolean>;
105
105
  default: undefined;
106
106
  };
107
+ /**
108
+ * The connotation the checklist should have.
109
+ */
110
+ connotation: {
111
+ type: PropType<"accent" | "cta">;
112
+ default: undefined;
113
+ };
107
114
  }, {
108
115
  componentName: import("vue").Ref<string>;
109
116
  element: import("vue").Ref<Checkbox | null>;
@@ -208,6 +215,13 @@ declare const _default: import("vue").DefineComponent<{
208
215
  type: PropType<boolean>;
209
216
  default: undefined;
210
217
  };
218
+ /**
219
+ * The connotation the checklist should have.
220
+ */
221
+ connotation: {
222
+ type: PropType<"accent" | "cta">;
223
+ default: undefined;
224
+ };
211
225
  }>> & {
212
226
  onKeydown?: ((...args: any[]) => any) | undefined;
213
227
  onClick?: ((...args: any[]) => any) | undefined;
@@ -220,6 +234,7 @@ declare const _default: import("vue").DefineComponent<{
220
234
  name: string;
221
235
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
222
236
  value: string;
237
+ connotation: "accent" | "cta";
223
238
  disabled: boolean;
224
239
  currentValue: string;
225
240
  required: boolean;
@@ -11,6 +11,28 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
11
11
  type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
12
12
  default: undefined;
13
13
  };
14
+ /**
15
+ * When true the component will not add itself to the tab queue.
16
+ * Default is false.
17
+ */
18
+ noTabbing: {
19
+ type: PropType<boolean>;
20
+ default: undefined;
21
+ };
22
+ /**
23
+ * Whether the grid should automatically generate a header row and its type
24
+ */
25
+ generateHeader: {
26
+ type: PropType<"default" | "none" | "sticky">;
27
+ default: undefined;
28
+ };
29
+ /**
30
+ * String that gets applied to the the css gridTemplateColumns attribute of child rows
31
+ */
32
+ gridTemplateColumns: {
33
+ type: PropType<string>;
34
+ default: undefined;
35
+ };
14
36
  selectionMode: {
15
37
  type: PropType<"none" | "single-row" | "multi-row">;
16
38
  default: undefined;
@@ -26,12 +48,37 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
26
48
  type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
27
49
  default: undefined;
28
50
  };
51
+ /**
52
+ * When true the component will not add itself to the tab queue.
53
+ * Default is false.
54
+ */
55
+ noTabbing: {
56
+ type: PropType<boolean>;
57
+ default: undefined;
58
+ };
59
+ /**
60
+ * Whether the grid should automatically generate a header row and its type
61
+ */
62
+ generateHeader: {
63
+ type: PropType<"default" | "none" | "sticky">;
64
+ default: undefined;
65
+ };
66
+ /**
67
+ * String that gets applied to the the css gridTemplateColumns attribute of child rows
68
+ */
69
+ gridTemplateColumns: {
70
+ type: PropType<string>;
71
+ default: undefined;
72
+ };
29
73
  selectionMode: {
30
74
  type: PropType<"none" | "single-row" | "multi-row">;
31
75
  default: undefined;
32
76
  };
33
77
  }>>, {
34
78
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
79
+ noTabbing: boolean;
80
+ generateHeader: "default" | "none" | "sticky";
81
+ gridTemplateColumns: string;
35
82
  selectionMode: "none" | "single-row" | "multi-row";
36
83
  }>;
37
84
  export default _default;
@@ -11,6 +11,28 @@ declare const _default: import("vue").DefineComponent<{
11
11
  type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
12
12
  default: undefined;
13
13
  };
14
+ /**
15
+ * When true the component will not add itself to the tab queue.
16
+ * Default is false.
17
+ */
18
+ noTabbing: {
19
+ type: PropType<boolean>;
20
+ default: undefined;
21
+ };
22
+ /**
23
+ * Whether the grid should automatically generate a header row and its type
24
+ */
25
+ generateHeader: {
26
+ type: PropType<"default" | "none" | "sticky">;
27
+ default: undefined;
28
+ };
29
+ /**
30
+ * String that gets applied to the the css gridTemplateColumns attribute of child rows
31
+ */
32
+ gridTemplateColumns: {
33
+ type: PropType<string>;
34
+ default: undefined;
35
+ };
14
36
  selectionMode: {
15
37
  type: PropType<"none" | "single-row" | "multi-row">;
16
38
  default: undefined;
@@ -26,6 +48,28 @@ declare const _default: import("vue").DefineComponent<{
26
48
  type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
27
49
  default: undefined;
28
50
  };
51
+ /**
52
+ * When true the component will not add itself to the tab queue.
53
+ * Default is false.
54
+ */
55
+ noTabbing: {
56
+ type: PropType<boolean>;
57
+ default: undefined;
58
+ };
59
+ /**
60
+ * Whether the grid should automatically generate a header row and its type
61
+ */
62
+ generateHeader: {
63
+ type: PropType<"default" | "none" | "sticky">;
64
+ default: undefined;
65
+ };
66
+ /**
67
+ * String that gets applied to the the css gridTemplateColumns attribute of child rows
68
+ */
69
+ gridTemplateColumns: {
70
+ type: PropType<string>;
71
+ default: undefined;
72
+ };
29
73
  selectionMode: {
30
74
  type: PropType<"none" | "single-row" | "multi-row">;
31
75
  default: undefined;
@@ -39,6 +83,9 @@ declare const _default: import("vue").DefineComponent<{
39
83
  onInput?: ((...args: any[]) => any) | undefined;
40
84
  }, {
41
85
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
86
+ noTabbing: boolean;
87
+ generateHeader: "default" | "none" | "sticky";
88
+ gridTemplateColumns: string;
42
89
  selectionMode: "none" | "single-row" | "multi-row";
43
90
  }>;
44
91
  export default _default;
@@ -32,6 +32,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
32
32
  type: PropType<string | HTMLElement>;
33
33
  default: undefined;
34
34
  };
35
+ /**
36
+ * indicates whether the menu will automatically close when
37
+ * the user clicks outside the menu
38
+ */
39
+ autoDismiss: {
40
+ type: PropType<boolean>;
41
+ default: undefined;
42
+ };
35
43
  }, {
36
44
  componentName: import("vue").Ref<string>;
37
45
  element: import("vue").Ref<Menu | null>;
@@ -64,10 +72,19 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
64
72
  type: PropType<string | HTMLElement>;
65
73
  default: undefined;
66
74
  };
75
+ /**
76
+ * indicates whether the menu will automatically close when
77
+ * the user clicks outside the menu
78
+ */
79
+ autoDismiss: {
80
+ type: PropType<boolean>;
81
+ default: undefined;
82
+ };
67
83
  }>>, {
68
84
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
69
85
  anchor: string | HTMLElement;
70
86
  placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "right" | "left" | "right-start" | "right-end" | "left-start" | "left-end";
71
87
  open: boolean;
88
+ autoDismiss: boolean;
72
89
  }>;
73
90
  export default _default;
@@ -32,6 +32,14 @@ declare const _default: import("vue").DefineComponent<{
32
32
  type: PropType<string | HTMLElement>;
33
33
  default: undefined;
34
34
  };
35
+ /**
36
+ * indicates whether the menu will automatically close when
37
+ * the user clicks outside the menu
38
+ */
39
+ autoDismiss: {
40
+ type: PropType<boolean>;
41
+ default: undefined;
42
+ };
35
43
  }, {
36
44
  componentName: import("vue").Ref<string>;
37
45
  element: import("vue").Ref<Menu | null>;
@@ -64,6 +72,14 @@ declare const _default: import("vue").DefineComponent<{
64
72
  type: PropType<string | HTMLElement>;
65
73
  default: undefined;
66
74
  };
75
+ /**
76
+ * indicates whether the menu will automatically close when
77
+ * the user clicks outside the menu
78
+ */
79
+ autoDismiss: {
80
+ type: PropType<boolean>;
81
+ default: undefined;
82
+ };
67
83
  }>> & {
68
84
  onKeydown?: ((...args: any[]) => any) | undefined;
69
85
  onClick?: ((...args: any[]) => any) | undefined;
@@ -76,5 +92,6 @@ declare const _default: import("vue").DefineComponent<{
76
92
  anchor: string | HTMLElement;
77
93
  placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "right" | "left" | "right-start" | "right-end" | "left-start" | "left-end";
78
94
  open: boolean;
95
+ autoDismiss: boolean;
79
96
  }>;
80
97
  export default _default;
@@ -123,6 +123,10 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
123
123
  type: PropType<"rounded" | "pill">;
124
124
  default: undefined;
125
125
  };
126
+ fixedDropdown: {
127
+ type: PropType<boolean>;
128
+ default: undefined;
129
+ };
126
130
  }, {
127
131
  componentName: import("vue").Ref<string>;
128
132
  element: import("vue").Ref<Select | null>;
@@ -246,6 +250,10 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
246
250
  type: PropType<"rounded" | "pill">;
247
251
  default: undefined;
248
252
  };
253
+ fixedDropdown: {
254
+ type: PropType<boolean>;
255
+ default: undefined;
256
+ };
249
257
  }>>, {
250
258
  name: string;
251
259
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
@@ -264,5 +272,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
264
272
  helperText: string;
265
273
  position: "above" | "below";
266
274
  multiple: boolean;
275
+ fixedDropdown: boolean;
267
276
  }>;
268
277
  export default _default;
@@ -123,6 +123,10 @@ declare const _default: import("vue").DefineComponent<{
123
123
  type: PropType<"rounded" | "pill">;
124
124
  default: undefined;
125
125
  };
126
+ fixedDropdown: {
127
+ type: PropType<boolean>;
128
+ default: undefined;
129
+ };
126
130
  }, {
127
131
  componentName: import("vue").Ref<string>;
128
132
  element: import("vue").Ref<Select | null>;
@@ -246,6 +250,10 @@ declare const _default: import("vue").DefineComponent<{
246
250
  type: PropType<"rounded" | "pill">;
247
251
  default: undefined;
248
252
  };
253
+ fixedDropdown: {
254
+ type: PropType<boolean>;
255
+ default: undefined;
256
+ };
249
257
  }>> & {
250
258
  onKeydown?: ((...args: any[]) => any) | undefined;
251
259
  onClick?: ((...args: any[]) => any) | undefined;
@@ -272,5 +280,6 @@ declare const _default: import("vue").DefineComponent<{
272
280
  helperText: string;
273
281
  position: "above" | "below";
274
282
  multiple: boolean;
283
+ fixedDropdown: boolean;
275
284
  }>;
276
285
  export default _default;
package/dist/index.es.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { ref as d, version as m, onBeforeMount as v, defineComponent as l, h as n } from "vue";
2
- import { registerAccordion as y, registerAccordionItem as f, registerActionGroup as $, registerAlert as k, registerAvatar as g, registerBadge as b, registerBanner as C, registerBreadcrumb as x, registerBreadcrumbItem as S, registerButton as w, registerCalendar as V, registerCalendarEvent as N, registerCard as B, registerCheckbox as T, registerCombobox as K, registerDataGrid as I, registerDialog as z, registerDivider as F, registerEmptyState as q, registerFab as P, registerHeader as L, registerIcon as D, registerLayout as M, registerMenu as A, registerMenuItem as O, registerNav as E, registerNavDisclosure as G, registerNavItem as H, registerNote as R, registerNumberField as W, registerOption as j, registerPagination as U, registerPopup as J, registerProgress as Q, registerProgressRing as X, registerRadio as Y, registerRadioGroup as Z, registerSelect as _, registerSideDrawer as tt, registerSlider as et, registerSwitch as it, registerTab as ot, registerTabs as st, registerTabPanel as nt, registerTextArea as at, registerTextField as rt, registerToggletip as dt, registerTooltip as lt, registerTreeItem as ht, registerTreeView as ut, registerTag as ct, registerTagGroup as pt } from "@vonage/vivid";
2
+ import { registerAccordion as y, registerAccordionItem as f, registerActionGroup as $, registerAlert as g, registerAvatar as k, registerBadge as b, registerBanner as C, registerBreadcrumb as x, registerBreadcrumbItem as S, registerButton as w, registerCalendar as V, registerCalendarEvent as N, registerCard as B, registerCheckbox as T, registerCombobox as K, registerDataGrid as I, registerDialog as z, registerDivider as F, registerEmptyState as q, registerFab as D, registerHeader as P, registerIcon as L, registerLayout as M, registerMenu as A, registerMenuItem as O, registerNav as H, registerNavDisclosure as E, registerNavItem as G, registerNote as R, registerNumberField as W, registerOption as j, registerPagination as U, registerPopup as J, registerProgress as Q, registerProgressRing as X, registerRadio as Y, registerRadioGroup as Z, registerSelect as _, registerSideDrawer as tt, registerSlider as et, registerSwitch as it, registerTab as ot, registerTabs as st, registerTabPanel as nt, registerTextArea as at, registerTextField as rt, registerToggletip as dt, registerTooltip as lt, registerTreeItem as ht, registerTreeView as ut, registerTag as ct, registerTagGroup as pt } from "@vonage/vivid";
3
3
  const p = d("vvd3");
4
4
  function $t(t) {
5
5
  p.value = t;
@@ -11,7 +11,7 @@ function h(t, o) {
11
11
  o(p.value);
12
12
  }), s;
13
13
  }
14
- const kt = l({
14
+ const gt = l({
15
15
  name: "VAccordion",
16
16
  props: {
17
17
  /**
@@ -115,7 +115,7 @@ const kt = l({
115
115
  ]
116
116
  );
117
117
  }
118
- }), gt = l({
118
+ }), kt = l({
119
119
  name: "VAccordionItem",
120
120
  props: {
121
121
  /**
@@ -484,7 +484,7 @@ const Ct = l({
484
484
  "close"
485
485
  ],
486
486
  setup(t, o) {
487
- const s = h("alert", k), e = d(null);
487
+ const s = h("alert", g), e = d(null);
488
488
  return o.expose({
489
489
  openChanged(i, u) {
490
490
  var c;
@@ -629,7 +629,7 @@ const Ct = l({
629
629
  "input"
630
630
  ],
631
631
  setup(t, o) {
632
- const s = h("avatar", g), e = d(null);
632
+ const s = h("avatar", k), e = d(null);
633
633
  return o.expose({}), { componentName: s, element: e };
634
634
  },
635
635
  render() {
@@ -1879,7 +1879,11 @@ const Ct = l({
1879
1879
  /**
1880
1880
  * When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute for more information.
1881
1881
  */
1882
- readonly: { type: Boolean, default: void 0 }
1882
+ readonly: { type: Boolean, default: void 0 },
1883
+ /**
1884
+ * The connotation the checklist should have.
1885
+ */
1886
+ connotation: { type: String, default: void 0 }
1883
1887
  },
1884
1888
  emits: [
1885
1889
  /**
@@ -1940,7 +1944,8 @@ const Ct = l({
1940
1944
  ...this.required !== void 0 ? { required: this.required } : {},
1941
1945
  ...this.checked !== void 0 ? { checked: this.checked } : {},
1942
1946
  ...this.modelValue !== void 0 ? { "current-checked": this.modelValue } : {},
1943
- ...this.readonly !== void 0 ? { readonly: this.readonly } : {}
1947
+ ...this.readonly !== void 0 ? { readonly: this.readonly } : {},
1948
+ ...this.connotation !== void 0 ? { connotation: this.connotation } : {}
1944
1949
  },
1945
1950
  class: "vvd-root",
1946
1951
  on: {
@@ -1972,6 +1977,7 @@ const Ct = l({
1972
1977
  ...this.checked !== void 0 ? { checked: this.checked } : {},
1973
1978
  ...this.modelValue !== void 0 ? { "current-checked": this.modelValue } : {},
1974
1979
  ...this.readonly !== void 0 ? { readonly: this.readonly } : {},
1980
+ ...this.connotation !== void 0 ? { connotation: this.connotation } : {},
1975
1981
  onClick: (t) => this.$emit("click", t),
1976
1982
  onFocus: (t) => this.$emit("focus", t),
1977
1983
  onBlur: (t) => this.$emit("blur", t),
@@ -2208,6 +2214,19 @@ const Ct = l({
2208
2214
  type: String,
2209
2215
  default: void 0
2210
2216
  },
2217
+ /**
2218
+ * When true the component will not add itself to the tab queue.
2219
+ * Default is false.
2220
+ */
2221
+ noTabbing: { type: Boolean, default: void 0 },
2222
+ /**
2223
+ * Whether the grid should automatically generate a header row and its type
2224
+ */
2225
+ generateHeader: { type: String, default: void 0 },
2226
+ /**
2227
+ * String that gets applied to the the css gridTemplateColumns attribute of child rows
2228
+ */
2229
+ gridTemplateColumns: { type: String, default: void 0 },
2211
2230
  selectionMode: { type: String, default: void 0 }
2212
2231
  },
2213
2232
  emits: [
@@ -2258,6 +2277,9 @@ const Ct = l({
2258
2277
  ref: "element",
2259
2278
  attrs: {
2260
2279
  ...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
2280
+ ...this.noTabbing !== void 0 ? { "no-tabbing": this.noTabbing } : {},
2281
+ ...this.generateHeader !== void 0 ? { "generate-header": this.generateHeader } : {},
2282
+ ...this.gridTemplateColumns !== void 0 ? { "grid-template-columns": this.gridTemplateColumns } : {},
2261
2283
  ...this.selectionMode !== void 0 ? { "selection-mode": this.selectionMode } : {}
2262
2284
  },
2263
2285
  class: "vvd-root",
@@ -2277,6 +2299,9 @@ const Ct = l({
2277
2299
  ref: "element",
2278
2300
  class: "vvd-root",
2279
2301
  ...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
2302
+ ...this.noTabbing !== void 0 ? { "no-tabbing": this.noTabbing } : {},
2303
+ ...this.generateHeader !== void 0 ? { "generate-header": this.generateHeader } : {},
2304
+ ...this.gridTemplateColumns !== void 0 ? { "grid-template-columns": this.gridTemplateColumns } : {},
2280
2305
  ...this.selectionMode !== void 0 ? { "selection-mode": this.selectionMode } : {},
2281
2306
  onClick: (t) => this.$emit("click", t),
2282
2307
  onFocus: (t) => this.$emit("focus", t),
@@ -2291,7 +2316,7 @@ const Ct = l({
2291
2316
  ]
2292
2317
  );
2293
2318
  }
2294
- }), Pt = l({
2319
+ }), Dt = l({
2295
2320
  name: "VDialog",
2296
2321
  props: {
2297
2322
  /**
@@ -2452,7 +2477,7 @@ const Ct = l({
2452
2477
  ]
2453
2478
  );
2454
2479
  }
2455
- }), Lt = l({
2480
+ }), Pt = l({
2456
2481
  name: "VDivider",
2457
2482
  props: {
2458
2483
  /**
@@ -2546,7 +2571,7 @@ const Ct = l({
2546
2571
  []
2547
2572
  );
2548
2573
  }
2549
- }), Dt = l({
2574
+ }), Lt = l({
2550
2575
  name: "VEmptyState",
2551
2576
  props: {
2552
2577
  /**
@@ -2782,7 +2807,7 @@ const Ct = l({
2782
2807
  "input"
2783
2808
  ],
2784
2809
  setup(t, o) {
2785
- const s = h("fab", P), e = d(null);
2810
+ const s = h("fab", D), e = d(null);
2786
2811
  return o.expose({
2787
2812
  /**
2788
2813
  * {@inheritDoc (FormAssociated:interface).validate}
@@ -2916,7 +2941,7 @@ const Ct = l({
2916
2941
  "input"
2917
2942
  ],
2918
2943
  setup(t, o) {
2919
- const s = h("header", L), e = d(null);
2944
+ const s = h("header", P), e = d(null);
2920
2945
  return o.expose({}), { componentName: s, element: e };
2921
2946
  },
2922
2947
  render() {
@@ -3031,7 +3056,7 @@ const Ct = l({
3031
3056
  "input"
3032
3057
  ],
3033
3058
  setup(t, o) {
3034
- const s = h("icon", D), e = d(null);
3059
+ const s = h("icon", L), e = d(null);
3035
3060
  return o.expose({
3036
3061
  nameChanged() {
3037
3062
  var i;
@@ -3083,7 +3108,7 @@ const Ct = l({
3083
3108
  ]
3084
3109
  );
3085
3110
  }
3086
- }), Et = l({
3111
+ }), Ht = l({
3087
3112
  name: "VLayout",
3088
3113
  props: {
3089
3114
  /**
@@ -3198,7 +3223,7 @@ const Ct = l({
3198
3223
  ]
3199
3224
  );
3200
3225
  }
3201
- }), Gt = l({
3226
+ }), Et = l({
3202
3227
  name: "VMenu",
3203
3228
  props: {
3204
3229
  /**
@@ -3222,7 +3247,12 @@ const Ct = l({
3222
3247
  /**
3223
3248
  * ID reference to element in the menu's owner document.
3224
3249
  */
3225
- anchor: { type: [Object, String], default: void 0 }
3250
+ anchor: { type: [Object, String], default: void 0 },
3251
+ /**
3252
+ * indicates whether the menu will automatically close when
3253
+ * the user clicks outside the menu
3254
+ */
3255
+ autoDismiss: { type: Boolean, default: void 0 }
3226
3256
  },
3227
3257
  emits: [
3228
3258
  /**
@@ -3276,6 +3306,10 @@ const Ct = l({
3276
3306
  anchorChanged(i, u) {
3277
3307
  var c;
3278
3308
  return (c = e.value) == null ? void 0 : c.anchorChanged(i, u);
3309
+ },
3310
+ autoDismissChanged() {
3311
+ var i;
3312
+ return (i = e.value) == null ? void 0 : i.autoDismissChanged();
3279
3313
  }
3280
3314
  }), { componentName: s, element: e };
3281
3315
  },
@@ -3287,7 +3321,8 @@ const Ct = l({
3287
3321
  attrs: {
3288
3322
  ...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
3289
3323
  ...this.open !== void 0 ? { open: this.open } : {},
3290
- ...this.placement !== void 0 ? { placement: this.placement } : {}
3324
+ ...this.placement !== void 0 ? { placement: this.placement } : {},
3325
+ ...this.autoDismiss !== void 0 ? { "auto-dismiss": this.autoDismiss } : {}
3291
3326
  },
3292
3327
  class: "vvd-root",
3293
3328
  domProps: { ...this.anchor !== void 0 ? { anchor: this.anchor } : {} },
@@ -3310,6 +3345,7 @@ const Ct = l({
3310
3345
  ...this.open !== void 0 ? { open: this.open } : {},
3311
3346
  ...this.placement !== void 0 ? { placement: this.placement } : {},
3312
3347
  ...this.anchor !== void 0 ? { anchor: this.anchor } : {},
3348
+ ...this.autoDismiss !== void 0 ? { "auto-dismiss": this.autoDismiss } : {},
3313
3349
  onClick: (t) => this.$emit("click", t),
3314
3350
  onFocus: (t) => this.$emit("focus", t),
3315
3351
  onBlur: (t) => this.$emit("blur", t),
@@ -3323,7 +3359,7 @@ const Ct = l({
3323
3359
  ]
3324
3360
  );
3325
3361
  }
3326
- }), Ht = l({
3362
+ }), Gt = l({
3327
3363
  name: "VMenuItem",
3328
3364
  model: a ? {
3329
3365
  prop: "modelValue",
@@ -3513,7 +3549,7 @@ const Ct = l({
3513
3549
  "input"
3514
3550
  ],
3515
3551
  setup(t, o) {
3516
- const s = h("nav", E), e = d(null);
3552
+ const s = h("nav", H), e = d(null);
3517
3553
  return o.expose({}), { componentName: s, element: e };
3518
3554
  },
3519
3555
  render() {
@@ -3609,7 +3645,7 @@ const Ct = l({
3609
3645
  "input"
3610
3646
  ],
3611
3647
  setup(t, o) {
3612
- const s = h("nav-disclosure", G), e = d(null);
3648
+ const s = h("nav-disclosure", E), e = d(null);
3613
3649
  return o.expose({}), { componentName: s, element: e };
3614
3650
  },
3615
3651
  render() {
@@ -3744,7 +3780,7 @@ const Ct = l({
3744
3780
  "input"
3745
3781
  ],
3746
3782
  setup(t, o) {
3747
- const s = h("nav-item", H), e = d(null);
3783
+ const s = h("nav-item", G), e = d(null);
3748
3784
  return o.expose({}), { componentName: s, element: e };
3749
3785
  },
3750
3786
  render() {
@@ -5162,7 +5198,8 @@ const Ct = l({
5162
5198
  */
5163
5199
  multiple: { type: Boolean, default: void 0 },
5164
5200
  appearance: { type: String, default: void 0 },
5165
- shape: { type: String, default: void 0 }
5201
+ shape: { type: String, default: void 0 },
5202
+ fixedDropdown: { type: Boolean, default: void 0 }
5166
5203
  },
5167
5204
  emits: [
5168
5205
  /**
@@ -5256,7 +5293,8 @@ const Ct = l({
5256
5293
  ...this.position !== void 0 ? { position: this.position } : {},
5257
5294
  ...this.multiple !== void 0 ? { multiple: this.multiple } : {},
5258
5295
  ...this.appearance !== void 0 ? { appearance: this.appearance } : {},
5259
- ...this.shape !== void 0 ? { shape: this.shape } : {}
5296
+ ...this.shape !== void 0 ? { shape: this.shape } : {},
5297
+ ...this.fixedDropdown !== void 0 ? { "fixed-dropdown": this.fixedDropdown } : {}
5260
5298
  },
5261
5299
  class: "vvd-root",
5262
5300
  on: {
@@ -5296,6 +5334,7 @@ const Ct = l({
5296
5334
  ...this.multiple !== void 0 ? { multiple: this.multiple } : {},
5297
5335
  ...this.appearance !== void 0 ? { appearance: this.appearance } : {},
5298
5336
  ...this.shape !== void 0 ? { shape: this.shape } : {},
5337
+ ...this.fixedDropdown !== void 0 ? { "fixed-dropdown": this.fixedDropdown } : {},
5299
5338
  onClick: (t) => this.$emit("click", t),
5300
5339
  onFocus: (t) => this.$emit("focus", t),
5301
5340
  onBlur: (t) => this.$emit("blur", t),
@@ -7085,8 +7124,8 @@ const Ct = l({
7085
7124
  }
7086
7125
  });
7087
7126
  export {
7088
- kt as VAccordion,
7089
- gt as VAccordionItem,
7127
+ gt as VAccordion,
7128
+ kt as VAccordionItem,
7090
7129
  bt as VActionGroup,
7091
7130
  Ct as VAlert,
7092
7131
  xt as VAvatar,
@@ -7101,15 +7140,15 @@ export {
7101
7140
  zt as VCheckbox,
7102
7141
  Ft as VCombobox,
7103
7142
  qt as VDataGrid,
7104
- Pt as VDialog,
7105
- Lt as VDivider,
7106
- Dt as VEmptyState,
7143
+ Dt as VDialog,
7144
+ Pt as VDivider,
7145
+ Lt as VEmptyState,
7107
7146
  Mt as VFab,
7108
7147
  At as VHeader,
7109
7148
  Ot as VIcon,
7110
- Et as VLayout,
7111
- Gt as VMenu,
7112
- Ht as VMenuItem,
7149
+ Ht as VLayout,
7150
+ Et as VMenu,
7151
+ Gt as VMenuItem,
7113
7152
  Rt as VNav,
7114
7153
  Wt as VNavDisclosure,
7115
7154
  jt as VNavItem,