@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.
@@ -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
  }>, {
@@ -18,4 +18,5 @@ export declare interface FwNavigationMenuProps {
18
18
  logoSrc?: string;
19
19
  mobileLogoSrc?: string;
20
20
  reversedDesktopNavButton?: boolean;
21
+ forcedLogoSrc?: string;
21
22
  }