@cobre-npm/ds-v3 0.57.1 → 0.58.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.
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
iconClass: string;
|
|
3
|
+
title: string;
|
|
4
|
+
description: string;
|
|
5
|
+
isSelected?: boolean;
|
|
6
|
+
isDisabled?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
9
|
+
isDisabled: boolean;
|
|
10
|
+
isSelected: boolean;
|
|
11
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
12
|
+
isDisabled: boolean;
|
|
13
|
+
isSelected: boolean;
|
|
14
|
+
}>>>, {
|
|
15
|
+
isDisabled: boolean;
|
|
16
|
+
isSelected: boolean;
|
|
17
|
+
}, {}>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithDefaults<P, D> = {
|
|
20
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
21
|
+
default: D[K];
|
|
22
|
+
}> : P[K];
|
|
23
|
+
};
|
|
24
|
+
type __VLS_Prettify<T> = {
|
|
25
|
+
[K in keyof T]: T[K];
|
|
26
|
+
} & {};
|
|
27
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
28
|
+
type __VLS_TypePropsToOption<T> = {
|
|
29
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
30
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
31
|
+
} : {
|
|
32
|
+
type: import('vue').PropType<T[K]>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -19,6 +19,7 @@ export { default as CobreTruncateTooltipText } from './atoms/CobreTruncateToolti
|
|
|
19
19
|
export { default as CobreUploader } from './atoms/CobreUploader/CobreUploader.vue';
|
|
20
20
|
export { default as CobreAlert } from './atoms/CobreAlert/CobreAlert.vue';
|
|
21
21
|
export { default as CobreSwitch } from './atoms/CobreSwitch/CobreSwitch.vue';
|
|
22
|
+
export { default as CobreCardButton } from './atoms/CobreCardButton/CobreCardButton.vue';
|
|
22
23
|
export { default as CobreAccountCpButton } from './molecules/CobreAccountCpButton/CobreAccountCpButton.vue';
|
|
23
24
|
export { default as CobreAccountInfoField } from './molecules/CobreAccountInfoFiled/CobreAccountInfoField.vue';
|
|
24
25
|
export { default as CobreActionList } from './molecules/CobreActionList/CobreActionList.vue';
|