@ederzeel/nuxt-schema-form-nightly 0.1.0-29257619.56503a4 → 0.1.0-29323954.0b153f2
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 +2 -1
- package/dist/module.json +1 -1
- package/dist/runtime/components/Array.d.vue.ts +23 -0
- package/dist/runtime/components/Array.vue +33 -42
- package/dist/runtime/components/Array.vue.d.ts +23 -0
- package/dist/runtime/components/Component.d.vue.ts +43 -0
- package/dist/runtime/components/Component.vue +85 -98
- package/dist/runtime/components/Component.vue.d.ts +43 -0
- package/dist/runtime/components/Date.d.vue.ts +17 -0
- package/dist/runtime/components/Date.vue +20 -24
- package/dist/runtime/components/Date.vue.d.ts +17 -0
- package/dist/runtime/components/Form.d.vue.ts +31 -0
- package/dist/runtime/components/Form.vue +32 -45
- package/dist/runtime/components/Form.vue.d.ts +31 -0
- package/dist/runtime/components/InputField.d.vue.ts +18 -0
- package/dist/runtime/components/InputField.vue +10 -11
- package/dist/runtime/components/InputField.vue.d.ts +18 -0
- package/dist/runtime/components/InputNumber.d.vue.ts +20 -0
- package/dist/runtime/components/InputNumber.vue +14 -15
- package/dist/runtime/components/InputNumber.vue.d.ts +20 -0
- package/dist/runtime/components/MultiSelect.d.vue.ts +29 -0
- package/dist/runtime/components/MultiSelect.vue +21 -28
- package/dist/runtime/components/MultiSelect.vue.d.ts +29 -0
- package/dist/runtime/components/Object.d.vue.ts +17 -0
- package/dist/runtime/components/Object.vue +18 -23
- package/dist/runtime/components/Object.vue.d.ts +17 -0
- package/dist/runtime/components/Row.d.vue.ts +16 -0
- package/dist/runtime/components/Row.vue +17 -22
- package/dist/runtime/components/Row.vue.d.ts +16 -0
- package/dist/runtime/components/Select.d.vue.ts +20 -0
- package/dist/runtime/components/Select.vue +14 -17
- package/dist/runtime/components/Select.vue.d.ts +20 -0
- package/dist/runtime/components/Slider.d.vue.ts +20 -0
- package/dist/runtime/components/Slider.vue +12 -13
- package/dist/runtime/components/Slider.vue.d.ts +20 -0
- package/dist/runtime/components/Textarea.d.vue.ts +17 -0
- package/dist/runtime/components/Textarea.vue +9 -10
- package/dist/runtime/components/Textarea.vue.d.ts +17 -0
- package/dist/runtime/components/Toggle.d.vue.ts +17 -0
- package/dist/runtime/components/Toggle.vue +9 -10
- package/dist/runtime/components/Toggle.vue.d.ts +17 -0
- package/dist/runtime/components/array/ArrayObject.d.vue.ts +21 -0
- package/dist/runtime/components/array/ArrayObject.vue +134 -170
- package/dist/runtime/components/array/ArrayObject.vue.d.ts +21 -0
- package/dist/types.d.mts +3 -1
- package/package.json +33 -33
- package/dist/module.cjs +0 -5
- package/dist/module.d.ts +0 -13
- package/dist/types.d.ts +0 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { TableColumn } from '@nuxt/ui';
|
|
2
|
+
import type { PropertiesType } from '../../types/index.js';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
id: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
jsonSchemaPath: string;
|
|
8
|
+
items: PropertiesType;
|
|
9
|
+
modelValue: Record<string, unknown>[];
|
|
10
|
+
isRequired: boolean;
|
|
11
|
+
minItems?: number;
|
|
12
|
+
maxItems?: number;
|
|
13
|
+
edit?: boolean;
|
|
14
|
+
columns?: TableColumn<{}>[];
|
|
15
|
+
editInline?: boolean;
|
|
16
|
+
required?: string[];
|
|
17
|
+
setHidden?: (value: boolean) => void;
|
|
18
|
+
};
|
|
19
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
declare const _default: typeof __VLS_export;
|
|
21
|
+
export default _default;
|
package/dist/types.d.mts
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ederzeel/nuxt-schema-form-nightly",
|
|
3
|
-
"version": "0.1.0-
|
|
3
|
+
"version": "0.1.0-29323954.0b153f2",
|
|
4
4
|
"description": "A runtime form generator for nuxt",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
|
-
"types": "./dist/module.d.
|
|
8
|
+
"types": "./dist/module.d.mts",
|
|
9
9
|
"import": "./dist/module.mjs",
|
|
10
|
-
"require": "./dist/module.cjs",
|
|
11
10
|
"style": "./dist/runtime/index.css"
|
|
12
11
|
},
|
|
13
12
|
"./utils/*": {
|
|
@@ -16,7 +15,7 @@
|
|
|
16
15
|
}
|
|
17
16
|
},
|
|
18
17
|
"main": "./dist/module.mjs",
|
|
19
|
-
"types": "./dist/module.d.
|
|
18
|
+
"types": "./dist/module.d.mts",
|
|
20
19
|
"files": [
|
|
21
20
|
"dist"
|
|
22
21
|
],
|
|
@@ -46,38 +45,39 @@
|
|
|
46
45
|
"url": "https://github.com/LiamEderzeel/nuxt-schema-form/issues"
|
|
47
46
|
},
|
|
48
47
|
"homepage": "https://github.com/LiamEderzeel/nuxt-schema-form#readme",
|
|
49
|
-
"packageManager": "pnpm@
|
|
48
|
+
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a",
|
|
50
49
|
"devDependencies": {
|
|
51
|
-
"@eslint/js": "
|
|
52
|
-
"@nuxt/eslint-config": "
|
|
53
|
-
"@nuxt/kit": "
|
|
54
|
-
"@nuxt/module-builder": "
|
|
55
|
-
"@nuxt/ui": "
|
|
56
|
-
"@tanstack/vue-table": "
|
|
57
|
-
"@types/eslint": "
|
|
58
|
-
"eslint": "
|
|
59
|
-
"eslint-config-prettier": "
|
|
60
|
-
"globals": "
|
|
61
|
-
"jiti": "
|
|
62
|
-
"json-schema-library": "
|
|
63
|
-
"magic-string": "
|
|
64
|
-
"mlly": "
|
|
65
|
-
"nuxt": "
|
|
66
|
-
"nuxt-component-meta": "
|
|
67
|
-
"ohash": "
|
|
68
|
-
"pathe": "
|
|
69
|
-
"prettier": "
|
|
70
|
-
"tinyglobby": "
|
|
71
|
-
"typescript": "
|
|
72
|
-
"typescript-eslint": "^8.
|
|
73
|
-
"unplugin": "
|
|
74
|
-
"unplugin-auto-import": "
|
|
75
|
-
"unplugin-vue-components": "
|
|
76
|
-
"
|
|
50
|
+
"@eslint/js": "catalog:",
|
|
51
|
+
"@nuxt/eslint-config": "catalog:",
|
|
52
|
+
"@nuxt/kit": "catalog:",
|
|
53
|
+
"@nuxt/module-builder": "catalog:",
|
|
54
|
+
"@nuxt/ui": "catalog:",
|
|
55
|
+
"@tanstack/vue-table": "catalog:",
|
|
56
|
+
"@types/eslint": "catalog:",
|
|
57
|
+
"eslint": "catalog:",
|
|
58
|
+
"eslint-config-prettier": "catalog:",
|
|
59
|
+
"globals": "catalog:",
|
|
60
|
+
"jiti": "catalog:",
|
|
61
|
+
"json-schema-library": "catalog:",
|
|
62
|
+
"magic-string": "catalog:",
|
|
63
|
+
"mlly": "catalog:",
|
|
64
|
+
"nuxt": "catalog:",
|
|
65
|
+
"nuxt-component-meta": "catalog:",
|
|
66
|
+
"ohash": "catalog:",
|
|
67
|
+
"pathe": "catalog:",
|
|
68
|
+
"prettier": "catalog:",
|
|
69
|
+
"tinyglobby": "catalog:",
|
|
70
|
+
"typescript": "catalog:",
|
|
71
|
+
"typescript-eslint": "^8.45.0",
|
|
72
|
+
"unplugin": "catalog:",
|
|
73
|
+
"unplugin-auto-import": "catalog:",
|
|
74
|
+
"unplugin-vue-components": "catalog:",
|
|
75
|
+
"vue-tsc": "catalog:",
|
|
76
|
+
"yup": "catalog:"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@internationalized/date": "
|
|
80
|
-
"json-schema-yup-transformer": "
|
|
79
|
+
"@internationalized/date": "catalog:",
|
|
80
|
+
"json-schema-yup-transformer": "catalog:"
|
|
81
81
|
},
|
|
82
82
|
"resolutions": {
|
|
83
83
|
"@ederzeel/nuxt-schema-form": "workspace:*"
|
package/dist/module.cjs
DELETED
package/dist/module.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
|
-
|
|
3
|
-
interface ModuleOptions {
|
|
4
|
-
/**
|
|
5
|
-
* Prefix for components
|
|
6
|
-
* @defaultValue `S`
|
|
7
|
-
* @link https://ui3.nuxt.dev/getting-started/installation/nuxt#prefix
|
|
8
|
-
*/
|
|
9
|
-
prefix?: string;
|
|
10
|
-
}
|
|
11
|
-
declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
|
|
12
|
-
|
|
13
|
-
export { type ModuleOptions, _default as default };
|
package/dist/types.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { type ModuleOptions, default } from './module'
|