@una-ui/nuxt-edge 0.63.1-29223054.cf14fd5 → 0.63.1-29225774.2225cfc

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 (35) hide show
  1. package/dist/module.json +2 -2
  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 +2 -0
  5. package/dist/runtime/components/combobox/ComboboxList.vue +2 -0
  6. package/dist/runtime/components/elements/Button.vue.d.ts +3 -3
  7. package/dist/runtime/components/elements/avatar/Avatar.vue.d.ts +2 -2
  8. package/dist/runtime/components/elements/dialog/DialogClose.vue.d.ts +1 -1
  9. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuContent.vue +2 -0
  10. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuItem.vue.d.ts +1 -1
  11. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSubContent.vue +2 -0
  12. package/dist/runtime/components/elements/pagination/PaginationFirst.vue.d.ts +1 -1
  13. package/dist/runtime/components/elements/pagination/PaginationLast.vue.d.ts +1 -1
  14. package/dist/runtime/components/elements/pagination/PaginationNext.vue.d.ts +1 -1
  15. package/dist/runtime/components/elements/pagination/PaginationPrev.vue.d.ts +1 -1
  16. package/dist/runtime/components/elements/popover/PopoverContent.vue +2 -0
  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/forms/select/SelectContent.vue +2 -0
  20. package/dist/runtime/components/hover-card/HoverCardContent.vue +2 -0
  21. package/dist/runtime/components/navigation/breadcrumb/BreadcrumbEllipsis.vue.d.ts +1 -1
  22. package/dist/runtime/components/navigation/breadcrumb/BreadcrumbSeparator.vue.d.ts +1 -1
  23. package/dist/runtime/components/navigation-menu/NavigationMenuLink.vue.d.ts +1 -1
  24. package/dist/runtime/components/navigation-menu/NavigationMenuTrigger.vue.d.ts +1 -1
  25. package/dist/runtime/components/number-field/NumberField.vue +1 -0
  26. package/dist/runtime/components/number-field/NumberField.vue.d.ts +1 -1
  27. package/dist/runtime/components/number-field/NumberFieldDecrement.vue.d.ts +1 -1
  28. package/dist/runtime/components/number-field/NumberFieldIncrement.vue.d.ts +1 -1
  29. package/dist/runtime/components/overlays/toast/ToastAction.vue.d.ts +1 -1
  30. package/dist/runtime/components/resizable/ResizableHandle.vue +1 -0
  31. package/dist/runtime/components/scroll-area/ScrollArea.vue.d.ts +1 -1
  32. package/dist/runtime/components/sidebar/SidebarMenuButton.vue.d.ts +1 -1
  33. package/dist/runtime/components/sidebar/SidebarMenuButtonChild.vue.d.ts +1 -1
  34. package/dist/runtime/components/sidebar/SidebarMenuSubButton.vue.d.ts +1 -1
  35. package/package.json +9 -9
package/dist/module.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@una-ui/nuxt-edge",
3
3
  "configKey": "una",
4
- "version": "0.63.1-29223054.cf14fd5",
4
+ "version": "0.63.1-29225774.2225cfc",
5
5
  "compatibility": {
6
6
  "nuxt": ">=3.0.0"
7
7
  },
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.1",
10
- "unbuild": "3.5.0"
10
+ "unbuild": "3.6.0"
11
11
  }
