@muenchen/muc-patternlab-vue 5.3.0 → 5.4.0
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.
|
@@ -9,6 +9,7 @@ declare const _default: {
|
|
|
9
9
|
label?: string;
|
|
10
10
|
hint?: string;
|
|
11
11
|
required?: boolean;
|
|
12
|
+
maxlength?: number;
|
|
12
13
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
14
|
"update:modelValue": (value: string) => any;
|
|
14
15
|
}, string, import('vue').PublicProps, Readonly<{
|
|
@@ -21,6 +22,7 @@ declare const _default: {
|
|
|
21
22
|
label?: string;
|
|
22
23
|
hint?: string;
|
|
23
24
|
required?: boolean;
|
|
25
|
+
maxlength?: number;
|
|
24
26
|
}> & Readonly<{
|
|
25
27
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
26
28
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -65,3 +67,11 @@ export declare const BigTextArea: {
|
|
|
65
67
|
placeholder: string;
|
|
66
68
|
};
|
|
67
69
|
};
|
|
70
|
+
export declare const CountTextArea: {
|
|
71
|
+
args: {
|
|
72
|
+
id: string;
|
|
73
|
+
label: string;
|
|
74
|
+
maxlength: number;
|
|
75
|
+
placeholder: string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
@@ -27,6 +27,10 @@ type __VLS_Props = {
|
|
|
27
27
|
* Sets this input form as required. Default is false.
|
|
28
28
|
*/
|
|
29
29
|
required?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Restricts character input to the specified number
|
|
32
|
+
*/
|
|
33
|
+
maxlength?: number;
|
|
30
34
|
};
|
|
31
35
|
type __VLS_PublicProps = {
|
|
32
36
|
modelValue?: string;
|