@dynamicforms/vuetify-inputs 0.4.0 → 0.4.2
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/dynamicforms-vuetify-inputs.js +494 -478
- package/dist/dynamicforms-vuetify-inputs.js.map +1 -1
- package/dist/dynamicforms-vuetify-inputs.umd.cjs +12 -12
- package/dist/dynamicforms-vuetify-inputs.umd.cjs.map +1 -1
- package/dist/index.d.ts +41 -16
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ import { VColorPicker } from 'vuetify/components/VColorPicker';
|
|
|
24
24
|
import { VCombobox } from 'vuetify/components/VCombobox';
|
|
25
25
|
import { VConfirmEdit } from 'vuetify/components/VConfirmEdit';
|
|
26
26
|
import { VDatePicker } from 'vuetify/components/VDatePicker';
|
|
27
|
+
import { VField } from 'vuetify/components/VField';
|
|
27
28
|
import { VFileInput } from 'vuetify/components/VFileInput';
|
|
28
29
|
import { VIcon } from 'vuetify/components/VIcon';
|
|
29
30
|
import { VImg } from 'vuetify/components/VImg';
|
|
@@ -50,6 +51,23 @@ blur: () => any;
|
|
|
50
51
|
onBlur?: (() => any) | undefined;
|
|
51
52
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
52
53
|
|
|
54
|
+
declare const __VLS_component_2: DefineComponent<Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
55
|
+
"update:modelValue": (value: any) => any;
|
|
56
|
+
"click:clear": () => any;
|
|
57
|
+
"update:modelValueDisplay": (value: SelectChoice[]) => any;
|
|
58
|
+
}, string, PublicProps, Readonly<Props_8> & Readonly<{
|
|
59
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
60
|
+
"onClick:clear"?: (() => any) | undefined;
|
|
61
|
+
"onUpdate:modelValueDisplay"?: ((value: SelectChoice[]) => any) | undefined;
|
|
62
|
+
}>, {
|
|
63
|
+
enabled: boolean;
|
|
64
|
+
allowNull: boolean;
|
|
65
|
+
multiple: boolean;
|
|
66
|
+
choices: SelectChoice[];
|
|
67
|
+
allowTags: boolean;
|
|
68
|
+
fetchChoices: SelectFetchChoices;
|
|
69
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
70
|
+
|
|
53
71
|
declare type __VLS_Props = {
|
|
54
72
|
data?: DefaultInputSlot & {
|
|
55
73
|
label?: string;
|
|
@@ -101,14 +119,35 @@ declare function __VLS_template(): {
|
|
|
101
119
|
rootEl: any;
|
|
102
120
|
};
|
|
103
121
|
|
|
122
|
+
declare function __VLS_template_2(): {
|
|
123
|
+
attrs: Partial<{}>;
|
|
124
|
+
slots: Readonly<{
|
|
125
|
+
'append-inner'?: (props: any) => any;
|
|
126
|
+
'prepend-inner'?: (props: any) => any;
|
|
127
|
+
}> & {
|
|
128
|
+
'append-inner'?: (props: any) => any;
|
|
129
|
+
'prepend-inner'?: (props: any) => any;
|
|
130
|
+
};
|
|
131
|
+
refs: {};
|
|
132
|
+
rootEl: any;
|
|
133
|
+
};
|
|
134
|
+
|
|
104
135
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
105
136
|
|
|
137
|
+
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
138
|
+
|
|
106
139
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
107
140
|
new (): {
|
|
108
141
|
$slots: S;
|
|
109
142
|
};
|
|
110
143
|
};
|
|
111
144
|
|
|
145
|
+
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
146
|
+
new (): {
|
|
147
|
+
$slots: S;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
|
|
112
151
|
export declare class Action {
|
|
113
152
|
readonly name: string;
|
|
114
153
|
displayStyle: ResponsiveLabelRenderOptions;
|
|
@@ -301,22 +340,7 @@ modelValue: string;
|
|
|
301
340
|
}> | null;
|
|
302
341
|
}, any>;
|
|
303
342
|
|
|
304
|
-
export declare const DfSelect:
|
|
305
|
-
"update:modelValue": (value: any) => any;
|
|
306
|
-
"click:clear": () => any;
|
|
307
|
-
"update:modelValueDisplay": (value: SelectChoice[]) => any;
|
|
308
|
-
}, string, PublicProps, Readonly<Props_8> & Readonly<{
|
|
309
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
310
|
-
"onClick:clear"?: (() => any) | undefined;
|
|
311
|
-
"onUpdate:modelValueDisplay"?: ((value: SelectChoice[]) => any) | undefined;
|
|
312
|
-
}>, {
|
|
313
|
-
enabled: boolean;
|
|
314
|
-
allowNull: boolean;
|
|
315
|
-
multiple: boolean;
|
|
316
|
-
choices: SelectChoice[];
|
|
317
|
-
allowTags: boolean;
|
|
318
|
-
fetchChoices: SelectFetchChoices;
|
|
319
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
343
|
+
export declare const DfSelect: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
320
344
|
|
|
321
345
|
export declare const DfTextArea: DefineComponent<Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
322
346
|
"update:modelValue": (value: any) => any;
|
|
@@ -495,6 +519,7 @@ export declare namespace VuetifyComponents {
|
|
|
495
519
|
VColorPicker,
|
|
496
520
|
VConfirmEdit,
|
|
497
521
|
VDatePicker,
|
|
522
|
+
VField,
|
|
498
523
|
VFileInput,
|
|
499
524
|
VRow,
|
|
500
525
|
VCol,
|