@selfeesas/shared-components 0.6.0 → 0.6.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/dist/assets/shared-components.css +1 -1
- package/dist/shared-components.cjs.js +3 -3
- package/dist/shared-components.cjs.js.map +1 -1
- package/dist/shared-components.d.ts +4 -0
- package/dist/shared-components.es.js +416 -414
- package/dist/shared-components.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -73,6 +73,7 @@ declare const __VLS_component_5: DefineComponent<ExtractPropTypes<__VLS_WithDefa
|
|
|
73
73
|
centerActions: boolean;
|
|
74
74
|
subtitle: string;
|
|
75
75
|
title: string;
|
|
76
|
+
contentGap: boolean;
|
|
76
77
|
}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToOption_18<SelfeeCardProps>, {
|
|
77
78
|
showHeader: boolean;
|
|
78
79
|
colorScheme: string;
|
|
@@ -87,6 +88,7 @@ declare const __VLS_component_5: DefineComponent<ExtractPropTypes<__VLS_WithDefa
|
|
|
87
88
|
centerActions: boolean;
|
|
88
89
|
subtitle: string;
|
|
89
90
|
title: string;
|
|
91
|
+
contentGap: boolean;
|
|
90
92
|
}>>> & Readonly<{}>, {
|
|
91
93
|
flat: boolean;
|
|
92
94
|
dense: boolean;
|
|
@@ -101,6 +103,7 @@ declare const __VLS_component_5: DefineComponent<ExtractPropTypes<__VLS_WithDefa
|
|
|
101
103
|
bordered: boolean;
|
|
102
104
|
centerTitle: boolean;
|
|
103
105
|
centerActions: boolean;
|
|
106
|
+
contentGap: boolean | string;
|
|
104
107
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
105
108
|
|
|
106
109
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1196,6 +1199,7 @@ declare interface SelfeeCardProps {
|
|
|
1196
1199
|
flat?: boolean;
|
|
1197
1200
|
centerTitle?: boolean;
|
|
1198
1201
|
centerActions?: boolean;
|
|
1202
|
+
contentGap?: boolean | string;
|
|
1199
1203
|
}
|
|
1200
1204
|
|
|
1201
1205
|
export declare const SelfeeFooter: DefineComponent<ExtractPropTypes<__VLS_TypePropsToOption_6<SelfeeFooterProps>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption_6<SelfeeFooterProps>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|