@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.
@@ -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;
@@ -668,6 +668,7 @@ export interface IShoppingRuleControl {
668
668
  modal: boolean;
669
669
  pdp: boolean;
670
670
  productCard: boolean;
671
+ cart: boolean;
671
672
  }
672
673
  export interface IAddressIntegration {
673
674
  enabled: boolean;
@@ -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
  },