@thryveai/theme-interfaces 1.4.8-beta6 → 1.4.8-beta7

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.
@@ -913,6 +913,56 @@ export declare const AdminThemeTemplate: {
913
913
  locationInTheme: string;
914
914
  type: import("./admin-settings-interfaces").IAdminControlType;
915
915
  };
916
+ links: {
917
+ title: string;
918
+ type: import("./admin-settings-interfaces").IAdminControlType;
919
+ value: {
920
+ static: {
921
+ title: string;
922
+ type: import("./admin-settings-interfaces").IAdminControlType;
923
+ value: {
924
+ color: {
925
+ title: string;
926
+ locationInTheme: string;
927
+ type: import("./admin-settings-interfaces").IAdminControlType;
928
+ };
929
+ };
930
+ };
931
+ hover: {
932
+ title: string;
933
+ type: import("./admin-settings-interfaces").IAdminControlType;
934
+ value: {
935
+ color: {
936
+ title: string;
937
+ locationInTheme: string;
938
+ type: import("./admin-settings-interfaces").IAdminControlType;
939
+ };
940
+ };
941
+ };
942
+ clicked: {
943
+ title: string;
944
+ type: import("./admin-settings-interfaces").IAdminControlType;
945
+ value: {
946
+ color: {
947
+ title: string;
948
+ locationInTheme: string;
949
+ type: import("./admin-settings-interfaces").IAdminControlType;
950
+ };
951
+ };
952
+ };
953
+ visited: {
954
+ title: string;
955
+ type: import("./admin-settings-interfaces").IAdminControlType;
956
+ value: {
957
+ color: {
958
+ title: string;
959
+ locationInTheme: string;
960
+ type: import("./admin-settings-interfaces").IAdminControlType;
961
+ };
962
+ };
963
+ };
964
+ };
965
+ };
916
966
  };
917
967
  };
918
968
  mainMenu: {
@@ -187,6 +187,40 @@ exports.AdminThemeTemplate = {
187
187
  value: {
188
188
  color: colorGenerator("color", "data.header.topMenu"),
189
189
  backgroundColor: colorGenerator("backgroundColor", "data.header.topMenu"),
190
+ links: {
191
+ title: "Top Menu Links",
192
+ type: exports.AdminTemplateInputTypes.collapsableObject,
193
+ value: {
194
+ static: {
195
+ title: "Links Static State",
196
+ type: exports.AdminTemplateInputTypes.collapsableObject,
197
+ value: {
198
+ color: colorGenerator("color", "data.header.topMenu.links.static"),
199
+ },
200
+ },
201
+ hover: {
202
+ title: "Links Hover State",
203
+ type: exports.AdminTemplateInputTypes.collapsableObject,
204
+ value: {
205
+ color: colorGenerator("color", "data.header.topMenu.links.hover"),
206
+ },
207
+ },
208
+ clicked: {
209
+ title: "Links Clicked State",
210
+ type: exports.AdminTemplateInputTypes.collapsableObject,
211
+ value: {
212
+ color: colorGenerator("color", "data.header.topMenu.links.clicked"),
213
+ },
214
+ },
215
+ visited: {
216
+ title: "Links Visited State",
217
+ type: exports.AdminTemplateInputTypes.collapsableObject,
218
+ value: {
219
+ color: colorGenerator("color", "data.header.topMenu.links.visited"),
220
+ },
221
+ },
222
+ },
223
+ },
190
224
  },
191
225
  },
192
226
  mainMenu: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "1.4.8-beta6",
3
+ "version": "1.4.8-beta7",
4
4
  "description": "Shared Interfaces for all ThryveAi storefront retailer themes.",
5
5
  "scripts": {
6
6
  "build": "tsc",