@thryveai/theme-interfaces 1.5.2 → 1.5.3

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.
@@ -199,6 +199,13 @@ export interface IDefaultThemeInterface {
199
199
  activeColor: string;
200
200
  backIconColor: string;
201
201
  };
202
+ breadcrumbTitle: {
203
+ textTransform: ITextTransform;
204
+ backgroundColor: string;
205
+ color: string;
206
+ activeColor: string;
207
+ backIconColor: string;
208
+ };
202
209
  payment: {
203
210
  selectedCardBackground: string;
204
211
  selectedCardColor: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Shared Interfaces for all ThryveAi storefront retailer themes.",
5
5
  "scripts": {
6
6
  "build": "tsc",
@@ -199,6 +199,13 @@ export interface IThemeInterface {
199
199
  activeColor?: string;
200
200
  backIconColor?: string;
201
201
  };
202
+ breadcrumbTitle?: {
203
+ textTransform?: ITextTransform;
204
+ backgroundColor?: string;
205
+ color?: string;
206
+ activeColor?: string;
207
+ backIconColor?: string;
208
+ };
202
209
  payment?: {
203
210
  selectedCardBackground?: string;
204
211
  selectedCardColor?: string;