@club-employes/utopia 4.422.0 → 4.424.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.
|
@@ -36,6 +36,7 @@ declare const __VLS_component: DefineComponent<AppShellProps, {}, {}, {}, {}, Co
|
|
|
36
36
|
tone: ShellTone;
|
|
37
37
|
menuItems: ShellMenuEntry[];
|
|
38
38
|
headerHeight: number;
|
|
39
|
+
footerVariant: "bar" | "content";
|
|
39
40
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
40
41
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
41
42
|
export default _default;
|
|
@@ -39,6 +39,14 @@ export interface AppShellProps {
|
|
|
39
39
|
headerMaxWidth?: string;
|
|
40
40
|
/** Autorise le repli de la sidebar en rail 72px (persisté via useTheme). */
|
|
41
41
|
collapsible?: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Variante du slot footer. 'bar' (défaut) : barre fixe de 64px alignée sur
|
|
44
|
+
* l'encart user de la sidebar (version + liens légaux). 'content' : conteneur
|
|
45
|
+
* libre — hauteur auto, aucun fond/bordure imposé — pour un footer riche
|
|
46
|
+
* stylé par l'app (ex. ce-carte-ui) ; il reste un landmark hors du <main>,
|
|
47
|
+
* ancré en bas du viewport sur les pages courtes par le flex de la colonne.
|
|
48
|
+
*/
|
|
49
|
+
footerVariant?: 'bar' | 'content';
|
|
42
50
|
}
|
|
43
51
|
export interface ShellHeaderProps {
|
|
44
52
|
/** Tone appliqué en standalone (hors AppShell, ex. parité ce_front). */
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MfePageProps,
|
|
1
|
+
import { MfePageProps, FooterVariant, ShyHeaderMode } from './types';
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
attrs: Partial<{}>;
|
|
@@ -17,8 +17,8 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
|
17
17
|
declare const __VLS_component: DefineComponent<MfePageProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<MfePageProps> & Readonly<{}>, {
|
|
18
18
|
padding: "none" | "small" | "medium" | "large";
|
|
19
19
|
intro: string;
|
|
20
|
-
shyHeader: ShyHeaderMode;
|
|
21
20
|
footerVariant: FooterVariant;
|
|
21
|
+
shyHeader: ShyHeaderMode;
|
|
22
22
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
23
23
|
footerSentinel: HTMLDivElement;
|
|
24
24
|
}, HTMLDivElement>;
|