@point-hub/papp 0.0.94 → 0.0.95
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.vue.d.ts +7 -2
- package/dist/index.css +1 -1
- package/dist/index.js +44 -40
- package/dist/index.umd.cjs +1 -1
- package/package.json +1 -1
|
@@ -7,7 +7,6 @@ export interface Props {
|
|
|
7
7
|
label?: string;
|
|
8
8
|
description?: string;
|
|
9
9
|
placeholder?: string;
|
|
10
|
-
type?: BaseInputType;
|
|
11
10
|
border?: BaseInputBorderType;
|
|
12
11
|
layout?: BaseFormLayoutType;
|
|
13
12
|
maxlength?: number;
|
|
@@ -27,7 +26,12 @@ export interface Props {
|
|
|
27
26
|
helpers?: string[];
|
|
28
27
|
}
|
|
29
28
|
type __VLS_Props = Props;
|
|
29
|
+
/**
|
|
30
|
+
* Input type text or password for visibility
|
|
31
|
+
*/
|
|
32
|
+
declare const type: import('vue').ModelRef<string, string, string, string>;
|
|
30
33
|
type __VLS_PublicProps = {
|
|
34
|
+
'type'?: typeof type['value'];
|
|
31
35
|
'errors'?: string[];
|
|
32
36
|
} & __VLS_Props;
|
|
33
37
|
declare function __VLS_template(): {
|
|
@@ -48,13 +52,14 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
48
52
|
inputRef: import('vue').Ref<any, any>;
|
|
49
53
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
50
54
|
"update:errors": (value: string[]) => any;
|
|
55
|
+
"update:type": (value: string) => any;
|
|
51
56
|
} & {
|
|
52
57
|
"update:modelValue": (value: string) => any;
|
|
53
58
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
54
59
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
55
60
|
"onUpdate:errors"?: ((value: string[]) => any) | undefined;
|
|
61
|
+
"onUpdate:type"?: ((value: string) => any) | undefined;
|
|
56
62
|
}>, {
|
|
57
|
-
type: BaseInputType;
|
|
58
63
|
required: boolean;
|
|
59
64
|
disabled: boolean;
|
|
60
65
|
layout: BaseFormLayoutType;
|