@cobre-npm/ds-v3 0.0.1
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 +52 -0
- package/dist/_components.scss +1222 -0
- package/dist/_primitives.scss +408 -0
- package/dist/_semantics.scss +0 -0
- package/dist/cobre-ds-v3-lib.es.js +7059 -0
- package/dist/style.css +1 -0
- package/dist/types/App.vue.d.ts +2 -0
- package/dist/types/components/CobreAccountInfoFiled/CobreAccountInfoField.vue.d.ts +48 -0
- package/dist/types/components/CobreActionList/CobreActionList.vue.d.ts +62 -0
- package/dist/types/components/CobreAvatar/CobreAvatar.vue.d.ts +20 -0
- package/dist/types/components/CobreBadge/CobreBadge.vue.d.ts +52 -0
- package/dist/types/components/CobreBankLogo/CobreBankLogo.vue.d.ts +32 -0
- package/dist/types/components/CobreButton/CobreButton.vue.d.ts +62 -0
- package/dist/types/components/CobreButtonMenu/CobreButtonMenu.vue.d.ts +40 -0
- package/dist/types/components/CobreChips/CobreChips.vue.d.ts +34 -0
- package/dist/types/components/CobreColumnTable/CobreColumnTable.vue.d.ts +66 -0
- package/dist/types/components/CobreCopyTextBox/CobreCopyTextBox.vue.d.ts +44 -0
- package/dist/types/components/CobreCountryFlag/CobreCountryFlag.vue.d.ts +28 -0
- package/dist/types/components/CobreDropdownButton/CobreDropdownButton.vue.d.ts +48 -0
- package/dist/types/components/CobreEmptyResults/CobreEmptyResults.vue.d.ts +36 -0
- package/dist/types/components/CobreEmptyState/CobreEmptyState.vue.d.ts +24 -0
- package/dist/types/components/CobreFieldLogo/CobreFieldLogo.vue.d.ts +41 -0
- package/dist/types/components/CobreFloatModal/CobreFloatModal.vue.d.ts +63 -0
- package/dist/types/components/CobreFlowResult/CobreFlowResult.vue.d.ts +65 -0
- package/dist/types/components/CobreFormOtp/CobreFormOtp.vue.d.ts +76 -0
- package/dist/types/components/CobreHeader/CobreHeader.vue.d.ts +54 -0
- package/dist/types/components/CobreHeader/components/Navbar.vue.d.ts +55 -0
- package/dist/types/components/CobreInfoDetail/CobreInfoDetail.vue.d.ts +49 -0
- package/dist/types/components/CobreInput/CobreInput.vue.d.ts +85 -0
- package/dist/types/components/CobreInputLabel/CobreInputLabel.vue.d.ts +15 -0
- package/dist/types/components/CobreInputUrl/CobreInputUrl.vue.d.ts +76 -0
- package/dist/types/components/CobreLogoField/CobreLogoField.vue.d.ts +38 -0
- package/dist/types/components/CobreModal/CobreModal.vue.d.ts +52 -0
- package/dist/types/components/CobreModalAction/CobreModalAction.vue.d.ts +63 -0
- package/dist/types/components/CobrePager/CobrePager.vue.d.ts +51 -0
- package/dist/types/components/CobreRowTable/CobreRowTable.vue.d.ts +84 -0
- package/dist/types/components/CobreSelect/CobreSelect.vue.d.ts +80 -0
- package/dist/types/components/CobreSideMenu/CobreSideMenu.vue.d.ts +59 -0
- package/dist/types/components/CobreSideMenu/components/SideMenuItem.vue.d.ts +24 -0
- package/dist/types/components/CobreSideMenu/components/SubItems.vue.d.ts +20 -0
- package/dist/types/components/CobreSideMenu/interfaces/menu.interface.d.ts +19 -0
- package/dist/types/components/CobreSnackBar/CobreSnackBar.vue.d.ts +41 -0
- package/dist/types/components/CobreTableCellCopy/CobreTableCellCopy.vue.d.ts +48 -0
- package/dist/types/components/CobreTextArea/CobreTextArea.vue.d.ts +85 -0
- package/dist/types/components/CobreToastAlert/CobreToastAlert.vue.d.ts +42 -0
- package/dist/types/components/CobreTruncateTooltipText/CobreTruncateTooltipText.vue.d.ts +28 -0
- package/dist/types/components/CobreUploader/CobreUploader.vue.d.ts +43 -0
- package/dist/types/components/HelloWorld.vue.d.ts +15 -0
- package/dist/types/components/Toolbar/CobreInputSearch/CobreInputSearch.vue.d.ts +41 -0
- package/dist/types/components/index.d.ts +38 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/main.d.ts +1 -0
- package/dist/types/stories/Button.vue.d.ts +64 -0
- package/dist/types/stories/Header.vue.d.ts +28 -0
- package/dist/types/stories/Page.vue.d.ts +3 -0
- package/dist/types/types/button.types.d.ts +1 -0
- package/dist/types/types/icon.types.d.ts +1 -0
- package/dist/types/utils/banksList-v2.d.ts +47 -0
- package/dist/types/utils/banksList-v3.d.ts +12 -0
- package/dist/types/utils/index.d.ts +3 -0
- package/dist/types/utils/indicativesList.d.ts +4 -0
- package/dist/vite.svg +1 -0
- package/package.json +74 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
currentFileType: any;
|
|
3
|
+
fileUpload: any;
|
|
4
|
+
disabled: boolean;
|
|
5
|
+
uploadFromDeviceLabel: string;
|
|
6
|
+
maxSizeLabel: string;
|
|
7
|
+
dragFileLabel?: string;
|
|
8
|
+
}
|
|
9
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
10
|
+
disabled: boolean;
|
|
11
|
+
}>, {
|
|
12
|
+
resetInputFile: () => string;
|
|
13
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
+
"files-dropped": (...args: any[]) => void;
|
|
15
|
+
"files-input": (...args: any[]) => void;
|
|
16
|
+
"deleted-file": (...args: any[]) => void;
|
|
17
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
18
|
+
disabled: boolean;
|
|
19
|
+
}>>> & {
|
|
20
|
+
"onFiles-dropped"?: ((...args: any[]) => any) | undefined;
|
|
21
|
+
"onFiles-input"?: ((...args: any[]) => any) | undefined;
|
|
22
|
+
"onDeleted-file"?: ((...args: any[]) => any) | undefined;
|
|
23
|
+
}, {
|
|
24
|
+
disabled: boolean;
|
|
25
|
+
}, {}>;
|
|
26
|
+
export default _default;
|
|
27
|
+
type __VLS_WithDefaults<P, D> = {
|
|
28
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
29
|
+
default: D[K];
|
|
30
|
+
}> : P[K];
|
|
31
|
+
};
|
|
32
|
+
type __VLS_Prettify<T> = {
|
|
33
|
+
[K in keyof T]: T[K];
|
|
34
|
+
} & {};
|
|
35
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
36
|
+
type __VLS_TypePropsToOption<T> = {
|
|
37
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
38
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
39
|
+
} : {
|
|
40
|
+
type: import('vue').PropType<T[K]>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
2
|
+
msg: string;
|
|
3
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
4
|
+
msg: string;
|
|
5
|
+
}>>>, {}, {}>;
|
|
6
|
+
export default _default;
|
|
7
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
8
|
+
type __VLS_TypePropsToOption<T> = {
|
|
9
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
10
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
11
|
+
} : {
|
|
12
|
+
type: import('vue').PropType<T[K]>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue: string;
|
|
3
|
+
isLoading: boolean;
|
|
4
|
+
id?: string;
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
debounce?: number;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
9
|
+
isLoading: boolean;
|
|
10
|
+
debounce: number;
|
|
11
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
+
"update:modelValue": (...args: any[]) => void;
|
|
13
|
+
deleteInput: (...args: any[]) => void;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
15
|
+
isLoading: boolean;
|
|
16
|
+
debounce: number;
|
|
17
|
+
}>>> & {
|
|
18
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
19
|
+
onDeleteInput?: ((...args: any[]) => any) | undefined;
|
|
20
|
+
}, {
|
|
21
|
+
isLoading: boolean;
|
|
22
|
+
debounce: number;
|
|
23
|
+
}, {}>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_WithDefaults<P, D> = {
|
|
26
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
27
|
+
default: D[K];
|
|
28
|
+
}> : P[K];
|
|
29
|
+
};
|
|
30
|
+
type __VLS_Prettify<T> = {
|
|
31
|
+
[K in keyof T]: T[K];
|
|
32
|
+
} & {};
|
|
33
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
34
|
+
type __VLS_TypePropsToOption<T> = {
|
|
35
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
36
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
37
|
+
} : {
|
|
38
|
+
type: import('vue').PropType<T[K]>;
|
|
39
|
+
required: true;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export { default as CobreActionList } from './CobreActionList/CobreActionList.vue';
|
|
2
|
+
export { default as CobreBadge } from './CobreBadge/CobreBadge.vue';
|
|
3
|
+
export { default as CobreBankLogo } from './CobreBankLogo/CobreBankLogo.vue';
|
|
4
|
+
export { default as CobreFieldLogo } from './CobreFieldLogo/CobreFieldLogo.vue';
|
|
5
|
+
export { default as CobreSideMenu } from './CobreSideMenu/CobreSideMenu.vue';
|
|
6
|
+
export { default as CobreInputLabel } from './CobreInputLabel/CobreInputLabel.vue';
|
|
7
|
+
export { default as CobreAvatar } from './CobreAvatar/CobreAvatar.vue';
|
|
8
|
+
export { default as CobreHeaderV3 } from './CobreHeader/CobreHeader.vue';
|
|
9
|
+
export { default as CobreButtonMenu } from './CobreButtonMenu/CobreButtonMenu.vue';
|
|
10
|
+
export { default as CobreColumnTable } from './CobreColumnTable/CobreColumnTable.vue';
|
|
11
|
+
export { default as CobreEmptyResultsV3 } from './CobreEmptyResults/CobreEmptyResults.vue';
|
|
12
|
+
export { default as CobrePagerV3 } from './CobrePager/CobrePager.vue';
|
|
13
|
+
export { default as CobreRowTable } from './CobreRowTable/CobreRowTable.vue';
|
|
14
|
+
export { default as CobreButtonV3 } from './CobreButton/CobreButton.vue';
|
|
15
|
+
export { default as CobreInputSearchV3 } from './Toolbar/CobreInputSearch/CobreInputSearch.vue';
|
|
16
|
+
export { default as CobreFlowResultV3 } from './CobreFlowResult/CobreFlowResult.vue';
|
|
17
|
+
export { default as CobreModalActionV3 } from './CobreModalAction/CobreModalAction.vue';
|
|
18
|
+
export { default as CobreToastAlertV3 } from './CobreToastAlert/CobreToastAlert.vue';
|
|
19
|
+
export { default as CobreUploaderV3 } from './CobreUploader/CobreUploader.vue';
|
|
20
|
+
export { default as CobreBankLogoV3 } from './CobreBankLogo/CobreBankLogo.vue';
|
|
21
|
+
export { default as CobreDropdownButton } from './CobreDropdownButton/CobreDropdownButton.vue';
|
|
22
|
+
export { default as CobreChips } from './CobreChips/CobreChips.vue';
|
|
23
|
+
export { default as CobreModalV3 } from './CobreModal/CobreModal.vue';
|
|
24
|
+
export { default as CobreOtpV3 } from './CobreFormOtp/CobreFormOtp.vue';
|
|
25
|
+
export { default as CobreSnackBar } from './CobreSnackBar/CobreSnackBar.vue';
|
|
26
|
+
export { default as CobreAccountInfoField } from './CobreAccountInfoFiled/CobreAccountInfoField.vue';
|
|
27
|
+
export { default as CobreCopyTextBox } from './CobreCopyTextBox/CobreCopyTextBox.vue';
|
|
28
|
+
export { default as CobreInfoDetail } from './CobreInfoDetail/CobreInfoDetail.vue';
|
|
29
|
+
export { default as CobreTableCellCopy } from './CobreTableCellCopy/CobreTableCellCopy.vue';
|
|
30
|
+
export { default as CobreEmptyState } from './CobreEmptyState/CobreEmptyState.vue';
|
|
31
|
+
export { default as CobreLogoField } from './CobreLogoField/CobreLogoField.vue';
|
|
32
|
+
export { default as CobreTruncateTooltipText } from './CobreTruncateTooltipText/CobreTruncateTooltipText.vue';
|
|
33
|
+
export { default as CobreInputV3 } from './CobreInput/CobreInput.vue';
|
|
34
|
+
export { default as CobreFloatModalV3 } from './CobreFloatModal/CobreFloatModal.vue';
|
|
35
|
+
export { default as CobreCountryFlag } from './CobreCountryFlag/CobreCountryFlag.vue';
|
|
36
|
+
export { default as CobreSelectV3 } from './CobreSelect/CobreSelect.vue';
|
|
37
|
+
export { default as CobreInputUrl } from './CobreInputUrl/CobreInputUrl.vue';
|
|
38
|
+
export { default as CobreTextAreaV3 } from './CobreTextArea/CobreTextArea.vue';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import './scss/index.scss';
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import './button.css';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
3
|
+
/**
|
|
4
|
+
* The label of the button
|
|
5
|
+
*/
|
|
6
|
+
label: string;
|
|
7
|
+
/**
|
|
8
|
+
* primary or secondary button
|
|
9
|
+
*/
|
|
10
|
+
primary?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* size of the button
|
|
13
|
+
*/
|
|
14
|
+
size?: "small" | "medium" | "large";
|
|
15
|
+
/**
|
|
16
|
+
* background color of the button
|
|
17
|
+
*/
|
|
18
|
+
backgroundColor?: string;
|
|
19
|
+
}>, {
|
|
20
|
+
primary: boolean;
|
|
21
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
|
+
click: (id: number) => void;
|
|
23
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
24
|
+
/**
|
|
25
|
+
* The label of the button
|
|
26
|
+
*/
|
|
27
|
+
label: string;
|
|
28
|
+
/**
|
|
29
|
+
* primary or secondary button
|
|
30
|
+
*/
|
|
31
|
+
primary?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* size of the button
|
|
34
|
+
*/
|
|
35
|
+
size?: "small" | "medium" | "large";
|
|
36
|
+
/**
|
|
37
|
+
* background color of the button
|
|
38
|
+
*/
|
|
39
|
+
backgroundColor?: string;
|
|
40
|
+
}>, {
|
|
41
|
+
primary: boolean;
|
|
42
|
+
}>>> & {
|
|
43
|
+
onClick?: ((id: number) => any) | undefined;
|
|
44
|
+
}, {
|
|
45
|
+
primary: boolean;
|
|
46
|
+
}, {}>;
|
|
47
|
+
export default _default;
|
|
48
|
+
type __VLS_WithDefaults<P, D> = {
|
|
49
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
50
|
+
default: D[K];
|
|
51
|
+
}> : P[K];
|
|
52
|
+
};
|
|
53
|
+
type __VLS_Prettify<T> = {
|
|
54
|
+
[K in keyof T]: T[K];
|
|
55
|
+
} & {};
|
|
56
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
57
|
+
type __VLS_TypePropsToOption<T> = {
|
|
58
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
59
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
60
|
+
} : {
|
|
61
|
+
type: import('vue').PropType<T[K]>;
|
|
62
|
+
required: true;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import './header.css';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
|
+
user: {
|
|
4
|
+
name: string;
|
|
5
|
+
} | null;
|
|
6
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
createAccount: () => void;
|
|
8
|
+
login: () => void;
|
|
9
|
+
logout: () => void;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
11
|
+
user: {
|
|
12
|
+
name: string;
|
|
13
|
+
} | null;
|
|
14
|
+
}>>> & {
|
|
15
|
+
onLogout?: (() => any) | undefined;
|
|
16
|
+
onCreateAccount?: (() => any) | undefined;
|
|
17
|
+
onLogin?: (() => any) | undefined;
|
|
18
|
+
}, {}, {}>;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
21
|
+
type __VLS_TypePropsToOption<T> = {
|
|
22
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
23
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
24
|
+
} : {
|
|
25
|
+
type: import('vue').PropType<T[K]>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import './page.css';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type ButtonThemes = 'primary' | 'secondary' | 'ghost' | 'ghost-small' | 'ghost-teal' | 'link' | 'warning' | 'secondary-warning' | 'action' | 'single' | 'filter' | 'secondary-cloudy' | 'icon' | 'icon-cloudy' | 'toolbar' | 'primary-warning';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type IconTypeV3 = 'error' | 'success' | 'warning' | 'info' | 'logout' | 'otp' | null;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
declare const banks: {
|
|
2
|
+
1059: string;
|
|
3
|
+
1040: string;
|
|
4
|
+
1052: string;
|
|
5
|
+
1805: string;
|
|
6
|
+
1032: string;
|
|
7
|
+
1067: string;
|
|
8
|
+
1066: string;
|
|
9
|
+
1558: string;
|
|
10
|
+
1051: string;
|
|
11
|
+
1001: string;
|
|
12
|
+
1023: string;
|
|
13
|
+
1062: string;
|
|
14
|
+
1063: string;
|
|
15
|
+
1012: string;
|
|
16
|
+
1071: string;
|
|
17
|
+
1064: string;
|
|
18
|
+
1047: string;
|
|
19
|
+
1060: string;
|
|
20
|
+
1002: string;
|
|
21
|
+
1058: string;
|
|
22
|
+
1065: string;
|
|
23
|
+
1069: string;
|
|
24
|
+
1053: string;
|
|
25
|
+
1031: string;
|
|
26
|
+
1007: string;
|
|
27
|
+
1061: string;
|
|
28
|
+
1013: string;
|
|
29
|
+
1009: string;
|
|
30
|
+
1370: string;
|
|
31
|
+
1292: string;
|
|
32
|
+
1291: string;
|
|
33
|
+
1283: string;
|
|
34
|
+
1289: string;
|
|
35
|
+
1551: string;
|
|
36
|
+
1121: string;
|
|
37
|
+
1303: string;
|
|
38
|
+
1637: string;
|
|
39
|
+
1006: string;
|
|
40
|
+
1070: string;
|
|
41
|
+
1801: string;
|
|
42
|
+
1507: string;
|
|
43
|
+
1151: string;
|
|
44
|
+
1019: string;
|
|
45
|
+
COBRE: string;
|
|
46
|
+
};
|
|
47
|
+
export { banks };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const banks: {
|
|
2
|
+
PR_MEX_COBRE: string;
|
|
3
|
+
PR_COL_COBRE: string;
|
|
4
|
+
PR_COL_1001: string;
|
|
5
|
+
PR_COL_1007: string;
|
|
6
|
+
PR_COL_1013: string;
|
|
7
|
+
PR_COL_1023: string;
|
|
8
|
+
PR_COL_1019: string;
|
|
9
|
+
PR_MEX_1072: string;
|
|
10
|
+
PR_MEX_1012: string;
|
|
11
|
+
};
|
|
12
|
+
export { banks };
|
package/dist/vite.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cobre-npm/ds-v3",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist"
|
|
7
|
+
],
|
|
8
|
+
"main": "./dist/cobre-ds-lib.umd.js",
|
|
9
|
+
"module": "./dist/cobre-ds-lib.es.js",
|
|
10
|
+
"types": "dist/types/index.d.ts",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dev": "vite",
|
|
13
|
+
"build": "vue-tsc && vite build",
|
|
14
|
+
"build:dev": "run-p build-only",
|
|
15
|
+
"build:qa": "run-p build-only",
|
|
16
|
+
"build:prod": "run-p build-only && vue-tsc && npm publish",
|
|
17
|
+
"build:dev-arm": "run-p build-only",
|
|
18
|
+
"build:qa-arm": "run-p build-only",
|
|
19
|
+
"build:prod-arm": "run-p build-only && vue-tsc",
|
|
20
|
+
"preview": "vite preview",
|
|
21
|
+
"test:unit": "vitest --environment jsdom --root src/",
|
|
22
|
+
"build-only": "vite build",
|
|
23
|
+
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
|
24
|
+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
25
|
+
"storybook": "storybook dev -p 6006",
|
|
26
|
+
"storybook-server": "storybook dev -p 8080",
|
|
27
|
+
"build-storybook": "storybook build",
|
|
28
|
+
"test": "test-storybook",
|
|
29
|
+
"prepare": "husky install"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@vueuse/components": "^10.11.0",
|
|
33
|
+
"@vueuse/core": "^10.11.0",
|
|
34
|
+
"bootstrap": "^5.3.3",
|
|
35
|
+
"sass": "^1.77.6",
|
|
36
|
+
"vue": "^3.4.21",
|
|
37
|
+
"vue-collapsed": "^1.3.3",
|
|
38
|
+
"vue-select": "4.0.0-beta.6",
|
|
39
|
+
"vue3-otp-input": "^0.5.21"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@chromatic-com/storybook": "^1.5.0",
|
|
43
|
+
"@storybook/addon-a11y": "^8.1.11",
|
|
44
|
+
"@storybook/addon-actions": "^8.1.11",
|
|
45
|
+
"@storybook/addon-essentials": "^8.1.10",
|
|
46
|
+
"@storybook/addon-interactions": "^8.1.10",
|
|
47
|
+
"@storybook/addon-links": "^8.1.10",
|
|
48
|
+
"@storybook/blocks": "^8.1.10",
|
|
49
|
+
"@storybook/jest": "^0.2.3",
|
|
50
|
+
"@storybook/test": "^8.1.10",
|
|
51
|
+
"@storybook/test-runner": "^0.19.0",
|
|
52
|
+
"@storybook/testing-library": "^0.2.2",
|
|
53
|
+
"@storybook/vue3": "^8.1.10",
|
|
54
|
+
"@storybook/vue3-vite": "^8.1.10",
|
|
55
|
+
"@types/bootstrap": "^5.2.10",
|
|
56
|
+
"@types/vue-select": "^3.16.8",
|
|
57
|
+
"@vitejs/plugin-vue": "^5.0.4",
|
|
58
|
+
"@vue/eslint-config-prettier": "^9.0.0",
|
|
59
|
+
"@vue/eslint-config-typescript": "^13.0.0",
|
|
60
|
+
"@vue/tsconfig": "^0.5.1",
|
|
61
|
+
"eslint": "^9.6.0",
|
|
62
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
63
|
+
"eslint-plugin-vue": "^9.26.0",
|
|
64
|
+
"husky": "^9.0.11",
|
|
65
|
+
"npm-run-all": "^4.1.5",
|
|
66
|
+
"prettier": "^3.3.2",
|
|
67
|
+
"standard": "^17.1.0",
|
|
68
|
+
"storybook": "^8.1.10",
|
|
69
|
+
"typescript": "^5.2.2",
|
|
70
|
+
"vite": "^5.2.0",
|
|
71
|
+
"vite-plugin-static-copy": "^1.0.5",
|
|
72
|
+
"vue-tsc": "^2.0.6"
|
|
73
|
+
}
|
|
74
|
+
}
|