@frollo/frollo-web-ui 9.0.8 → 9.0.9
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/cjs/index.js +45 -34
- package/esm/fw-navigation-menu.js +43 -32
- package/frollo-web-ui.esm.js +45 -34
- package/index.d.ts +13 -0
- package/package.json +1 -1
- package/types/components/fw-navigation-menu/fw-navigation-menu.vue.d.ts +12 -0
- package/types/components/fw-navigation-menu/index.types.d.ts +1 -0
- package/web-components/index.js +47 -36
|
@@ -75,6 +75,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
75
75
|
type: BooleanConstructor;
|
|
76
76
|
default: boolean;
|
|
77
77
|
};
|
|
78
|
+
/**
|
|
79
|
+
* Whether to force the logo to be displayed (forced for mobile themes that don't need a menu)
|
|
80
|
+
*/
|
|
81
|
+
forcedLogoSrc: {
|
|
82
|
+
type: StringConstructor;
|
|
83
|
+
};
|
|
78
84
|
}>, {
|
|
79
85
|
parsedMenuItems: import("vue").ShallowRef<NavMenuItem[], NavMenuItem[]>;
|
|
80
86
|
parsedAdditionalMenuItems: import("vue").ShallowRef<NavMenuItem[], NavMenuItem[]>;
|
|
@@ -157,6 +163,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
157
163
|
type: BooleanConstructor;
|
|
158
164
|
default: boolean;
|
|
159
165
|
};
|
|
166
|
+
/**
|
|
167
|
+
* Whether to force the logo to be displayed (forced for mobile themes that don't need a menu)
|
|
168
|
+
*/
|
|
169
|
+
forcedLogoSrc: {
|
|
170
|
+
type: StringConstructor;
|
|
171
|
+
};
|
|
160
172
|
}>> & Readonly<{
|
|
161
173
|
onAction?: ((...args: any[]) => any) | undefined;
|
|
162
174
|
}>, {
|