@una-ui/nuxt 0.56.4 → 0.56.5

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.
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@una-ui/nuxt",
3
3
  "configKey": "una",
4
- "version": "0.56.4",
4
+ "version": "0.56.5",
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.56.4";
11
+ const version = "0.56.5";
12
12
 
13
13
  const module = defineNuxtModule({
14
14
  meta: {
@@ -30,9 +30,9 @@ declare const __VLS_component: import("vue").DefineComponent<NComboboxListProps,
30
30
  originalEvent: FocusEvent;
31
31
  }>) => any) | undefined;
32
32
  }>, {
33
- position: "inline" | "popper";
34
33
  sideOffset: number;
35
34
  align: "start" | "center" | "end";
35
+ position: "inline" | "popper";
36
36
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
37
37
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
38
38
  export default _default;
@@ -46,7 +46,7 @@ const delegatedProps = reactiveOmit(props, ["class", "size"]);
46
46
  :size
47
47
  data-slot="tabs-trigger"
48
48
  :class="cn(
49
- 'tabs-trigger h-[calc(100%-1px)]',
49
+ 'tabs-trigger',
50
50
  props.una?.tabsTrigger,
51
51
  props.class
52
52
  )"
@@ -18,6 +18,7 @@ const props = defineProps({
18
18
  _breadcrumbList: { type: Object, required: false },
19
19
  _breadcrumbLink: { type: Object, required: false },
20
20
  _breadcrumbEllipsis: { type: Object, required: false },
21
+ _dropdownMenu: { type: Object, required: false },
21
22
  una: { type: Object, required: false },
22
23
  class: { type: null, required: false },
23
24
  breadcrumbActive: { type: String, required: false },
@@ -71,8 +72,10 @@ const props = defineProps({
71
72
  <DropdownMenu
72
73
  :size
73
74
  :modal="false"
75
+ v-bind="_dropdownMenu"
74
76
  :items="item.children"
75
77
  :_dropdown-menu-item="{
78
+ ..._dropdownMenu?._dropdownMenuItem,
76
79
  ..._breadcrumbLink
77
80
  }"
78
81
  >
@@ -1,5 +1,6 @@
1
1
  import type { HTMLAttributes } from 'vue';
2
2
  import type { NButtonProps } from './button.js';
3
+ import type { NDropdownMenuProps } from './dropdown-menu.js';
3
4
  interface BaseExtensions {
4
5
  class?: HTMLAttributes['class'];
5
6
  }
@@ -31,6 +32,7 @@ export interface NBreadcrumbProps extends BaseExtensions, Pick<NBreadcrumbLinkPr
31
32
  _breadcrumbList?: Partial<NBreadcrumbListProps>;
32
33
  _breadcrumbLink?: Partial<NBreadcrumbLinkProps>;
33
34
  _breadcrumbEllipsis?: Partial<NBreadcrumbEllipsisProps>;
35
+ _dropdownMenu?: Partial<NDropdownMenuProps>;
34
36
  /**
35
37
  * `UnaUI` preset configuration
36
38
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@una-ui/nuxt",
3
3
  "type": "module",
4
- "version": "0.56.4",
4
+ "version": "0.56.5",
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.0.0",
59
59
  "unocss-preset-animations": "^1.2.1",
60
60
  "vaul-vue": "^0.4.1",
61
- "@una-ui/extractor-vue-script": "^0.56.4",
62
- "@una-ui/preset": "^0.56.4"
61
+ "@una-ui/preset": "^0.56.5",
62
+ "@una-ui/extractor-vue-script": "^0.56.5"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@iconify-json/lucide": "^1.2.44",