@cobre-npm/ds-v3 0.81.29 → 0.81.31
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/cobre-ds-v3-lib.es.js +13 -13
- package/dist/style.css +1 -1
- package/dist/types/components/molecules/CobreInput/CobreInput.vue.d.ts +3 -4
- package/dist/types/components/molecules/CobreInputAmount/CobreInputAmount.vue.d.ts +3 -4
- package/dist/types/components/molecules/CobreInputCurrency/CobreInputCurrency.vue.d.ts +3 -4
- package/dist/types/components/molecules/CobreInputPhoneNumber/CobreInputPhoneNumber.vue.d.ts +3 -4
- package/dist/types/components/molecules/CobreInputUrl/CobreInputUrl.vue.d.ts +3 -4
- package/dist/types/components/molecules/CobreSelect/CobreSelect.vue.d.ts +1 -1
- package/dist/types/components/molecules/CobreSelectTags/CobreSelectTags.vue.d.ts +2 -2
- package/dist/types/components/molecules/CobreTextArea/CobreTextArea.vue.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
modelValue: string | undefined | null;
|
|
3
|
+
errorMsg: string;
|
|
3
4
|
id?: string;
|
|
5
|
+
labelOptional?: string;
|
|
4
6
|
placeholder?: string;
|
|
5
7
|
isRequired?: boolean;
|
|
6
8
|
minlength?: string;
|
|
7
9
|
maxlength?: string;
|
|
8
|
-
errorMsg?: string;
|
|
9
10
|
isDisabled?: boolean;
|
|
10
11
|
type?: 'alphanumeric' | 'numeric' | 'letters' | 'anyCharacter' | 'password' | 'email';
|
|
11
12
|
theme?: 'white' | 'cloudy';
|
|
12
13
|
label?: string;
|
|
13
14
|
labelTooltip?: string;
|
|
14
|
-
labelOptional?: string;
|
|
15
15
|
infoLabel?: string | null;
|
|
16
16
|
iconInfoLabel?: boolean;
|
|
17
17
|
showErrors?: boolean;
|
|
@@ -36,10 +36,9 @@ declare const _default: import("vue").DefineComponent<Props, {
|
|
|
36
36
|
theme: "white" | "cloudy";
|
|
37
37
|
isRequired: boolean;
|
|
38
38
|
isDisabled: boolean;
|
|
39
|
+
labelOptional: string;
|
|
39
40
|
minlength: string;
|
|
40
41
|
maxlength: string;
|
|
41
|
-
errorMsg: string;
|
|
42
|
-
labelOptional: string;
|
|
43
42
|
infoLabel: string | null;
|
|
44
43
|
iconInfoLabel: boolean;
|
|
45
44
|
showErrors: boolean;
|
|
@@ -3,16 +3,16 @@ interface Props {
|
|
|
3
3
|
modelValue: string | number | undefined;
|
|
4
4
|
placeholder: string;
|
|
5
5
|
id: string;
|
|
6
|
+
errorMsg: string;
|
|
7
|
+
labelOptional?: string;
|
|
6
8
|
options?: Partial<CurrencyInputOptions>;
|
|
7
9
|
isRequired?: boolean;
|
|
8
10
|
minlength?: string;
|
|
9
11
|
maxlength?: string;
|
|
10
12
|
min?: number;
|
|
11
13
|
max?: number;
|
|
12
|
-
errorMsg?: string;
|
|
13
14
|
disabled?: boolean;
|
|
14
15
|
label?: string;
|
|
15
|
-
labelOptional?: string;
|
|
16
16
|
allowDecimals?: boolean;
|
|
17
17
|
}
|
|
18
18
|
declare const _default: import("vue").DefineComponent<Props, {
|
|
@@ -29,10 +29,9 @@ declare const _default: import("vue").DefineComponent<Props, {
|
|
|
29
29
|
}>, {
|
|
30
30
|
disabled: boolean;
|
|
31
31
|
isRequired: boolean;
|
|
32
|
+
labelOptional: string;
|
|
32
33
|
minlength: string;
|
|
33
34
|
maxlength: string;
|
|
34
|
-
errorMsg: string;
|
|
35
|
-
labelOptional: string;
|
|
36
35
|
min: number;
|
|
37
36
|
max: number;
|
|
38
37
|
allowDecimals: boolean;
|
|
@@ -6,6 +6,8 @@ interface Currency {
|
|
|
6
6
|
}
|
|
7
7
|
interface Props {
|
|
8
8
|
modelValue: string | number | undefined;
|
|
9
|
+
errorMsg: string;
|
|
10
|
+
labelOptional?: string;
|
|
9
11
|
placeholder?: string;
|
|
10
12
|
id?: string;
|
|
11
13
|
options?: Partial<CurrencyInputOptions>;
|
|
@@ -14,10 +16,8 @@ interface Props {
|
|
|
14
16
|
maxlength?: string;
|
|
15
17
|
min?: number;
|
|
16
18
|
max?: number;
|
|
17
|
-
errorMsg?: string;
|
|
18
19
|
label?: string;
|
|
19
20
|
labelTooltip?: string;
|
|
20
|
-
labelOptional?: string;
|
|
21
21
|
currencies: Currency[];
|
|
22
22
|
isAmountDisabled?: boolean;
|
|
23
23
|
isCurrencyDisabled?: boolean;
|
|
@@ -48,10 +48,9 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
48
48
|
"onUpdate:currencySelected"?: ((value: string | undefined) => any) | undefined;
|
|
49
49
|
}>, {
|
|
50
50
|
isRequired: boolean;
|
|
51
|
+
labelOptional: string;
|
|
51
52
|
minlength: string;
|
|
52
53
|
maxlength: string;
|
|
53
|
-
errorMsg: string;
|
|
54
|
-
labelOptional: string;
|
|
55
54
|
min: number;
|
|
56
55
|
max: number;
|
|
57
56
|
hideCountrySelector: boolean;
|
package/dist/types/components/molecules/CobreInputPhoneNumber/CobreInputPhoneNumber.vue.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
modelValue: string | undefined | null;
|
|
3
|
+
errorMsg: string;
|
|
4
|
+
labelOptional?: string;
|
|
3
5
|
id?: string;
|
|
4
6
|
placeholder?: string;
|
|
5
7
|
isRequired?: boolean;
|
|
6
8
|
minlength?: string;
|
|
7
9
|
maxlength?: string;
|
|
8
|
-
errorMsg?: string;
|
|
9
10
|
isDisabled?: boolean;
|
|
10
11
|
theme?: 'white' | 'cloudy';
|
|
11
12
|
label?: string;
|
|
12
13
|
labelTooltip?: string;
|
|
13
|
-
labelOptional?: string;
|
|
14
14
|
infoLabel?: string | null;
|
|
15
15
|
iconInfoLabel?: boolean;
|
|
16
16
|
showErrors?: boolean;
|
|
@@ -29,10 +29,9 @@ declare const _default: import("vue").DefineComponent<Props, {
|
|
|
29
29
|
placeholder: string;
|
|
30
30
|
isRequired: boolean;
|
|
31
31
|
isDisabled: boolean;
|
|
32
|
+
labelOptional: string;
|
|
32
33
|
minlength: string;
|
|
33
34
|
maxlength: string;
|
|
34
|
-
errorMsg: string;
|
|
35
|
-
labelOptional: string;
|
|
36
35
|
infoLabel: string | null;
|
|
37
36
|
iconInfoLabel: boolean;
|
|
38
37
|
showErrors: boolean;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
modelValue: string | undefined | null;
|
|
3
|
+
errorMsg: string;
|
|
4
|
+
labelOptional?: string;
|
|
3
5
|
id?: string;
|
|
4
6
|
placeholder?: string;
|
|
5
7
|
isRequired?: boolean;
|
|
6
8
|
minlength?: string;
|
|
7
9
|
maxlength?: string;
|
|
8
|
-
errorMsg?: string;
|
|
9
10
|
isDisabled?: boolean;
|
|
10
11
|
theme?: 'white' | 'cloudy';
|
|
11
12
|
label?: string;
|
|
12
13
|
labelTooltip?: string;
|
|
13
|
-
labelOptional?: string;
|
|
14
14
|
infoLabel?: string | null;
|
|
15
15
|
iconInfoLabel?: boolean;
|
|
16
16
|
showErrors?: boolean;
|
|
@@ -24,10 +24,9 @@ declare const _default: import("vue").DefineComponent<Props, {
|
|
|
24
24
|
}>, {
|
|
25
25
|
theme: "white" | "cloudy";
|
|
26
26
|
isRequired: boolean;
|
|
27
|
+
labelOptional: string;
|
|
27
28
|
minlength: string;
|
|
28
29
|
maxlength: string;
|
|
29
|
-
errorMsg: string;
|
|
30
|
-
labelOptional: string;
|
|
31
30
|
infoLabel: string | null;
|
|
32
31
|
iconInfoLabel: boolean;
|
|
33
32
|
showErrors: boolean;
|
|
@@ -55,8 +55,8 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
|
55
55
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
56
56
|
isRequired: boolean;
|
|
57
57
|
errorMsg: string;
|
|
58
|
-
labelTooltip: string;
|
|
59
58
|
labelOptional: string;
|
|
59
|
+
labelTooltip: string;
|
|
60
60
|
noOptionsText: string;
|
|
61
61
|
noOptionsIcon: string;
|
|
62
62
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -47,10 +47,10 @@ declare function __VLS_template(): {
|
|
|
47
47
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
48
48
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
49
49
|
isRequired: boolean;
|
|
50
|
-
maxlength: string;
|
|
51
50
|
errorMsg: string;
|
|
52
|
-
labelTooltip: string;
|
|
53
51
|
labelOptional: string;
|
|
52
|
+
maxlength: string;
|
|
53
|
+
labelTooltip: string;
|
|
54
54
|
noOptionsText: string;
|
|
55
55
|
noOptionsIcon: string;
|
|
56
56
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -33,10 +33,10 @@ declare const _default: import("vue").DefineComponent<Props, {
|
|
|
33
33
|
height: string;
|
|
34
34
|
isRequired: boolean;
|
|
35
35
|
isDisabled: boolean;
|
|
36
|
-
minlength: string;
|
|
37
|
-
maxlength: string;
|
|
38
36
|
errorMsg: string;
|
|
39
37
|
labelOptional: string;
|
|
38
|
+
minlength: string;
|
|
39
|
+
maxlength: string;
|
|
40
40
|
infoLabel: string | null;
|
|
41
41
|
iconInfoLabel: boolean;
|
|
42
42
|
showErrors: boolean;
|