@una-ui/nuxt 0.67.0 → 0.67.2

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.
Files changed (32) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +1 -1
  3. package/dist/runtime/components/aspect-ratio/AspectRatio.vue.d.ts +1 -1
  4. package/dist/runtime/components/combobox/Combobox.vue +6 -1
  5. package/dist/runtime/components/combobox/Combobox.vue.d.ts +3 -1
  6. package/dist/runtime/components/combobox/ComboboxViewport.vue +7 -1
  7. package/dist/runtime/components/combobox/ComboboxViewport.vue.d.ts +6 -3
  8. package/dist/runtime/components/elements/Button.vue.d.ts +3 -3
  9. package/dist/runtime/components/elements/Progress.vue +1 -1
  10. package/dist/runtime/components/elements/avatar/Avatar.vue.d.ts +2 -2
  11. package/dist/runtime/components/elements/dialog/DialogClose.vue.d.ts +1 -1
  12. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuItem.vue.d.ts +1 -1
  13. package/dist/runtime/components/elements/pagination/PaginationFirst.vue.d.ts +1 -1
  14. package/dist/runtime/components/elements/pagination/PaginationLast.vue.d.ts +1 -1
  15. package/dist/runtime/components/elements/pagination/PaginationNext.vue.d.ts +1 -1
  16. package/dist/runtime/components/elements/pagination/PaginationPrev.vue.d.ts +1 -1
  17. package/dist/runtime/components/forms/Input.vue.d.ts +2 -2
  18. package/dist/runtime/components/forms/radio-group/RadioGroupItem.vue.d.ts +1 -1
  19. package/dist/runtime/components/navigation/breadcrumb/BreadcrumbEllipsis.vue.d.ts +1 -1
  20. package/dist/runtime/components/navigation/breadcrumb/BreadcrumbSeparator.vue.d.ts +1 -1
  21. package/dist/runtime/components/navigation-menu/NavigationMenuLink.vue.d.ts +1 -1
  22. package/dist/runtime/components/navigation-menu/NavigationMenuTrigger.vue.d.ts +1 -1
  23. package/dist/runtime/components/number-field/NumberField.vue.d.ts +1 -1
  24. package/dist/runtime/components/number-field/NumberFieldDecrement.vue.d.ts +1 -1
  25. package/dist/runtime/components/number-field/NumberFieldIncrement.vue.d.ts +1 -1
  26. package/dist/runtime/components/overlays/toast/ToastAction.vue.d.ts +1 -1
  27. package/dist/runtime/components/scroll-area/ScrollArea.vue.d.ts +1 -1
  28. package/dist/runtime/components/sidebar/SidebarMenuButton.vue.d.ts +1 -1
  29. package/dist/runtime/components/sidebar/SidebarMenuButtonChild.vue.d.ts +1 -1
  30. package/dist/runtime/components/sidebar/SidebarMenuSubButton.vue.d.ts +1 -1
  31. package/dist/runtime/components/toggle-group/ToggleGroupItem.vue.d.ts +1 -1
  32. package/package.json +3 -3
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@una-ui/nuxt",
3
3
  "configKey": "una",
4
- "version": "0.67.0",
4
+ "version": "0.67.2",
5
5
  "compatibility": {
6
6
  "nuxt": ">=3.0.0"
7
7
  },
package/dist/module.mjs CHANGED
@@ -8,7 +8,7 @@ import 'unocss';
8
8
  import 'unocss-preset-animations';
9
9
 
10
10
  const name = "@una-ui/nuxt";
11
- const version = "0.67.0";
11
+ const version = "0.67.2";
12
12
 
