@tb-dev/vue 0.3.34 → 0.3.36

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.
@@ -14,6 +14,7 @@ export * from './input-number';
14
14
  export * from './input-text';
15
15
  export * from './label';
16
16
  export * from './link';
17
+ export * from './loading';
17
18
  export * from './menubar';
18
19
  export * from './pagination';
19
20
  export * from './popover';
@@ -16,7 +16,7 @@ declare const _default: import('vue').DefineComponent<InputProps, {
16
16
  type: import('vue').InputTypeHTMLAttribute;
17
17
  spellcheck: boolean | "true" | "false";
18
18
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
19
- baseInput: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
19
+ inputComponent: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
20
20
  defaultValue?: string | number;
21
21
  modelValue?: string | number;
22
22
  class?: import('vue').HTMLAttributes["class"];
@@ -1,14 +1,76 @@
1
1
  import { Option } from '@tb-dev/utils';
2
2
  import { InputTextProps } from './types';
3
3
  type __VLS_Props = InputTextProps;
4
+ declare function focus(): void;
5
+ declare function blur(): void;
6
+ declare function select(): void;
4
7
  type __VLS_PublicProps = {
5
8
  modelValue: Option<string>;
6
9
  } & __VLS_Props;
7
- declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
11
+ inputEl: import('vue').ComputedRef<Option<HTMLInputElement>>;
12
+ focus: typeof focus;
13
+ blur: typeof blur;
14
+ select: typeof select;
15
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
16
  "update:modelValue": (value: Option<string>) => any;
9
17
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
18
  "onUpdate:modelValue"?: ((value: Option<string>) => any) | undefined;
11
19
  }>, {
12
20
  spellcheck: boolean | "true" | "false";
13
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
21
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
22
+ inputComponent: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').InputProps> & Readonly<{
23
+ "onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
24
+ }>, {
25
+ inputEl: import('vue').ComputedRef<Option<HTMLInputElement>>;
26
+ focus: () => void;
27
+ blur: () => void;
28
+ select: () => void;
29
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
30
+ "update:modelValue": (value: string | null) => any;
31
+ }, import('vue').PublicProps, {
32
+ type: import('vue').InputTypeHTMLAttribute;
33
+ spellcheck: boolean | "true" | "false";
34
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
35
+ inputComponent: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
36
+ defaultValue?: string | number;
37
+ modelValue?: string | number;
38
+ class?: import('vue').HTMLAttributes["class"];
39
+ }> & Readonly<{
40
+ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
41
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
42
+ "update:modelValue": (payload: string | number) => any;
43
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLInputElement, import('vue').ComponentProvideOptions, {
44
+ P: {};
45
+ B: {};
46
+ D: {};
47
+ C: {};
48
+ M: {};
49
+ Defaults: {};
50
+ }, Readonly<{
51
+ defaultValue?: string | number;
52
+ modelValue?: string | number;
53
+ class?: import('vue').HTMLAttributes["class"];
54
+ }> & Readonly<{
55
+ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
56
+ }>, {}, {}, {}, {}, {}> | null;
57
+ }, any, import('vue').ComponentProvideOptions, {
58
+ P: {};
59
+ B: {};
60
+ D: {};
61
+ C: {};
62
+ M: {};
63
+ Defaults: {};
64
+ }, Readonly<import('..').InputProps> & Readonly<{
65
+ "onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
66
+ }>, {
67
+ inputEl: import('vue').ComputedRef<Option<HTMLInputElement>>;
68
+ focus: () => void;
69
+ blur: () => void;
70
+ select: () => void;
71
+ }, {}, {}, {}, {
72
+ type: import('vue').InputTypeHTMLAttribute;
73
+ spellcheck: boolean | "true" | "false";
74
+ }> | null;
75
+ }, any>;
14
76
  export default _default;
@@ -0,0 +1,3 @@
1
+ import { LoadingProps } from './types';
2
+ declare const _default: import('vue').DefineComponent<LoadingProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<LoadingProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { default as Loading } from './Loading.vue';
2
+ export type * from './types';
3
+ export { Loading };
@@ -0,0 +1,6 @@
1
+ import { Component, HTMLAttributes } from 'vue';
2
+ export interface LoadingProps {
3
+ class?: HTMLAttributes['class'];
4
+ icon?: Component;
5
+ iconClass?: HTMLAttributes['class'];
6
+ }
@@ -1,5 +1,8 @@
1
1
  import { TextareaProps } from './types';
2
- declare const _default: import('vue').DefineComponent<TextareaProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
+ import { Option } from '@tb-dev/utils';
3
+ declare const _default: import('vue').DefineComponent<TextareaProps, {
4
+ textareaEl: import('vue').ComputedRef<Option<HTMLTextAreaElement>>;
5
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3
6
  "update:modelValue": (value: string | null) => any;
4
7
  }, string, import('vue').PublicProps, Readonly<TextareaProps> & Readonly<{
5
8
  "onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
@@ -7,5 +10,28 @@ declare const _default: import('vue').DefineComponent<TextareaProps, {}, {}, {},
7
10
  autocomplete: string;
8
11
  spellcheck: boolean | "true" | "false";
9
12
  autocorrect: string;
10
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
14
+ textareaComponent: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
15
+ class?: import('vue').HTMLAttributes["class"];
16
+ defaultValue?: string | number;
17
+ modelValue?: string | number;
18
+ }> & Readonly<{
19
+ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
20
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
21
+ "update:modelValue": (payload: string | number) => any;
22
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLTextAreaElement, import('vue').ComponentProvideOptions, {
23
+ P: {};
24
+ B: {};
25
+ D: {};
26
+ C: {};
27
+ M: {};
28
+ Defaults: {};
29
+ }, Readonly<{
30
+ class?: import('vue').HTMLAttributes["class"];
31
+ defaultValue?: string | number;
32
+ modelValue?: string | number;
33
+ }> & Readonly<{
34
+ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
35
+ }>, {}, {}, {}, {}, {}> | null;
36
+ }, any>;
11
37
  export default _default;
package/dist/index.css CHANGED
@@ -87,3 +87,18 @@
87
87
  color: var(--foreground);
88
88
  }
89
89
  }
