@gem-sdk/core 1.14.0-dev.289 → 1.14.0-dev.300
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 +7 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -116,7 +116,7 @@ type StateType = 'normal' | 'hover' | 'focus' | 'active';
|
|
|
116
116
|
type StateProp<T> = Partial<Record<StateType, T>>;
|
|
117
117
|
type ResponsiveStateProp<T> = ObjectDevices<StateProp<T>>;
|
|
118
118
|
type AlignItemProp = 'left' | 'center' | 'right';
|
|
119
|
-
type JudgeMeReviewsWidgetType = 'single_product_preview_badge' | 'review_widget' | 'reviews_carousel' | '
|
|
119
|
+
type JudgeMeReviewsWidgetType = 'single_product_preview_badge' | 'review_widget' | 'reviews_carousel' | 'reviews_text' | 'section_for_medals' | 'ugc_media_grid' | 'verified_reviews_count_badge';
|
|
120
120
|
type LooxReviewsWidgetType = 'reviews_widget' | 'rating_widget' | 'carousel_widget';
|
|
121
121
|
type RyviuWidgetType = 'reviews' | 'badge' | 'badgeCollection' | 'carousel' | 'masonry';
|
|
122
122
|
type RivyoWidgetType = 'reviews' | 'badge' | 'testimonials' | 'allReviewsPage';
|
|
@@ -899,10 +899,16 @@ type GridArrange<T> = SharedControlType<T> & {
|
|
|
899
899
|
|
|
900
900
|
type SettingID = 'shape' | 'width' | 'height' | 'gap' | 'padding';
|
|
901
901
|
type OptionKeyword = 'default' | 'auto' | 'full' | 'equal' | 'small' | 'medium' | 'large';
|
|
902
|
+
type PaddingOptions = 'small' | 'medium' | 'large' | 'custom';
|
|
903
|
+
type PaddingConfig = Partial<Record<PaddingOptions, {
|
|
904
|
+
vertical: string;
|
|
905
|
+
horizontal: string;
|
|
906
|
+
}>>;
|
|
902
907
|
type SettingConfig = {
|
|
903
908
|
sizeConfig?: Partial<Record<'small' | 'medium' | 'large', string>>;
|
|
904
909
|
hiddenOptions?: OptionKeyword[];
|
|
905
910
|
hiddenAllOptions?: boolean;
|
|
911
|
+
paddingConfig?: PaddingConfig;
|
|
906
912
|
};
|
|
907
913
|
type SizeSetting$1<T> = SharedControlType<T> & {
|
|
908
914
|
type: 'size-setting';
|