@gem-sdk/core 1.15.8 → 1.15.9
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/types/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -141,6 +141,7 @@ type KlaviyoWidgetType = 'popup_widget' | 'flyout_widget' | 'embed_widget' | 'fu
|
|
|
141
141
|
type ObjectLayoutValue = {
|
|
142
142
|
display?: 'fill' | 'fit';
|
|
143
143
|
cols?: number[];
|
|
144
|
+
keepCol?: boolean;
|
|
144
145
|
};
|
|
145
146
|
type ProductReviewsWidgetType = 'reviews' | 'badge';
|
|
146
147
|
type WiserWidgetType = 'related' | 'recommended' | 'alsobought' | 'recentview' | 'newarrivals' | 'featured' | 'topselling' | 'trending' | 'recent_related';
|
|
@@ -791,6 +792,7 @@ type SwatchesLinkControlType<T> = SharedControlType<T> & {
|
|
|
791
792
|
type LayoutControlType<T> = SharedControlType<T> & {
|
|
792
793
|
type: 'layout';
|
|
793
794
|
maxCol?: number;
|
|
795
|
+
isProductLayout?: boolean;
|
|
794
796
|
};
|
|
795
797
|
|
|
796
798
|
type CollectionBannerControlType<T> = SharedControlType<T> & {
|