13
13
  const module = defineNuxtModule({
14
14
  meta: {
@@ -6,8 +6,8 @@ type __VLS_Slots = {} & {
6
6
  default?: (props: typeof __VLS_6) => any;
7
7
  };
8
8
  declare const __VLS_component: import("vue").DefineComponent<NAspectRatioProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAspectRatioProps> & Readonly<{}>, {
9
- rounded: import("vue").HTMLAttributes["class"];
10
9
  aspectRatio: string;
10
+ rounded: import("vue").HTMLAttributes["class"];
11
11
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
12
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
13
13
  export default _default;
@@ -6,7 +6,7 @@ import { cn } from "../../utils";
6
6
  </script>
7
7
 
8
8
  <script setup>
9
- import { computed } from "vue";
9
+ import { computed, toRef, useTemplateRef } from "vue";
10
10
  import ComboboxAnchor from "./ComboboxAnchor.vue";
11
11
  import ComboboxEmpty from "./ComboboxEmpty.vue";
12
12
  import ComboboxGroup from "./ComboboxGroup.vue";
@@ -134,6 +134,10 @@ function isItemSelected(item) {
134
134
  }
135
135
  return getItemProperty(props.modelValue, props.valueKey) === itemValue;
136
136
  }
137
+ const viewportRef = useTemplateRef("viewportRef");
138
+ defineExpose({
139
+ viewportRef: toRef(() => viewportRef.value?.viewportRef)
140
+ });
137
141
  </script>
138
142
 
139
143
  <template>
@@ -224,6 +228,7 @@ function isItemSelected(item) {
224
228
  <slot name="body">
225
229
  <ComboboxViewport
226
230
  v-bind="props._comboboxViewport"
231
+ ref="viewportRef"
227
232
  :una
228
233
  >
229
234
  <ComboboxEmpty
@@ -9,7 +9,9 @@ declare const _default: <T extends AcceptableValue, M extends boolean = false>(_
9
9
  } | undefined) => any) | undefined;
10
10
  readonly "onUpdate:open"?: ((value: boolean) => any) | undefined;
11
11
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onHighlight" | "onUpdate:open"> & NComboboxProps<T, M> & Partial<{}>> & import("vue").PublicProps;
12
- expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
12
+ expose(exposed: import("vue").ShallowUnwrapRef<{
13
+ viewportRef: Readonly<import("vue").Ref<any, any>>;
14
+ }>): void;
13
15
  attrs: any;
14
16
  slots: {
15
17
  default?: (props: {}) => any;
@@ -1,6 +1,7 @@
1
1
  <script setup>
2
2
  import { reactiveOmit } from "@vueuse/core";
3
3
  import { ComboboxViewport, useForwardProps } from "reka-ui";
4
+ import { useTemplateRef } from "vue";
4
5
  import { cn } from "../../utils";
5
6
  const props = defineProps({
6
7
  una: { type: Object, required: false },
@@ -12,12 +13,17 @@ const props = defineProps({
12
13
  });
13
14
  const delegatedProps = reactiveOmit(props, ["class"]);
14
15
  const forwarded = useForwardProps(delegatedProps);
16
+ const viewportRef = useTemplateRef("viewportRef");
17
+ defineExpose({
18
+ viewportRef
19
+ });
15
20
  </script>
16
21
 
17
22
  <template>
18
23
  <ComboboxViewport
19
- data-slot="combobox-viewport"
20
24
  v-bind="forwarded"
25
+ ref="viewportRef"
26
+ data-slot="combobox-viewport"
21
27
  :class="cn(
22
28
  'combobox-viewport',
23
29
  props.una?.comboboxViewport,
@@ -1,9 +1,12 @@
1
+ import type { ComponentPublicInstance } from 'vue';
1
2
  import type { NComboboxViewportProps } from '../../types/index.js';
2
- declare var __VLS_6: {};
3
+ declare var __VLS_7: {};
3
4
  type __VLS_Slots = {} & {
4
- default?: (props: typeof __VLS_6) => any;
5
+ default?: (props: typeof __VLS_7) => any;
5
6
  };
6
- declare const __VLS_component: import("vue").DefineComponent<NComboboxViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const __VLS_component: import("vue").DefineComponent<NComboboxViewportProps, {
8
+ viewportRef: Readonly<import("vue").ShallowRef<ComponentPublicInstance | null>>;
9
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
10
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
8
11
  export default _default;
9
12
  type __VLS_WithSlots<T, S> = T & {
@@ -10,9 +10,6 @@ type __VLS_Slots = {} & {
10
10
  trailing?: (props: typeof __VLS_37) => any;
11
11
  };
12
12
  declare const __VLS_component: import("vue").DefineComponent<NButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NButtonProps> & Readonly<{}>, {
13
- type: "button" | "submit" | "reset";
14
- loadingPlacement: "leading" | "trailing" | "label";
15
- size: string;
16
13
  una: {
17
14
  btnDefaultVariant?: string;
18
15
  btn?: string;
@@ -24,6 +21,9 @@ declare const __VLS_component: import("vue").DefineComponent<NButtonProps, {}, {
24
21
  btnLoadingIcon?: string;
25
22
  };
26
23
  rounded: import("vue").HTMLAttributes["class"];
24
+ size: string;
25
+ type: "button" | "submit" | "reset";
26
+ loadingPlacement: "leading" | "trailing" | "label";
27
27
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
28
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
29
29
  export default _default;
@@ -42,7 +42,7 @@ const delegatedProps = reactiveOmit(props, ["class"]);
42
42
  'progress-indicator',
43
43
  props.una?.progressIndicator
44
44
  )"
45
- :style="`transform: translateX(-${100 - (modelValue ?? 0)}%);`"
45
+ :style="`transform: translateX(-${100 - (modelValue ?? 0) / (props.max || 100) * 100}%)`"
46
46
  />
47
47
  <template
48
48
  v-else
@@ -6,10 +6,10 @@ type __VLS_Slots = {} & {
6
6
  fallback?: (props: typeof __VLS_14) => any;
7
7
  };
8
8
  declare const __VLS_component: import("vue").DefineComponent<NAvatarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAvatarProps> & Readonly<{}>, {
9
- size: import("vue").HTMLAttributes["class"];
10
9
  as: import("reka-ui").AsTag | import("vue").Component;
11
- square: import("vue").HTMLAttributes["class"];
12
10
  rounded: import("vue").HTMLAttributes["class"];
11
+ size: import("vue").HTMLAttributes["class"];
12
+ square: import("vue").HTMLAttributes["class"];
13
13
  avatar: import("vue").HTMLAttributes["class"];
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NDialogCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NDialogCloseProps> & Readonly<{}>, {
7
- icon: boolean;
8
7
  label: string;
8
+ icon: boolean;
9
9
  btn: string;
10
10
  square: import("vue").HTMLAttributes["class"];
11
11
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -1,8 +1,8 @@
1
1
  import type { NDropdownMenuItemProps } from '../../../types/index.js';
2
2
  type __VLS_Slots = any;
3
3
  declare const __VLS_component: import("vue").DefineComponent<NDropdownMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NDropdownMenuItemProps> & Readonly<{}>, {
4
- size: string;
5
4
  rounded: import("vue").HTMLAttributes["class"];
5
+ size: string;
6
6
  dropdownMenuItem: import("vue").HTMLAttributes["class"];
7
7
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
8
8
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NPaginationFirstProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NPaginationFirstProps> & Readonly<{}>, {
7
- icon: boolean;
8
7
  label: string;
8
+ icon: boolean;
9
9
  square: import("vue").HTMLAttributes["class"];
10
10
  paginationUnselected: string;
11
11
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NPaginationLastProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NPaginationLastProps> & Readonly<{}>, {
7
- icon: boolean;
8
7
  label: string;
8
+ icon: boolean;
9
9
  square: import("vue").HTMLAttributes["class"];
10
10
  paginationUnselected: string;
11
11
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NPaginationNextProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NPaginationNextProps> & Readonly<{}>, {
7
- icon: boolean;
8
7
  label: string;
8
+ icon: boolean;
9
9
  square: import("vue").HTMLAttributes["class"];
10
10
  paginationUnselected: string;
11
11
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NPaginationPrevProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NPaginationPrevProps> & Readonly<{}>, {
7
- icon: boolean;
8
7
  label: string;
8
+ icon: boolean;
9
9
  square: import("vue").HTMLAttributes["class"];
10
10
  paginationUnselected: string;
11
11
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -13,10 +13,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
13
13
  select: () => void | undefined;
14
14
  inputRef: import("vue").Ref<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
15
15
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {
16
- type: HTMLInputElement["type"] | "textarea";
17
16
  size: string;
18
- autofocusDelay: number;
19
17
  resize: string | null;
18
+ type: HTMLInputElement["type"] | "textarea";
19
+ autofocusDelay: number;
20
20
  rows: number;
21
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
22
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -9,8 +9,8 @@ type __VLS_Slots = {} & {
9
9
  description?: (props: typeof __VLS_19) => any;
10
10
  };
11
11
  declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
12
- icon: import("vue").HTMLAttributes["class"];
13
12
  size: import("vue").HTMLAttributes["class"];
13
+ icon: import("vue").HTMLAttributes["class"];
14
14
  square: import("vue").HTMLAttributes["class"];
15
15
  radioGroup: import("vue").HTMLAttributes["class"];
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NBreadcrumbEllipsisProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NBreadcrumbEllipsisProps> & Readonly<{}>, {
7
- icon: string;
8
7
  size: string;
8
+ icon: string;
9
9
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
10
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
11
11
  export default _default;
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_1) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NBreadcrumbSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NBreadcrumbSeparatorProps> & Readonly<{}>, {
7
- icon: string;
8
7
  size: string;
8
+ icon: string;
9
9
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
10
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
11
11
  export default _default;
@@ -14,8 +14,8 @@ declare const __VLS_component: import("vue").DefineComponent<NNavigationMenuLink
14
14
  originalEvent: Event;
15
15
  }>) => any) | undefined;
16
16
  }>, {
17
- btn: string;
18
17
  as: import("reka-ui").AsTag | import("vue").Component;
18
+ btn: string;
19
19
  navigationMenuLink: string;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -4,9 +4,9 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NNavigationMenuTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNavigationMenuTriggerProps> & Readonly<{}>, {
7
+ as: import("reka-ui").AsTag | import("vue").Component;
7
8
  btn: string;
8
9
  trailing: string;
9
- as: import("reka-ui").AsTag | import("vue").Component;
10
10
  navigationMenu: string;
11
11
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
12
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -14,9 +14,9 @@ declare const __VLS_component: import("vue").DefineComponent<NNumberFieldProps,
14
14
  }, string, import("vue").PublicProps, Readonly<NNumberFieldProps> & Readonly<{
15
15
  "onUpdate:modelValue"?: ((val: number) => any) | undefined;
16
16
  }>, {
17
+ size: import("vue").HTMLAttributes["class"];
17
18
  leading: string;
18
19
  trailing: string;
19
- size: import("vue").HTMLAttributes["class"];
20
20
  numberField: import("vue").HTMLAttributes["class"];
21
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
22
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NNumberFieldDecrementProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNumberFieldDecrementProps> & Readonly<{}>, {
7
- icon: string;
8
7
  size: import("vue").HTMLAttributes["class"];
8
+ icon: string;
9
9
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
10
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
11
11
  export default _default;
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NNumberFieldIncrementProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNumberFieldIncrementProps> & Readonly<{}>, {
7
- icon: string;
8
7
  size: import("vue").HTMLAttributes["class"];
8
+ icon: string;
9
9
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
10
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
11
11
  export default _default;
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
4
4
  [K in NonNullable<typeof __VLS_10>]?: (props: typeof __VLS_11) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NToastActionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastActionProps> & Readonly<{}>, {
7
- btn: string;
8
7
  size: string;
8
+ btn: string;
9
9
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
10
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
11
11
  export default _default;
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_10) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NScrollAreaProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NScrollAreaProps> & Readonly<{}>, {
7
- size: import("vue").HTMLAttributes["class"];
8
7
  rounded: import("vue").HTMLAttributes["class"];
8
+ size: import("vue").HTMLAttributes["class"];
9
9
  scrollArea: import("vue").HTMLAttributes["class"];
10
10
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
11
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -6,8 +6,8 @@ type __VLS_Slots = {} & {
6
6
  default?: (props: typeof __VLS_17) => any;
7
7
  };
8
8
  declare const __VLS_component: import("vue").DefineComponent<NSidebarMenuButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSidebarMenuButtonProps> & Readonly<{}>, {
9
- size: "default" | "sm" | "lg";
10
9
  as: import("reka-ui").AsTag | import("vue").Component;
10
+ size: "default" | "sm" | "lg";
11
11
  variant: "default" | "outline";
12
12
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
13
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -18,8 +18,8 @@ type __VLS_Slots = {} & {
18
18
  default?: (props: typeof __VLS_6) => any;
19
19
  };
20
20
  declare const __VLS_component: import("vue").DefineComponent<NSidebarMenuButtonChildProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSidebarMenuButtonChildProps> & Readonly<{}>, {
21
- size: "default" | "sm" | "lg";
22
21
  as: import("reka-ui").AsTag | import("vue").Component;
22
+ size: "default" | "sm" | "lg";
23
23
  variant: "default" | "outline";
24
24
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
25
25
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<NSidebarMenuSubButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSidebarMenuSubButtonProps> & Readonly<{}>, {
7
- size: "sm" | "md";
8
7
  as: import("reka-ui").AsTag | import("vue").Component;
8
+ size: "sm" | "md";
9
9
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
10
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
11
11
  export default _default;
@@ -4,8 +4,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<NToggleGro
4
4
  }, string, import("vue").PublicProps, Readonly<NToggleGroupItemProps> & Readonly<{
5
5
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
6
6
  }>, {
7
- icon: boolean;
8
7
  as: import("reka-ui").AsTag | import("vue").Component;
8
+ icon: boolean;
9
9
  square: import("vue").HTMLAttributes["class"];
10
10
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
11
11
  default?: (props: any) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@una-ui/nuxt",
3
3
  "type": "module",
4
- "version": "0.67.0",
4
+ "version": "0.67.2",
5
5
  "description": "Nuxt module for @una-ui",
6
6
  "author": "Phojie Rengel <phojrengel@gmail.com>",
7
7
  "license": "MIT",
@@ -58,8 +58,8 @@
58
58
  "unocss": "^66.5.10",
59
59
  "unocss-preset-animations": "^1.3.0",
60
60
  "vaul-vue": "^0.4.1",
61
- "@una-ui/extractor-vue-script": "^0.67.0",
62
- "@una-ui/preset": "^0.67.0"
61
+ "@una-ui/extractor-vue-script": "^0.67.2",
62
+ "@una-ui/preset": "^0.67.2"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@iconify-json/lucide": "^1.2.86",