@thryveai/theme-interfaces 2.7.180 → 2.7.182
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/JSONSchemas/index.d.ts +270 -164
- package/dist/JSONSchemas/index.js +529 -398
- package/dist/interfaces/default-theme.interface.d.ts +30 -0
- package/dist/interfaces/retailer-settings.interfaces.d.ts +1 -0
- package/dist/storefront/SFUISettingsTemplate.AdminUi.js +6 -0
- package/dist/storefront/defaultIconsStorefront.js +13 -13
- package/dist/storefront/defaultSettingsStorefront.js +1 -0
- package/dist/storefront/defaultThemeStorefront.js +48 -0
- package/package.json +1 -1
|
@@ -661,6 +661,8 @@ interface INavBottom extends INavStyles {
|
|
|
661
661
|
hoverColor: string;
|
|
662
662
|
textTransform: ITextTransform;
|
|
663
663
|
fontWeight: IFontWeights;
|
|
664
|
+
subMenu: ISubMenu;
|
|
665
|
+
subMenuCategories: ISubMenuCategories;
|
|
664
666
|
}
|
|
665
667
|
interface INavStyles {
|
|
666
668
|
color: string;
|
|
@@ -673,6 +675,34 @@ interface INavStyles {
|
|
|
673
675
|
visited: ILinkType;
|
|
674
676
|
};
|
|
675
677
|
}
|
|
678
|
+
interface ISubMenuLinkType {
|
|
679
|
+
color: string;
|
|
680
|
+
textDecoration: "none" | "underline";
|
|
681
|
+
backgroundColor: string;
|
|
682
|
+
}
|
|
683
|
+
interface ISubMenu {
|
|
684
|
+
backgroundColor: string;
|
|
685
|
+
links: {
|
|
686
|
+
static: ISubMenuLinkType;
|
|
687
|
+
hover: ISubMenuLinkType;
|
|
688
|
+
clicked: ISubMenuLinkType;
|
|
689
|
+
visited: ISubMenuLinkType;
|
|
690
|
+
};
|
|
691
|
+
}
|
|
692
|
+
interface ISubMenuCategoriesLinkType {
|
|
693
|
+
color: string;
|
|
694
|
+
backgroundColor: string;
|
|
695
|
+
arrowColor: string;
|
|
696
|
+
fontWeight: IFontWeights;
|
|
697
|
+
}
|
|
698
|
+
interface ISubMenuCategories {
|
|
699
|
+
backgroundColor: string;
|
|
700
|
+
links: {
|
|
701
|
+
static: ISubMenuCategoriesLinkType;
|
|
702
|
+
hover: ISubMenuCategoriesLinkType;
|
|
703
|
+
clicked: ISubMenuCategoriesLinkType;
|
|
704
|
+
};
|
|
705
|
+
}
|
|
676
706
|
interface INavActiveColors {
|
|
677
707
|
activeColor: string;
|
|
678
708
|
activeBackgroundColor: string;
|
|
@@ -571,6 +571,12 @@ exports.AdminSettingsTemplateSFUI = {
|
|
|
571
571
|
type: exports.AdminTemplateInputTypes.checkbox,
|
|
572
572
|
helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3344302081/Hide+Alcohol+Rule",
|
|
573
573
|
},
|
|
574
|
+
cart: {
|
|
575
|
+
title: "Disable alcohol label in cart",
|
|
576
|
+
description: "This will hide the alcohol label for products in the cart review screen",
|
|
577
|
+
type: exports.AdminTemplateInputTypes.checkbox,
|
|
578
|
+
helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3344302081/Hide+Alcohol+Rule",
|
|
579
|
+
},
|
|
574
580
|
},
|
|
575
581
|
helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3344302081/Hide+Alcohol+Rule",
|
|
576
582
|
},
|