@db-ux/v-core-components 4.4.0 → 4.4.1-footer-28739e3

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,23 @@
1
+ import { DBFooterProps } from "./model";
2
+ declare var __VLS_1: {}, __VLS_3: {};
3
+ type __VLS_Slots = {} & {
4
+ main?: (props: typeof __VLS_1) => any;
5
+ } & {
6
+ meta?: (props: typeof __VLS_3) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<DBFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBFooterProps> & Readonly<{}>, {
9
+ className: string;
10
+ id: string;
11
+ width: import("../..").MaxWidthType;
12
+ showCopyright: boolean | string;
13
+ showMain: boolean | string;
14
+ showMeta: boolean | string;
15
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
17
+ declare const _default: typeof __VLS_export;
18
+ export default _default;
19
+ type __VLS_WithSlots<T, S> = T & {
20
+ new (): {
21
+ $slots: S;
22
+ };
23
+ };
@@ -0,0 +1 @@
1
+ export { default as DBFooter } from './footer.vue';
@@ -0,0 +1,26 @@
1
+ import { ContainerWidthProps, GlobalProps } from '../../shared/model';
2
+ export type DBFooterDefaultProps = {
3
+ /**
4
+ * Slot for the main footer content.
5
+ * Typically used for navigation links, footer columns, etc.
6
+ */
7
+ main?: any;
8
+ /**
9
+ * Slot for the meta footer content.
10
+ * Typically used for copyright information, legal links, etc.
11
+ */
12
+ meta?: any;
13
+ /**
14
+ * Shows or hides the copyright text "© Deutsche Bahn AG".
15
+ */
16
+ showCopyright?: boolean | string;
17
+ /**
18
+ * Shows or hides the main footer section.
19
+ */
20
+ showMain?: boolean | string;
21
+ /**
22
+ * Shows or hides the meta footer section.
23
+ */
24
+ showMeta?: boolean | string;
25
+ };
26
+ export type DBFooterProps = DBFooterDefaultProps & GlobalProps & ContainerWidthProps;