90
+
91
+ .loading-icon[data-v-ca73f031] {
92
+ animation-duration: 1500ms;
93
+ animation-timing-function: linear;
94
+ animation-iteration-count: infinite;
95
+ animation-name: spin-ca73f031;
96
+ }
97
+ @keyframes spin-ca73f031 {
98
+ from {
99
+ transform: rotate(0deg);
100
+ }
101
+ to {
102
+ transform: rotate(360deg);
103
+ }
104
+ }
package/dist/index.js CHANGED
@@ -7,7 +7,8 @@ import { Primitive, ScrollAreaScrollbar, ScrollAreaThumb, ScrollAreaRoot, Scroll
7
7
  export { ComboboxCancel, ComboboxTrigger, DropdownMenuPortal, PaginationList, PaginationListItem } from 'reka-ui';
8
8
  import { RouterLink } from 'vue-router';
9
9
  import { createReusableTemplate, reactiveOmit, useVModel, onClickOutside, useMediaQuery, useEventListener, computedAsync, useAsyncState, useWindowSize, useElementSize as useElementSize$1, tryOnScopeDispose, onKeyStroke, useLocalStorage } from '@vueuse/core';
10
- import { Check, SearchIcon, Circle, ChevronRight, X, Minus, Plus, MoreHorizontal, ChevronLeftIcon, ChevronRightIcon, CircleIcon, GripVertical, ChevronDown, ChevronUp, PanelLeft } from 'lucide-vue-next';
10
+ import { Check, SearchIcon, Circle, ChevronRight, X, Minus, Plus, LoaderCircle, MoreHorizontal, ChevronLeftIcon, ChevronRightIcon, CircleIcon, GripVertical, ChevronDown, ChevronUp, PanelLeft } from 'lucide-vue-next';
11
+ import { cn as cn$1 } from '@tb-dev/vue';
11
12
  import { Toaster } from 'vue-sonner';
12
13
  export { toast as sonner } from 'vue-sonner';
13
14
 
@@ -90,7 +91,7 @@ function cn(...inputs) {
90
91
  return twMerge(clsx(inputs));
91
92
  }
92
93
 
93
- const _sfc_main$2Y = /* @__PURE__ */ defineComponent({
94
+ const _sfc_main$2Z = /* @__PURE__ */ defineComponent({
94
95
  __name: "Badge",
95
96
  props: {
96
97
  asChild: { type: Boolean },
@@ -135,7 +136,7 @@ const badgeVariants = cva(
135
136
  }
136
137
  );
137
138
 
138
- const _sfc_main$2X = /* @__PURE__ */ defineComponent({
139
+ const _sfc_main$2Y = /* @__PURE__ */ defineComponent({
139
140
  __name: "Button",
140
141
  props: {
141
142
  variant: {},
@@ -192,7 +193,7 @@ const buttonVariants = cva(
192
193
 
193
194
  const _hoisted_1$i = { key: 0 };
194
195
  const _hoisted_2$2 = { key: 0 };
195
- const _sfc_main$2W = /* @__PURE__ */ defineComponent({
196
+ const _sfc_main$2X = /* @__PURE__ */ defineComponent({
196
197
  ...{
197
198
  inheritAttrs: false
198
199
  },
@@ -212,7 +213,7 @@ const _sfc_main$2W = /* @__PURE__ */ defineComponent({
212
213
  return openBlock(), createElementBlock(Fragment, null, [
213
214
  createVNode(unref(DefineTemplate), null, {
214
215
  default: withCtx(() => [
215
- createVNode(unref(_sfc_main$2X), mergeProps(_ctx.$attrs, {
216
+ createVNode(unref(_sfc_main$2Y), mergeProps(_ctx.$attrs, {
216
217
  variant: _ctx.variant,
217
218
  size: _ctx.size,
218
219
  disabled: _ctx.disabled,
@@ -243,7 +244,7 @@ const _sfc_main$2W = /* @__PURE__ */ defineComponent({
243
244
  }
244
245
  });
245
246
 
246
- const _sfc_main$2V = /* @__PURE__ */ defineComponent({
247
+ const _sfc_main$2W = /* @__PURE__ */ defineComponent({
247
248
  __name: "ButtonIcon",
248
249
  props: {
249
250
  buttonClass: {},
@@ -256,7 +257,7 @@ const _sfc_main$2V = /* @__PURE__ */ defineComponent({
256
257
  setup(__props) {
257
258
  const props = __props;
258
259
  return (_ctx, _cache) => {
259
- return _ctx.to ? (openBlock(), createBlock(unref(_sfc_main$2W), {
260
+ return _ctx.to ? (openBlock(), createBlock(unref(_sfc_main$2X), {
260
261
  key: 0,
261
262
  to: _ctx.to,
262
263
  variant: "ghost",
@@ -271,7 +272,7 @@ const _sfc_main$2V = /* @__PURE__ */ defineComponent({
271
272
  }, null, 8, ["class", "size"]))
272
273
  ]),
273
274
  _: 1
274
- }, 8, ["to", "class", "button-class"])) : (openBlock(), createBlock(unref(_sfc_main$2X), {
275
+ }, 8, ["to", "class", "button-class"])) : (openBlock(), createBlock(unref(_sfc_main$2Y), {
275
276
  key: 1,
276
277
  variant: "ghost",
277
278
  size: "icon",
@@ -289,7 +290,7 @@ const _sfc_main$2V = /* @__PURE__ */ defineComponent({
289
290
  }
290
291
  });
291
292
 
292
- const _sfc_main$2U = /* @__PURE__ */ defineComponent({
293
+ const _sfc_main$2V = /* @__PURE__ */ defineComponent({
293
294
  __name: "ScrollBar",
294
295
  props: {
295
296
  orientation: { default: "vertical" },
@@ -325,7 +326,7 @@ const _sfc_main$2U = /* @__PURE__ */ defineComponent({
325
326
  }
326
327
  });
327
328
 
328
- const _sfc_main$2T = /* @__PURE__ */ defineComponent({
329
+ const _sfc_main$2U = /* @__PURE__ */ defineComponent({
329
330
  __name: "ScrollArea",
330
331
  props: {
331
332
  type: {},
@@ -355,7 +356,7 @@ const _sfc_main$2T = /* @__PURE__ */ defineComponent({
355
356
  ]),
356
357
  _: 3
357
358
  }),
358
- createVNode(_sfc_main$2U),
359
+ createVNode(_sfc_main$2V),
359
360
  createVNode(unref(ScrollAreaCorner))
360
361
  ]),
361
362
  _: 3
@@ -364,7 +365,7 @@ const _sfc_main$2T = /* @__PURE__ */ defineComponent({
364
365
  }
365
366
  });
366
367
 
367
- const _sfc_main$2S = /* @__PURE__ */ defineComponent({
368
+ const _sfc_main$2T = /* @__PURE__ */ defineComponent({
368
369
  __name: "Card",
369
370
  props: {
370
371
  class: {}
@@ -387,7 +388,7 @@ const _sfc_main$2S = /* @__PURE__ */ defineComponent({
387
388
  }
388
389
  });
389
390
 
390
- const _sfc_main$2R = /* @__PURE__ */ defineComponent({
391
+ const _sfc_main$2S = /* @__PURE__ */ defineComponent({
391
392
  __name: "CardContent",
392
393
  props: {
393
394
  class: {}
@@ -405,7 +406,7 @@ const _sfc_main$2R = /* @__PURE__ */ defineComponent({
405
406
  }
406
407
  });
407
408
 
408
- const _sfc_main$2Q = /* @__PURE__ */ defineComponent({
409
+ const _sfc_main$2R = /* @__PURE__ */ defineComponent({
409
410
  __name: "CardDescription",
410
411
  props: {
411
412
  class: {}
@@ -423,7 +424,7 @@ const _sfc_main$2Q = /* @__PURE__ */ defineComponent({
423
424
  }
424
425
  });
425
426
 
426
- const _sfc_main$2P = /* @__PURE__ */ defineComponent({
427
+ const _sfc_main$2Q = /* @__PURE__ */ defineComponent({
427
428
  __name: "CardFooter",
428
429
  props: {
429
430
  class: {}
@@ -441,7 +442,7 @@ const _sfc_main$2P = /* @__PURE__ */ defineComponent({
441
442
  }
442
443
  });
443
444
 
444
- const _sfc_main$2O = /* @__PURE__ */ defineComponent({
445
+ const _sfc_main$2P = /* @__PURE__ */ defineComponent({
445
446
  __name: "CardHeader",
446
447
  props: {
447
448
  class: {}
@@ -464,7 +465,7 @@ const _sfc_main$2O = /* @__PURE__ */ defineComponent({
464
465
  }
465
466
  });
466
467
 
467
- const _sfc_main$2N = /* @__PURE__ */ defineComponent({
468
+ const _sfc_main$2O = /* @__PURE__ */ defineComponent({
468
469
  __name: "CardTitle",
469
470
  props: {
470
471
  class: {}
@@ -482,7 +483,7 @@ const _sfc_main$2N = /* @__PURE__ */ defineComponent({
482
483
  }
483
484
  });
484
485
 
485
- const _sfc_main$2M = /* @__PURE__ */ defineComponent({
486
+ const _sfc_main$2N = /* @__PURE__ */ defineComponent({
486
487
  __name: "Card",
487
488
  props: {
488
489
  contentClass: {},
@@ -495,14 +496,14 @@ const _sfc_main$2M = /* @__PURE__ */ defineComponent({
495
496
  },
496
497
  setup(__props) {
497
498
  return (_ctx, _cache) => {
498
- return openBlock(), createBlock(unref(_sfc_main$2S), null, {
499
+ return openBlock(), createBlock(unref(_sfc_main$2T), null, {
499
500
  default: withCtx(() => [
500
- _ctx.$slots.title ? (openBlock(), createBlock(unref(_sfc_main$2O), {
501
+ _ctx.$slots.title ? (openBlock(), createBlock(unref(_sfc_main$2P), {
501
502
  key: 0,
502
503
  class: normalizeClass(_ctx.headerClass)
503
504
  }, {
504
505
  default: withCtx(() => [
505
- createVNode(unref(_sfc_main$2N), {
506
+ createVNode(unref(_sfc_main$2O), {
506
507
  class: normalizeClass(_ctx.titleClass)
507
508
  }, {
508
509
  default: withCtx(() => [
@@ -510,7 +511,7 @@ const _sfc_main$2M = /* @__PURE__ */ defineComponent({
510
511
  ]),
511
512
  _: 3
512
513
  }, 8, ["class"]),
513
- _ctx.$slots.description ? (openBlock(), createBlock(unref(_sfc_main$2Q), {
514
+ _ctx.$slots.description ? (openBlock(), createBlock(unref(_sfc_main$2R), {
514
515
  key: 0,
515
516
  class: normalizeClass(_ctx.descriptionClass)
516
517
  }, {
@@ -522,12 +523,12 @@ const _sfc_main$2M = /* @__PURE__ */ defineComponent({
522
523
  ]),
523
524
  _: 3
524
525
  }, 8, ["class"])) : createCommentVNode("", true),
525
- _ctx.$slots.default ? (openBlock(), createBlock(unref(_sfc_main$2R), {
526
+ _ctx.$slots.default ? (openBlock(), createBlock(unref(_sfc_main$2S), {
526
527
  key: 1,
527
528
  class: normalizeClass(unref(cn)("p-0", _ctx.contentClass))
528
529
  }, {
529
530
  default: withCtx(() => [
530
- _ctx.scrollAreaHeight && _ctx.scrollAreaHeight !== "auto" ? (openBlock(), createBlock(unref(_sfc_main$2T), {
531
+ _ctx.scrollAreaHeight && _ctx.scrollAreaHeight !== "auto" ? (openBlock(), createBlock(unref(_sfc_main$2U), {
531
532
  key: 0,
532
533
  class: normalizeClass(_ctx.scrollAreaClass),
533
534
  style: normalizeStyle({ height: unref(toPixel)(_ctx.scrollAreaHeight) })
@@ -540,7 +541,7 @@ const _sfc_main$2M = /* @__PURE__ */ defineComponent({
540
541
  ]),
541
542
  _: 3
542
543
  }, 8, ["class"])) : createCommentVNode("", true),
543
- _ctx.$slots.footer ? (openBlock(), createBlock(unref(_sfc_main$2P), {
544
+ _ctx.$slots.footer ? (openBlock(), createBlock(unref(_sfc_main$2Q), {
544
545
  key: 2,
545
546
  class: normalizeClass(_ctx.footerClass)
546
547
  }, {
@@ -556,7 +557,7 @@ const _sfc_main$2M = /* @__PURE__ */ defineComponent({
556
557
  }
557
558
  });
558
559
 
559
- const _sfc_main$2L = /* @__PURE__ */ defineComponent({
560
+ const _sfc_main$2M = /* @__PURE__ */ defineComponent({
560
561
  __name: "Label",
561
562
  props: {
562
563
  for: {},
@@ -586,7 +587,7 @@ const _sfc_main$2L = /* @__PURE__ */ defineComponent({
586
587
  }
587
588
  });
588
589
 
589
- const _sfc_main$2K = /* @__PURE__ */ defineComponent({
590
+ const _sfc_main$2L = /* @__PURE__ */ defineComponent({
590
591
  __name: "Checkbox",
591
592
  props: {
592
593
  defaultValue: { type: [Boolean, String] },
@@ -636,7 +637,7 @@ const _sfc_main$2K = /* @__PURE__ */ defineComponent({
636
637
  });
637
638
 
638
639
  const _hoisted_1$h = { class: "w-full" };
639
- const _sfc_main$2J = /* @__PURE__ */ defineComponent({
640
+ const _sfc_main$2K = /* @__PURE__ */ defineComponent({
640
641
  ...{
641
642
  inheritAttrs: false
642
643
  },
@@ -661,7 +662,7 @@ const _sfc_main$2J = /* @__PURE__ */ defineComponent({
661
662
  return openBlock(), createElementBlock(Fragment, null, [
662
663
  createVNode(unref(DefineTemplate), null, {
663
664
  default: withCtx(() => [
664
- createVNode(unref(_sfc_main$2K), mergeProps(_ctx.$attrs, {
665
+ createVNode(unref(_sfc_main$2L), mergeProps(_ctx.$attrs, {
665
666
  modelValue: value.value,
666
667
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => value.value = $event),
667
668
  "default-value": _ctx.defaultValue,
@@ -672,7 +673,7 @@ const _sfc_main$2J = /* @__PURE__ */ defineComponent({
672
673
  ]),
673
674
  _: 1
674
675
  }),
675
- _ctx.label ? (openBlock(), createBlock(unref(_sfc_main$2L), {
676
+ _ctx.label ? (openBlock(), createBlock(unref(_sfc_main$2M), {
676
677
  key: 0,
677
678
  class: normalizeClass(unref(cn)("flex flex-row items-center justify-start gap-1 font-normal", _ctx.labelClass))
678
679
  }, {
@@ -691,7 +692,7 @@ function toBooleanCheckboxValue(value) {
691
692
  return value === true;
692
693
  }
693
694
 
694
- const _sfc_main$2I = /* @__PURE__ */ defineComponent({
695
+ const _sfc_main$2J = /* @__PURE__ */ defineComponent({
695
696
  __name: "Combobox",
696
697
  props: {
697
698
  open: { type: Boolean },
@@ -727,7 +728,7 @@ const _sfc_main$2I = /* @__PURE__ */ defineComponent({
727
728
  }
728
729
  });
729
730
 
730
- const _sfc_main$2H = /* @__PURE__ */ defineComponent({
731
+ const _sfc_main$2I = /* @__PURE__ */ defineComponent({
731
732
  __name: "ComboboxAnchor",
732
733
  props: {
733
734
  reference: {},
@@ -755,7 +756,7 @@ const _sfc_main$2H = /* @__PURE__ */ defineComponent({
755
756
  }
756
757
  });
757
758
 
758
- const _sfc_main$2G = /* @__PURE__ */ defineComponent({
759
+ const _sfc_main$2H = /* @__PURE__ */ defineComponent({
759
760
  __name: "ComboboxEmpty",
760
761
  props: {
761
762
  asChild: { type: Boolean },
@@ -781,7 +782,7 @@ const _sfc_main$2G = /* @__PURE__ */ defineComponent({
781
782
  }
782
783
  });
783
784
 
784
- const _sfc_main$2F = /* @__PURE__ */ defineComponent({
785
+ const _sfc_main$2G = /* @__PURE__ */ defineComponent({
785
786
  __name: "ComboboxGroup",
786
787
  props: {
787
788
  asChild: { type: Boolean },
@@ -821,7 +822,7 @@ const _hoisted_1$g = {
821
822
  "data-slot": "command-input-wrapper",
822
823
  class: "flex h-9 items-center gap-2 border-b px-3"
823
824
  };
824
- const _sfc_main$2E = /* @__PURE__ */ defineComponent({
825
+ const _sfc_main$2F = /* @__PURE__ */ defineComponent({
825
826
  ...{
826
827
  inheritAttrs: false
827
828
  },
@@ -864,7 +865,7 @@ const _sfc_main$2E = /* @__PURE__ */ defineComponent({
864
865
  }
865
866
  });
866
867
 
867
- const _sfc_main$2D = /* @__PURE__ */ defineComponent({
868
+ const _sfc_main$2E = /* @__PURE__ */ defineComponent({
868
869
  __name: "ComboboxItem",
869
870
  props: {
870
871
  textValue: {},
@@ -899,7 +900,7 @@ const _sfc_main$2D = /* @__PURE__ */ defineComponent({
899
900
  }
900
901
  });
901
902
 
902
- const _sfc_main$2C = /* @__PURE__ */ defineComponent({
903
+ const _sfc_main$2D = /* @__PURE__ */ defineComponent({
903
904
  __name: "ComboboxItemIndicator",
904
905
  props: {
905
906
  asChild: { type: Boolean },
@@ -926,7 +927,7 @@ const _sfc_main$2C = /* @__PURE__ */ defineComponent({
926
927
  }
927
928
  });
928
929
 
929
- const _sfc_main$2B = /* @__PURE__ */ defineComponent({
930
+ const _sfc_main$2C = /* @__PURE__ */ defineComponent({
930
931
  __name: "ComboboxList",
931
932
  props: {
932
933
  forceMount: { type: Boolean },
@@ -980,7 +981,7 @@ const _sfc_main$2B = /* @__PURE__ */ defineComponent({
980
981
  }
981
982
  });
982
983
 
983
- const _sfc_main$2A = /* @__PURE__ */ defineComponent({
984
+ const _sfc_main$2B = /* @__PURE__ */ defineComponent({
984
985
  __name: "ComboboxSeparator",
985
986
  props: {
986
987
  asChild: { type: Boolean },
@@ -1006,7 +1007,7 @@ const _sfc_main$2A = /* @__PURE__ */ defineComponent({
1006
1007
  }
1007
1008
  });
1008
1009
 
1009
- const _sfc_main$2z = /* @__PURE__ */ defineComponent({
1010
+ const _sfc_main$2A = /* @__PURE__ */ defineComponent({
1010
1011
  __name: "ComboboxViewport",
1011
1012
  props: {
1012
1013
  nonce: {},
@@ -1034,7 +1035,7 @@ const _sfc_main$2z = /* @__PURE__ */ defineComponent({
1034
1035
  }
1035
1036
  });
1036
1037
 
1037
- const _sfc_main$2y = /* @__PURE__ */ defineComponent({
1038
+ const _sfc_main$2z = /* @__PURE__ */ defineComponent({
1038
1039
  __name: "ContextMenu",
1039
1040
  props: {
1040
1041
  dir: {},
@@ -1057,7 +1058,7 @@ const _sfc_main$2y = /* @__PURE__ */ defineComponent({
1057
1058
  });
1058
1059
 
1059
1060
  const _hoisted_1$f = { class: "pointer-events-none absolute left-2 flex size-3.5 items-center justify-center" };
1060
- const _sfc_main$2x = /* @__PURE__ */ defineComponent({
1061
+ const _sfc_main$2y = /* @__PURE__ */ defineComponent({
1061
1062
  __name: "ContextMenuCheckboxItem",
1062
1063
  props: {
1063
1064
  modelValue: { type: [Boolean, String] },
@@ -1100,7 +1101,7 @@ const _sfc_main$2x = /* @__PURE__ */ defineComponent({
1100
1101
  }
1101
1102
  });
1102
1103
 
1103
- const _sfc_main$2w = /* @__PURE__ */ defineComponent({
1104
+ const _sfc_main$2x = /* @__PURE__ */ defineComponent({
1104
1105
  __name: "ContextMenuContent",
1105
1106
  props: {
1106
1107
  forceMount: { type: Boolean },
@@ -1149,7 +1150,7 @@ const _sfc_main$2w = /* @__PURE__ */ defineComponent({
1149
1150
  }
1150
1151
  });
1151
1152
 
1152
- const _sfc_main$2v = /* @__PURE__ */ defineComponent({
1153
+ const _sfc_main$2w = /* @__PURE__ */ defineComponent({
1153
1154
  __name: "ContextMenuGroup",
1154
1155
  props: {
1155
1156
  asChild: { type: Boolean },
@@ -1168,7 +1169,7 @@ const _sfc_main$2v = /* @__PURE__ */ defineComponent({
1168
1169
  }
1169
1170
  });
1170
1171
 
1171
- const _sfc_main$2u = /* @__PURE__ */ defineComponent({
1172
+ const _sfc_main$2v = /* @__PURE__ */ defineComponent({
1172
1173
  __name: "ContextMenuItem",
1173
1174
  props: {
1174
1175
  disabled: { type: Boolean },
@@ -1208,7 +1209,7 @@ const _sfc_main$2u = /* @__PURE__ */ defineComponent({
1208
1209
  }
1209
1210
  });
1210
1211
 
1211
- const _sfc_main$2t = /* @__PURE__ */ defineComponent({
1212
+ const _sfc_main$2u = /* @__PURE__ */ defineComponent({
1212
1213
  __name: "ContextMenuLabel",
1213
1214
  props: {
1214
1215
  asChild: { type: Boolean },
@@ -1238,7 +1239,7 @@ const _sfc_main$2t = /* @__PURE__ */ defineComponent({
1238
1239
  }
1239
1240
  });
1240
1241
 
1241
- const _sfc_main$2s = /* @__PURE__ */ defineComponent({
1242
+ const _sfc_main$2t = /* @__PURE__ */ defineComponent({
1242
1243
  __name: "ContextMenuRadioGroup",
1243
1244
  props: {
1244
1245
  modelValue: {},
@@ -1262,7 +1263,7 @@ const _sfc_main$2s = /* @__PURE__ */ defineComponent({
1262
1263
  });
1263
1264
 
1264
1265
  const _hoisted_1$e = { class: "pointer-events-none absolute left-2 flex size-3.5 items-center justify-center" };
1265
- const _sfc_main$2r = /* @__PURE__ */ defineComponent({
1266
+ const _sfc_main$2s = /* @__PURE__ */ defineComponent({
1266
1267
  __name: "ContextMenuRadioItem",
1267
1268
  props: {
1268
1269
  value: {},
@@ -1305,7 +1306,7 @@ const _sfc_main$2r = /* @__PURE__ */ defineComponent({
1305
1306
  }
1306
1307
  });
1307
1308
 
1308
- const _sfc_main$2q = /* @__PURE__ */ defineComponent({
1309
+ const _sfc_main$2r = /* @__PURE__ */ defineComponent({
1309
1310
  __name: "ContextMenuSeparator",
1310
1311
  props: {
1311
1312
  asChild: { type: Boolean },
@@ -1326,7 +1327,7 @@ const _sfc_main$2q = /* @__PURE__ */ defineComponent({
1326
1327
  }
1327
1328
  });
1328
1329
 
1329
- const _sfc_main$2p = /* @__PURE__ */ defineComponent({
1330
+ const _sfc_main$2q = /* @__PURE__ */ defineComponent({
1330
1331
  __name: "ContextMenuShortcut",
1331
1332
  props: {
1332
1333
  class: {}
@@ -1344,7 +1345,7 @@ const _sfc_main$2p = /* @__PURE__ */ defineComponent({
1344
1345
  }
1345
1346
  });
1346
1347
 
1347
- const _sfc_main$2o = /* @__PURE__ */ defineComponent({
1348
+ const _sfc_main$2p = /* @__PURE__ */ defineComponent({
1348
1349
  __name: "ContextMenuSub",
1349
1350
  props: {
1350
1351
  defaultOpen: { type: Boolean },
@@ -1366,7 +1367,7 @@ const _sfc_main$2o = /* @__PURE__ */ defineComponent({
1366
1367
  }
1367
1368
  });
1368
1369
 
1369
- const _sfc_main$2n = /* @__PURE__ */ defineComponent({
1370
+ const _sfc_main$2o = /* @__PURE__ */ defineComponent({
1370
1371
  __name: "ContextMenuSubContent",
1371
1372
  props: {
1372
1373
  forceMount: { type: Boolean },
@@ -1413,7 +1414,7 @@ const _sfc_main$2n = /* @__PURE__ */ defineComponent({
1413
1414
  }
1414
1415
  });
1415
1416
 
1416
- const _sfc_main$2m = /* @__PURE__ */ defineComponent({
1417
+ const _sfc_main$2n = /* @__PURE__ */ defineComponent({
1417
1418
  __name: "ContextMenuSubTrigger",
1418
1419
  props: {
1419
1420
  disabled: { type: Boolean },
@@ -1450,7 +1451,7 @@ const _sfc_main$2m = /* @__PURE__ */ defineComponent({
1450
1451
  }
1451
1452
  });
1452
1453
 
1453
- const _sfc_main$2l = /* @__PURE__ */ defineComponent({
1454
+ const _sfc_main$2m = /* @__PURE__ */ defineComponent({
1454
1455
  __name: "ContextMenuTrigger",
1455
1456
  props: {
1456
1457
  disabled: { type: Boolean },
@@ -1471,7 +1472,7 @@ const _sfc_main$2l = /* @__PURE__ */ defineComponent({
1471
1472
  }
1472
1473
  });
1473
1474
 
1474
- const _sfc_main$2k = /* @__PURE__ */ defineComponent({
1475
+ const _sfc_main$2l = /* @__PURE__ */ defineComponent({
1475
1476
  __name: "Dialog",
1476
1477
  props: {
1477
1478
  open: { type: Boolean },
@@ -1494,7 +1495,7 @@ const _sfc_main$2k = /* @__PURE__ */ defineComponent({
1494
1495
  }
1495
1496
  });
1496
1497
 
1497
- const _sfc_main$2j = /* @__PURE__ */ defineComponent({
1498
+ const _sfc_main$2k = /* @__PURE__ */ defineComponent({
1498
1499
  __name: "DialogClose",
1499
1500
  props: {
1500
1501
  asChild: { type: Boolean },
@@ -1513,7 +1514,7 @@ const _sfc_main$2j = /* @__PURE__ */ defineComponent({
1513
1514
  }
1514
1515
  });
1515
1516
 
1516
- const _sfc_main$2i = /* @__PURE__ */ defineComponent({
1517
+ const _sfc_main$2j = /* @__PURE__ */ defineComponent({
1517
1518
  __name: "DialogOverlay",
1518
1519
  props: {
1519
1520
  forceMount: { type: Boolean },
@@ -1543,7 +1544,7 @@ const _sfc_main$2i = /* @__PURE__ */ defineComponent({
1543
1544
  }
1544
1545
  });
1545
1546
 
1546
- const _sfc_main$2h = /* @__PURE__ */ defineComponent({
1547
+ const _sfc_main$2i = /* @__PURE__ */ defineComponent({
1547
1548
  __name: "DialogContent",
1548
1549
  props: {
1549
1550
  forceMount: { type: Boolean },
@@ -1565,7 +1566,7 @@ const _sfc_main$2h = /* @__PURE__ */ defineComponent({
1565
1566
  return (_ctx, _cache) => {
1566
1567
  return openBlock(), createBlock(unref(DialogPortal), null, {
1567
1568
  default: withCtx(() => [
1568
- createVNode(_sfc_main$2i),
1569
+ createVNode(_sfc_main$2j),
1569
1570
  createVNode(unref(DialogContent), mergeProps({ "data-slot": "dialog-content" }, unref(forwarded), {
1570
1571
  class: unref(cn)(
1571
1572
  "bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg",
@@ -1591,7 +1592,7 @@ const _sfc_main$2h = /* @__PURE__ */ defineComponent({
1591
1592
  }
1592
1593
  });
1593
1594
 
1594
- const _sfc_main$2g = /* @__PURE__ */ defineComponent({
1595
+ const _sfc_main$2h = /* @__PURE__ */ defineComponent({
1595
1596
  __name: "DialogDescription",
1596
1597
  props: {
1597
1598
  asChild: { type: Boolean },
@@ -1618,7 +1619,7 @@ const _sfc_main$2g = /* @__PURE__ */ defineComponent({
1618
1619
  }
1619
1620
  });
1620
1621
 
1621
- const _sfc_main$2f = /* @__PURE__ */ defineComponent({
1622
+ const _sfc_main$2g = /* @__PURE__ */ defineComponent({
1622
1623
  __name: "DialogFooter",
1623
1624
  props: {
1624
1625
  class: {}
@@ -1636,7 +1637,7 @@ const _sfc_main$2f = /* @__PURE__ */ defineComponent({
1636
1637
  }
1637
1638
  });
1638
1639
 
1639
- const _sfc_main$2e = /* @__PURE__ */ defineComponent({
1640
+ const _sfc_main$2f = /* @__PURE__ */ defineComponent({
1640
1641
  __name: "DialogHeader",
1641
1642
  props: {
1642
1643
  class: {}
@@ -1654,7 +1655,7 @@ const _sfc_main$2e = /* @__PURE__ */ defineComponent({
1654
1655
  }
1655
1656
  });
1656
1657
 
1657
- const _sfc_main$2d = /* @__PURE__ */ defineComponent({
1658
+ const _sfc_main$2e = /* @__PURE__ */ defineComponent({
1658
1659
  __name: "DialogScrollContent",
1659
1660
  props: {
1660
1661
  forceMount: { type: Boolean },
@@ -1714,7 +1715,7 @@ const _sfc_main$2d = /* @__PURE__ */ defineComponent({
1714
1715
  }
1715
1716
  });
1716
1717
 
1717
- const _sfc_main$2c = /* @__PURE__ */ defineComponent({
1718
+ const _sfc_main$2d = /* @__PURE__ */ defineComponent({
1718
1719
  __name: "DialogTitle",
1719
1720
  props: {
1720
1721
  asChild: { type: Boolean },
@@ -1741,7 +1742,7 @@ const _sfc_main$2c = /* @__PURE__ */ defineComponent({
1741
1742
  }
1742
1743
  });
1743
1744
 
1744
- const _sfc_main$2b = /* @__PURE__ */ defineComponent({
1745
+ const _sfc_main$2c = /* @__PURE__ */ defineComponent({
1745
1746
  __name: "DialogTrigger",
1746
1747
  props: {
1747
1748
  asChild: { type: Boolean },
@@ -1760,7 +1761,7 @@ const _sfc_main$2b = /* @__PURE__ */ defineComponent({
1760
1761
  }
1761
1762
  });
1762
1763
 
1763
- const _sfc_main$2a = /* @__PURE__ */ defineComponent({
1764
+ const _sfc_main$2b = /* @__PURE__ */ defineComponent({
1764
1765
  __name: "DropdownMenu",
1765
1766
  props: {
1766
1767
  defaultOpen: { type: Boolean },
@@ -1785,7 +1786,7 @@ const _sfc_main$2a = /* @__PURE__ */ defineComponent({
1785
1786
  });
1786
1787
 
1787
1788
  const _hoisted_1$d = { class: "pointer-events-none absolute left-2 flex size-3.5 items-center justify-center" };
1788
- const _sfc_main$29 = /* @__PURE__ */ defineComponent({
1789
+ const _sfc_main$2a = /* @__PURE__ */ defineComponent({
1789
1790
  __name: "DropdownMenuCheckboxItem",
1790
1791
  props: {
1791
1792
  modelValue: { type: [Boolean, String] },
@@ -1828,7 +1829,7 @@ const _sfc_main$29 = /* @__PURE__ */ defineComponent({
1828
1829
  }
1829
1830
  });
1830
1831
 
1831
- const _sfc_main$28 = /* @__PURE__ */ defineComponent({
1832
+ const _sfc_main$29 = /* @__PURE__ */ defineComponent({
1832
1833
  __name: "DropdownMenuContent",
1833
1834
  props: {
1834
1835
  forceMount: { type: Boolean },
@@ -1882,7 +1883,7 @@ const _sfc_main$28 = /* @__PURE__ */ defineComponent({
1882
1883
  }
1883
1884
  });
1884
1885
 
1885
- const _sfc_main$27 = /* @__PURE__ */ defineComponent({
1886
+ const _sfc_main$28 = /* @__PURE__ */ defineComponent({
1886
1887
  __name: "DropdownMenuGroup",
1887
1888
  props: {
1888
1889
  asChild: { type: Boolean },
@@ -1901,7 +1902,7 @@ const _sfc_main$27 = /* @__PURE__ */ defineComponent({
1901
1902
  }
1902
1903
  });
1903
1904
 
1904
- const _sfc_main$26 = /* @__PURE__ */ defineComponent({
1905
+ const _sfc_main$27 = /* @__PURE__ */ defineComponent({
1905
1906
  __name: "DropdownMenuItem",
1906
1907
  props: {
1907
1908
  disabled: { type: Boolean },
@@ -1936,7 +1937,7 @@ const _sfc_main$26 = /* @__PURE__ */ defineComponent({
1936
1937
  }
1937
1938
  });
1938
1939
 
1939
- const _sfc_main$25 = /* @__PURE__ */ defineComponent({
1940
+ const _sfc_main$26 = /* @__PURE__ */ defineComponent({
1940
1941
  __name: "DropdownMenuLabel",
1941
1942
  props: {
1942
1943
  asChild: { type: Boolean },
@@ -1964,7 +1965,7 @@ const _sfc_main$25 = /* @__PURE__ */ defineComponent({
1964
1965
  }
1965
1966
  });
1966
1967
 
1967
- const _sfc_main$24 = /* @__PURE__ */ defineComponent({
1968
+ const _sfc_main$25 = /* @__PURE__ */ defineComponent({
1968
1969
  __name: "DropdownMenuRadioGroup",
1969
1970
  props: {
1970
1971
  modelValue: {},
@@ -1988,7 +1989,7 @@ const _sfc_main$24 = /* @__PURE__ */ defineComponent({
1988
1989
  });
1989
1990
 
1990
1991
  const _hoisted_1$c = { class: "pointer-events-none absolute left-2 flex size-3.5 items-center justify-center" };
1991
- const _sfc_main$23 = /* @__PURE__ */ defineComponent({
1992
+ const _sfc_main$24 = /* @__PURE__ */ defineComponent({
1992
1993
  __name: "DropdownMenuRadioItem",
1993
1994
  props: {
1994
1995
  value: {},
@@ -2031,7 +2032,7 @@ const _sfc_main$23 = /* @__PURE__ */ defineComponent({
2031
2032
  }
2032
2033
  });
2033
2034
 
2034
- const _sfc_main$22 = /* @__PURE__ */ defineComponent({
2035
+ const _sfc_main$23 = /* @__PURE__ */ defineComponent({
2035
2036
  __name: "DropdownMenuSeparator",
2036
2037
  props: {
2037
2038
  asChild: { type: Boolean },
@@ -2052,7 +2053,7 @@ const _sfc_main$22 = /* @__PURE__ */ defineComponent({
2052
2053
  }
2053
2054
  });
2054
2055
 
2055
- const _sfc_main$21 = /* @__PURE__ */ defineComponent({
2056
+ const _sfc_main$22 = /* @__PURE__ */ defineComponent({
2056
2057
  __name: "DropdownMenuShortcut",
2057
2058
  props: {
2058
2059
  class: {}
@@ -2070,7 +2071,7 @@ const _sfc_main$21 = /* @__PURE__ */ defineComponent({
2070
2071
  }
2071
2072
  });
2072
2073
 
2073
- const _sfc_main$20 = /* @__PURE__ */ defineComponent({
2074
+ const _sfc_main$21 = /* @__PURE__ */ defineComponent({
2074
2075
  __name: "DropdownMenuSub",
2075
2076
  props: {
2076
2077
  defaultOpen: { type: Boolean },
@@ -2092,7 +2093,7 @@ const _sfc_main$20 = /* @__PURE__ */ defineComponent({
2092
2093
  }
2093
2094
  });
2094
2095
 
2095
- const _sfc_main$1$ = /* @__PURE__ */ defineComponent({
2096
+ const _sfc_main$20 = /* @__PURE__ */ defineComponent({
2096
2097
  __name: "DropdownMenuSubContent",
2097
2098
  props: {
2098
2099
  forceMount: { type: Boolean },
@@ -2139,7 +2140,7 @@ const _sfc_main$1$ = /* @__PURE__ */ defineComponent({
2139
2140
  }
2140
2141
  });
2141
2142
 
2142
- const _sfc_main$1_ = /* @__PURE__ */ defineComponent({
2143
+ const _sfc_main$1$ = /* @__PURE__ */ defineComponent({
2143
2144
  __name: "DropdownMenuSubTrigger",
2144
2145
  props: {
2145
2146
  disabled: { type: Boolean },
@@ -2170,7 +2171,7 @@ const _sfc_main$1_ = /* @__PURE__ */ defineComponent({
2170
2171
  }
2171
2172
  });
2172
2173
 
2173
- const _sfc_main$1Z = /* @__PURE__ */ defineComponent({
2174
+ const _sfc_main$1_ = /* @__PURE__ */ defineComponent({
2174
2175
  __name: "DropdownMenuTrigger",
2175
2176
  props: {
2176
2177
  disabled: { type: Boolean },
@@ -2191,7 +2192,7 @@ const _sfc_main$1Z = /* @__PURE__ */ defineComponent({
2191
2192
  }
2192
2193
  });
2193
2194
 
2194
- const _sfc_main$1Y = /* @__PURE__ */ defineComponent({
2195
+ const _sfc_main$1Z = /* @__PURE__ */ defineComponent({
2195
2196
  __name: "HoverCard",
2196
2197
  props: {
2197
2198
  defaultOpen: { type: Boolean },
@@ -2215,7 +2216,7 @@ const _sfc_main$1Y = /* @__PURE__ */ defineComponent({
2215
2216
  }
2216
2217
  });
2217
2218
 
2218
- const _sfc_main$1X = /* @__PURE__ */ defineComponent({
2219
+ const _sfc_main$1Y = /* @__PURE__ */ defineComponent({
2219
2220
  __name: "HoverCardContent",
2220
2221
  props: {
2221
2222
  forceMount: { type: Boolean },
@@ -2266,7 +2267,7 @@ const _sfc_main$1X = /* @__PURE__ */ defineComponent({
2266
2267
  }
2267
2268
  });
2268
2269
 
2269
- const _sfc_main$1W = /* @__PURE__ */ defineComponent({
2270
+ const _sfc_main$1X = /* @__PURE__ */ defineComponent({
2270
2271
  __name: "HoverCardTrigger",
2271
2272
  props: {
2272
2273
  reference: {},
@@ -2286,19 +2287,19 @@ const _sfc_main$1W = /* @__PURE__ */ defineComponent({
2286
2287
  }
2287
2288
  });
2288
2289
 
2289
- const _sfc_main$1V = /* @__PURE__ */ defineComponent({
2290
+ const _sfc_main$1W = /* @__PURE__ */ defineComponent({
2290
2291
  __name: "HoverCard",
2291
2292
  setup(__props) {
2292
2293
  return (_ctx, _cache) => {
2293
- return openBlock(), createBlock(unref(_sfc_main$1Y), null, {
2294
+ return openBlock(), createBlock(unref(_sfc_main$1Z), null, {
2294
2295
  default: withCtx(() => [
2295
- createVNode(unref(_sfc_main$1W), null, {
2296
+ createVNode(unref(_sfc_main$1X), null, {
2296
2297
  default: withCtx(() => [
2297
2298
  renderSlot(_ctx.$slots, "trigger")
2298
2299
  ]),
2299
2300
  _: 3
2300
2301
  }),
2301
- createVNode(unref(_sfc_main$1X), null, {
2302
+ createVNode(unref(_sfc_main$1Y), null, {
2302
2303
  default: withCtx(() => [
2303
2304
  renderSlot(_ctx.$slots, "default")
2304
2305
  ]),
@@ -2311,7 +2312,7 @@ const _sfc_main$1V = /* @__PURE__ */ defineComponent({
2311
2312
  }
2312
2313
  });
2313
2314
 
2314
- const _sfc_main$1U = /* @__PURE__ */ defineComponent({
2315
+ const _sfc_main$1V = /* @__PURE__ */ defineComponent({
2315
2316
  __name: "Input",
2316
2317
  props: {
2317
2318
  defaultValue: {},
@@ -2346,7 +2347,7 @@ const _sfc_main$1U = /* @__PURE__ */ defineComponent({
2346
2347
  });
2347
2348
 
2348
2349
  const _hoisted_1$b = { class: "w-full" };
2349
- const _sfc_main$1T = /* @__PURE__ */ defineComponent({
2350
+ const _sfc_main$1U = /* @__PURE__ */ defineComponent({
2350
2351
  ...{
2351
2352
  inheritAttrs: false
2352
2353
  },
@@ -2374,9 +2375,9 @@ const _sfc_main$1T = /* @__PURE__ */ defineComponent({
2374
2375
  setup(__props, { expose: __expose, emit: __emit }) {
2375
2376
  const props = __props;
2376
2377
  const emit = __emit;
2377
- const baseInput = useTemplateRef("baseInput");
2378
+ const inputComponent = useTemplateRef("inputComponent");
2378
2379
  const inputEl = computed(() => {
2379
- return baseInput.value?.$el;
2380
+ return inputComponent.value?.$el;
2380
2381
  });
2381
2382
  const value = computed({
2382
2383
  // eslint-disable-next-line no-undefined
@@ -2398,9 +2399,9 @@ const _sfc_main$1T = /* @__PURE__ */ defineComponent({
2398
2399
  return openBlock(), createElementBlock(Fragment, null, [
2399
2400
  createVNode(unref(DefineTemplate), null, {
2400
2401
  default: withCtx(() => [
2401
- createVNode(unref(_sfc_main$1U), mergeProps({
2402
- ref_key: "baseInput",
2403
- ref: baseInput
2402
+ createVNode(unref(_sfc_main$1V), mergeProps({
2403
+ ref_key: "inputComponent",
2404
+ ref: inputComponent
2404
2405
  }, _ctx.$attrs, {
2405
2406
  modelValue: value.value,
2406
2407
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => value.value = $event),
@@ -2423,7 +2424,7 @@ const _sfc_main$1T = /* @__PURE__ */ defineComponent({
2423
2424
  ]),
2424
2425
  _: 1
2425
2426
  }),
2426
- _ctx.label ? (openBlock(), createBlock(unref(_sfc_main$2L), {
2427
+ _ctx.label ? (openBlock(), createBlock(unref(_sfc_main$2M), {
2427
2428
  key: 0,
2428
2429
  class: normalizeClass(unref(cn)("flex w-full flex-col gap-2 font-normal", _ctx.labelClass))
2429
2430
  }, {
@@ -2438,7 +2439,7 @@ const _sfc_main$1T = /* @__PURE__ */ defineComponent({
2438
2439
  }
2439
2440
  });
2440
2441
 
2441
- const _sfc_main$1S = /* @__PURE__ */ defineComponent({
2442
+ const _sfc_main$1T = /* @__PURE__ */ defineComponent({
2442
2443
  __name: "NumberField",
2443
2444
  props: {
2444
2445
  defaultValue: {},
@@ -2480,7 +2481,7 @@ const _sfc_main$1S = /* @__PURE__ */ defineComponent({
2480
2481
  }
2481
2482
  });
2482
2483
 
2483
- const _sfc_main$1R = /* @__PURE__ */ defineComponent({
2484
+ const _sfc_main$1S = /* @__PURE__ */ defineComponent({
2484
2485
  __name: "NumberFieldContent",
2485
2486
  props: {
2486
2487
  class: {}
@@ -2502,7 +2503,7 @@ const _sfc_main$1R = /* @__PURE__ */ defineComponent({
2502
2503
  }
2503
2504
  });
2504
2505
 
2505
- const _sfc_main$1Q = /* @__PURE__ */ defineComponent({
2506
+ const _sfc_main$1R = /* @__PURE__ */ defineComponent({
2506
2507
  __name: "NumberFieldDecrement",
2507
2508
  props: {
2508
2509
  disabled: { type: Boolean },
@@ -2535,7 +2536,7 @@ const _sfc_main$1Q = /* @__PURE__ */ defineComponent({
2535
2536
  }
2536
2537
  });
2537
2538
 
2538
- const _sfc_main$1P = /* @__PURE__ */ defineComponent({
2539
+ const _sfc_main$1Q = /* @__PURE__ */ defineComponent({
2539
2540
  __name: "NumberFieldIncrement",
2540
2541
  props: {
2541
2542
  disabled: { type: Boolean },
@@ -2568,7 +2569,7 @@ const _sfc_main$1P = /* @__PURE__ */ defineComponent({
2568
2569
  }
2569
2570
  });
2570
2571
 
2571
- const _sfc_main$1O = /* @__PURE__ */ defineComponent({
2572
+ const _sfc_main$1P = /* @__PURE__ */ defineComponent({
2572
2573
  __name: "NumberFieldInput",
2573
2574
  props: {
2574
2575
  class: {}
@@ -2590,7 +2591,7 @@ const _sfc_main$1O = /* @__PURE__ */ defineComponent({
2590
2591
  });
2591
2592
 
2592
2593
  const _hoisted_1$a = { class: "w-full" };
2593
- const _sfc_main$1N = /* @__PURE__ */ defineComponent({
2594
+ const _sfc_main$1O = /* @__PURE__ */ defineComponent({
2594
2595
  ...{
2595
2596
  inheritAttrs: false
2596
2597
  },
@@ -2626,7 +2627,7 @@ const _sfc_main$1N = /* @__PURE__ */ defineComponent({
2626
2627
  return openBlock(), createElementBlock(Fragment, null, [
2627
2628
  createVNode(unref(DefineTemplate), null, {
2628
2629
  default: withCtx(() => [
2629
- createVNode(unref(_sfc_main$1S), mergeProps(_ctx.$attrs, {
2630
+ createVNode(unref(_sfc_main$1T), mergeProps(_ctx.$attrs, {
2630
2631
  modelValue: value.value,
2631
2632
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => value.value = $event),
2632
2633
  "default-value": _ctx.defaultValue,
@@ -2641,13 +2642,13 @@ const _sfc_main$1N = /* @__PURE__ */ defineComponent({
2641
2642
  class: unref(cn)("w-full", props.class)
2642
2643
  }), {
2643
2644
  default: withCtx(() => [
2644
- createVNode(unref(_sfc_main$1R), null, {
2645
+ createVNode(unref(_sfc_main$1S), null, {
2645
2646
  default: withCtx(() => [
2646
- createVNode(unref(_sfc_main$1Q), {
2647
+ createVNode(unref(_sfc_main$1R), {
2647
2648
  disabled: _ctx.disabled || _ctx.disableDecrement
2648
2649
  }, null, 8, ["disabled"]),
2649
- createVNode(unref(_sfc_main$1O)),
2650
- createVNode(unref(_sfc_main$1P), {
2650
+ createVNode(unref(_sfc_main$1P)),
2651
+ createVNode(unref(_sfc_main$1Q), {
2651
2652
  disabled: _ctx.disabled || _ctx.disableIncrement
2652
2653
  }, null, 8, ["disabled"])
2653
2654
  ]),
@@ -2659,7 +2660,7 @@ const _sfc_main$1N = /* @__PURE__ */ defineComponent({
2659
2660
  ]),
2660
2661
  _: 1
2661
2662
  }),
2662
- _ctx.label ? (openBlock(), createBlock(unref(_sfc_main$2L), {
2663
+ _ctx.label ? (openBlock(), createBlock(unref(_sfc_main$2M), {
2663
2664
  key: 0,
2664
2665
  class: normalizeClass(unref(cn)("flex w-full flex-col gap-2 font-normal", _ctx.labelClass))
2665
2666
  }, {
@@ -2674,7 +2675,7 @@ const _sfc_main$1N = /* @__PURE__ */ defineComponent({
2674
2675
  }
2675
2676
  });
2676
2677
 
2677
- const _sfc_main$1M = /* @__PURE__ */ defineComponent({
2678
+ const _sfc_main$1N = /* @__PURE__ */ defineComponent({
2678
2679
  ...{
2679
2680
  inheritAttrs: false
2680
2681
  },
@@ -2700,11 +2701,25 @@ const _sfc_main$1M = /* @__PURE__ */ defineComponent({
2700
2701
  "modelModifiers": {}
2701
2702
  }),
2702
2703
  emits: ["update:modelValue"],
2703
- setup(__props) {
2704
+ setup(__props, { expose: __expose }) {
2704
2705
  const props = __props;
2705
2706
  const value = useModel(__props, "modelValue");
2707
+ const inputComponent = useTemplateRef("inputComponent");
2708
+ const inputEl = computed(() => inputComponent.value?.inputEl);
2709
+ function focus() {
2710
+ inputEl.value?.focus();
2711
+ }
2712
+ function blur() {
2713
+ inputEl.value?.blur();
2714
+ }
2715
+ function select() {
2716
+ inputEl.value?.select();
2717
+ }
2718
+ __expose({ inputEl, focus, blur, select });
2706
2719
  return (_ctx, _cache) => {
2707
- return openBlock(), createBlock(unref(_sfc_main$1T), {
2720
+ return openBlock(), createBlock(unref(_sfc_main$1U), {
2721
+ ref_key: "inputComponent",
2722
+ ref: inputComponent,
2708
2723
  modelValue: value.value,
2709
2724
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => value.value = $event),
2710
2725
  type: "text",
@@ -2729,7 +2744,7 @@ const _sfc_main$1M = /* @__PURE__ */ defineComponent({
2729
2744
  });
2730
2745
 
2731
2746
  const _hoisted_1$9 = { key: 0 };
2732
- const _sfc_main$1L = /* @__PURE__ */ defineComponent({
2747
+ const _sfc_main$1M = /* @__PURE__ */ defineComponent({
2733
2748
  __name: "Link",
2734
2749
  props: {
2735
2750
  label: {},
@@ -2749,6 +2764,37 @@ const _sfc_main$1L = /* @__PURE__ */ defineComponent({
2749
2764
  }
2750
2765
  });
2751
2766
 
2767
+ const _sfc_main$1L = /* @__PURE__ */ defineComponent({
2768
+ __name: "Loading",
2769
+ props: {
2770
+ class: {},
2771
+ icon: {},
2772
+ iconClass: {}
2773
+ },
2774
+ setup(__props) {
2775
+ const props = __props;
2776
+ return (_ctx, _cache) => {
2777
+ return openBlock(), createElementBlock("div", {
2778
+ class: normalizeClass(unref(cn$1)("flex items-center justify-center", props.class))
2779
+ }, [
2780
+ (openBlock(), createBlock(resolveDynamicComponent(_ctx.icon ?? unref(LoaderCircle)), {
2781
+ class: normalizeClass(unref(cn$1)("loading-icon size-6", _ctx.iconClass))
2782
+ }, null, 8, ["class"]))
2783
+ ], 2);
2784
+ };
2785
+ }
2786
+ });
2787
+
2788
+ const _export_sfc = (sfc, props) => {
2789
+ const target = sfc.__vccOpts || sfc;
2790
+ for (const [key, val] of props) {
2791
+ target[key] = val;
2792
+ }
2793
+ return target;
2794
+ };
2795
+
2796
+ const Loading = /* @__PURE__ */ _export_sfc(_sfc_main$1L, [["__scopeId", "data-v-ca73f031"]]);
2797
+
2752
2798
  const _sfc_main$1K = /* @__PURE__ */ defineComponent({
2753
2799
  __name: "Menubar",
2754
2800
  props: {
@@ -4249,7 +4295,7 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
4249
4295
  ]),
4250
4296
  _: 3
4251
4297
  }),
4252
- _ctx.label ? (openBlock(), createBlock(unref(_sfc_main$2L), {
4298
+ _ctx.label ? (openBlock(), createBlock(unref(_sfc_main$2M), {
4253
4299
  key: 0,
4254
4300
  class: normalizeClass(unref(cn)("flex w-full flex-col gap-2 font-normal", _ctx.labelClass))
4255
4301
  }, {
@@ -5405,7 +5451,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
5405
5451
  const props = __props;
5406
5452
  const { toggleSidebar } = useSidebar();
5407
5453
  return (_ctx, _cache) => {
5408
- return openBlock(), createBlock(unref(_sfc_main$2X), {
5454
+ return openBlock(), createBlock(unref(_sfc_main$2Y), {
5409
5455
  "data-sidebar": "trigger",
5410
5456
  "data-slot": "sidebar-trigger",
5411
5457
  variant: "ghost",
@@ -5705,7 +5751,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
5705
5751
  ]),
5706
5752
  _: 3
5707
5753
  }),
5708
- _ctx.label || _ctx.$slots.label ? (openBlock(), createBlock(unref(_sfc_main$2L), {
5754
+ _ctx.label || _ctx.$slots.label ? (openBlock(), createBlock(unref(_sfc_main$2M), {
5709
5755
  key: 0,
5710
5756
  class: normalizeClass(unref(cn)("flex flex-row items-center justify-start gap-2", _ctx.labelClass))
5711
5757
  }, {
@@ -5984,7 +6030,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
5984
6030
  return (_ctx, _cache) => {
5985
6031
  return openBlock(), createBlock(unref(_sfc_main$k), null, {
5986
6032
  default: withCtx(() => [
5987
- createVNode(unref(_sfc_main$1L), {
6033
+ createVNode(unref(_sfc_main$1M), {
5988
6034
  to: _ctx.to,
5989
6035
  label: _ctx.label,
5990
6036
  class: normalizeClass(unref(cn)("flex w-full", _ctx.linkClass))
@@ -6340,9 +6386,13 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
6340
6386
  style: {}
6341
6387
  },
6342
6388
  emits: ["update:modelValue"],
6343
- setup(__props, { emit: __emit }) {
6389
+ setup(__props, { expose: __expose, emit: __emit }) {
6344
6390
  const props = __props;
6345
6391
  const emit = __emit;
6392
+ const textareaComponent = useTemplateRef("textareaComponent");
6393
+ const textareaEl = computed(() => {
6394
+ return textareaComponent.value?.$el;
6395
+ });
6346
6396
  const value = computed({
6347
6397
  // eslint-disable-next-line no-undefined
6348
6398
  get: () => props.modelValue ?? void 0,
@@ -6352,11 +6402,15 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
6352
6402
  return props.height ? { height: toPixel(props.height) } : null;
6353
6403
  });
6354
6404
  const [DefineTemplate, ReuseTemplate] = createReusableTemplate();
6405
+ __expose({ textareaEl });
6355
6406
  return (_ctx, _cache) => {
6356
6407
  return openBlock(), createElementBlock(Fragment, null, [
6357
6408
  createVNode(unref(DefineTemplate), null, {
6358
6409
  default: withCtx(() => [
6359
- createVNode(unref(_sfc_main$3), mergeProps(_ctx.$attrs, {
6410
+ createVNode(unref(_sfc_main$3), mergeProps({
6411
+ ref_key: "textareaComponent",
6412
+ ref: textareaComponent
6413
+ }, _ctx.$attrs, {
6360
6414
  modelValue: value.value,
6361
6415
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => value.value = $event),
6362
6416
  modelModifiers: { trim: true },
@@ -6383,7 +6437,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
6383
6437
  ]),
6384
6438
  _: 1
6385
6439
  }),
6386
- _ctx.label ? (openBlock(), createBlock(unref(_sfc_main$2L), {
6440
+ _ctx.label ? (openBlock(), createBlock(unref(_sfc_main$2M), {
6387
6441
  key: 0,
6388
6442
  class: normalizeClass(unref(cn)("flex w-full flex-col gap-1 font-normal", _ctx.labelClass))
6389
6443
  }, {
@@ -6614,4 +6668,4 @@ function localRef(key, initial, options) {
6614
6668
  });
6615
6669
  }
6616
6670
 
6617
- export { _sfc_main$2Y as Badge, _sfc_main$2X as Button, _sfc_main$2V as ButtonIcon, _sfc_main$2W as ButtonLink, _sfc_main$2M as Card, _sfc_main$2J as Checkbox, _sfc_main$2I as Combobox, _sfc_main$2H as ComboboxAnchor, _sfc_main$2G as ComboboxEmpty, _sfc_main$2F as ComboboxGroup, _sfc_main$2E as ComboboxInput, _sfc_main$2D as ComboboxItem, _sfc_main$2C as ComboboxItemIndicator, _sfc_main$2B as ComboboxList, _sfc_main$2A as ComboboxSeparator, _sfc_main$2z as ComboboxViewport, _sfc_main$2y as ContextMenu, _sfc_main$2x as ContextMenuCheckboxItem, _sfc_main$2w as ContextMenuContent, _sfc_main$2v as ContextMenuGroup, _sfc_main$2u as ContextMenuItem, _sfc_main$2t as ContextMenuLabel, _sfc_main$2s as ContextMenuRadioGroup, _sfc_main$2r as ContextMenuRadioItem, _sfc_main$2q as ContextMenuSeparator, _sfc_main$2p as ContextMenuShortcut, _sfc_main$2o as ContextMenuSub, _sfc_main$2n as ContextMenuSubContent, _sfc_main$2m as ContextMenuSubTrigger, _sfc_main$2l as ContextMenuTrigger, _sfc_main$2k as Dialog, _sfc_main$2j as DialogClose, _sfc_main$2h as DialogContent, _sfc_main$2g as DialogDescription, _sfc_main$2f as DialogFooter, _sfc_main$2e as DialogHeader, _sfc_main$2i as DialogOverlay, _sfc_main$2d as DialogScrollContent, _sfc_main$2c as DialogTitle, _sfc_main$2b as DialogTrigger, _sfc_main$2a as DropdownMenu, _sfc_main$29 as DropdownMenuCheckboxItem, _sfc_main$28 as DropdownMenuContent, _sfc_main$27 as DropdownMenuGroup, _sfc_main$26 as DropdownMenuItem, _sfc_main$25 as DropdownMenuLabel, _sfc_main$24 as DropdownMenuRadioGroup, _sfc_main$23 as DropdownMenuRadioItem, _sfc_main$22 as DropdownMenuSeparator, _sfc_main$21 as DropdownMenuShortcut, _sfc_main$20 as DropdownMenuSub, _sfc_main$1$ as DropdownMenuSubContent, _sfc_main$1_ as DropdownMenuSubTrigger, _sfc_main$1Z as DropdownMenuTrigger, _sfc_main$1V as HoverCard, _sfc_main$1T as Input, _sfc_main$1N as InputNumber, _sfc_main$1M as InputText, _sfc_main$2L as Label, _sfc_main$1L as Link, _sfc_main$1K as Menubar, _sfc_main$1J as MenubarCheckboxItem, _sfc_main$1I as MenubarContent, _sfc_main$1H as MenubarGroup, _sfc_main$1G as MenubarItem, _sfc_main$1F as MenubarLabel, _sfc_main$1E as MenubarMenu, _sfc_main$1D as MenubarRadioGroup, _sfc_main$1C as MenubarRadioItem, _sfc_main$1B as MenubarSeparator, _sfc_main$1A as MenubarShortcut, _sfc_main$1z as MenubarSub, _sfc_main$1y as MenubarSubContent, _sfc_main$1x as MenubarSubTrigger, _sfc_main$1w as MenubarTrigger, _sfc_main$1v as Pagination, _sfc_main$1u as PaginationContent, _sfc_main$1t as PaginationEllipsis, _sfc_main$1s as PaginationFirst, _sfc_main$1r as PaginationItem, _sfc_main$1q as PaginationLast, _sfc_main$1p as PaginationNext, _sfc_main$1o as PaginationPrevious, _sfc_main$1k as Popover, _sfc_main$1j as Progress, _sfc_main$1i as RadioGroup, _sfc_main$1h as RadioGroupItem, _sfc_main$1g as ResizableHandle, _sfc_main$1f as ResizablePanel, _sfc_main$1e as ResizablePanelGroup, _sfc_main$2T as ScrollArea, _sfc_main$12 as Select, _sfc_main$1b as SelectGroup, _sfc_main$1a as SelectItem, _sfc_main$19 as SelectItemText, _sfc_main$18 as SelectLabel, _sfc_main$17 as SelectScrollDownButton, _sfc_main$16 as SelectScrollUpButton, _sfc_main$15 as SelectSeparator, _sfc_main$11 as Separator, _sfc_main$10 as Sheet, _sfc_main$$ as SheetClose, _sfc_main$Z as SheetContent, _sfc_main$Y as SheetDescription, _sfc_main$X as SheetFooter, _sfc_main$W as SheetHeader, _sfc_main$V as SheetTitle, _sfc_main$U as SheetTrigger, _sfc_main$r as Sidebar, _sfc_main$Q as SidebarGroup, _sfc_main$P as SidebarGroupAction, _sfc_main$O as SidebarGroupContent, _sfc_main$N as SidebarGroupLabel, _sfc_main$K as SidebarMenu, _sfc_main$J as SidebarMenuAction, _sfc_main$I as SidebarMenuBadge, _sfc_main$C as SidebarMenuButton, _sfc_main$B as SidebarMenuItem, _sfc_main$z as SidebarMenuSkeleton, _sfc_main$y as SidebarMenuSub, _sfc_main$x as SidebarMenuSubButton, _sfc_main$w as SidebarMenuSubItem, _sfc_main$u as SidebarRail, _sfc_main$t as SidebarSeparator, _sfc_main$s as SidebarTrigger, _sfc_main$A as Skeleton, _sfc_main$q as Slider, _sfc_main$p as Sonner, _sfc_main$n as Switch, _sfc_main$e as Table, _sfc_main$k as TableCell, _sfc_main$i as TableEmpty, _sfc_main$g as TableHead, _sfc_main$d as TableLink, _sfc_main$j as TableRow, _sfc_main$c as Tabs, _sfc_main$b as TabsContent, _sfc_main$a as TabsList, _sfc_main$9 as TabsTrigger, _sfc_main$8 as TagsInput, _sfc_main$7 as TagsInputInput, _sfc_main$6 as TagsInputItem, _sfc_main$5 as TagsInputItemDelete, _sfc_main$4 as TagsInputItemText, _sfc_main$2 as Textarea, _sfc_main$1 as Toggle, _sfc_main as Tooltip, asyncComputed, asyncRef, cn, getCurrentApp, getErrorHandler, handleError, inject, localRef, maybe, onAltKeyDown, onCtrlKeyDown, onCtrlShiftKeyDown, onKeyDown, onShiftKeyDown, provide, runWithContext, setCurrentApp, setErrorHandler, toBooleanCheckboxValue, tryGetCurrentApp, tryInject, trySetCurrentApp, useElementSize, useHeight, useHeightDiff, useSidebar, useWidth, useWidthDiff, useWindowHeight, useWindowWidth };
6671
+ export { _sfc_main$2Z as Badge, _sfc_main$2Y as Button, _sfc_main$2W as ButtonIcon, _sfc_main$2X as ButtonLink, _sfc_main$2N as Card, _sfc_main$2K as Checkbox, _sfc_main$2J as Combobox, _sfc_main$2I as ComboboxAnchor, _sfc_main$2H as ComboboxEmpty, _sfc_main$2G as ComboboxGroup, _sfc_main$2F as ComboboxInput, _sfc_main$2E as ComboboxItem, _sfc_main$2D as ComboboxItemIndicator, _sfc_main$2C as ComboboxList, _sfc_main$2B as ComboboxSeparator, _sfc_main$2A as ComboboxViewport, _sfc_main$2z as ContextMenu, _sfc_main$2y as ContextMenuCheckboxItem, _sfc_main$2x as ContextMenuContent, _sfc_main$2w as ContextMenuGroup, _sfc_main$2v as ContextMenuItem, _sfc_main$2u as ContextMenuLabel, _sfc_main$2t as ContextMenuRadioGroup, _sfc_main$2s as ContextMenuRadioItem, _sfc_main$2r as ContextMenuSeparator, _sfc_main$2q as ContextMenuShortcut, _sfc_main$2p as ContextMenuSub, _sfc_main$2o as ContextMenuSubContent, _sfc_main$2n as ContextMenuSubTrigger, _sfc_main$2m as ContextMenuTrigger, _sfc_main$2l as Dialog, _sfc_main$2k as DialogClose, _sfc_main$2i as DialogContent, _sfc_main$2h as DialogDescription, _sfc_main$2g as DialogFooter, _sfc_main$2f as DialogHeader, _sfc_main$2j as DialogOverlay, _sfc_main$2e as DialogScrollContent, _sfc_main$2d as DialogTitle, _sfc_main$2c as DialogTrigger, _sfc_main$2b as DropdownMenu, _sfc_main$2a as DropdownMenuCheckboxItem, _sfc_main$29 as DropdownMenuContent, _sfc_main$28 as DropdownMenuGroup, _sfc_main$27 as DropdownMenuItem, _sfc_main$26 as DropdownMenuLabel, _sfc_main$25 as DropdownMenuRadioGroup, _sfc_main$24 as DropdownMenuRadioItem, _sfc_main$23 as DropdownMenuSeparator, _sfc_main$22 as DropdownMenuShortcut, _sfc_main$21 as DropdownMenuSub, _sfc_main$20 as DropdownMenuSubContent, _sfc_main$1$ as DropdownMenuSubTrigger, _sfc_main$1_ as DropdownMenuTrigger, _sfc_main$1W as HoverCard, _sfc_main$1U as Input, _sfc_main$1O as InputNumber, _sfc_main$1N as InputText, _sfc_main$2M as Label, _sfc_main$1M as Link, Loading, _sfc_main$1K as Menubar, _sfc_main$1J as MenubarCheckboxItem, _sfc_main$1I as MenubarContent, _sfc_main$1H as MenubarGroup, _sfc_main$1G as MenubarItem, _sfc_main$1F as MenubarLabel, _sfc_main$1E as MenubarMenu, _sfc_main$1D as MenubarRadioGroup, _sfc_main$1C as MenubarRadioItem, _sfc_main$1B as MenubarSeparator, _sfc_main$1A as MenubarShortcut, _sfc_main$1z as MenubarSub, _sfc_main$1y as MenubarSubContent, _sfc_main$1x as MenubarSubTrigger, _sfc_main$1w as MenubarTrigger, _sfc_main$1v as Pagination, _sfc_main$1u as PaginationContent, _sfc_main$1t as PaginationEllipsis, _sfc_main$1s as PaginationFirst, _sfc_main$1r as PaginationItem, _sfc_main$1q as PaginationLast, _sfc_main$1p as PaginationNext, _sfc_main$1o as PaginationPrevious, _sfc_main$1k as Popover, _sfc_main$1j as Progress, _sfc_main$1i as RadioGroup, _sfc_main$1h as RadioGroupItem, _sfc_main$1g as ResizableHandle, _sfc_main$1f as ResizablePanel, _sfc_main$1e as ResizablePanelGroup, _sfc_main$2U as ScrollArea, _sfc_main$12 as Select, _sfc_main$1b as SelectGroup, _sfc_main$1a as SelectItem, _sfc_main$19 as SelectItemText, _sfc_main$18 as SelectLabel, _sfc_main$17 as SelectScrollDownButton, _sfc_main$16 as SelectScrollUpButton, _sfc_main$15 as SelectSeparator, _sfc_main$11 as Separator, _sfc_main$10 as Sheet, _sfc_main$$ as SheetClose, _sfc_main$Z as SheetContent, _sfc_main$Y as SheetDescription, _sfc_main$X as SheetFooter, _sfc_main$W as SheetHeader, _sfc_main$V as SheetTitle, _sfc_main$U as SheetTrigger, _sfc_main$r as Sidebar, _sfc_main$Q as SidebarGroup, _sfc_main$P as SidebarGroupAction, _sfc_main$O as SidebarGroupContent, _sfc_main$N as SidebarGroupLabel, _sfc_main$K as SidebarMenu, _sfc_main$J as SidebarMenuAction, _sfc_main$I as SidebarMenuBadge, _sfc_main$C as SidebarMenuButton, _sfc_main$B as SidebarMenuItem, _sfc_main$z as SidebarMenuSkeleton, _sfc_main$y as SidebarMenuSub, _sfc_main$x as SidebarMenuSubButton, _sfc_main$w as SidebarMenuSubItem, _sfc_main$u as SidebarRail, _sfc_main$t as SidebarSeparator, _sfc_main$s as SidebarTrigger, _sfc_main$A as Skeleton, _sfc_main$q as Slider, _sfc_main$p as Sonner, _sfc_main$n as Switch, _sfc_main$e as Table, _sfc_main$k as TableCell, _sfc_main$i as TableEmpty, _sfc_main$g as TableHead, _sfc_main$d as TableLink, _sfc_main$j as TableRow, _sfc_main$c as Tabs, _sfc_main$b as TabsContent, _sfc_main$a as TabsList, _sfc_main$9 as TabsTrigger, _sfc_main$8 as TagsInput, _sfc_main$7 as TagsInputInput, _sfc_main$6 as TagsInputItem, _sfc_main$5 as TagsInputItemDelete, _sfc_main$4 as TagsInputItemText, _sfc_main$2 as Textarea, _sfc_main$1 as Toggle, _sfc_main as Tooltip, asyncComputed, asyncRef, cn, getCurrentApp, getErrorHandler, handleError, inject, localRef, maybe, onAltKeyDown, onCtrlKeyDown, onCtrlShiftKeyDown, onKeyDown, onShiftKeyDown, provide, runWithContext, setCurrentApp, setErrorHandler, toBooleanCheckboxValue, tryGetCurrentApp, tryInject, trySetCurrentApp, useElementSize, useHeight, useHeightDiff, useSidebar, useWidth, useWidthDiff, useWindowHeight, useWindowWidth };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tb-dev/vue",
3
- "version": "0.3.34",
3
+ "version": "0.3.36",
4
4
  "description": "Vue utilities",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -30,7 +30,7 @@
30
30
  "@vueuse/core": "^13.1.0",
31
31
  "class-variance-authority": "^0.7.1",
32
32
  "clsx": "^2.1.1",
33
- "lucide-vue-next": "^0.488.0",
33
+ "lucide-vue-next": "^0.501.0",
34
34
  "reka-ui": "^2.2.0",
35
35
  "tailwind-merge": "^3.2.0",
36
36
  "tw-animate-css": "^1.2.5",
@@ -50,7 +50,7 @@
50
50
  "tailwindcss": "^4.1.4",
51
51
  "tslib": "^2.8.1",
52
52
  "typescript": "~5.8.3",
53
- "vite": "^6.3.1",
53
+ "vite": "^6.3.2",
54
54
  "vite-plugin-dts": "^4.5.3",
55
55
  "vue-tsc": "~2.2.8"
56
56
  },