@thryveai/theme-interfaces 1.5.26 → 1.5.27

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.
@@ -327,7 +327,7 @@ export interface IDefaultThemeInterface {
327
327
  borderRadius: string;
328
328
  activeBackgroundColor: string;
329
329
  hoverBackgroundColor: string;
330
- tabletHoverBackgroundColor: string;
330
+ tabletSettings: IMiniCartTabletSettings;
331
331
  color: string;
332
332
  activeColor: string;
333
333
  mobileColor: string;
@@ -434,6 +434,16 @@ export interface IDefaultThemeInterface {
434
434
  export interface IDefaultThemeScripts {
435
435
  [key: string]: string;
436
436
  }
437
+ interface IMiniCartTabletSettings {
438
+ enabled: boolean;
439
+ iconColor: string;
440
+ textColor: string;
441
+ backgroundColor: string;
442
+ iconColorHover: string;
443
+ textColorHover: string;
444
+ backgroundColorHover: string;
445
+ showText: boolean;
446
+ }
437
447
  interface IInputFields {
438
448
  bgColor: string;
439
449
  borderColor: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "1.5.26",
3
+ "version": "1.5.27",
4
4
  "description": "Shared Interfaces for all ThryveAi storefront retailer themes.",
5
5
  "scripts": {
6
6
  "build": "tsc",
@@ -341,7 +341,7 @@ export interface IThemeInterface {
341
341
  borderRadius?: string;
342
342
  activeBackgroundColor?: string;
343
343
  hoverBackgroundColor?: string;
344
- tabletHoverBackgroundColor?: string;
344
+ tabletSettings?: IMiniCartTabletSettings;
345
345
  color?: string;
346
346
  activeColor?: string;
347
347
  mobileColor?: string;
@@ -448,6 +448,16 @@ export interface IThemeInterface {
448
448
  export interface IThemeScripts {
449
449
  [key: string]: string;
450
450
  }
451
+ interface IMiniCartTabletSettings {
452
+ enabled: boolean;
453
+ iconColor: string;
454
+ textColor: string;
455
+ backgroundColor: string;
456
+ iconColorHover: string;
457
+ textColorHover: string;
458
+ backgroundColorHover: string;
459
+ showText: boolean;
460
+ }
451
461
  interface IInputFields {
452
462
  bgColor?: string;
453
463
  borderColor?: string;