@dynamicforms/vuetify-inputs 0.5.9 → 0.5.11
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/{style.css → dynamicforms-vuetify-inputs.css} +2 -2
- package/dist/dynamicforms-vuetify-inputs.js +545 -527
- package/dist/dynamicforms-vuetify-inputs.js.map +1 -1
- package/dist/dynamicforms-vuetify-inputs.umd.cjs +10 -10
- package/dist/dynamicforms-vuetify-inputs.umd.cjs.map +1 -1
- package/dist/index.d.ts +5 -5
- package/package.json +7 -6
package/dist/index.d.ts
CHANGED
|
@@ -224,7 +224,7 @@ export declare interface BaseProps<T = any> {
|
|
|
224
224
|
passthroughAttrs?: Record<string, any>;
|
|
225
225
|
}
|
|
226
226
|
|
|
227
|
-
export declare type BreakpointNames = typeof responsiveBreakpoints[number];
|
|
227
|
+
export declare type BreakpointNames = (typeof responsiveBreakpoints)[number];
|
|
228
228
|
|
|
229
229
|
export declare type BreakpointsJSON<T extends Record<string, any>> = T & Partial<Record<BreakpointNames, T>>;
|
|
230
230
|
|
|
@@ -451,7 +451,7 @@ minHeight: string;
|
|
|
451
451
|
clearable: boolean;
|
|
452
452
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
453
453
|
$editor: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
454
|
-
modelValue
|
|
454
|
+
modelValue?: string;
|
|
455
455
|
minHeight?: string;
|
|
456
456
|
disabled?: boolean;
|
|
457
457
|
}> & Readonly<{
|
|
@@ -461,9 +461,9 @@ onEditorReady: (editorReady: Editor) => void;
|
|
|
461
461
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
462
462
|
"update:modelValue": (value: string) => any;
|
|
463
463
|
}, PublicProps, {
|
|
464
|
-
disabled: boolean;
|
|
465
464
|
minHeight: string;
|
|
466
465
|
modelValue: string;
|
|
466
|
+
disabled: boolean;
|
|
467
467
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
468
468
|
editorElement: HTMLDivElement;
|
|
469
469
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
@@ -474,7 +474,7 @@ C: {};
|
|
|
474
474
|
M: {};
|
|
475
475
|
Defaults: {};
|
|
476
476
|
}, Readonly<{
|
|
477
|
-
modelValue
|
|
477
|
+
modelValue?: string;
|
|
478
478
|
minHeight?: string;
|
|
479
479
|
disabled?: boolean;
|
|
480
480
|
}> & Readonly<{
|
|
@@ -482,9 +482,9 @@ disabled?: boolean;
|
|
|
482
482
|
}>, {
|
|
483
483
|
onEditorReady: (editorReady: Editor) => void;
|
|
484
484
|
}, {}, {}, {}, {
|
|
485
|
-
disabled: boolean;
|
|
486
485
|
minHeight: string;
|
|
487
486
|
modelValue: string;
|
|
487
|
+
disabled: boolean;
|
|
488
488
|
}> | null;
|
|
489
489
|
}, any>;
|
|
490
490
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamicforms/vuetify-inputs",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.11",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Visual components for data entry using @dynamicforms/vue-forms",
|
|
7
7
|
"author": "Jure Erznožnik",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"build": "vite build",
|
|
25
25
|
"test": "vitest run --coverage",
|
|
26
|
-
"lint": "eslint src && vue-tsc --noEmit",
|
|
26
|
+
"lint": "eslint src --fix && vue-tsc --noEmit",
|
|
27
27
|
"docs:dev": "npm run docs:dev -w docs",
|
|
28
28
|
"docs:build": "npm run docs:build -w docs",
|
|
29
29
|
"docs:preview": "npm run docs:preview -w docs"
|
|
@@ -49,21 +49,22 @@
|
|
|
49
49
|
"date-fns": "^4.1.0",
|
|
50
50
|
"lodash-es": "^4.17.12",
|
|
51
51
|
"vue": "^3.4",
|
|
52
|
+
"vue-cached-icon": "^3.0.2",
|
|
52
53
|
"vue-markdown-render": "^2.2.1",
|
|
53
54
|
"vuetify": "^3.9"
|
|
54
55
|
},
|
|
55
56
|
"devDependencies": {
|
|
56
57
|
"@types/lodash-es": "^4.17.12",
|
|
57
|
-
"@types/node": "^
|
|
58
|
-
"@vitejs/plugin-vue": "^
|
|
58
|
+
"@types/node": "^24",
|
|
59
|
+
"@vitejs/plugin-vue": "^6",
|
|
59
60
|
"@vitest/coverage-v8": "^3",
|
|
60
61
|
"@vue/test-utils": "^2.2.4",
|
|
61
62
|
"@vue/tsconfig": "^0.7.0",
|
|
62
|
-
"eslint-config-velis": "^
|
|
63
|
+
"eslint-config-velis": "^2.0.12",
|
|
63
64
|
"jsdom": "^26.0.0",
|
|
64
65
|
"rollup-plugin-visualizer": "^5.14.0",
|
|
65
66
|
"typescript": "^5",
|
|
66
|
-
"vite": "^
|
|
67
|
+
"vite": "^7",
|
|
67
68
|
"vite-plugin-dts": "^4",
|
|
68
69
|
"vite-plugin-eslint": "^1.8.1",
|
|
69
70
|
"vitest": "^3",
|