@dynamicforms/vuetify-inputs 0.1.14 → 0.1.15
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 +3 -3
- package/dist/dynamicforms-vuetify-inputs.js.map +1 -1
- package/dist/dynamicforms-vuetify-inputs.umd.cjs +1 -1
- package/dist/dynamicforms-vuetify-inputs.umd.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/style.css +1 -1
- 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, {} & {
|
|
@@ -356,7 +356,7 @@ declare interface Props_5 extends BaseProps {
|
|
|
356
356
|
|
|
357
357
|
declare interface Props_6 extends BaseProps {
|
|
358
358
|
inputType?: 'text' | 'password' | 'email' | 'url' | 'number';
|
|
359
|
-
precision?: number;
|
|
359
|
+
precision?: number | null;
|
|
360
360
|
step?: number;
|
|
361
361
|
min?: number;
|
|
362
362
|
max?: number;
|