@thryveai/theme-interfaces 2.7.181 → 2.7.183

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;
@@ -27,6 +27,7 @@ export interface IRecommendedSubstitutions {
27
27
  };
28
28
  stores: string[];
29
29
  locationId: string;
30
+ enableRecommendationsV2: boolean;
30
31
  }
31
32
  export interface ISpecialRequestItems {
32
33
  enable: boolean;