@ederzeel/nuxt-schema-form-nightly 0.1.0-29323954.0b153f2 → 0.1.0-29434546.1c563aa
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.mjs
CHANGED
|
@@ -27,7 +27,6 @@ const module = defineNuxtModule({
|
|
|
27
27
|
nuxt.options.vite.optimizeDeps ??= {};
|
|
28
28
|
nuxt.options.vite.optimizeDeps.include ??= [];
|
|
29
29
|
nuxt.options.vite.optimizeDeps.include.push("json-schema-library");
|
|
30
|
-
nuxt.options.vite.optimizeDeps.include.push("json-schema-yup-transformer");
|
|
31
30
|
nuxt.options.build.transpile.push("json-schema-library");
|
|
32
31
|
}
|
|
33
32
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { JsonSchema } from 'json-schema-library';
|
|
2
|
-
import type { Config } from 'json-schema-yup-transformer';
|
|
2
|
+
import type { Config } from '@ederzeel/json-schema-yup-transformer';
|
|
3
3
|
import type { CustomValidation } from '#schema-form-types';
|
|
4
4
|
type __VLS_Props = {
|
|
5
5
|
schema: JsonSchema;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import SComponent from "./Component.vue";
|
|
3
|
-
import convertToYup from "json-schema-yup-transformer";
|
|
3
|
+
import convertToYup from "@ederzeel/json-schema-yup-transformer";
|
|
4
4
|
import { computed, ref } from "vue";
|
|
5
5
|
const props = defineProps({
|
|
6
6
|
schema: { type: Object, required: true },
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { JsonSchema } from 'json-schema-library';
|
|
2
|
-
import type { Config } from 'json-schema-yup-transformer';
|
|
2
|
+
import type { Config } from '@ederzeel/json-schema-yup-transformer';
|
|
3
3
|
import type { CustomValidation } from '#schema-form-types';
|
|
4
4
|
type __VLS_Props = {
|
|
5
5
|
schema: JsonSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ederzeel/nuxt-schema-form-nightly",
|
|
3
|
-
"version": "0.1.0-
|
|
3
|
+
"version": "0.1.0-29434546.1c563aa",
|
|
4
4
|
"description": "A runtime form generator for nuxt",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -19,16 +19,6 @@
|
|
|
19
19
|
"files": [
|
|
20
20
|
"dist"
|
|
21
21
|
],
|
|
22
|
-
"scripts": {
|
|
23
|
-
"build": "nuxt-module-build prepare && nuxt-module-build build .",
|
|
24
|
-
"dev": "nuxi dev playground",
|
|
25
|
-
"dev:build": "nuxi build playground",
|
|
26
|
-
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
27
|
-
"docs:dev": "nuxi dev docs",
|
|
28
|
-
"test": "vitest test",
|
|
29
|
-
"lint": "eslint .",
|
|
30
|
-
"release": "bumpp --commit \"release: v%s\" --push --tag"
|
|
31
|
-
},
|
|
32
22
|
"repository": {
|
|
33
23
|
"type": "git",
|
|
34
24
|
"url": "git+https://github.com/LiamEderzeel/nuxt-schema-form.git"
|
|
@@ -45,44 +35,53 @@
|
|
|
45
35
|
"url": "https://github.com/LiamEderzeel/nuxt-schema-form/issues"
|
|
46
36
|
},
|
|
47
37
|
"homepage": "https://github.com/LiamEderzeel/nuxt-schema-form#readme",
|
|
48
|
-
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a",
|
|
49
38
|
"devDependencies": {
|
|
50
|
-
"@eslint/js": "
|
|
51
|
-
"@nuxt/eslint-config": "
|
|
52
|
-
"@nuxt/kit": "
|
|
53
|
-
"@nuxt/module-builder": "
|
|
54
|
-
"@nuxt/ui": "
|
|
55
|
-
"@tanstack/vue-table": "
|
|
56
|
-
"@types/eslint": "
|
|
57
|
-
"eslint": "
|
|
58
|
-
"eslint-config-prettier": "
|
|
59
|
-
"globals": "
|
|
60
|
-
"jiti": "
|
|
61
|
-
"json-schema-library": "
|
|
62
|
-
"magic-string": "
|
|
63
|
-
"mlly": "
|
|
64
|
-
"nuxt": "
|
|
65
|
-
"nuxt-component-meta": "
|
|
66
|
-
"ohash": "
|
|
67
|
-
"pathe": "
|
|
68
|
-
"prettier": "
|
|
69
|
-
"tinyglobby": "
|
|
70
|
-
"typescript": "
|
|
39
|
+
"@eslint/js": "^9.19.0",
|
|
40
|
+
"@nuxt/eslint-config": "^1.0.0",
|
|
41
|
+
"@nuxt/kit": "^4.1.2",
|
|
42
|
+
"@nuxt/module-builder": "^1.0.2",
|
|
43
|
+
"@nuxt/ui": "^4.0.0",
|
|
44
|
+
"@tanstack/vue-table": "^8.21.3",
|
|
45
|
+
"@types/eslint": "^9.6.1",
|
|
46
|
+
"eslint": "^9.22.0",
|
|
47
|
+
"eslint-config-prettier": "^10.0.1",
|
|
48
|
+
"globals": "^15.14.0",
|
|
49
|
+
"jiti": "^2.4.2",
|
|
50
|
+
"json-schema-library": "10.0.0",
|
|
51
|
+
"magic-string": "^0.30.17",
|
|
52
|
+
"mlly": "^1.7.4",
|
|
53
|
+
"nuxt": "^4.0.0",
|
|
54
|
+
"nuxt-component-meta": "^0.10.0",
|
|
55
|
+
"ohash": "^2.0.11",
|
|
56
|
+
"pathe": "^2.0.2",
|
|
57
|
+
"prettier": "^3.4.2",
|
|
58
|
+
"tinyglobby": "^0.2.10",
|
|
59
|
+
"typescript": "^5.8.2",
|
|
71
60
|
"typescript-eslint": "^8.45.0",
|
|
72
|
-
"unplugin": "
|
|
73
|
-
"unplugin-auto-import": "
|
|
74
|
-
"unplugin-vue-components": "
|
|
75
|
-
"vue-tsc": "
|
|
76
|
-
"yup": "
|
|
61
|
+
"unplugin": "^2.1.2",
|
|
62
|
+
"unplugin-auto-import": "^19.0.0",
|
|
63
|
+
"unplugin-vue-components": "^28.0.0",
|
|
64
|
+
"vue-tsc": "^3.1.0",
|
|
65
|
+
"yup": "^1.6.1"
|
|
77
66
|
},
|
|
78
67
|
"dependencies": {
|
|
79
|
-
"@
|
|
80
|
-
"
|
|
68
|
+
"@ederzeel/json-schema-yup-transformer": "0.1.0-alpha.5",
|
|
69
|
+
"@internationalized/date": "^3.7.0"
|
|
81
70
|
},
|
|
82
71
|
"resolutions": {
|
|
83
72
|
"@ederzeel/nuxt-schema-form": "workspace:*"
|
|
84
73
|
},
|
|
85
74
|
"publishConfig": {
|
|
86
75
|
"access": "public"
|
|
76
|
+
},
|
|
77
|
+
"scripts": {
|
|
78
|
+
"build": "nuxt-module-build prepare && nuxt-module-build build .",
|
|
79
|
+
"dev": "nuxi dev playground",
|
|
80
|
+
"dev:build": "nuxi build playground",
|
|
81
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
82
|
+
"docs:dev": "nuxi dev docs",
|
|
83
|
+
"test": "vitest test",
|
|
84
|
+
"lint": "eslint .",
|
|
85
|
+
"release": "bumpp --commit \"release: v%s\" --push --tag"
|
|
87
86
|
}
|
|
88
|
-
}
|
|
87
|
+
}
|