@cobre-npm/ds-v3 0.82.7 → 0.82.8
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/README.md +0 -0
- package/dist/cobre-ds-v3-lib.es.js +2613 -2599
- package/dist/tokens/_components.scss +0 -0
- package/dist/tokens/_primitives.scss +0 -0
- package/dist/tokens/_semantics.scss +0 -0
- package/dist/types/components/atoms/CobreIndicative/CobreIndicative.vue.d.ts +7 -0
- package/dist/types/components/molecules/CobreInputPhoneNumber/CobreInputPhoneNumber.vue.d.ts +7 -0
- package/dist/vite.svg +0 -0
- package/package.json +1 -1
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,9 +1,15 @@
|
|
|
1
|
+
export interface Indicative {
|
|
2
|
+
code: string;
|
|
3
|
+
geo: string;
|
|
4
|
+
country: string;
|
|
5
|
+
}
|
|
1
6
|
interface Props {
|
|
2
7
|
placeholder?: string;
|
|
3
8
|
searchable?: boolean;
|
|
4
9
|
isRequired?: boolean;
|
|
5
10
|
id?: string;
|
|
6
11
|
disabled?: boolean;
|
|
12
|
+
options?: Indicative[];
|
|
7
13
|
}
|
|
8
14
|
declare function __VLS_template(): {
|
|
9
15
|
attrs: Partial<{}>;
|
|
@@ -32,6 +38,7 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
32
38
|
placeholder: string;
|
|
33
39
|
searchable: boolean;
|
|
34
40
|
isRequired: boolean;
|
|
41
|
+
options: Indicative[];
|
|
35
42
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
36
43
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
37
44
|
export default _default;
|
package/dist/types/components/molecules/CobreInputPhoneNumber/CobreInputPhoneNumber.vue.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import { Indicative } from '@/components/atoms/CobreIndicative/CobreIndicative.vue';
|
|
1
2
|
interface Props {
|
|
2
3
|
modelValue: string | undefined | null;
|
|
4
|
+
indicativeModelValue?: string;
|
|
5
|
+
indicativeOptions?: Indicative[];
|
|
3
6
|
errorMsg?: string;
|
|
4
7
|
labelOptional?: string;
|
|
5
8
|
id?: string;
|
|
@@ -22,8 +25,10 @@ declare const _default: import("vue").DefineComponent<Props, {
|
|
|
22
25
|
isValidNumeric: import("vue").ComputedRef<boolean>;
|
|
23
26
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
27
|
"update:modelValue": (...args: any[]) => void;
|
|
28
|
+
"update:indicativeModelValue": (...args: any[]) => void;
|
|
25
29
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
26
30
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
31
|
+
"onUpdate:indicativeModelValue"?: ((...args: any[]) => any) | undefined;
|
|
27
32
|
}>, {
|
|
28
33
|
theme: "white" | "cloudy";
|
|
29
34
|
placeholder: string;
|
|
@@ -36,5 +41,7 @@ declare const _default: import("vue").DefineComponent<Props, {
|
|
|
36
41
|
infoLabel: string | null;
|
|
37
42
|
iconInfoLabel: boolean;
|
|
38
43
|
showErrors: boolean;
|
|
44
|
+
indicativeModelValue: string;
|
|
45
|
+
indicativeOptions: Indicative[];
|
|
39
46
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
40
47
|
export default _default;
|
package/dist/vite.svg
CHANGED
|
File without changes
|