@dynamicforms/vuetify-inputs 0.1.14 → 0.1.16
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 +578 -557
- package/dist/dynamicforms-vuetify-inputs.js.map +1 -1
- package/dist/dynamicforms-vuetify-inputs.umd.cjs +13 -13
- package/dist/dynamicforms-vuetify-inputs.umd.cjs.map +1 -1
- package/dist/index.d.ts +7 -4
- package/dist/style.css +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -211,7 +211,7 @@ max: number;
|
|
|
211
211
|
min: number;
|
|
212
212
|
step: number;
|
|
213
213
|
inputType: "text" | "password" | "email" | "url" | "number";
|
|
214
|
-
precision: number;
|
|
214
|
+
precision: number | null;
|
|
215
215
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
216
216
|
|
|
217
217
|
export declare const DfRtfEditor: DefineComponent<Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -300,8 +300,6 @@ export declare interface DynamicFormsInputsOptions {
|
|
|
300
300
|
registerVuetifyComponents: boolean;
|
|
301
301
|
}
|
|
302
302
|
|
|
303
|
-
export declare const ErrorsWidget: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
304
|
-
|
|
305
303
|
export declare interface FileComms {
|
|
306
304
|
/**
|
|
307
305
|
* upload is called when a file is added to the input and needs to be uploaded to the backend for storage
|
|
@@ -332,8 +330,11 @@ export declare type FileProgressCallback = (loaded: number, total: number) => vo
|
|
|
332
330
|
|
|
333
331
|
export declare const InputBase: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
334
332
|
|
|
333
|
+
export declare const MessagesWidget: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
334
|
+
|
|
335
335
|
declare interface Props {
|
|
336
336
|
errors: ValidationError[];
|
|
337
|
+
message: string;
|
|
337
338
|
}
|
|
338
339
|
|
|
339
340
|
declare interface Props_2 extends BaseProps {
|
|
@@ -356,7 +357,7 @@ declare interface Props_5 extends BaseProps {
|
|
|
356
357
|
|
|
357
358
|
declare interface Props_6 extends BaseProps {
|
|
358
359
|
inputType?: 'text' | 'password' | 'email' | 'url' | 'number';
|
|
359
|
-
precision?: number;
|
|
360
|
+
precision?: number | null;
|
|
360
361
|
step?: number;
|
|
361
362
|
min?: number;
|
|
362
363
|
max?: number;
|
|
@@ -405,6 +406,8 @@ export declare function useInputBase<T = any>(props: BaseProps<T>, emit: BaseEmi
|
|
|
405
406
|
vuetifyBindings: ComputedRef< {
|
|
406
407
|
name: string | undefined;
|
|
407
408
|
class: string;
|
|
409
|
+
density: "default";
|
|
410
|
+
variant: "underlined";
|
|
408
411
|
label: string;
|
|
409
412
|
messages: string | undefined;
|
|
410
413
|
readonly: boolean;
|