@dynamicforms/vuetify-inputs 0.5.3 → 0.5.4
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/index.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ declare const __VLS_component: DefineComponent<DfSelectProps, {}, {}, {}, {}, Co
|
|
|
54
54
|
"onUpdate:modelValueDisplay"?: ((value: SelectChoice[]) => any) | undefined;
|
|
55
55
|
}>, {
|
|
56
56
|
enabled: boolean;
|
|
57
|
+
clearable: boolean;
|
|
57
58
|
allowNull: boolean;
|
|
58
59
|
choices: SelectChoice[];
|
|
59
60
|
multiple: boolean;
|
|
@@ -213,6 +214,7 @@ export declare type BreakpointsJSON<T extends Record<string, any>> = T & Partial
|
|
|
213
214
|
|
|
214
215
|
export declare const defaultBaseProps: {
|
|
215
216
|
enabled: undefined;
|
|
217
|
+
clearable: boolean;
|
|
216
218
|
};
|
|
217
219
|
|
|
218
220
|
export declare const defaultDisplayStyle = ActionDisplayStyle.BUTTON;
|
|
@@ -236,6 +238,7 @@ export declare const DfCheckbox: DefineComponent<DfCheckboxProps, {}, {}, {}, {}
|
|
|
236
238
|
"onClick:clear"?: (() => any) | undefined;
|
|
237
239
|
}>, {
|
|
238
240
|
enabled: boolean;
|
|
241
|
+
clearable: boolean;
|
|
239
242
|
allowNull: boolean;
|
|
240
243
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
241
244
|
|
|
@@ -251,6 +254,7 @@ export declare const DfColor: DefineComponent<DfColorProps, {}, {}, {}, {}, Comp
|
|
|
251
254
|
"onClick:clear"?: (() => any) | undefined;
|
|
252
255
|
}>, {
|
|
253
256
|
enabled: boolean;
|
|
257
|
+
clearable: boolean;
|
|
254
258
|
allowNull: boolean;
|
|
255
259
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
256
260
|
|
|
@@ -266,6 +270,7 @@ export declare const DfDateTime: DefineComponent<DfDateTimeProps, {}, {}, {}, {}
|
|
|
266
270
|
"onClick:clear"?: (() => any) | undefined;
|
|
267
271
|
}>, {
|
|
268
272
|
enabled: boolean;
|
|
273
|
+
clearable: boolean;
|
|
269
274
|
inputType: "datetime" | "date" | "time";
|
|
270
275
|
displayFormatDate: string;
|
|
271
276
|
displayFormatTime: string;
|
|
@@ -285,6 +290,7 @@ export declare const DfFile: DefineComponent<DfFileProps, {}, {}, {}, {}, Compon
|
|
|
285
290
|
"onClick:clear"?: (() => any) | undefined;
|
|
286
291
|
}>, {
|
|
287
292
|
enabled: boolean;
|
|
293
|
+
clearable: boolean;
|
|
288
294
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
289
295
|
|
|
290
296
|
declare interface DfFileProps extends BaseProps {
|
|
@@ -299,6 +305,7 @@ export declare const DfInput: DefineComponent<DfInputProps, {}, {}, {}, {}, Comp
|
|
|
299
305
|
"onClick:clear"?: (() => any) | undefined;
|
|
300
306
|
}>, {
|
|
301
307
|
enabled: boolean;
|
|
308
|
+
clearable: boolean;
|
|
302
309
|
inputType: "text" | "password" | "email" | "url" | "number";
|
|
303
310
|
precision: number | null;
|
|
304
311
|
step: number;
|
|
@@ -353,6 +360,7 @@ export declare const DfRtfEditor: DefineComponent<DfRtfEditorProps, {}, {}, {},
|
|
|
353
360
|
}>, {
|
|
354
361
|
minHeight: string;
|
|
355
362
|
enabled: boolean;
|
|
363
|
+
clearable: boolean;
|
|
356
364
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
357
365
|
$editor: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
358
366
|
modelValue: string;
|
|
@@ -414,6 +422,7 @@ export declare const DfTextArea: DefineComponent<DfTextAreaProps, {}, {}, {}, {}
|
|
|
414
422
|
"onClick:clear"?: (() => any) | undefined;
|
|
415
423
|
}>, {
|
|
416
424
|
enabled: boolean;
|
|
425
|
+
clearable: boolean;
|
|
417
426
|
rows: number;
|
|
418
427
|
maxRows: number;
|
|
419
428
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
package/package.json
CHANGED