@thryveai/theme-interfaces 2.8.63 → 2.8.64
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 +36 -33
- package/dist/JSONSchemas/index.js +91 -88
- package/dist/interfaces/retailer-settings.interfaces.d.ts +2 -0
- package/dist/storefront/commonSettingsStorefront.js +1 -0
- package/dist/storefront/defaultIconsStorefront.js +1 -1
- package/dist/storefront/defaultSettingsStorefront.js +1 -0
- package/package.json +1 -1
|
@@ -63,6 +63,7 @@ export interface IRetailerSettings {
|
|
|
63
63
|
layout?: ILayoutSettings;
|
|
64
64
|
layouts?: IGlobalLayouts;
|
|
65
65
|
limitProductCardTitleHeight?: boolean;
|
|
66
|
+
imageRendering?: string;
|
|
66
67
|
loggingLevelClient?: ILoggingLevel;
|
|
67
68
|
loggingLevelServer?: ILoggingLevel;
|
|
68
69
|
mainHeaderHeight?: number;
|
|
@@ -453,6 +454,7 @@ export interface IPdpSettingsV2 {
|
|
|
453
454
|
}
|
|
454
455
|
export interface IProductCardSettingsV2 {
|
|
455
456
|
limitProductCardTitleHeight: boolean;
|
|
457
|
+
imageRendering: string;
|
|
456
458
|
productCardTitleHeight: number;
|
|
457
459
|
productCards: IProductCardsProps;
|
|
458
460
|
}
|