@nuxt/devtools-ui-kit-nightly 3.1.1-29404851.4bbdfca → 3.1.1-29462902.5c4a0b0
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/components/NBadgeHashed.vue.d.ts +2 -2
- package/dist/components/NCheckbox.vue.d.ts +6 -3
- package/dist/components/NCodeBlock.vue.d.ts +7 -1
- package/dist/components/NDarkToggle.vue.d.ts +10 -1
- package/dist/components/NDialog.vue.d.ts +7 -3
- package/dist/components/NDrawer.vue.d.ts +5 -3
- package/dist/components/NDropdown.vue.d.ts +4 -2
- package/dist/components/NNavbar.vue.d.ts +3 -3
- package/dist/components/NRadio.vue.d.ts +4 -1
- package/dist/components/NSectionBlock.vue.d.ts +10 -5
- package/dist/components/NSelect.vue.d.ts +8 -3
- package/dist/components/NSelectTabs.vue.d.ts +4 -1
- package/dist/components/NSplitPane.vue.d.ts +3 -1
- package/dist/components/NSwitch.vue.d.ts +3 -1
- package/dist/components/NTextInput.vue.d.ts +4 -1
- package/dist/components/NTip.vue.d.ts +2 -2
- package/dist/module.d.mts +1 -1
- package/dist/module.d.ts +1 -1
- package/dist/module.json +1 -1
- package/dist/unocss.d.mts +1 -1
- package/dist/unocss.d.ts +1 -1
- package/package.json +20 -20
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
text: string;
|
|
3
3
|
};
|
|
4
|
-
declare var
|
|
4
|
+
declare var __VLS_8: {};
|
|
5
5
|
type __VLS_Slots = {} & {
|
|
6
|
-
default?: (props: typeof
|
|
6
|
+
default?: (props: typeof __VLS_8) => any;
|
|
7
7
|
};
|
|
8
8
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
9
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -2,15 +2,18 @@ type __VLS_Props = {
|
|
|
2
2
|
modelValue?: boolean | null;
|
|
3
3
|
disabled?: boolean;
|
|
4
4
|
};
|
|
5
|
-
declare var
|
|
5
|
+
declare var __VLS_6: {};
|
|
6
6
|
type __VLS_Slots = {} & {
|
|
7
|
-
default?: (props: typeof
|
|
7
|
+
default?: (props: typeof __VLS_6) => any;
|
|
8
8
|
};
|
|
9
9
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
10
10
|
[x: string]: never;
|
|
11
11
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
12
|
[x: `on${Capitalize<any>}`]: ((...args: unknown[]) => any) | undefined;
|
|
13
|
-
}>, {
|
|
13
|
+
}>, {
|
|
14
|
+
modelValue: boolean | null;
|
|
15
|
+
disabled: boolean;
|
|
16
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
17
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
15
18
|
declare const _default: typeof __VLS_export;
|
|
16
19
|
export default _default;
|
|
@@ -7,6 +7,12 @@ type __VLS_Props = {
|
|
|
7
7
|
grammarContextCode?: string;
|
|
8
8
|
transformRendered?: (code: string) => string;
|
|
9
9
|
};
|
|
10
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
10
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
loaded: (...args: any[]) => void;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
onLoaded?: ((...args: any[]) => any) | undefined;
|
|
14
|
+
}>, {
|
|
15
|
+
lines: boolean;
|
|
16
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
17
|
declare const _default: typeof __VLS_export;
|
|
12
18
|
export default _default;
|
|
@@ -1,4 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Credit to [@hooray](https://github.com/hooray)
|
|
3
|
+
* @see https://github.com/vuejs/vitepress/pull/2347
|
|
4
|
+
*/
|
|
5
|
+
declare function toggle(event?: MouseEvent): void;
|
|
6
|
+
declare var __VLS_8: {
|
|
7
|
+
mode: import("@vueuse/core").UseColorModeReturn<import("@vueuse/core").BasicColorMode>;
|
|
8
|
+
isDark: import("vue").WritableComputedRef<boolean, boolean>;
|
|
9
|
+
toggle: typeof toggle;
|
|
10
|
+
};
|
|
2
11
|
type __VLS_Slots = {} & {
|
|
3
12
|
default?: (props: typeof __VLS_8) => any;
|
|
4
13
|
};
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
1
3
|
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
2
4
|
modelValue?: boolean;
|
|
3
5
|
dim?: boolean;
|
|
@@ -12,11 +14,13 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
12
14
|
}> & Readonly<{
|
|
13
15
|
onClose?: (() => any) | undefined;
|
|
14
16
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
15
|
-
}>, {
|
|
17
|
+
}>, {
|
|
18
|
+
modelValue: boolean;
|
|
19
|
+
dim: boolean;
|
|
20
|
+
autoClose: boolean;
|
|
21
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
16
22
|
default?: (props: {}) => any;
|
|
17
23
|
}>;
|
|
18
|
-
declare const _default: typeof __VLS_export;
|
|
19
|
-
export default _default;
|
|
20
24
|
type __VLS_WithSlots<T, S> = T & {
|
|
21
25
|
new (): {
|
|
22
26
|
$slots: S;
|
|
@@ -5,15 +5,17 @@ type __VLS_Props = {
|
|
|
5
5
|
autoClose?: boolean;
|
|
6
6
|
transition?: 'right' | 'bottom' | 'top';
|
|
7
7
|
};
|
|
8
|
-
declare var
|
|
8
|
+
declare var __VLS_14: {};
|
|
9
9
|
type __VLS_Slots = {} & {
|
|
10
|
-
default?: (props: typeof
|
|
10
|
+
default?: (props: typeof __VLS_14) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
13
13
|
close: () => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
15
|
onClose?: (() => any) | undefined;
|
|
16
|
-
}>, {
|
|
16
|
+
}>, {
|
|
17
|
+
transition: "right" | "bottom" | "top";
|
|
18
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
19
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
20
|
declare const _default: typeof __VLS_export;
|
|
19
21
|
export default _default;
|
|
@@ -3,7 +3,7 @@ type __VLS_Props = {
|
|
|
3
3
|
direction?: 'start' | 'end';
|
|
4
4
|
};
|
|
5
5
|
declare var __VLS_1: {
|
|
6
|
-
enabled:
|
|
6
|
+
enabled: boolean;
|
|
7
7
|
click: () => boolean;
|
|
8
8
|
}, __VLS_11: {};
|
|
9
9
|
type __VLS_Slots = {} & {
|
|
@@ -15,7 +15,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
15
15
|
[x: string]: never;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
17
17
|
[x: `on${Capitalize<any>}`]: ((...args: unknown[]) => any) | undefined;
|
|
18
|
-
}>, {
|
|
18
|
+
}>, {
|
|
19
|
+
direction: "start" | "end";
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
21
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
20
22
|
declare const _default: typeof __VLS_export;
|
|
21
23
|
export default _default;
|
|
@@ -2,13 +2,13 @@ type __VLS_Props = {
|
|
|
2
2
|
search?: string;
|
|
3
3
|
noPadding?: boolean;
|
|
4
4
|
};
|
|
5
|
-
declare var __VLS_1: {},
|
|
5
|
+
declare var __VLS_1: {}, __VLS_10: {}, __VLS_12: {};
|
|
6
6
|
type __VLS_Slots = {} & {
|
|
7
7
|
search?: (props: typeof __VLS_1) => any;
|
|
8
8
|
} & {
|
|
9
|
-
actions?: (props: typeof
|
|
9
|
+
actions?: (props: typeof __VLS_10) => any;
|
|
10
10
|
} & {
|
|
11
|
-
default?: (props: typeof
|
|
11
|
+
default?: (props: typeof __VLS_12) => any;
|
|
12
12
|
};
|
|
13
13
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
14
14
|
"update:search": (value: string) => any;
|
|
@@ -12,7 +12,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
12
12
|
[x: string]: never;
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
14
|
[x: `on${Capitalize<any>}`]: ((...args: unknown[]) => any) | undefined;
|
|
15
|
-
}>, {
|
|
15
|
+
}>, {
|
|
16
|
+
modelValue: string;
|
|
17
|
+
disabled: boolean;
|
|
18
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
19
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
17
20
|
declare const _default: typeof __VLS_export;
|
|
18
21
|
export default _default;
|
|
@@ -8,7 +8,7 @@ type __VLS_Props = {
|
|
|
8
8
|
open?: boolean;
|
|
9
9
|
padding?: boolean | string;
|
|
10
10
|
};
|
|
11
|
-
declare var __VLS_7: {}, __VLS_9: {}, __VLS_11: {},
|
|
11
|
+
declare var __VLS_7: {}, __VLS_9: {}, __VLS_11: {}, __VLS_18: {}, __VLS_20: {}, __VLS_22: {};
|
|
12
12
|
type __VLS_Slots = {} & {
|
|
13
13
|
text?: (props: typeof __VLS_7) => any;
|
|
14
14
|
} & {
|
|
@@ -16,13 +16,18 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
} & {
|
|
17
17
|
actions?: (props: typeof __VLS_11) => any;
|
|
18
18
|
} & {
|
|
19
|
-
details?: (props: typeof
|
|
19
|
+
details?: (props: typeof __VLS_18) => any;
|
|
20
20
|
} & {
|
|
21
|
-
default?: (props: typeof
|
|
21
|
+
default?: (props: typeof __VLS_20) => any;
|
|
22
22
|
} & {
|
|
23
|
-
footer?: (props: typeof
|
|
23
|
+
footer?: (props: typeof __VLS_22) => any;
|
|
24
24
|
};
|
|
25
|
-
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
25
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
26
|
+
containerClass: string;
|
|
27
|
+
collapse: boolean;
|
|
28
|
+
open: boolean;
|
|
29
|
+
padding: boolean | string;
|
|
30
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
31
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
27
32
|
declare const _default: typeof __VLS_export;
|
|
28
33
|
export default _default;
|
|
@@ -4,17 +4,22 @@ type __VLS_Props = {
|
|
|
4
4
|
icon?: string;
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
};
|
|
7
|
-
declare var __VLS_1: {},
|
|
7
|
+
declare var __VLS_1: {}, __VLS_8: {};
|
|
8
8
|
type __VLS_Slots = {} & {
|
|
9
9
|
icon?: (props: typeof __VLS_1) => any;
|
|
10
10
|
} & {
|
|
11
|
-
default?: (props: typeof
|
|
11
|
+
default?: (props: typeof __VLS_8) => any;
|
|
12
12
|
};
|
|
13
13
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
14
14
|
[x: string]: never;
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
16
|
[x: `on${Capitalize<any>}`]: ((...args: unknown[]) => any) | undefined;
|
|
17
|
-
}>, {
|
|
17
|
+
}>, {
|
|
18
|
+
modelValue: any;
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
icon: string;
|
|
21
|
+
placeholder: string;
|
|
22
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
23
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
19
24
|
declare const _default: typeof __VLS_export;
|
|
20
25
|
export default _default;
|
|
@@ -10,6 +10,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
10
10
|
[x: string]: never;
|
|
11
11
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
12
|
[x: `on${Capitalize<any>}`]: ((...args: unknown[]) => any) | undefined;
|
|
13
|
-
}>, {
|
|
13
|
+
}>, {
|
|
14
|
+
modelValue: any;
|
|
15
|
+
disabled: boolean;
|
|
16
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
17
|
declare const _default: typeof __VLS_export;
|
|
15
18
|
export default _default;
|
|
@@ -15,7 +15,9 @@ type __VLS_Slots = {} & {
|
|
|
15
15
|
} & {
|
|
16
16
|
right?: (props: typeof __VLS_24) => any;
|
|
17
17
|
};
|
|
18
|
-
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
18
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
19
|
+
stateKey: string;
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
21
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
20
22
|
declare const _default: typeof __VLS_export;
|
|
21
23
|
export default _default;
|
|
@@ -14,7 +14,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
14
14
|
"update:modelValue": (value: boolean) => any;
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
16
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
17
|
-
}>, {
|
|
17
|
+
}>, {
|
|
18
|
+
disabled: boolean;
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
20
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
19
21
|
declare const _default: typeof __VLS_export;
|
|
20
22
|
export default _default;
|
|
@@ -20,7 +20,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
20
20
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
21
|
onKeyup?: ((event: KeyboardEvent) => any) | undefined;
|
|
22
22
|
onChange?: ((event: Event) => any) | undefined;
|
|
23
|
-
}>, {
|
|
23
|
+
}>, {
|
|
24
|
+
modelValue: string | number;
|
|
25
|
+
type: string;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
27
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
25
28
|
declare const _default: typeof __VLS_export;
|
|
26
29
|
export default _default;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
icon?: string;
|
|
3
3
|
};
|
|
4
|
-
declare var __VLS_1: {},
|
|
4
|
+
declare var __VLS_1: {}, __VLS_8: {};
|
|
5
5
|
type __VLS_Slots = {} & {
|
|
6
6
|
icon?: (props: typeof __VLS_1) => any;
|
|
7
7
|
} & {
|
|
8
|
-
default?: (props: typeof
|
|
8
|
+
default?: (props: typeof __VLS_8) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
11
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
package/dist/module.d.mts
CHANGED
package/dist/module.d.ts
CHANGED
package/dist/module.json
CHANGED
package/dist/unocss.d.mts
CHANGED
package/dist/unocss.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/devtools-ui-kit-nightly",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.1.1-
|
|
4
|
+
"version": "3.1.1-29462902.5c4a0b0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://devtools.nuxt.com/module/ui-kit",
|
|
7
7
|
"repository": {
|
|
@@ -28,33 +28,33 @@
|
|
|
28
28
|
"dist"
|
|
29
29
|
],
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@nuxt/devtools": "npm:@nuxt/devtools-nightly@3.1.1-
|
|
31
|
+
"@nuxt/devtools": "npm:@nuxt/devtools-nightly@3.1.1-29462902.5c4a0b0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@iconify-json/carbon": "^1.2.
|
|
34
|
+
"@iconify-json/carbon": "^1.2.15",
|
|
35
35
|
"@iconify-json/logos": "^1.2.10",
|
|
36
|
-
"@iconify-json/ri": "^1.2.
|
|
37
|
-
"@iconify-json/tabler": "^1.2.
|
|
38
|
-
"@nuxt/devtools-kit": "npm:@nuxt/devtools-kit-nightly@3.1.1-
|
|
39
|
-
"@nuxt/kit": "^4.2.
|
|
40
|
-
"@unocss/core": "^66.5.
|
|
41
|
-
"@unocss/nuxt": "^66.5.
|
|
42
|
-
"@unocss/preset-attributify": "^66.5.
|
|
43
|
-
"@unocss/preset-icons": "^66.5.
|
|
44
|
-
"@unocss/preset-mini": "^66.5.
|
|
45
|
-
"@unocss/reset": "^66.5.
|
|
46
|
-
"@vueuse/core": "^14.
|
|
47
|
-
"@vueuse/integrations": "^14.
|
|
48
|
-
"@vueuse/nuxt": "^14.
|
|
36
|
+
"@iconify-json/ri": "^1.2.7",
|
|
37
|
+
"@iconify-json/tabler": "^1.2.26",
|
|
38
|
+
"@nuxt/devtools-kit": "npm:@nuxt/devtools-kit-nightly@3.1.1-29462902.5c4a0b0",
|
|
39
|
+
"@nuxt/kit": "^4.2.2",
|
|
40
|
+
"@unocss/core": "^66.5.12",
|
|
41
|
+
"@unocss/nuxt": "^66.5.12",
|
|
42
|
+
"@unocss/preset-attributify": "^66.5.12",
|
|
43
|
+
"@unocss/preset-icons": "^66.5.12",
|
|
44
|
+
"@unocss/preset-mini": "^66.5.12",
|
|
45
|
+
"@unocss/reset": "^66.5.12",
|
|
46
|
+
"@vueuse/core": "^14.1.0",
|
|
47
|
+
"@vueuse/integrations": "^14.1.0",
|
|
48
|
+
"@vueuse/nuxt": "^14.1.0",
|
|
49
49
|
"defu": "^6.1.4",
|
|
50
|
-
"focus-trap": "^7.
|
|
50
|
+
"focus-trap": "^7.7.1",
|
|
51
51
|
"splitpanes": "^4.0.4",
|
|
52
|
-
"unocss": "^66.5.
|
|
52
|
+
"unocss": "^66.5.12",
|
|
53
53
|
"v-lazy-show": "^0.3.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@nuxt/devtools": "npm:@nuxt/devtools-nightly@3.1.1-
|
|
57
|
-
"nuxt": "^4.2.
|
|
56
|
+
"@nuxt/devtools": "npm:@nuxt/devtools-nightly@3.1.1-29462902.5c4a0b0",
|
|
57
|
+
"nuxt": "^4.2.2"
|
|
58
58
|
},
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public"
|