@sunrise-upc/sales-static-components 3.7.8-beta.0 → 3.7.8-beta.2
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/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/navigation.css +1343 -0
- package/package.json +12 -1
package/dist/index.d.ts
CHANGED
|
@@ -259,6 +259,7 @@ interface FalconHeaderSchema extends GenericSBProps {
|
|
|
259
259
|
interface FalconHeaderDropdown extends GenericSBProps {
|
|
260
260
|
title: string;
|
|
261
261
|
headerLinks: any;
|
|
262
|
+
icon?: Asset;
|
|
262
263
|
}
|
|
263
264
|
interface FalconHeaderLink extends GenericSBProps {
|
|
264
265
|
label: string;
|
|
@@ -270,6 +271,9 @@ interface MainNavBarSchema extends GenericSBProps {
|
|
|
270
271
|
navigationItems: NavigationItemSchema[];
|
|
271
272
|
header: FalconHeaderSchema[];
|
|
272
273
|
sunriseLogoLink: MultiLink;
|
|
274
|
+
sunriseLogo: Asset;
|
|
275
|
+
sunriseLogoMobile: Asset;
|
|
276
|
+
sunriseLogoAlt: string;
|
|
273
277
|
searchIcon?: Asset;
|
|
274
278
|
searchIconLink: MultiLink;
|
|
275
279
|
mySunriseLink: MultiLink;
|
|
@@ -286,6 +290,10 @@ interface MainNavBarSchema extends GenericSBProps {
|
|
|
286
290
|
mySunriseUserIcon?: Asset;
|
|
287
291
|
closeIcon?: Asset;
|
|
288
292
|
newStyle?: boolean;
|
|
293
|
+
tickIcon?: Asset;
|
|
294
|
+
arrowDown?: Asset;
|
|
295
|
+
arrowRight?: Asset;
|
|
296
|
+
greyArrowDown?: Asset;
|
|
289
297
|
}
|
|
290
298
|
interface FalconMainNavigation1 {
|
|
291
299
|
localeSelector?: NavigationLocale[];
|