@cobre-npm/ds-v3 0.79.9 → 0.80.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.
|
@@ -24,6 +24,7 @@ export { default as CobreCardButton } from './atoms/CobreCardButton/CobreCardBut
|
|
|
24
24
|
export { default as CobreRowActions } from './atoms/CobreRowActions/CobreRowActions.vue';
|
|
25
25
|
export { default as CobreSegmentedTabs } from './atoms/CobreSegmentedTabs/CobreSegmentedTabs.vue';
|
|
26
26
|
export { default as CobreAccountCpButton } from './molecules/CobreAccountCpButton/CobreAccountCpButton.vue';
|
|
27
|
+
export { default as CobreAccountCpLogo } from './molecules/CobreAccountCpLogo/CobreAccountCpLogo.vue';
|
|
27
28
|
export { default as CobreAccountInfoField } from './molecules/CobreAccountInfoFiled/CobreAccountInfoField.vue';
|
|
28
29
|
export { default as CobreActionList } from './molecules/CobreActionList/CobreActionList.vue';
|
|
29
30
|
export { default as CobreBadge } from './molecules/CobreBadge/CobreBadge.vue';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
logo: string;
|
|
3
|
+
}
|
|
4
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
5
|
+
logo: string;
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLElement>;
|
|
7
|
+
export default _default;
|