@una-ui/nuxt 1.0.0-alpha.2 → 1.0.0-alpha.4
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 +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/alert-dialog/AlertDialog.vue.d.ts +1 -1
- package/dist/runtime/components/alert-dialog/AlertDialogContent.vue +0 -1
- package/dist/runtime/components/aspect-ratio/AspectRatio.vue.d.ts +1 -1
- package/dist/runtime/components/combobox/Combobox.vue.d.ts +6 -6
- package/dist/runtime/components/data/table/Table.vue +5 -1
- package/dist/runtime/components/data/table/TableEmpty.vue +17 -9
- package/dist/runtime/components/data/table/TableEmpty.vue.d.ts +4 -0
- package/dist/runtime/components/drawer/Drawer.vue.d.ts +1 -1
- package/dist/runtime/components/drawer/DrawerContent.vue +0 -1
- package/dist/runtime/components/elements/Progress.vue.d.ts +1 -1
- package/dist/runtime/components/elements/collapsible/Collapsible.vue.d.ts +2 -2
- package/dist/runtime/components/elements/dialog/Dialog.vue.d.ts +1 -1
- package/dist/runtime/components/elements/dialog/DialogContent.vue +0 -1
- package/dist/runtime/components/elements/dialog/DialogScrollContent.vue +0 -1
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenu.vue.d.ts +1 -1
- package/dist/runtime/components/elements/pagination/Pagination.vue.d.ts +2 -5
- package/dist/runtime/components/elements/popover/Popover.vue.d.ts +1 -1
- package/dist/runtime/components/forms/Switch.vue.d.ts +2 -2
- package/dist/runtime/components/forms/radio-group/RadioGroup.vue.d.ts +1 -1
- package/dist/runtime/components/forms/select/Select.vue.d.ts +8 -8
- package/dist/runtime/components/hover-card/HoverCard.vue.d.ts +1 -1
- package/dist/runtime/components/misc/ThemeSwitcher.vue.d.ts +1 -1
- package/dist/runtime/components/navigation-menu/NavigationMenu.vue.d.ts +1 -1
- package/dist/runtime/components/resizable/ResizablePanel.vue.d.ts +1 -7
- package/dist/runtime/components/resizable/ResizablePanelGroup.vue.d.ts +1 -3
- package/dist/runtime/components/sheet/Sheet.vue.d.ts +1 -1
- package/dist/runtime/components/sheet/SheetContent.vue +0 -1
- package/dist/runtime/composables/useUnaSettings.js +8 -10
- package/dist/runtime/types/table.d.ts +16 -3
- package/package.json +9 -9
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { NAlertDialogProps } from '../../types/index.js';
|
|
2
2
|
declare var __VLS_6: {}, __VLS_11: {
|
|
3
|
-
open:
|
|
3
|
+
open: any;
|
|
4
4
|
}, __VLS_26: {}, __VLS_31: {}, __VLS_36: {}, __VLS_41: {}, __VLS_46: {}, __VLS_48: {}, __VLS_57: {}, __VLS_59: {}, __VLS_68: {};
|
|
5
5
|
type __VLS_Slots = {} & {
|
|
6
6
|
default?: (props: typeof __VLS_6) => any;
|
|
@@ -19,7 +19,6 @@ const props = defineProps({
|
|
|
19
19
|
_alertDialogOverlay: { type: Object, required: false },
|
|
20
20
|
una: { type: Object, required: false },
|
|
21
21
|
forceMount: { type: Boolean, required: false },
|
|
22
|
-
trapFocus: { type: Boolean, required: false },
|
|
23
22
|
disableOutsidePointerEvents: { type: Boolean, required: false },
|
|
24
23
|
asChild: { type: Boolean, required: false },
|
|
25
24
|
as: { type: null, required: false },
|
|
@@ -19,20 +19,20 @@ declare const _default: <T extends AcceptableValue>(__VLS_props: NonNullable<Awa
|
|
|
19
19
|
'trigger-wrapper'?: (props: {}) => any;
|
|
20
20
|
} & {
|
|
21
21
|
trigger?: (props: {
|
|
22
|
-
modelValue:
|
|
23
|
-
open:
|
|
22
|
+
modelValue: any;
|
|
23
|
+
open: any;
|
|
24
24
|
}) => any;
|
|
25
25
|
} & {
|
|
26
26
|
'input-wrapper'?: (props: {
|
|
27
|
-
modelValue:
|
|
28
|
-
open:
|
|
27
|
+
modelValue: any;
|
|
28
|
+
open: any;
|
|
29
29
|
}) => any;
|
|
30
30
|
} & {
|
|
31
31
|
list?: (props: {}) => any;
|
|
32
32
|
} & {
|
|
33
33
|
'input-wrapper'?: (props: {
|
|
34
|
-
modelValue:
|
|
35
|
-
open:
|
|
34
|
+
modelValue: any;
|
|
35
|
+
open: any;
|
|
36
36
|
}) => any;
|
|
37
37
|
} & {
|
|
38
38
|
header?: (props: {}) => any;
|
|
@@ -73,7 +73,9 @@ const props = defineProps({
|
|
|
73
73
|
getSubRows: { type: Function, required: false },
|
|
74
74
|
initialState: { type: Object, required: false },
|
|
75
75
|
mergeOptions: { type: Function, required: false },
|
|
76
|
-
meta: { type: Object, required: false }
|
|
76
|
+
meta: { type: Object, required: false },
|
|
77
|
+
emptyText: { type: String, required: false },
|
|
78
|
+
emptyIcon: { type: String, required: false }
|
|
77
79
|
});
|
|
78
80
|
const emit = defineEmits(["select", "selectAll", "expand", "row"]);
|
|
79
81
|
const slots = defineSlots();
|
|
@@ -429,6 +431,8 @@ defineExpose({
|
|
|
429
431
|
v-else
|
|
430
432
|
:colspan="table.getAllLeafColumns().length"
|
|
431
433
|
:una
|
|
434
|
+
:empty-text="props.emptyText"
|
|
435
|
+
:empty-icon="props.emptyIcon"
|
|
432
436
|
v-bind="props._tableEmpty"
|
|
433
437
|
>
|
|
434
438
|
<slot name="empty" />
|
|
@@ -6,6 +6,8 @@ import TableRow from "./TableRow.vue";
|
|
|
6
6
|
const props = defineProps({
|
|
7
7
|
class: { type: null, required: false },
|
|
8
8
|
colspan: { type: Number, required: false, default: 1 },
|
|
9
|
+
emptyText: { type: String, required: false, default: "No results." },
|
|
10
|
+
emptyIcon: { type: String, required: false, default: "table-empty-icon-name" },
|
|
9
11
|
_tableCell: { type: Object, required: false },
|
|
10
12
|
_tableRow: { type: Object, required: false },
|
|
11
13
|
una: { type: Object, required: false }
|
|
@@ -40,16 +42,22 @@ const delegatedProps = reactiveOmit(props, ["class"]);
|
|
|
40
42
|
v-bind="omitProps(delegatedProps, ['_tableRow', '_tableCell', 'colspan'])"
|
|
41
43
|
>
|
|
42
44
|
<slot>
|
|
43
|
-
<
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
<NIcon
|
|
46
|
+
:name="props.emptyIcon"
|
|
47
|
+
:class="cn(
|
|
48
|
+
'table-empty-icon',
|
|
49
|
+
props.una?.tableEmptyIcon
|
|
50
|
+
)"
|
|
51
|
+
/>
|
|
48
52
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
+
<span
|
|
54
|
+
:class="cn(
|
|
55
|
+
'table-empty-text',
|
|
56
|
+
props.una?.tableEmptyText
|
|
57
|
+
)"
|
|
58
|
+
>
|
|
59
|
+
{{ props.emptyText }}
|
|
60
|
+
</span>
|
|
53
61
|
</slot>
|
|
54
62
|
</div>
|
|
55
63
|
</TableCell>
|
|
@@ -5,8 +5,12 @@ type __VLS_Slots = {} & {
|
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NTableEmptyProps>, {
|
|
7
7
|
colspan: number;
|
|
8
|
+
emptyText: string;
|
|
9
|
+
emptyIcon: string;
|
|
8
10
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NTableEmptyProps>, {
|
|
9
11
|
colspan: number;
|
|
12
|
+
emptyText: string;
|
|
13
|
+
emptyIcon: string;
|
|
10
14
|
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
15
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
16
|
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { NDrawerProps } from '../../types/index.js';
|
|
2
2
|
declare var __VLS_6: {}, __VLS_11: {
|
|
3
|
-
open:
|
|
3
|
+
open: any;
|
|
4
4
|
}, __VLS_26: {}, __VLS_31: {}, __VLS_36: {}, __VLS_41: {}, __VLS_43: {}, __VLS_48: {}, __VLS_53: {};
|
|
5
5
|
type __VLS_Slots = {} & {
|
|
6
6
|
default?: (props: typeof __VLS_6) => any;
|
|
@@ -14,7 +14,6 @@ const props = defineProps({
|
|
|
14
14
|
_drawerOverlay: { type: Object, required: false },
|
|
15
15
|
una: { type: Object, required: false },
|
|
16
16
|
forceMount: { type: Boolean, required: false },
|
|
17
|
-
trapFocus: { type: Boolean, required: false },
|
|
18
17
|
disableOutsidePointerEvents: { type: Boolean, required: false },
|
|
19
18
|
asChild: { type: Boolean, required: false },
|
|
20
19
|
as: { type: null, required: false },
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { NDialogProps } from '../../../types/index.js';
|
|
2
2
|
declare var __VLS_6: {}, __VLS_11: {
|
|
3
|
-
open:
|
|
3
|
+
open: any;
|
|
4
4
|
}, __VLS_27: {}, __VLS_32: {}, __VLS_37: {}, __VLS_42: {}, __VLS_44: {}, __VLS_49: {};
|
|
5
5
|
type __VLS_Slots = {} & {
|
|
6
6
|
default?: (props: typeof __VLS_6) => any;
|
|
@@ -20,7 +20,6 @@ const props = defineProps({
|
|
|
20
20
|
_dialogOverlay: { type: Object, required: false },
|
|
21
21
|
una: { type: Object, required: false },
|
|
22
22
|
forceMount: { type: Boolean, required: false },
|
|
23
|
-
trapFocus: { type: Boolean, required: false },
|
|
24
23
|
disableOutsidePointerEvents: { type: Boolean, required: false },
|
|
25
24
|
asChild: { type: Boolean, required: false },
|
|
26
25
|
as: { type: null, required: false },
|
|
@@ -20,7 +20,6 @@ const props = defineProps({
|
|
|
20
20
|
_dialogOverlay: { type: Object, required: false },
|
|
21
21
|
una: { type: Object, required: false },
|
|
22
22
|
forceMount: { type: Boolean, required: false },
|
|
23
|
-
trapFocus: { type: Boolean, required: false },
|
|
24
23
|
disableOutsidePointerEvents: { type: Boolean, required: false },
|
|
25
24
|
asChild: { type: Boolean, required: false },
|
|
26
25
|
as: { type: null, required: false },
|
|
@@ -4,7 +4,7 @@ declare var __VLS_7: {}, __VLS_12: {}, __VLS_17: {}, __VLS_22: {
|
|
|
4
4
|
}, __VLS_27: {
|
|
5
5
|
items: NDropdownMenuProps[] | undefined;
|
|
6
6
|
}, __VLS_30: `item-${string}`, __VLS_31: {}, __VLS_62: {
|
|
7
|
-
label:
|
|
7
|
+
label: any;
|
|
8
8
|
};
|
|
9
9
|
type __VLS_Slots = {} & {
|
|
10
10
|
[K in NonNullable<typeof __VLS_30>]?: (props: typeof __VLS_31) => any;
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import type { NPaginationProps } from '../../../types/index.js';
|
|
2
2
|
declare var __VLS_10: {}, __VLS_15: {}, __VLS_20: {}, __VLS_22: {
|
|
3
|
-
item:
|
|
4
|
-
|
|
5
|
-
value: number;
|
|
6
|
-
};
|
|
7
|
-
page: number;
|
|
3
|
+
item: any;
|
|
4
|
+
page: any;
|
|
8
5
|
}, __VLS_30: {}, __VLS_35: {}, __VLS_40: {};
|
|
9
6
|
type __VLS_Slots = {} & {
|
|
10
7
|
default?: (props: typeof __VLS_10) => any;
|
|
@@ -9,23 +9,23 @@ declare const _default: <T extends AcceptableValue>(__VLS_props: NonNullable<Awa
|
|
|
9
9
|
attrs: any;
|
|
10
10
|
slots: {
|
|
11
11
|
default?: (props: {
|
|
12
|
-
modelValue:
|
|
13
|
-
open:
|
|
12
|
+
modelValue: any;
|
|
13
|
+
open: any;
|
|
14
14
|
}) => any;
|
|
15
15
|
} & {
|
|
16
16
|
'trigger-wrapper'?: (props: {
|
|
17
|
-
modelValue:
|
|
18
|
-
open:
|
|
17
|
+
modelValue: any;
|
|
18
|
+
open: any;
|
|
19
19
|
}) => any;
|
|
20
20
|
} & {
|
|
21
21
|
trigger?: (props: {
|
|
22
|
-
modelValue:
|
|
23
|
-
open:
|
|
22
|
+
modelValue: any;
|
|
23
|
+
open: any;
|
|
24
24
|
}) => any;
|
|
25
25
|
} & {
|
|
26
26
|
value?: (props: {
|
|
27
|
-
modelValue:
|
|
28
|
-
open:
|
|
27
|
+
modelValue: any;
|
|
28
|
+
open: any;
|
|
29
29
|
}) => any;
|
|
30
30
|
} & {
|
|
31
31
|
content?: (props: {
|
|
@@ -29,7 +29,7 @@ declare const _default: <T extends U[], U extends NNavigationMenuItemProps>(__VL
|
|
|
29
29
|
}) => any;
|
|
30
30
|
} & {
|
|
31
31
|
trigger?: (props: {
|
|
32
|
-
modelValue:
|
|
32
|
+
modelValue: any;
|
|
33
33
|
item: T extends number ? number : T extends string ? string : T extends any[] ? T[number] : T extends Iterable<infer T1> ? T1 : any;
|
|
34
34
|
index: number;
|
|
35
35
|
}) => any;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
import type { NResizablePanelProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_6:
|
|
3
|
-
isCollapsed: boolean;
|
|
4
|
-
isExpanded: boolean;
|
|
5
|
-
collapse: () => void;
|
|
6
|
-
expand: () => void;
|
|
7
|
-
resize: (size: number) => void;
|
|
8
|
-
};
|
|
2
|
+
declare var __VLS_6: any;
|
|
9
3
|
type __VLS_Slots = {} & {
|
|
10
4
|
default?: (props: typeof __VLS_6) => any;
|
|
11
5
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { NSheetProps } from '../../types/index.js';
|
|
2
2
|
declare var __VLS_6: {}, __VLS_11: {
|
|
3
|
-
open:
|
|
3
|
+
open: any;
|
|
4
4
|
}, __VLS_26: {}, __VLS_31: {}, __VLS_36: {}, __VLS_41: {}, __VLS_43: {}, __VLS_45: {}, __VLS_50: {};
|
|
5
5
|
type __VLS_Slots = {} & {
|
|
6
6
|
default?: (props: typeof __VLS_6) => any;
|
|
@@ -19,7 +19,6 @@ const props = defineProps({
|
|
|
19
19
|
_sheetPortal: { type: Object, required: false },
|
|
20
20
|
una: { type: Object, required: false },
|
|
21
21
|
forceMount: { type: Boolean, required: false },
|
|
22
|
-
trapFocus: { type: Boolean, required: false },
|
|
23
22
|
disableOutsidePointerEvents: { type: Boolean, required: false },
|
|
24
23
|
asChild: { type: Boolean, required: false },
|
|
25
24
|
as: { type: null, required: false }
|
|
@@ -18,16 +18,14 @@ export function useUnaSettings() {
|
|
|
18
18
|
const settings = useStorage("una-settings", defaultSettings, void 0, {
|
|
19
19
|
mergeDefaults: defu
|
|
20
20
|
});
|
|
21
|
-
watch(
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
settings.value.
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
}, { immediate: true, deep: true });
|
|
21
|
+
watch(
|
|
22
|
+
() => [settings.value.primary, settings.value.gray],
|
|
23
|
+
([primary, gray]) => {
|
|
24
|
+
settings.value.primaryColors = primary ? getPrimaryColors(primary) : {};
|
|
25
|
+
settings.value.grayColors = gray ? getGrayColors(gray) : {};
|
|
26
|
+
},
|
|
27
|
+
{ immediate: true }
|
|
28
|
+
);
|
|
31
29
|
function reset() {
|
|
32
30
|
if (una.theme) {
|
|
33
31
|
settings.value.theme = una.theme;
|
|
@@ -3,7 +3,7 @@ import type { PrimitiveProps } from 'reka-ui';
|
|
|
3
3
|
import type { HTMLAttributes } from 'vue';
|
|
4
4
|
import type { NProgressProps } from './progress.js';
|
|
5
5
|
import type { NScrollAreaProps, NScrollAreaUnaProps } from './scroll-area.js';
|
|
6
|
-
export interface NTableProps<TData, TValue> extends Omit<CoreOptions<TData>, 'data' | 'columns' | 'getCoreRowModel' | 'state' | 'onStateChange' | 'renderFallbackValue'> {
|
|
6
|
+
export interface NTableProps<TData, TValue> extends Omit<CoreOptions<TData>, 'data' | 'columns' | 'getCoreRowModel' | 'state' | 'onStateChange' | 'renderFallbackValue'>, Pick<NTableEmptyProps, 'emptyText' | 'emptyIcon'> {
|
|
7
7
|
class?: HTMLAttributes['class'];
|
|
8
8
|
/**
|
|
9
9
|
* @see https://tanstack.com/table/latest/docs/api/core/table#state
|
|
@@ -115,6 +115,9 @@ export interface NTableProps<TData, TValue> extends Omit<CoreOptions<TData>, 'da
|
|
|
115
115
|
_tableEmpty?: NTableEmptyProps;
|
|
116
116
|
_tableLoading?: NTableLoadingProps;
|
|
117
117
|
_scrollArea?: NScrollAreaProps;
|
|
118
|
+
/**
|
|
119
|
+
* Whether the table is loading.
|
|
120
|
+
*/
|
|
118
121
|
loading?: boolean;
|
|
119
122
|
/**
|
|
120
123
|
* `UnaUI` preset configuration
|
|
@@ -159,9 +162,17 @@ export interface NTableEmptyProps {
|
|
|
159
162
|
[key: string]: any;
|
|
160
163
|
class?: HTMLAttributes['class'];
|
|
161
164
|
colspan?: number;
|
|
165
|
+
/**
|
|
166
|
+
* The text to display when the table is empty.
|
|
167
|
+
*/
|
|
168
|
+
emptyText?: string;
|
|
169
|
+
/**
|
|
170
|
+
* The icon to display when the table is empty.
|
|
171
|
+
*/
|
|
172
|
+
emptyIcon?: string;
|
|
162
173
|
_tableCell?: NTableCellProps;
|
|
163
174
|
_tableRow?: NTableRowProps;
|
|
164
|
-
una?: Pick<NTableUnaProps, 'tableEmpty' | 'tableRow' | 'tableCell'>;
|
|
175
|
+
una?: Pick<NTableUnaProps, 'tableEmpty' | 'tableRow' | 'tableCell' | 'tableEmptyText' | 'tableEmptyIcon'>;
|
|
165
176
|
}
|
|
166
177
|
export interface NTableLoadingProps {
|
|
167
178
|
[key: string]: any;
|
|
@@ -189,9 +200,11 @@ interface NTableUnaProps {
|
|
|
189
200
|
tableRow?: HTMLAttributes['class'];
|
|
190
201
|
tableCell?: HTMLAttributes['class'];
|
|
191
202
|
tableCaption?: HTMLAttributes['class'];
|
|
192
|
-
tableEmpty?: HTMLAttributes['class'];
|
|
193
203
|
tableLoading?: HTMLAttributes['class'];
|
|
194
204
|
tableLoadingRow?: HTMLAttributes['class'];
|
|
195
205
|
tableLoadingCell?: HTMLAttributes['class'];
|
|
206
|
+
tableEmpty?: HTMLAttributes['class'];
|
|
207
|
+
tableEmptyText?: HTMLAttributes['class'];
|
|
208
|
+
tableEmptyIcon?: HTMLAttributes['class'];
|
|
196
209
|
}
|
|
197
210
|
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@una-ui/nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.0-alpha.
|
|
4
|
+
"version": "1.0.0-alpha.4",
|
|
5
5
|
"description": "Nuxt module for @una-ui",
|
|
6
6
|
"author": "Phojie Rengel <phojrengel@gmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@headlessui/vue": "^1.7.23",
|
|
40
40
|
"@iconify/utils": "^2.3.0",
|
|
41
|
-
"@nuxt/kit": "^3.17.
|
|
41
|
+
"@nuxt/kit": "^3.17.7",
|
|
42
42
|
"@nuxtjs/color-mode": "^3.5.2",
|
|
43
43
|
"@tanstack/vue-table": "^8.21.3",
|
|
44
44
|
"@unocss/core": "^66.2.0",
|
|
@@ -53,22 +53,22 @@
|
|
|
53
53
|
"class-variance-authority": "^0.7.1",
|
|
54
54
|
"clsx": "^2.1.1",
|
|
55
55
|
"ohash": "^1.1.6",
|
|
56
|
-
"reka-ui": "^2.3.
|
|
56
|
+
"reka-ui": "^2.3.2",
|
|
57
57
|
"tailwind-merge": "^3.3.1",
|
|
58
58
|
"unocss": "^66.2.0",
|
|
59
59
|
"unocss-preset-animations": "^1.2.1",
|
|
60
60
|
"vaul-vue": "^0.4.1",
|
|
61
|
-
"@una-ui/
|
|
62
|
-
"@una-ui/
|
|
61
|
+
"@una-ui/preset": "^1.0.0-alpha.4",
|
|
62
|
+
"@una-ui/extractor-vue-script": "^1.0.0-alpha.4"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@iconify-json/lucide": "^1.2.
|
|
65
|
+
"@iconify-json/lucide": "^1.2.57",
|
|
66
66
|
"@iconify-json/radix-icons": "^1.2.2",
|
|
67
67
|
"@iconify-json/tabler": "^1.2.19",
|
|
68
68
|
"@nuxt/module-builder": "^1.0.1",
|
|
69
|
-
"@nuxt/schema": "^3.17.
|
|
70
|
-
"nuxt": "^3.17.
|
|
71
|
-
"zod": "^3.25.
|
|
69
|
+
"@nuxt/schema": "^3.17.7",
|
|
70
|
+
"nuxt": "^3.17.7",
|
|
71
|
+
"zod": "^3.25.76"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|