@gem-sdk/core 2.1.8 → 2.1.11
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/cjs/helpers/third-party/appConfig.js +7 -0
- package/dist/cjs/helpers/third-party/appSetting.js +195 -0
- package/dist/cjs/helpers/third-party/constant.js +2 -1
- package/dist/cjs/helpers/third-party/getAppBlockConfig.js +5 -1
- package/dist/cjs/hooks/useFormatMoney.js +1 -1
- package/dist/esm/helpers/third-party/appConfig.js +7 -1
- package/dist/esm/helpers/third-party/appSetting.js +195 -0
- package/dist/esm/helpers/third-party/constant.js +3 -2
- package/dist/esm/helpers/third-party/getAppBlockConfig.js +5 -1
- package/dist/esm/hooks/useFormatMoney.js +1 -1
- package/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -252,6 +252,12 @@ const TrustshopProductReviewsConfig = {
|
|
|
252
252
|
appId: '18b0c4cc-5411-4b6e-922d-34fdc2f30ab9'
|
|
253
253
|
}
|
|
254
254
|
};
|
|
255
|
+
const StampedConfig = {
|
|
256
|
+
Stamped: {
|
|
257
|
+
appName: 'stamped-reviews',
|
|
258
|
+
appId: 'a103faaf-2125-4b0e-89fa-de5149736723'
|
|
259
|
+
}
|
|
260
|
+
};
|
|
255
261
|
|
|
256
262
|
exports.AftershipEmailMarketingsmsConfig = AftershipEmailMarketingsmsConfig;
|
|
257
263
|
exports.AppointmentBookingCowlendarConfig = AppointmentBookingCowlendarConfig;
|
|
@@ -287,6 +293,7 @@ exports.ShopifyFormsConfig = ShopifyFormsConfig;
|
|
|
287
293
|
exports.SimpleBundlesKitsConfig = SimpleBundlesKitsConfig;
|
|
288
294
|
exports.SkioSubscriptionsYcS20Config = SkioSubscriptionsYcS20Config;
|
|
289
295
|
exports.SproutPlantTreesGrowSalesConfig = SproutPlantTreesGrowSalesConfig;
|
|
296
|
+
exports.StampedConfig = StampedConfig;
|
|
290
297
|
exports.SubifySubscriptionsConfig = SubifySubscriptionsConfig;
|
|
291
298
|
exports.TrustooConfig = TrustooConfig;
|
|
292
299
|
exports.TrustreviewsProductReviewsConfig = TrustreviewsProductReviewsConfig;
|
|
@@ -158,6 +158,45 @@ const overrideSettings = (tag, currentSetting, appSetting)=>{
|
|
|
158
158
|
badge_id: appSetting?.BadgeId
|
|
159
159
|
};
|
|
160
160
|
}
|
|
161
|
+
case 'Stamped':
|
|
162
|
+
{
|
|
163
|
+
return {
|
|
164
|
+
...currentSetting,
|
|
165
|
+
feed_type: appSetting.visualGalleryType,
|
|
166
|
+
auto_play: appSetting.autoSlide,
|
|
167
|
+
color_star: appSetting.starColor,
|
|
168
|
+
color_hover: appSetting.hoverColor,
|
|
169
|
+
color_hover_opacity: appSetting.hoverOpacity,
|
|
170
|
+
review_ids: appSetting.reviewIds,
|
|
171
|
+
product_ids: appSetting.productIds,
|
|
172
|
+
category: appSetting.productType,
|
|
173
|
+
product_brand: appSetting.productVendor,
|
|
174
|
+
tags: appSetting.tags,
|
|
175
|
+
min_rating: appSetting.minimumRating,
|
|
176
|
+
fill_empty: appSetting.fillEmpty,
|
|
177
|
+
random: appSetting.random,
|
|
178
|
+
with_photos: appSetting.withPhotos,
|
|
179
|
+
color_link: appSetting.linkColor,
|
|
180
|
+
product_image: appSetting.showProductImage,
|
|
181
|
+
take: appSetting.limitResults,
|
|
182
|
+
color_verified: appSetting.verifiedColor,
|
|
183
|
+
color_text: appSetting.textColor,
|
|
184
|
+
title: appSetting.carouselTitle,
|
|
185
|
+
color_title: appSetting.titleColor,
|
|
186
|
+
api_key: appSetting.publicKey,
|
|
187
|
+
store_hash: appSetting.storeHash,
|
|
188
|
+
label1: appSetting.labelFront,
|
|
189
|
+
label2: appSetting.labelBack,
|
|
190
|
+
width: appSetting.imageWidth,
|
|
191
|
+
height: appSetting.imageHeight,
|
|
192
|
+
product_id: appSetting.productId,
|
|
193
|
+
animation: appSetting.mainWidgetAnimation,
|
|
194
|
+
tags_exclude: appSetting.excludeTags,
|
|
195
|
+
tags_include: appSetting.includeTags,
|
|
196
|
+
search: appSetting.search,
|
|
197
|
+
linkify: appSetting.linkify
|
|
198
|
+
};
|
|
199
|
+
}
|
|
161
200
|
default:
|
|
162
201
|
return currentSetting;
|
|
163
202
|
}
|
|
@@ -807,7 +846,163 @@ const TrustshopProductReviews = {
|
|
|
807
846
|
'review-testimonial': null
|
|
808
847
|
}
|
|
809
848
|
};
|
|
849
|
+
const Stamped = {
|
|
850
|
+
Stamped: {
|
|
851
|
+
'main-widget': {
|
|
852
|
+
animation: true,
|
|
853
|
+
tags_exclude: '',
|
|
854
|
+
tags_include: '',
|
|
855
|
+
search: '',
|
|
856
|
+
linkify: true,
|
|
857
|
+
use_metafields: false,
|
|
858
|
+
sku_tagtype: 'sku'
|
|
859
|
+
},
|
|
860
|
+
'product-rating-image': {
|
|
861
|
+
api_key: '',
|
|
862
|
+
store_hash: '',
|
|
863
|
+
product_id: '',
|
|
864
|
+
width: '',
|
|
865
|
+
height: ''
|
|
866
|
+
},
|
|
867
|
+
'badge-double-image': {
|
|
868
|
+
api_key: '',
|
|
869
|
+
store_hash: '',
|
|
870
|
+
label1: '',
|
|
871
|
+
label2: '',
|
|
872
|
+
width: '',
|
|
873
|
+
height: ''
|
|
874
|
+
},
|
|
875
|
+
'badge-single-image': {
|
|
876
|
+
api_key: '',
|
|
877
|
+
store_hash: '',
|
|
878
|
+
label1: '',
|
|
879
|
+
label2: '',
|
|
880
|
+
width: '',
|
|
881
|
+
height: ''
|
|
882
|
+
},
|
|
883
|
+
carousel: {
|
|
884
|
+
title: 'Real Reviews from Real Customers',
|
|
885
|
+
auto_play: false,
|
|
886
|
+
take: 30,
|
|
887
|
+
color_title: '',
|
|
888
|
+
color_star: '',
|
|
889
|
+
color_text: '',
|
|
890
|
+
color_link: '',
|
|
891
|
+
review_ids: '',
|
|
892
|
+
product_ids: '',
|
|
893
|
+
category: '',
|
|
894
|
+
product_brand: '',
|
|
895
|
+
tags: '',
|
|
896
|
+
min_rating: 'none',
|
|
897
|
+
fill_empty: false,
|
|
898
|
+
random: false,
|
|
899
|
+
with_photos: false
|
|
900
|
+
},
|
|
901
|
+
'checkout-comments': {
|
|
902
|
+
product_ids: '',
|
|
903
|
+
style: 'box',
|
|
904
|
+
title: '',
|
|
905
|
+
timeago: false,
|
|
906
|
+
style_color_text: '',
|
|
907
|
+
style_color_link: ''
|
|
908
|
+
},
|
|
909
|
+
'full-page': {
|
|
910
|
+
product_image: true,
|
|
911
|
+
take: 30,
|
|
912
|
+
label_substitute: '',
|
|
913
|
+
color_star: '',
|
|
914
|
+
color_verified: '',
|
|
915
|
+
color_text: '',
|
|
916
|
+
color_link: '',
|
|
917
|
+
review_ids: '',
|
|
918
|
+
product_ids: '',
|
|
919
|
+
category: '',
|
|
920
|
+
product_brand: '',
|
|
921
|
+
tags: '',
|
|
922
|
+
min_rating: 'none',
|
|
923
|
+
fill_empty: false,
|
|
924
|
+
random: false,
|
|
925
|
+
with_photos: false
|
|
926
|
+
},
|
|
927
|
+
'instagram-feed': {
|
|
928
|
+
feed_type: 'carousel',
|
|
929
|
+
color_hover: '',
|
|
930
|
+
hover_text: '',
|
|
931
|
+
shop_button_text: '',
|
|
932
|
+
auto_play: false,
|
|
933
|
+
review_ids: '',
|
|
934
|
+
product_ids: '',
|
|
935
|
+
category: '',
|
|
936
|
+
product_brand: '',
|
|
937
|
+
tags: '',
|
|
938
|
+
min_rating: 'none',
|
|
939
|
+
fill_empty: false,
|
|
940
|
+
random: false,
|
|
941
|
+
with_photos: false
|
|
942
|
+
},
|
|
943
|
+
'single-highlight': {
|
|
944
|
+
review_ids: '',
|
|
945
|
+
product_ids: '',
|
|
946
|
+
category: '',
|
|
947
|
+
product_brand: '',
|
|
948
|
+
tags: ''
|
|
949
|
+
},
|
|
950
|
+
'site-badge': {
|
|
951
|
+
badge_type: 'badge',
|
|
952
|
+
color_outer: '',
|
|
953
|
+
color_inner: '',
|
|
954
|
+
color_ribbon: '',
|
|
955
|
+
color_text: '',
|
|
956
|
+
color_stars: '',
|
|
957
|
+
title_size: 12,
|
|
958
|
+
title: 'Verified Reviews'
|
|
959
|
+
},
|
|
960
|
+
'star-rating-badge': {
|
|
961
|
+
use_metafields: false,
|
|
962
|
+
sku_tagtype: 'sku',
|
|
963
|
+
is_featured_product: false,
|
|
964
|
+
featured_product_handle: ''
|
|
965
|
+
},
|
|
966
|
+
'top-rated': {
|
|
967
|
+
color_star: '',
|
|
968
|
+
color_link: ''
|
|
969
|
+
},
|
|
970
|
+
'visual-gallery': {
|
|
971
|
+
feed_type: 'feed',
|
|
972
|
+
auto_play: false,
|
|
973
|
+
color_star: '',
|
|
974
|
+
color_hover: '',
|
|
975
|
+
color_hover_opacity: 50,
|
|
976
|
+
review_ids: '',
|
|
977
|
+
product_ids: '',
|
|
978
|
+
category: '',
|
|
979
|
+
product_brand: '',
|
|
980
|
+
tags: '',
|
|
981
|
+
min_rating: 'none',
|
|
982
|
+
fill_empty: false,
|
|
983
|
+
random: false,
|
|
984
|
+
with_photos: false
|
|
985
|
+
},
|
|
986
|
+
'wall-photos': {
|
|
987
|
+
feed_type: 'feed',
|
|
988
|
+
auto_play: false,
|
|
989
|
+
color_star: '',
|
|
990
|
+
color_hover: '',
|
|
991
|
+
color_hover_opacity: 50,
|
|
992
|
+
review_ids: '',
|
|
993
|
+
product_ids: '',
|
|
994
|
+
category: '',
|
|
995
|
+
product_brand: '',
|
|
996
|
+
tags: '',
|
|
997
|
+
min_rating: 'none',
|
|
998
|
+
fill_empty: false,
|
|
999
|
+
random: false,
|
|
1000
|
+
with_photos: false
|
|
1001
|
+
}
|
|
1002
|
+
}
|
|
1003
|
+
};
|
|
810
1004
|
const composeSettingsByWidgetType = {
|
|
1005
|
+
...Stamped,
|
|
811
1006
|
...TrustshopProductReviews,
|
|
812
1007
|
...HulkProductOptions,
|
|
813
1008
|
...TrustreviewsProductReviews,
|
|
@@ -44,7 +44,8 @@ const mapShopifyAppMeta = {
|
|
|
44
44
|
...appConfig.TrustreviewsProductReviewsConfig,
|
|
45
45
|
...appConfig.MyappgurusProductReviewsConfig,
|
|
46
46
|
...appConfig.HulkProductOptionsConfig,
|
|
47
|
-
...appConfig.TrustshopProductReviewsConfig
|
|
47
|
+
...appConfig.TrustshopProductReviewsConfig,
|
|
48
|
+
...appConfig.StampedConfig
|
|
48
49
|
};
|
|
49
50
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
50
51
|
|
|
@@ -6,7 +6,8 @@ var getAppBlockType = require('./getAppBlockType.js');
|
|
|
6
6
|
const listAppUpdateNewVersion = [
|
|
7
7
|
'Growave',
|
|
8
8
|
'Trustoo',
|
|
9
|
-
'LooxReviews'
|
|
9
|
+
'LooxReviews',
|
|
10
|
+
'Stamped'
|
|
10
11
|
];
|
|
11
12
|
const listThirdPartyRejectAppBlock = {
|
|
12
13
|
YotpoReviews: {
|
|
@@ -17,6 +18,9 @@ const listThirdPartyRejectAppBlock = {
|
|
|
17
18
|
},
|
|
18
19
|
LooxReviews: {
|
|
19
20
|
conditionToReject: 'settings?.version === "v1"'
|
|
21
|
+
},
|
|
22
|
+
Stamped: {
|
|
23
|
+
conditionToReject: 'settings?.version === "v1"'
|
|
20
24
|
}
|
|
21
25
|
};
|
|
22
26
|
const getAppBlockConfig = (tag, appBlockId, settings)=>{
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var shop = require('./shop.js');
|
|
4
4
|
|
|
5
5
|
const shopifyPriceRounding = (amount, precision)=>{
|
|
6
|
-
return parseFloat(`${amount}`).toFixed(Number(precision)
|
|
6
|
+
return parseFloat(`${amount}`).toFixed(Number(precision));
|
|
7
7
|
};
|
|
8
8
|
const formatMoney = function(cents, format) {
|
|
9
9
|
let value = '';
|
|
@@ -250,5 +250,11 @@ const TrustshopProductReviewsConfig = {
|
|
|
250
250
|
appId: '18b0c4cc-5411-4b6e-922d-34fdc2f30ab9'
|
|
251
251
|
}
|
|
252
252
|
};
|
|
253
|
+
const StampedConfig = {
|
|
254
|
+
Stamped: {
|
|
255
|
+
appName: 'stamped-reviews',
|
|
256
|
+
appId: 'a103faaf-2125-4b0e-89fa-de5149736723'
|
|
257
|
+
}
|
|
258
|
+
};
|
|
253
259
|
|
|
254
|
-
export { AftershipEmailMarketingsmsConfig, AppointmentBookingCowlendarConfig, BestBuyFulfillmentConfig, BoldSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, FlyBundlesUpsellsFbtConfig, GloboProductOptionsVariantConfig, GrowaveConfig, HulkProductOptionsConfig, InstasellShoppableInstagramConfig, JunipProductReviewsUgcConfig, KachingBundlesConfig, KiteFreeGiftDiscountConfig, LoloyalLoyaltyReferralsConfig, LoopSubscriptionsConfig, LooxReviewsConfig, MyappgurusProductReviewsConfig, PowerfulContactFormBuilderConfig, PowrContactFormBuilderConfig, PreorderNowPreOrderPqConfig, PreorderNowWodPresaleConfig, ProductOptionsCustomizerConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SegunoEmailMarketingConfig, SelleasyConfig, SeoantTrustBadgesIconConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SproutPlantTreesGrowSalesConfig, SubifySubscriptionsConfig, TrustooConfig, TrustreviewsProductReviewsConfig, TrustshopProductReviewsConfig, UnlimitedBundlesDiscountsConfig, WhatmoreShoppableVideosreelConfig, WishlistKingConfig, YotpoReviewsV3UgcConfig };
|
|
260
|
+
export { AftershipEmailMarketingsmsConfig, AppointmentBookingCowlendarConfig, BestBuyFulfillmentConfig, BoldSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, FlyBundlesUpsellsFbtConfig, GloboProductOptionsVariantConfig, GrowaveConfig, HulkProductOptionsConfig, InstasellShoppableInstagramConfig, JunipProductReviewsUgcConfig, KachingBundlesConfig, KiteFreeGiftDiscountConfig, LoloyalLoyaltyReferralsConfig, LoopSubscriptionsConfig, LooxReviewsConfig, MyappgurusProductReviewsConfig, PowerfulContactFormBuilderConfig, PowrContactFormBuilderConfig, PreorderNowPreOrderPqConfig, PreorderNowWodPresaleConfig, ProductOptionsCustomizerConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SegunoEmailMarketingConfig, SelleasyConfig, SeoantTrustBadgesIconConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SproutPlantTreesGrowSalesConfig, StampedConfig, SubifySubscriptionsConfig, TrustooConfig, TrustreviewsProductReviewsConfig, TrustshopProductReviewsConfig, UnlimitedBundlesDiscountsConfig, WhatmoreShoppableVideosreelConfig, WishlistKingConfig, YotpoReviewsV3UgcConfig };
|
|
@@ -156,6 +156,45 @@ const overrideSettings = (tag, currentSetting, appSetting)=>{
|
|
|
156
156
|
badge_id: appSetting?.BadgeId
|
|
157
157
|
};
|
|
158
158
|
}
|
|
159
|
+
case 'Stamped':
|
|
160
|
+
{
|
|
161
|
+
return {
|
|
162
|
+
...currentSetting,
|
|
163
|
+
feed_type: appSetting.visualGalleryType,
|
|
164
|
+
auto_play: appSetting.autoSlide,
|
|
165
|
+
color_star: appSetting.starColor,
|
|
166
|
+
color_hover: appSetting.hoverColor,
|
|
167
|
+
color_hover_opacity: appSetting.hoverOpacity,
|
|
168
|
+
review_ids: appSetting.reviewIds,
|
|
169
|
+
product_ids: appSetting.productIds,
|
|
170
|
+
category: appSetting.productType,
|
|
171
|
+
product_brand: appSetting.productVendor,
|
|
172
|
+
tags: appSetting.tags,
|
|
173
|
+
min_rating: appSetting.minimumRating,
|
|
174
|
+
fill_empty: appSetting.fillEmpty,
|
|
175
|
+
random: appSetting.random,
|
|
176
|
+
with_photos: appSetting.withPhotos,
|
|
177
|
+
color_link: appSetting.linkColor,
|
|
178
|
+
product_image: appSetting.showProductImage,
|
|
179
|
+
take: appSetting.limitResults,
|
|
180
|
+
color_verified: appSetting.verifiedColor,
|
|
181
|
+
color_text: appSetting.textColor,
|
|
182
|
+
title: appSetting.carouselTitle,
|
|
183
|
+
color_title: appSetting.titleColor,
|
|
184
|
+
api_key: appSetting.publicKey,
|
|
185
|
+
store_hash: appSetting.storeHash,
|
|
186
|
+
label1: appSetting.labelFront,
|
|
187
|
+
label2: appSetting.labelBack,
|
|
188
|
+
width: appSetting.imageWidth,
|
|
189
|
+
height: appSetting.imageHeight,
|
|
190
|
+
product_id: appSetting.productId,
|
|
191
|
+
animation: appSetting.mainWidgetAnimation,
|
|
192
|
+
tags_exclude: appSetting.excludeTags,
|
|
193
|
+
tags_include: appSetting.includeTags,
|
|
194
|
+
search: appSetting.search,
|
|
195
|
+
linkify: appSetting.linkify
|
|
196
|
+
};
|
|
197
|
+
}
|
|
159
198
|
default:
|
|
160
199
|
return currentSetting;
|
|
161
200
|
}
|
|
@@ -805,7 +844,163 @@ const TrustshopProductReviews = {
|
|
|
805
844
|
'review-testimonial': null
|
|
806
845
|
}
|
|
807
846
|
};
|
|
847
|
+
const Stamped = {
|
|
848
|
+
Stamped: {
|
|
849
|
+
'main-widget': {
|
|
850
|
+
animation: true,
|
|
851
|
+
tags_exclude: '',
|
|
852
|
+
tags_include: '',
|
|
853
|
+
search: '',
|
|
854
|
+
linkify: true,
|
|
855
|
+
use_metafields: false,
|
|
856
|
+
sku_tagtype: 'sku'
|
|
857
|
+
},
|
|
858
|
+
'product-rating-image': {
|
|
859
|
+
api_key: '',
|
|
860
|
+
store_hash: '',
|
|
861
|
+
product_id: '',
|
|
862
|
+
width: '',
|
|
863
|
+
height: ''
|
|
864
|
+
},
|
|
865
|
+
'badge-double-image': {
|
|
866
|
+
api_key: '',
|
|
867
|
+
store_hash: '',
|
|
868
|
+
label1: '',
|
|
869
|
+
label2: '',
|
|
870
|
+
width: '',
|
|
871
|
+
height: ''
|
|
872
|
+
},
|
|
873
|
+
'badge-single-image': {
|
|
874
|
+
api_key: '',
|
|
875
|
+
store_hash: '',
|
|
876
|
+
label1: '',
|
|
877
|
+
label2: '',
|
|
878
|
+
width: '',
|
|
879
|
+
height: ''
|
|
880
|
+
},
|
|
881
|
+
carousel: {
|
|
882
|
+
title: 'Real Reviews from Real Customers',
|
|
883
|
+
auto_play: false,
|
|
884
|
+
take: 30,
|
|
885
|
+
color_title: '',
|
|
886
|
+
color_star: '',
|
|
887
|
+
color_text: '',
|
|
888
|
+
color_link: '',
|
|
889
|
+
review_ids: '',
|
|
890
|
+
product_ids: '',
|
|
891
|
+
category: '',
|
|
892
|
+
product_brand: '',
|
|
893
|
+
tags: '',
|
|
894
|
+
min_rating: 'none',
|
|
895
|
+
fill_empty: false,
|
|
896
|
+
random: false,
|
|
897
|
+
with_photos: false
|
|
898
|
+
},
|
|
899
|
+
'checkout-comments': {
|
|
900
|
+
product_ids: '',
|
|
901
|
+
style: 'box',
|
|
902
|
+
title: '',
|
|
903
|
+
timeago: false,
|
|
904
|
+
style_color_text: '',
|
|
905
|
+
style_color_link: ''
|
|
906
|
+
},
|
|
907
|
+
'full-page': {
|
|
908
|
+
product_image: true,
|
|
909
|
+
take: 30,
|
|
910
|
+
label_substitute: '',
|
|
911
|
+
color_star: '',
|
|
912
|
+
color_verified: '',
|
|
913
|
+
color_text: '',
|
|
914
|
+
color_link: '',
|
|
915
|
+
review_ids: '',
|
|
916
|
+
product_ids: '',
|
|
917
|
+
category: '',
|
|
918
|
+
product_brand: '',
|
|
919
|
+
tags: '',
|
|
920
|
+
min_rating: 'none',
|
|
921
|
+
fill_empty: false,
|
|
922
|
+
random: false,
|
|
923
|
+
with_photos: false
|
|
924
|
+
},
|
|
925
|
+
'instagram-feed': {
|
|
926
|
+
feed_type: 'carousel',
|
|
927
|
+
color_hover: '',
|
|
928
|
+
hover_text: '',
|
|
929
|
+
shop_button_text: '',
|
|
930
|
+
auto_play: false,
|
|
931
|
+
review_ids: '',
|
|
932
|
+
product_ids: '',
|
|
933
|
+
category: '',
|
|
934
|
+
product_brand: '',
|
|
935
|
+
tags: '',
|
|
936
|
+
min_rating: 'none',
|
|
937
|
+
fill_empty: false,
|
|
938
|
+
random: false,
|
|
939
|
+
with_photos: false
|
|
940
|
+
},
|
|
941
|
+
'single-highlight': {
|
|
942
|
+
review_ids: '',
|
|
943
|
+
product_ids: '',
|
|
944
|
+
category: '',
|
|
945
|
+
product_brand: '',
|
|
946
|
+
tags: ''
|
|
947
|
+
},
|
|
948
|
+
'site-badge': {
|
|
949
|
+
badge_type: 'badge',
|
|
950
|
+
color_outer: '',
|
|
951
|
+
color_inner: '',
|
|
952
|
+
color_ribbon: '',
|
|
953
|
+
color_text: '',
|
|
954
|
+
color_stars: '',
|
|
955
|
+
title_size: 12,
|
|
956
|
+
title: 'Verified Reviews'
|
|
957
|
+
},
|
|
958
|
+
'star-rating-badge': {
|
|
959
|
+
use_metafields: false,
|
|
960
|
+
sku_tagtype: 'sku',
|
|
961
|
+
is_featured_product: false,
|
|
962
|
+
featured_product_handle: ''
|
|
963
|
+
},
|
|
964
|
+
'top-rated': {
|
|
965
|
+
color_star: '',
|
|
966
|
+
color_link: ''
|
|
967
|
+
},
|
|
968
|
+
'visual-gallery': {
|
|
969
|
+
feed_type: 'feed',
|
|
970
|
+
auto_play: false,
|
|
971
|
+
color_star: '',
|
|
972
|
+
color_hover: '',
|
|
973
|
+
color_hover_opacity: 50,
|
|
974
|
+
review_ids: '',
|
|
975
|
+
product_ids: '',
|
|
976
|
+
category: '',
|
|
977
|
+
product_brand: '',
|
|
978
|
+
tags: '',
|
|
979
|
+
min_rating: 'none',
|
|
980
|
+
fill_empty: false,
|
|
981
|
+
random: false,
|
|
982
|
+
with_photos: false
|
|
983
|
+
},
|
|
984
|
+
'wall-photos': {
|
|
985
|
+
feed_type: 'feed',
|
|
986
|
+
auto_play: false,
|
|
987
|
+
color_star: '',
|
|
988
|
+
color_hover: '',
|
|
989
|
+
color_hover_opacity: 50,
|
|
990
|
+
review_ids: '',
|
|
991
|
+
product_ids: '',
|
|
992
|
+
category: '',
|
|
993
|
+
product_brand: '',
|
|
994
|
+
tags: '',
|
|
995
|
+
min_rating: 'none',
|
|
996
|
+
fill_empty: false,
|
|
997
|
+
random: false,
|
|
998
|
+
with_photos: false
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
};
|
|
808
1002
|
const composeSettingsByWidgetType = {
|
|
1003
|
+
...Stamped,
|
|
809
1004
|
...TrustshopProductReviews,
|
|
810
1005
|
...HulkProductOptions,
|
|
811
1006
|
...TrustreviewsProductReviews,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig, ReviewxpoProductReviewsAppConfig, PumperBundlesVolumeDiscountConfig, UnlimitedBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, FastBundleBundlesDiscountsConfig, SimpleBundlesKitsConfig, EasyBundleBuilderSkailamaConfig, PreorderNowPreOrderPqConfig, FlyBundlesUpsellsFbtConfig, JunipProductReviewsUgcConfig, PreorderNowWodPresaleConfig, YotpoReviewsV3UgcConfig, WhatmoreShoppableVideosreelConfig, ProductOptionsCustomizerConfig, AppointmentBookingCowlendarConfig, BoldSubscriptionsConfig, SproutPlantTreesGrowSalesConfig, InstasellShoppableInstagramConfig, GrowaveConfig, LoloyalLoyaltyReferralsConfig, PowerfulContactFormBuilderConfig, WishlistKingConfig, GloboProductOptionsVariantConfig, KachingBundlesConfig, TrustooConfig, LooxReviewsConfig, PowrContactFormBuilderConfig, BestBuyFulfillmentConfig, AftershipEmailMarketingsmsConfig, SegunoEmailMarketingConfig, SeoantTrustBadgesIconConfig, TrustreviewsProductReviewsConfig, MyappgurusProductReviewsConfig, HulkProductOptionsConfig, TrustshopProductReviewsConfig } from './appConfig.js';
|
|
1
|
+
import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig, ReviewxpoProductReviewsAppConfig, PumperBundlesVolumeDiscountConfig, UnlimitedBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, FastBundleBundlesDiscountsConfig, SimpleBundlesKitsConfig, EasyBundleBuilderSkailamaConfig, PreorderNowPreOrderPqConfig, FlyBundlesUpsellsFbtConfig, JunipProductReviewsUgcConfig, PreorderNowWodPresaleConfig, YotpoReviewsV3UgcConfig, WhatmoreShoppableVideosreelConfig, ProductOptionsCustomizerConfig, AppointmentBookingCowlendarConfig, BoldSubscriptionsConfig, SproutPlantTreesGrowSalesConfig, InstasellShoppableInstagramConfig, GrowaveConfig, LoloyalLoyaltyReferralsConfig, PowerfulContactFormBuilderConfig, WishlistKingConfig, GloboProductOptionsVariantConfig, KachingBundlesConfig, TrustooConfig, LooxReviewsConfig, PowrContactFormBuilderConfig, BestBuyFulfillmentConfig, AftershipEmailMarketingsmsConfig, SegunoEmailMarketingConfig, SeoantTrustBadgesIconConfig, TrustreviewsProductReviewsConfig, MyappgurusProductReviewsConfig, HulkProductOptionsConfig, TrustshopProductReviewsConfig, StampedConfig } from './appConfig.js';
|
|
2
2
|
|
|
3
3
|
const mapShopifyAppMeta = {
|
|
4
4
|
...RechargeSubscriptionsConfig,
|
|
@@ -42,7 +42,8 @@ const mapShopifyAppMeta = {
|
|
|
42
42
|
...TrustreviewsProductReviewsConfig,
|
|
43
43
|
...MyappgurusProductReviewsConfig,
|
|
44
44
|
...HulkProductOptionsConfig,
|
|
45
|
-
...TrustshopProductReviewsConfig
|
|
45
|
+
...TrustshopProductReviewsConfig,
|
|
46
|
+
...StampedConfig
|
|
46
47
|
};
|
|
47
48
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
48
49
|
|
|
@@ -4,7 +4,8 @@ import { getAppBlockType } from './getAppBlockType.js';
|
|
|
4
4
|
const listAppUpdateNewVersion = [
|
|
5
5
|
'Growave',
|
|
6
6
|
'Trustoo',
|
|
7
|
-
'LooxReviews'
|
|
7
|
+
'LooxReviews',
|
|
8
|
+
'Stamped'
|
|
8
9
|
];
|
|
9
10
|
const listThirdPartyRejectAppBlock = {
|
|
10
11
|
YotpoReviews: {
|
|
@@ -15,6 +16,9 @@ const listThirdPartyRejectAppBlock = {
|
|
|
15
16
|
},
|
|
16
17
|
LooxReviews: {
|
|
17
18
|
conditionToReject: 'settings?.version === "v1"'
|
|
19
|
+
},
|
|
20
|
+
Stamped: {
|
|
21
|
+
conditionToReject: 'settings?.version === "v1"'
|
|
18
22
|
}
|
|
19
23
|
};
|
|
20
24
|
const getAppBlockConfig = (tag, appBlockId, settings)=>{
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { useMoneyFormat } from './shop.js';
|
|
2
2
|
|
|
3
3
|
const shopifyPriceRounding = (amount, precision)=>{
|
|
4
|
-
return parseFloat(`${amount}`).toFixed(Number(precision)
|
|
4
|
+
return parseFloat(`${amount}`).toFixed(Number(precision));
|
|
5
5
|
};
|
|
6
6
|
const formatMoney = function(cents, format) {
|
|
7
7
|
let value = '';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -7264,6 +7264,7 @@ type InstantJudgeMeReviewsWidgetType = 'single_product_preview_badge' | 'review_
|
|
|
7264
7264
|
type InstantLooxReviewsWidgetType = 'product_reviews_widget' | 'reviews_widget_all_stores' | 'product_star_ratings_widget' | 'carousel_widget';
|
|
7265
7265
|
type InstantKlaviyoWidgetType = 'popup_widget' | 'flyout_widget' | 'embed_widget' | 'full_page_widget';
|
|
7266
7266
|
type StampedWidgetType = 'main-widget' | 'carousel' | 'full-page' | 'visual-gallery' | 'wall-photos' | 'site-badge' | 'instagram-feed' | 'checkout-reviews' | 'single-highlight' | 'top-rated' | 'badge-single' | 'badge-double' | 'badge-ribbon' | 'product-rating';
|
|
7267
|
+
type StampedWidgetTypeV2 = 'main-widget' | 'product-rating-image' | 'badge-double-image' | 'badge-ribbon-image' | 'badge-single-image' | 'carousel' | 'checkout-comments' | 'full-page' | 'instagram-feed' | 'single-highlight' | 'site-badge' | 'star-rating-badge' | 'top-rated' | 'visual-gallery' | 'wall-photos';
|
|
7267
7268
|
type LaiProductReviewsWidgetType = 'reviews_widget' | 'star_ratings' | 'homepage_reviews' | 'happy_customer_reviews' | 'star_ratings_in_list' | 'advanced_widget';
|
|
7268
7269
|
type LaiProductReviewsAdvancedWidgetType = 'cardCarousel' | 'testimonialCarousel' | 'mediaGallery' | 'cardGrid';
|
|
7269
7270
|
type YotpoReviewsWidgetType = 'reviews' | 'star-rating' | 'reviewHighlights';
|
|
@@ -40420,4 +40421,4 @@ declare const useInteraction: () => {
|
|
|
40420
40421
|
interactionListenerLoaded: (callback: () => void) => void;
|
|
40421
40422
|
};
|
|
40422
40423
|
|
|
40423
|
-
export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, LooxReviewsWidgetTypeV2, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, ShopShopifyDocument, ShopShopifyQueryResponse, ShopShopifyQueryVariables, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TrustooWidgetTypeV2, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStyleShadow, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|
|
40424
|
+
export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, LooxReviewsWidgetTypeV2, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, ShopShopifyDocument, ShopShopifyQueryResponse, ShopShopifyQueryVariables, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StampedWidgetTypeV2, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TrustooWidgetTypeV2, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStyleShadow, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|