@stonecrop/nuxt 0.4.36 → 0.5.0

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.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
2
 
3
3
  interface ModuleOptions {
4
- router?: Record<string, any>;
4
+ router?: Record<string, unknown>;
5
5
  docbuilder?: boolean;
6
6
  }
7
7
  declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stonecrop/nuxt",
3
3
  "configKey": "stonecrop",
4
- "version": "0.4.36",
4
+ "version": "0.5.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "unknown"
@@ -1,2 +1,3 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
2
3
  export default _default;
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <AForm v-model="schema" :data="schemaData" :key="componentKey" />
2
+ <AForm :key="componentKey" v-model="schema" :data="schemaData" />
3
3
  </template>
4
4
 
5
5
  <script setup>
@@ -1,2 +1,3 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
2
3
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stonecrop/nuxt",
3
- "version": "0.4.36",
3
+ "version": "0.5.0",
4
4
  "description": "Nuxt module for Stonecrop",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -31,27 +31,32 @@
31
31
  "dist"
32
32
  ],
33
33
  "dependencies": {
34
- "@nuxt/kit": "^4.1.3",
34
+ "@nuxt/kit": "^4.2.0",
35
35
  "pinia": "^3.0.3",
36
- "@stonecrop/aform": "0.4.36",
37
- "@stonecrop/stonecrop": "0.4.36",
38
- "@stonecrop/atable": "0.4.36"
36
+ "@stonecrop/aform": "0.5.0",
37
+ "@stonecrop/stonecrop": "0.5.0",
38
+ "@stonecrop/atable": "0.5.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@nuxt/devtools": "^2.6.5",
42
- "@nuxt/eslint-config": "^1.9.0",
41
+ "@eslint/js": "^9.38.0",
42
+ "@nuxt/devtools": "^3.0.0",
43
+ "@nuxt/eslint": "1.10.0",
44
+ "@nuxt/eslint-config": "^1.10.0",
43
45
  "@nuxt/module-builder": "^1.0.2",
44
- "@nuxt/schema": "^4.1.3",
45
- "@nuxt/test-utils": "^3.19.2",
46
- "eslint": "^8.57.1",
47
- "happy-dom": "^18.0.1",
48
- "nuxt": "^4.1.3",
46
+ "@nuxt/schema": "^4.2.0",
47
+ "@nuxt/test-utils": "^3.20.1",
48
+ "eslint": "^9.38.0",
49
+ "eslint-config-prettier": "^10.1.8",
50
+ "eslint-plugin-vue": "^10.5.1",
51
+ "globals": "^16.4.0",
52
+ "nuxt": "^4.2.0",
49
53
  "typescript": "^5.9.3",
54
+ "typescript-eslint": "^8.46.2",
50
55
  "vue": "^3.5.22",
51
56
  "vite": "^7.1.1",
52
- "vitest": "^3.2.4",
57
+ "vitest": "^4.0.5",
53
58
  "vue-router": "^4.6.3",
54
- "vue-tsc": "^2.2.12"
59
+ "vue-tsc": "^3.1.2"
55
60
  },
56
61
  "engines": {
57
62
  "node": ">=22.5.0"
@@ -63,7 +68,7 @@
63
68
  "dev": "rushx dev:prepare && nuxi dev playground",
64
69
  "dev:build": "nuxi build playground",
65
70
  "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
66
- "lint": "eslint . --ext .ts,.vue",
71
+ "lint": "eslint .",
67
72
  "test": "vitest run",
68
73
  "test:ui": "vitest --ui",
69
74
  "test:watch": "vitest watch",