@point-hub/papp 0.0.90 → 0.0.91
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/components/base-input-number.vue.d.ts +7 -0
- package/dist/components/base-input.vue.d.ts +10 -1
- package/dist/index.css +1 -1
- package/dist/index.js +638 -635
- package/dist/index.umd.cjs +6 -6
- package/package.json +1 -1
|
@@ -12,6 +12,12 @@ export interface Props {
|
|
|
12
12
|
autofocus?: boolean;
|
|
13
13
|
required?: boolean;
|
|
14
14
|
disabled?: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Clearing or resetting errors when an update or change occurs.
|
|
17
|
+
*
|
|
18
|
+
* @default true
|
|
19
|
+
*/
|
|
20
|
+
resetErrorsOnUpdate?: boolean;
|
|
15
21
|
helpers?: string[];
|
|
16
22
|
}
|
|
17
23
|
declare let __VLS_typeProps: Props;
|
|
@@ -48,6 +54,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
48
54
|
layout: BaseFormLayoutType;
|
|
49
55
|
border: BaseInputNumberBorderType;
|
|
50
56
|
autofocus: boolean;
|
|
57
|
+
resetErrorsOnUpdate: boolean;
|
|
51
58
|
align: "left" | "right";
|
|
52
59
|
decimalLength: number;
|
|
53
60
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -15,8 +15,16 @@ export interface Props {
|
|
|
15
15
|
required?: boolean;
|
|
16
16
|
readonly?: boolean;
|
|
17
17
|
disabled?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Clearing or resetting errors when an update or change occurs.
|
|
20
|
+
*
|
|
21
|
+
* @default true
|
|
22
|
+
*/
|
|
23
|
+
resetErrorsOnUpdate?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* The helper text appears below the text input.
|
|
26
|
+
*/
|
|
18
27
|
helpers?: string[];
|
|
19
|
-
errors?: string[];
|
|
20
28
|
}
|
|
21
29
|
declare let __VLS_typeProps: Props;
|
|
22
30
|
type __VLS_PublicProps = {
|
|
@@ -52,6 +60,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
52
60
|
border: BaseInputBorderType;
|
|
53
61
|
autofocus: boolean;
|
|
54
62
|
readonly: boolean;
|
|
63
|
+
resetErrorsOnUpdate: boolean;
|
|
55
64
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
56
65
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
57
66
|
export default _default;
|