12
12
  }
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-edge";
11
- const version = "0.63.1-29223054.cf14fd5";
11
+ const version = "0.63.1-29225774.2225cfc";
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;
@@ -45,6 +45,8 @@ const props = defineProps({
45
45
  defaultOpen: { type: Boolean, required: false },
46
46
  resetSearchTermOnBlur: { type: Boolean, required: false },
47
47
  resetSearchTermOnSelect: { type: Boolean, required: false },
48
+ openOnFocus: { type: Boolean, required: false },
49
+ openOnClick: { type: Boolean, required: false },
48
50
  ignoreFilter: { type: Boolean, required: false },
49
51
  defaultValue: { type: null, required: false },
50
52
  dir: { type: String, required: false },
@@ -13,8 +13,10 @@ const props = defineProps({
13
13
  bodyLock: { type: Boolean, required: false },
14
14
  side: { type: null, required: false },
15
15
  sideOffset: { type: Number, required: false, default: 4 },
16
+ sideFlip: { type: Boolean, required: false },
16
17
  align: { type: null, required: false, default: "center" },
17
18
  alignOffset: { type: Number, required: false },
19
+ alignFlip: { type: Boolean, required: false },
18
20
  avoidCollisions: { type: Boolean, required: false },
19
21
  collisionBoundary: { type: null, required: false },
20
22
  collisionPadding: { type: [Number, Object], required: false },
@@ -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;
@@ -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
+ as: import("reka-ui").AsTag | import("vue").Component;
10
+ rounded: import("vue").HTMLAttributes["class"];
9
11
  size: import("vue").HTMLAttributes["class"];
10
12
  square: import("vue").HTMLAttributes["class"];
11
- rounded: import("vue").HTMLAttributes["class"];
12
- as: import("reka-ui").AsTag | import("vue").Component;
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>;
@@ -19,8 +19,10 @@ const props = defineProps({
19
19
  loop: { type: Boolean, required: false },
20
20
  side: { type: null, required: false },
21
21
  sideOffset: { type: Number, required: false, default: 4 },
22
+ sideFlip: { type: Boolean, required: false },
22
23
  align: { type: null, required: false },
23
24
  alignOffset: { type: Number, required: false },
25
+ alignFlip: { type: Boolean, required: false },
24
26
  avoidCollisions: { type: Boolean, required: false },
25
27
  collisionBoundary: { type: null, required: false },
26
28
  collisionPadding: { type: [Number, Object], required: false },
@@ -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>;
@@ -12,7 +12,9 @@ const props = defineProps({
12
12
  forceMount: { type: Boolean, required: false },
13
13
  loop: { type: Boolean, required: false },
14
14
  sideOffset: { type: Number, required: false },
15
+ sideFlip: { type: Boolean, required: false },
15
16
  alignOffset: { type: Number, required: false },
17
+ alignFlip: { type: Boolean, required: false },
16
18
  avoidCollisions: { type: Boolean, required: false },
17
19
  collisionBoundary: { type: null, required: false },
18
20
  collisionPadding: { type: [Number, Object], required: false },
@@ -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,8 +13,10 @@ const props = defineProps({
13
13
  forceMount: { type: Boolean, required: false },
14
14
  side: { type: null, required: false },
15
15
  sideOffset: { type: Number, required: false, default: 4 },
16
+ sideFlip: { type: Boolean, required: false },
16
17
  align: { type: null, required: false, default: "center" },
17
18
  alignOffset: { type: Number, required: false },
19
+ alignFlip: { type: Boolean, required: false },
18
20
  avoidCollisions: { type: Boolean, required: false },
19
21
  collisionBoundary: { type: null, required: false },
20
22
  collisionPadding: { type: [Number, Object], required: false },
@@ -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>;
@@ -22,8 +22,10 @@ const props = defineProps({
22
22
  bodyLock: { type: Boolean, required: false },
23
23
  side: { type: null, required: false },
24
24
  sideOffset: { type: Number, required: false },
25
+ sideFlip: { type: Boolean, required: false },
25
26
  align: { type: null, required: false },
26
27
  alignOffset: { type: Number, required: false },
28
+ alignFlip: { type: Boolean, required: false },
27
29
  avoidCollisions: { type: Boolean, required: false },
28
30
  collisionBoundary: { type: null, required: false },
29
31
  collisionPadding: { type: [Number, Object], required: false },
@@ -14,8 +14,10 @@ const props = defineProps({
14
14
  forceMount: { type: Boolean, required: false },
15
15
  side: { type: null, required: false },
16
16
  sideOffset: { type: Number, required: false, default: 4 },
17
+ sideFlip: { type: Boolean, required: false },
17
18
  align: { type: null, required: false },
18
19
  alignOffset: { type: Number, required: false },
20
+ alignFlip: { type: Boolean, required: false },
19
21
  avoidCollisions: { type: Boolean, required: false },
20
22
  collisionBoundary: { type: null, required: false },
21
23
  collisionPadding: { type: [Number, Object], required: false },
@@ -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,9 +14,9 @@ declare const __VLS_component: import("vue").DefineComponent<NNavigationMenuLink
14
14
  originalEvent: Event;
15
15
  }>) => any) | undefined;
16
16
  }>, {
17
+ as: import("reka-ui").AsTag | import("vue").Component;
17
18
  btn: string;
18
19
  navigationMenuLink: string;
19
- as: import("reka-ui").AsTag | import("vue").Component;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
22
22
  export default _default;
@@ -4,10 +4,10 @@ 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
10
  navigationMenu: string;
10
- as: import("reka-ui").AsTag | import("vue").Component;
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;
@@ -19,6 +19,7 @@ const props = defineProps({
19
19
  formatOptions: { type: null, required: false },
20
20
  locale: { type: String, required: false },
21
21
  disabled: { type: Boolean, required: false },
22
+ readonly: { type: Boolean, required: false },
22
23
  disableWheelChange: { type: Boolean, required: false },
23
24
  invertWheelChange: { type: Boolean, required: false },
24
25
  id: { type: String, required: false },
@@ -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;
@@ -12,6 +12,7 @@ const props = defineProps({
12
12
  hitAreaMargins: { type: Object, required: false },
13
13
  tabindex: { type: Number, required: false },
14
14
  disabled: { type: Boolean, required: false },
15
+ nonce: { type: String, required: false },
15
16
  asChild: { type: Boolean, required: false },
16
17
  as: { type: [String, Object, Function], required: false },
17
18
  class: { type: null, required: false }
@@ -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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@una-ui/nuxt-edge",
3
3
  "type": "module",
4
- "version": "0.63.1-29223054.cf14fd5",
4
+ "version": "0.63.1-29225774.2225cfc",
5
5
  "description": "Nuxt module for @una-ui",
6
6
  "author": "Phojie Rengel <phojrengel@gmail.com>",
7
7
  "license": "MIT",
@@ -41,12 +41,12 @@
41
41
  "@nuxt/kit": "^3.17.7",
42
42
  "@nuxtjs/color-mode": "^3.5.2",
43
43
  "@tanstack/vue-table": "^8.21.3",
44
- "@una-ui/extractor-vue-script": "npm:@una-ui/extractor-vue-script-edge@0.63.1-29223054.cf14fd5",
45
- "@una-ui/preset": "npm:@una-ui/preset-edge@0.63.1-29223054.cf14fd5",
46
- "@unocss/core": "^66.0.0",
47
- "@unocss/nuxt": "^66.0.0",
48
- "@unocss/preset-attributify": "^66.0.0",
49
- "@unocss/preset-icons": "^66.0.0",
44
+ "@una-ui/extractor-vue-script": "npm:@una-ui/extractor-vue-script-edge@0.63.1-29225774.2225cfc",
45
+ "@una-ui/preset": "npm:@una-ui/preset-edge@0.63.1-29225774.2225cfc",
46
+ "@unocss/core": "^66.3.3",
47
+ "@unocss/nuxt": "^66.3.3",
48
+ "@unocss/preset-attributify": "^66.3.3",
49
+ "@unocss/preset-icons": "^66.3.3",
50
50
  "@vee-validate/nuxt": "^4.15.1",
51
51
  "@vee-validate/zod": "^4.15.1",
52
52
  "@vueuse/core": "^12.8.2",
@@ -55,9 +55,9 @@
55
55
  "class-variance-authority": "^0.7.1",
56
56
  "clsx": "^2.1.1",
57
57
  "ohash": "^1.1.6",
58
- "reka-ui": "^2.3.2",
58
+ "reka-ui": "^2.4.0",
59
59
  "tailwind-merge": "^3.3.1",
60
- "unocss": "^66.0.0",
60
+ "unocss": "^66.3.3",
61
61
  "unocss-preset-animations": "^1.2.1",
62
62
  "vaul-vue": "^0.4.1"
63
63
  },