@club-employes/utopia 4.284.0 → 4.285.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.
|
@@ -12,6 +12,8 @@ interface Props {
|
|
|
12
12
|
active?: boolean;
|
|
13
13
|
/** État collapsed du menu parent */
|
|
14
14
|
collapsed?: boolean;
|
|
15
|
+
/** Désactive le tooltip en mode collapsed (utile quand un flyout parent le remplace) */
|
|
16
|
+
hideTooltip?: boolean;
|
|
15
17
|
}
|
|
16
18
|
declare function __VLS_template(): {
|
|
17
19
|
attrs: Partial<{}>;
|
|
@@ -30,6 +32,7 @@ declare const __VLS_component: DefineComponent<Props, {}, {}, {}, {}, ComponentO
|
|
|
30
32
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
31
33
|
}>, {
|
|
32
34
|
active: boolean;
|
|
35
|
+
hideTooltip: boolean;
|
|
33
36
|
collapsed: boolean;
|
|
34
37
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
35
38
|
navItemRef: unknown;
|
|
@@ -25,5 +25,8 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
|
25
25
|
children: ChildItem[];
|
|
26
26
|
collapsed: boolean;
|
|
27
27
|
defaultExpanded: boolean;
|
|
28
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
28
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
29
|
+
groupRef: HTMLDivElement;
|
|
30
|
+
flyoutRef: HTMLDivElement;
|
|
31
|
+
}, HTMLDivElement>;
|
|
29
32
|
export default _default;
|