@thryveai/theme-interfaces 2.5.6 → 2.5.8
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.
|
@@ -330,7 +330,7 @@ export interface IDefaultThemeInterface {
|
|
|
330
330
|
clipped: ICouponClippedBtnColorType;
|
|
331
331
|
};
|
|
332
332
|
miniCart: {
|
|
333
|
-
minicartContentPadding:
|
|
333
|
+
minicartContentPadding: IMiniCartPadding;
|
|
334
334
|
textTransform: ITextTransform;
|
|
335
335
|
backgroundColor: string;
|
|
336
336
|
borderRadius: string;
|
|
@@ -461,6 +461,12 @@ export interface IDefaultThemeInterface {
|
|
|
461
461
|
export interface IDefaultThemeScripts {
|
|
462
462
|
[key: string]: string;
|
|
463
463
|
}
|
|
464
|
+
interface IMiniCartPadding {
|
|
465
|
+
top: string;
|
|
466
|
+
bottom: string;
|
|
467
|
+
left: string;
|
|
468
|
+
right: string;
|
|
469
|
+
}
|
|
464
470
|
interface IMiniCartTabletSettings {
|
|
465
471
|
enabled: boolean;
|
|
466
472
|
iconColor: string;
|