@dynamicforms/vuetify-inputs 0.6.1 → 0.6.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.css +1 -1
- package/dist/dynamicforms-vuetify-inputs.js +552 -574
- package/dist/dynamicforms-vuetify-inputs.js.map +1 -1
- package/dist/dynamicforms-vuetify-inputs.umd.cjs +3 -3
- package/dist/dynamicforms-vuetify-inputs.umd.cjs.map +1 -1
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ import { LocaleUnit } from 'date-fns';
|
|
|
26
26
|
import { LocalizeFn } from 'date-fns';
|
|
27
27
|
import { MatchFn } from 'date-fns';
|
|
28
28
|
import { MaybeRef } from 'vue';
|
|
29
|
+
import { MdString } from '@dynamicforms/vue-forms';
|
|
29
30
|
import { Month } from 'date-fns';
|
|
30
31
|
import { PublicProps } from 'vue';
|
|
31
32
|
import { Quarter } from 'date-fns';
|
|
@@ -88,9 +89,10 @@ onBlur?: (() => any) | undefined;
|
|
|
88
89
|
|
|
89
90
|
declare type __VLS_Props = {
|
|
90
91
|
data?: DefaultInputSlot & {
|
|
91
|
-
label?: string;
|
|
92
|
+
label?: string | MdString;
|
|
92
93
|
};
|
|
93
94
|
label: Label;
|
|
95
|
+
allowWrap?: boolean;
|
|
94
96
|
};
|
|
95
97
|
|
|
96
98
|
declare type __VLS_Props_2 = BaseProps & {
|
|
@@ -212,7 +214,7 @@ export declare interface BaseEmits<T = any> {
|
|
|
212
214
|
export declare interface BaseProps<T = any> {
|
|
213
215
|
control?: default_2.IField<T>;
|
|
214
216
|
modelValue?: T;
|
|
215
|
-
label?: string | Label;
|
|
217
|
+
label?: string | Label | MdString;
|
|
216
218
|
errors?: string[];
|
|
217
219
|
placeholder?: string;
|
|
218
220
|
helpText?: string;
|
package/package.json
CHANGED