@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.
- package/dist/JSONSchemas/index.d.ts +243 -137
- package/dist/JSONSchemas/index.js +454 -323
- package/dist/interfaces/default-theme.interface.d.ts +30 -0
- package/dist/interfaces/shared-settings.interfaces.d.ts +1 -0
- package/dist/storefront/defaultIconsStorefront.js +13 -13
- package/dist/storefront/defaultSharedSettings.js +4 -3
- 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;
|