@gem-sdk/core 1.58.0-dev.101 → 1.58.0-dev.109
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/graphql/fragments/published-theme-page.generated.js +4 -0
- package/dist/cjs/helpers/compose-advance-style.js +5 -2
- package/dist/cjs/helpers/third-party/appConfig.js +14 -0
- package/dist/cjs/helpers/third-party/appSetting.js +160 -1
- package/dist/cjs/helpers/third-party/constant.js +3 -1
- package/dist/cjs/helpers/third-party/getAppBlockConfig.js +5 -1
- package/dist/esm/graphql/fragments/published-theme-page.generated.js +4 -0
- package/dist/esm/helpers/compose-advance-style.js +5 -2
- package/dist/esm/helpers/third-party/appConfig.js +13 -1
- package/dist/esm/helpers/third-party/appSetting.js +160 -1
- package/dist/esm/helpers/third-party/constant.js +4 -2
- package/dist/esm/helpers/third-party/getAppBlockConfig.js +5 -1
- package/dist/types/index.d.ts +143 -136
- package/package.json +1 -1
|
@@ -130,14 +130,17 @@ function composeAdvanceStyle(data, tag, pageType) {
|
|
|
130
130
|
'ProductPrice',
|
|
131
131
|
'ProductVendor',
|
|
132
132
|
'Product',
|
|
133
|
-
'ProductSku'
|
|
133
|
+
'ProductSku',
|
|
134
|
+
'StockCounter'
|
|
134
135
|
];
|
|
135
136
|
const boostElements = [
|
|
136
137
|
'Icon',
|
|
137
138
|
'IconListHoz',
|
|
138
139
|
'Line',
|
|
139
140
|
'IconList',
|
|
140
|
-
'IconListV2'
|
|
141
|
+
'IconListV2',
|
|
142
|
+
'Tabs',
|
|
143
|
+
'Accordion'
|
|
141
144
|
];
|
|
142
145
|
const listElementShadowV2 = [
|
|
143
146
|
...baseElements,
|
|
@@ -210,6 +210,18 @@ const TrustooConfig = {
|
|
|
210
210
|
appId: 'c8f15077-6475-4e86-ad06-b66038d5ba2c'
|
|
211
211
|
}
|
|
212
212
|
};
|
|
213
|
+
const LooxReviewsConfig = {
|
|
214
|
+
LooxReviews: {
|
|
215
|
+
appName: 'loox-reviews',
|
|
216
|
+
appId: '5c3b337f-fd14-4df5-b1d6-80ec13e6e28e'
|
|
217
|
+
}
|
|
218
|
+
};
|
|
219
|
+
const SeoantTrustBadgesIconConfig = {
|
|
220
|
+
SeoantTrustBadgesIcon: {
|
|
221
|
+
appName: 'seoant-trust-badges',
|
|
222
|
+
appId: 'f42f2346-5d14-4b41-a8b9-4b6ee352262e'
|
|
223
|
+
}
|
|
224
|
+
};
|
|
213
225
|
|
|
214
226
|
exports.AftershipEmailMarketingsmsConfig = AftershipEmailMarketingsmsConfig;
|
|
215
227
|
exports.AppointmentBookingCowlendarConfig = AppointmentBookingCowlendarConfig;
|
|
@@ -227,6 +239,7 @@ exports.KachingBundlesConfig = KachingBundlesConfig;
|
|
|
227
239
|
exports.KiteFreeGiftDiscountConfig = KiteFreeGiftDiscountConfig;
|
|
228
240
|
exports.LoloyalLoyaltyReferralsConfig = LoloyalLoyaltyReferralsConfig;
|
|
229
241
|
exports.LoopSubscriptionsConfig = LoopSubscriptionsConfig;
|
|
242
|
+
exports.LooxReviewsConfig = LooxReviewsConfig;
|
|
230
243
|
exports.PowerfulContactFormBuilderConfig = PowerfulContactFormBuilderConfig;
|
|
231
244
|
exports.PreorderNowPreOrderPqConfig = PreorderNowPreOrderPqConfig;
|
|
232
245
|
exports.PreorderNowWodPresaleConfig = PreorderNowWodPresaleConfig;
|
|
@@ -236,6 +249,7 @@ exports.RechargeSubscriptionsConfig = RechargeSubscriptionsConfig;
|
|
|
236
249
|
exports.ReviewxpoProductReviewsAppConfig = ReviewxpoProductReviewsAppConfig;
|
|
237
250
|
exports.SegunoEmailMarketingConfig = SegunoEmailMarketingConfig;
|
|
238
251
|
exports.SelleasyConfig = SelleasyConfig;
|
|
252
|
+
exports.SeoantTrustBadgesIconConfig = SeoantTrustBadgesIconConfig;
|
|
239
253
|
exports.ShopifyFormsConfig = ShopifyFormsConfig;
|
|
240
254
|
exports.SimpleBundlesKitsConfig = SimpleBundlesKitsConfig;
|
|
241
255
|
exports.SkioSubscriptionsYcS20Config = SkioSubscriptionsYcS20Config;
|
|
@@ -123,6 +123,13 @@ const overrideSettings = (tag, currentSetting, appSetting)=>{
|
|
|
123
123
|
embedded_form_id: appSetting?.formId
|
|
124
124
|
};
|
|
125
125
|
}
|
|
126
|
+
case 'SeoantTrustBadgesIcon':
|
|
127
|
+
{
|
|
128
|
+
return {
|
|
129
|
+
...currentSetting,
|
|
130
|
+
badge_id: appSetting?.BadgeId
|
|
131
|
+
};
|
|
132
|
+
}
|
|
126
133
|
default:
|
|
127
134
|
return currentSetting;
|
|
128
135
|
}
|
|
@@ -535,7 +542,158 @@ const Trustoo = {
|
|
|
535
542
|
'card-carousel': null
|
|
536
543
|
}
|
|
537
544
|
};
|
|
545
|
+
const LooxReviews = {
|
|
546
|
+
LooxReviews: {
|
|
547
|
+
'loox-card-carousel-section': {
|
|
548
|
+
maxWidth: 1100,
|
|
549
|
+
borderRadius: 8,
|
|
550
|
+
itemsPerView: 4,
|
|
551
|
+
mobileItemsPerView: 1,
|
|
552
|
+
maxNumberOfCharacters: 100,
|
|
553
|
+
imageRatio: '0.72',
|
|
554
|
+
reviewerNameColor: '#000000',
|
|
555
|
+
textColor: '#000000',
|
|
556
|
+
itemBackgroundColor: '#ffffff',
|
|
557
|
+
starsColor: '',
|
|
558
|
+
starsBackgroundColor: '#ffffff',
|
|
559
|
+
arrows_backgroundColor: '#FFFFFF',
|
|
560
|
+
arrows_iconColor: '#9A9A9A',
|
|
561
|
+
shadow: 'offset-dark',
|
|
562
|
+
border_active: false,
|
|
563
|
+
border_width: 2,
|
|
564
|
+
border_color: '#000000',
|
|
565
|
+
productIds: ''
|
|
566
|
+
},
|
|
567
|
+
'loox-gallery-carousel-section': {
|
|
568
|
+
maxWidth: 1100,
|
|
569
|
+
borderRadius: 60,
|
|
570
|
+
itemsPerView: 5,
|
|
571
|
+
mobileItemsPerView: 1,
|
|
572
|
+
imageRatio: '1',
|
|
573
|
+
reviewerNameColor: '#ffffff',
|
|
574
|
+
starsColor: '#ffffff',
|
|
575
|
+
arrows_backgroundColor: '#FFFFFF',
|
|
576
|
+
arrows_iconColor: '#9A9A9A',
|
|
577
|
+
shadow: 'none',
|
|
578
|
+
border_active: false,
|
|
579
|
+
border_width: 2,
|
|
580
|
+
border_color: '#000000',
|
|
581
|
+
productIds: ''
|
|
582
|
+
},
|
|
583
|
+
'loox-referrals-section': {
|
|
584
|
+
max_width: 1100,
|
|
585
|
+
layout: 'with-photo',
|
|
586
|
+
primary_color: '',
|
|
587
|
+
text_color: '#000000',
|
|
588
|
+
text_field_border_color: '#C9CDD4',
|
|
589
|
+
background: ''
|
|
590
|
+
},
|
|
591
|
+
'loox-dynamic-section': {
|
|
592
|
+
only_photos: false,
|
|
593
|
+
aggregated: false,
|
|
594
|
+
limit: 20,
|
|
595
|
+
hide_thumbnails: false,
|
|
596
|
+
maxwidth: 1080,
|
|
597
|
+
is_sample: true
|
|
598
|
+
},
|
|
599
|
+
'loox-snippets-widget': {
|
|
600
|
+
alignment: 'left',
|
|
601
|
+
'max-width': '',
|
|
602
|
+
'color-scheme': 'default',
|
|
603
|
+
shadow: '',
|
|
604
|
+
'show-rating': true,
|
|
605
|
+
'show-image': true,
|
|
606
|
+
'hide-arrows-mobile': false,
|
|
607
|
+
'font-size': 14,
|
|
608
|
+
'show-border': false,
|
|
609
|
+
'border-radius': 16,
|
|
610
|
+
'background-color': '',
|
|
611
|
+
'text-color': '',
|
|
612
|
+
'name-color': '',
|
|
613
|
+
'rating-icon-color': '',
|
|
614
|
+
'border-color': '',
|
|
615
|
+
'shadow-color': '',
|
|
616
|
+
'reviews-limit': 10
|
|
617
|
+
},
|
|
618
|
+
'loox-rating': {
|
|
619
|
+
contentSize: 16,
|
|
620
|
+
pattern: '',
|
|
621
|
+
hideText: false,
|
|
622
|
+
alignment: '',
|
|
623
|
+
layout: '',
|
|
624
|
+
textColor: '',
|
|
625
|
+
starColor: '',
|
|
626
|
+
showAllReviews: false,
|
|
627
|
+
looxOpenFloatingWidget: false,
|
|
628
|
+
emptyRatingWidget: false
|
|
629
|
+
},
|
|
630
|
+
'loox-testimonial-carousel-section': {
|
|
631
|
+
maxWidth: 1100,
|
|
632
|
+
desktopFontSize: 32,
|
|
633
|
+
mobileFontSize: 20,
|
|
634
|
+
maxNumberOfCharacters: 100,
|
|
635
|
+
quoteMarkIcon: 'style-1',
|
|
636
|
+
reviewerNameColor: '#000000',
|
|
637
|
+
textColor: '#000000',
|
|
638
|
+
starsColor: '',
|
|
639
|
+
quotesIconColor: '#EAEAEA',
|
|
640
|
+
arrows_iconColor: '#000000',
|
|
641
|
+
arrows_hideOnMobile: true,
|
|
642
|
+
pagination_active: true,
|
|
643
|
+
pagination_selectedDotColor: '#000000',
|
|
644
|
+
pagination_dotColor: '#000000',
|
|
645
|
+
autoplay_active: false,
|
|
646
|
+
autoplay_duration: 2,
|
|
647
|
+
productIds: ''
|
|
648
|
+
},
|
|
649
|
+
'loox-trust-badge': {
|
|
650
|
+
layout: 'horizontal',
|
|
651
|
+
alignment: 'left',
|
|
652
|
+
'scheme-type': 'default',
|
|
653
|
+
'review-title': 'reviews',
|
|
654
|
+
'rating-icon': true,
|
|
655
|
+
'average-rating': true,
|
|
656
|
+
'loox-branding': true,
|
|
657
|
+
'review-count': true,
|
|
658
|
+
'open-reviews': true,
|
|
659
|
+
'show-border': true,
|
|
660
|
+
'border-radius': 8,
|
|
661
|
+
'font-size': 20,
|
|
662
|
+
'background-color': '',
|
|
663
|
+
'secondary-background-color': '',
|
|
664
|
+
'text-color': '',
|
|
665
|
+
'rating-icon-color': '',
|
|
666
|
+
'border-color': ''
|
|
667
|
+
},
|
|
668
|
+
'loox-video-slider': {
|
|
669
|
+
'show-by-tag': false,
|
|
670
|
+
layout: 'spotlight',
|
|
671
|
+
shadow: '',
|
|
672
|
+
'show-rating': true,
|
|
673
|
+
'show-reviewer-name': true,
|
|
674
|
+
'hide-arrows-mobile': true,
|
|
675
|
+
'auto-play': true,
|
|
676
|
+
'show-border': false,
|
|
677
|
+
'border-width': 1,
|
|
678
|
+
'border-radius': 16,
|
|
679
|
+
'text-color': '',
|
|
680
|
+
'rating-icon-color': '',
|
|
681
|
+
'border-color': '',
|
|
682
|
+
'play-button-color': '',
|
|
683
|
+
'shadow-color': '',
|
|
684
|
+
'product-id': ''
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
};
|
|
688
|
+
const SeoantTrustBadgesIcon = {
|
|
689
|
+
SeoantTrustBadgesIcon: {
|
|
690
|
+
star_rating: {
|
|
691
|
+
badge_id: null
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
};
|
|
538
695
|
const composeSettingsByWidgetType = {
|
|
696
|
+
...SeoantTrustBadgesIcon,
|
|
539
697
|
...SegunoEmailMarketing,
|
|
540
698
|
...AftershipEmailMarketingsms,
|
|
541
699
|
...BestBuyFulfillment,
|
|
@@ -570,7 +728,8 @@ const composeSettingsByWidgetType = {
|
|
|
570
728
|
...BoldSubscriptions,
|
|
571
729
|
...Growave,
|
|
572
730
|
...KachingBundles,
|
|
573
|
-
...Trustoo
|
|
731
|
+
...Trustoo,
|
|
732
|
+
...LooxReviews
|
|
574
733
|
};
|
|
575
734
|
|
|
576
735
|
exports.composeSettingsByWidgetType = composeSettingsByWidgetType;
|
|
@@ -37,7 +37,9 @@ const mapShopifyAppMeta = {
|
|
|
37
37
|
...appConfig.BestBuyFulfillmentConfig,
|
|
38
38
|
...appConfig.AftershipEmailMarketingsmsConfig,
|
|
39
39
|
...appConfig.SegunoEmailMarketingConfig,
|
|
40
|
-
...appConfig.TrustooConfig
|
|
40
|
+
...appConfig.TrustooConfig,
|
|
41
|
+
...appConfig.LooxReviewsConfig,
|
|
42
|
+
...appConfig.SeoantTrustBadgesIconConfig
|
|
41
43
|
};
|
|
42
44
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
43
45
|
|
|
@@ -5,7 +5,8 @@ var getAppBlockType = require('./getAppBlockType.js');
|
|
|
5
5
|
|
|
6
6
|
const listAppUpdateNewVersion = [
|
|
7
7
|
'Growave',
|
|
8
|
-
'Trustoo'
|
|
8
|
+
'Trustoo',
|
|
9
|
+
'LooxReviews'
|
|
9
10
|
];
|
|
10
11
|
const listThirdPartyRejectAppBlock = {
|
|
11
12
|
YotpoReviews: {
|
|
@@ -13,6 +14,9 @@ const listThirdPartyRejectAppBlock = {
|
|
|
13
14
|
},
|
|
14
15
|
Trustoo: {
|
|
15
16
|
conditionToReject: 'settings?.version === "v1"'
|
|
17
|
+
},
|
|
18
|
+
LooxReviews: {
|
|
19
|
+
conditionToReject: 'settings?.version === "v1"'
|
|
16
20
|
}
|
|
17
21
|
};
|
|
18
22
|
const getAppBlockConfig = (tag, appBlockId, settings)=>{
|
|
@@ -128,14 +128,17 @@ function composeAdvanceStyle(data, tag, pageType) {
|
|
|
128
128
|
'ProductPrice',
|
|
129
129
|
'ProductVendor',
|
|
130
130
|
'Product',
|
|
131
|
-
'ProductSku'
|
|
131
|
+
'ProductSku',
|
|
132
|
+
'StockCounter'
|
|
132
133
|
];
|
|
133
134
|
const boostElements = [
|
|
134
135
|
'Icon',
|
|
135
136
|
'IconListHoz',
|
|
136
137
|
'Line',
|
|
137
138
|
'IconList',
|
|
138
|
-
'IconListV2'
|
|
139
|
+
'IconListV2',
|
|
140
|
+
'Tabs',
|
|
141
|
+
'Accordion'
|
|
139
142
|
];
|
|
140
143
|
const listElementShadowV2 = [
|
|
141
144
|
...baseElements,
|
|
@@ -208,5 +208,17 @@ const TrustooConfig = {
|
|
|
208
208
|
appId: 'c8f15077-6475-4e86-ad06-b66038d5ba2c'
|
|
209
209
|
}
|
|
210
210
|
};
|
|
211
|
+
const LooxReviewsConfig = {
|
|
212
|
+
LooxReviews: {
|
|
213
|
+
appName: 'loox-reviews',
|
|
214
|
+
appId: '5c3b337f-fd14-4df5-b1d6-80ec13e6e28e'
|
|
215
|
+
}
|
|
216
|
+
};
|
|
217
|
+
const SeoantTrustBadgesIconConfig = {
|
|
218
|
+
SeoantTrustBadgesIcon: {
|
|
219
|
+
appName: 'seoant-trust-badges',
|
|
220
|
+
appId: 'f42f2346-5d14-4b41-a8b9-4b6ee352262e'
|
|
221
|
+
}
|
|
222
|
+
};
|
|
211
223
|
|
|
212
|
-
export { AftershipEmailMarketingsmsConfig, AppointmentBookingCowlendarConfig, BestBuyFulfillmentConfig, BoldSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, FlyBundlesUpsellsFbtConfig, GloboProductOptionsVariantConfig, GrowaveConfig, InstasellShoppableInstagramConfig, JunipProductReviewsUgcConfig, KachingBundlesConfig, KiteFreeGiftDiscountConfig, LoloyalLoyaltyReferralsConfig, LoopSubscriptionsConfig, PowerfulContactFormBuilderConfig, PreorderNowPreOrderPqConfig, PreorderNowWodPresaleConfig, ProductOptionsCustomizerConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SegunoEmailMarketingConfig, SelleasyConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SproutPlantTreesGrowSalesConfig, SubifySubscriptionsConfig, TrustooConfig, UnlimitedBundlesDiscountsConfig, WhatmoreShoppableVideosreelConfig, WishlistKingConfig, YotpoReviewsV3UgcConfig };
|
|
224
|
+
export { AftershipEmailMarketingsmsConfig, AppointmentBookingCowlendarConfig, BestBuyFulfillmentConfig, BoldSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, FlyBundlesUpsellsFbtConfig, GloboProductOptionsVariantConfig, GrowaveConfig, InstasellShoppableInstagramConfig, JunipProductReviewsUgcConfig, KachingBundlesConfig, KiteFreeGiftDiscountConfig, LoloyalLoyaltyReferralsConfig, LoopSubscriptionsConfig, LooxReviewsConfig, PowerfulContactFormBuilderConfig, PreorderNowPreOrderPqConfig, PreorderNowWodPresaleConfig, ProductOptionsCustomizerConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SegunoEmailMarketingConfig, SelleasyConfig, SeoantTrustBadgesIconConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SproutPlantTreesGrowSalesConfig, SubifySubscriptionsConfig, TrustooConfig, UnlimitedBundlesDiscountsConfig, WhatmoreShoppableVideosreelConfig, WishlistKingConfig, YotpoReviewsV3UgcConfig };
|
|
@@ -121,6 +121,13 @@ const overrideSettings = (tag, currentSetting, appSetting)=>{
|
|
|
121
121
|
embedded_form_id: appSetting?.formId
|
|
122
122
|
};
|
|
123
123
|
}
|
|
124
|
+
case 'SeoantTrustBadgesIcon':
|
|
125
|
+
{
|
|
126
|
+
return {
|
|
127
|
+
...currentSetting,
|
|
128
|
+
badge_id: appSetting?.BadgeId
|
|
129
|
+
};
|
|
130
|
+
}
|
|
124
131
|
default:
|
|
125
132
|
return currentSetting;
|
|
126
133
|
}
|
|
@@ -533,7 +540,158 @@ const Trustoo = {
|
|
|
533
540
|
'card-carousel': null
|
|
534
541
|
}
|
|
535
542
|
};
|
|
543
|
+
const LooxReviews = {
|
|
544
|
+
LooxReviews: {
|
|
545
|
+
'loox-card-carousel-section': {
|
|
546
|
+
maxWidth: 1100,
|
|
547
|
+
borderRadius: 8,
|
|
548
|
+
itemsPerView: 4,
|
|
549
|
+
mobileItemsPerView: 1,
|
|
550
|
+
maxNumberOfCharacters: 100,
|
|
551
|
+
imageRatio: '0.72',
|
|
552
|
+
reviewerNameColor: '#000000',
|
|
553
|
+
textColor: '#000000',
|
|
554
|
+
itemBackgroundColor: '#ffffff',
|
|
555
|
+
starsColor: '',
|
|
556
|
+
starsBackgroundColor: '#ffffff',
|
|
557
|
+
arrows_backgroundColor: '#FFFFFF',
|
|
558
|
+
arrows_iconColor: '#9A9A9A',
|
|
559
|
+
shadow: 'offset-dark',
|
|
560
|
+
border_active: false,
|
|
561
|
+
border_width: 2,
|
|
562
|
+
border_color: '#000000',
|
|
563
|
+
productIds: ''
|
|
564
|
+
},
|
|
565
|
+
'loox-gallery-carousel-section': {
|
|
566
|
+
maxWidth: 1100,
|
|
567
|
+
borderRadius: 60,
|
|
568
|
+
itemsPerView: 5,
|
|
569
|
+
mobileItemsPerView: 1,
|
|
570
|
+
imageRatio: '1',
|
|
571
|
+
reviewerNameColor: '#ffffff',
|
|
572
|
+
starsColor: '#ffffff',
|
|
573
|
+
arrows_backgroundColor: '#FFFFFF',
|
|
574
|
+
arrows_iconColor: '#9A9A9A',
|
|
575
|
+
shadow: 'none',
|
|
576
|
+
border_active: false,
|
|
577
|
+
border_width: 2,
|
|
578
|
+
border_color: '#000000',
|
|
579
|
+
productIds: ''
|
|
580
|
+
},
|
|
581
|
+
'loox-referrals-section': {
|
|
582
|
+
max_width: 1100,
|
|
583
|
+
layout: 'with-photo',
|
|
584
|
+
primary_color: '',
|
|
585
|
+
text_color: '#000000',
|
|
586
|
+
text_field_border_color: '#C9CDD4',
|
|
587
|
+
background: ''
|
|
588
|
+
},
|
|
589
|
+
'loox-dynamic-section': {
|
|
590
|
+
only_photos: false,
|
|
591
|
+
aggregated: false,
|
|
592
|
+
limit: 20,
|
|
593
|
+
hide_thumbnails: false,
|
|
594
|
+
maxwidth: 1080,
|
|
595
|
+
is_sample: true
|
|
596
|
+
},
|
|
597
|
+
'loox-snippets-widget': {
|
|
598
|
+
alignment: 'left',
|
|
599
|
+
'max-width': '',
|
|
600
|
+
'color-scheme': 'default',
|
|
601
|
+
shadow: '',
|
|
602
|
+
'show-rating': true,
|
|
603
|
+
'show-image': true,
|
|
604
|
+
'hide-arrows-mobile': false,
|
|
605
|
+
'font-size': 14,
|
|
606
|
+
'show-border': false,
|
|
607
|
+
'border-radius': 16,
|
|
608
|
+
'background-color': '',
|
|
609
|
+
'text-color': '',
|
|
610
|
+
'name-color': '',
|
|
611
|
+
'rating-icon-color': '',
|
|
612
|
+
'border-color': '',
|
|
613
|
+
'shadow-color': '',
|
|
614
|
+
'reviews-limit': 10
|
|
615
|
+
},
|
|
616
|
+
'loox-rating': {
|
|
617
|
+
contentSize: 16,
|
|
618
|
+
pattern: '',
|
|
619
|
+
hideText: false,
|
|
620
|
+
alignment: '',
|
|
621
|
+
layout: '',
|
|
622
|
+
textColor: '',
|
|
623
|
+
starColor: '',
|
|
624
|
+
showAllReviews: false,
|
|
625
|
+
looxOpenFloatingWidget: false,
|
|
626
|
+
emptyRatingWidget: false
|
|
627
|
+
},
|
|
628
|
+
'loox-testimonial-carousel-section': {
|
|
629
|
+
maxWidth: 1100,
|
|
630
|
+
desktopFontSize: 32,
|
|
631
|
+
mobileFontSize: 20,
|
|
632
|
+
maxNumberOfCharacters: 100,
|
|
633
|
+
quoteMarkIcon: 'style-1',
|
|
634
|
+
reviewerNameColor: '#000000',
|
|
635
|
+
textColor: '#000000',
|
|
636
|
+
starsColor: '',
|
|
637
|
+
quotesIconColor: '#EAEAEA',
|
|
638
|
+
arrows_iconColor: '#000000',
|
|
639
|
+
arrows_hideOnMobile: true,
|
|
640
|
+
pagination_active: true,
|
|
641
|
+
pagination_selectedDotColor: '#000000',
|
|
642
|
+
pagination_dotColor: '#000000',
|
|
643
|
+
autoplay_active: false,
|
|
644
|
+
autoplay_duration: 2,
|
|
645
|
+
productIds: ''
|
|
646
|
+
},
|
|
647
|
+
'loox-trust-badge': {
|
|
648
|
+
layout: 'horizontal',
|
|
649
|
+
alignment: 'left',
|
|
650
|
+
'scheme-type': 'default',
|
|
651
|
+
'review-title': 'reviews',
|
|
652
|
+
'rating-icon': true,
|
|
653
|
+
'average-rating': true,
|
|
654
|
+
'loox-branding': true,
|
|
655
|
+
'review-count': true,
|
|
656
|
+
'open-reviews': true,
|
|
657
|
+
'show-border': true,
|
|
658
|
+
'border-radius': 8,
|
|
659
|
+
'font-size': 20,
|
|
660
|
+
'background-color': '',
|
|
661
|
+
'secondary-background-color': '',
|
|
662
|
+
'text-color': '',
|
|
663
|
+
'rating-icon-color': '',
|
|
664
|
+
'border-color': ''
|
|
665
|
+
},
|
|
666
|
+
'loox-video-slider': {
|
|
667
|
+
'show-by-tag': false,
|
|
668
|
+
layout: 'spotlight',
|
|
669
|
+
shadow: '',
|
|
670
|
+
'show-rating': true,
|
|
671
|
+
'show-reviewer-name': true,
|
|
672
|
+
'hide-arrows-mobile': true,
|
|
673
|
+
'auto-play': true,
|
|
674
|
+
'show-border': false,
|
|
675
|
+
'border-width': 1,
|
|
676
|
+
'border-radius': 16,
|
|
677
|
+
'text-color': '',
|
|
678
|
+
'rating-icon-color': '',
|
|
679
|
+
'border-color': '',
|
|
680
|
+
'play-button-color': '',
|
|
681
|
+
'shadow-color': '',
|
|
682
|
+
'product-id': ''
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
};
|
|
686
|
+
const SeoantTrustBadgesIcon = {
|
|
687
|
+
SeoantTrustBadgesIcon: {
|
|
688
|
+
star_rating: {
|
|
689
|
+
badge_id: null
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
};
|
|
536
693
|
const composeSettingsByWidgetType = {
|
|
694
|
+
...SeoantTrustBadgesIcon,
|
|
537
695
|
...SegunoEmailMarketing,
|
|
538
696
|
...AftershipEmailMarketingsms,
|
|
539
697
|
...BestBuyFulfillment,
|
|
@@ -568,7 +726,8 @@ const composeSettingsByWidgetType = {
|
|
|
568
726
|
...BoldSubscriptions,
|
|
569
727
|
...Growave,
|
|
570
728
|
...KachingBundles,
|
|
571
|
-
...Trustoo
|
|
729
|
+
...Trustoo,
|
|
730
|
+
...LooxReviews
|
|
572
731
|
};
|
|
573
732
|
|
|
574
733
|
export { composeSettingsByWidgetType, overrideSettings };
|
|
@@ -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, BestBuyFulfillmentConfig, AftershipEmailMarketingsmsConfig, SegunoEmailMarketingConfig, TrustooConfig } 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, BestBuyFulfillmentConfig, AftershipEmailMarketingsmsConfig, SegunoEmailMarketingConfig, TrustooConfig, LooxReviewsConfig, SeoantTrustBadgesIconConfig } from './appConfig.js';
|
|
2
2
|
|
|
3
3
|
const mapShopifyAppMeta = {
|
|
4
4
|
...RechargeSubscriptionsConfig,
|
|
@@ -35,7 +35,9 @@ const mapShopifyAppMeta = {
|
|
|
35
35
|
...BestBuyFulfillmentConfig,
|
|
36
36
|
...AftershipEmailMarketingsmsConfig,
|
|
37
37
|
...SegunoEmailMarketingConfig,
|
|
38
|
-
...TrustooConfig
|
|
38
|
+
...TrustooConfig,
|
|
39
|
+
...LooxReviewsConfig,
|
|
40
|
+
...SeoantTrustBadgesIconConfig
|
|
39
41
|
};
|
|
40
42
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
41
43
|
|
|
@@ -3,7 +3,8 @@ import { getAppBlockType } from './getAppBlockType.js';
|
|
|
3
3
|
|
|
4
4
|
const listAppUpdateNewVersion = [
|
|
5
5
|
'Growave',
|
|
6
|
-
'Trustoo'
|
|
6
|
+
'Trustoo',
|
|
7
|
+
'LooxReviews'
|
|
7
8
|
];
|
|
8
9
|
const listThirdPartyRejectAppBlock = {
|
|
9
10
|
YotpoReviews: {
|
|
@@ -11,6 +12,9 @@ const listThirdPartyRejectAppBlock = {
|
|
|
11
12
|
},
|
|
12
13
|
Trustoo: {
|
|
13
14
|
conditionToReject: 'settings?.version === "v1"'
|
|
15
|
+
},
|
|
16
|
+
LooxReviews: {
|
|
17
|
+
conditionToReject: 'settings?.version === "v1"'
|
|
14
18
|
}
|
|
15
19
|
};
|
|
16
20
|
const getAppBlockConfig = (tag, appBlockId, settings)=>{
|
package/dist/types/index.d.ts
CHANGED
|
@@ -7222,6 +7222,7 @@ type ResponsiveStateProp<T> = ObjectDevices<StateProp<T>>;
|
|
|
7222
7222
|
type AlignItemProp = 'left' | 'center' | 'right';
|
|
7223
7223
|
type JudgeMeReviewsWidgetType = 'single_product_preview_badge' | 'review_widget' | 'reviews_carousel' | 'reviews_text' | 'section_for_medals' | 'ugc_media_grid' | 'verified_reviews_count_badge';
|
|
7224
7224
|
type LooxReviewsWidgetType = 'reviews_widget' | 'rating_widget' | 'carousel_widget';
|
|
7225
|
+
type LooxReviewsWidgetTypeV2 = 'loox-card-carousel-section' | 'loox-gallery-carousel-section' | 'loox-referrals-section' | 'loox-dynamic-section' | 'loox-snippets-widget' | 'loox-rating' | 'loox-testimonial-carousel-section' | 'loox-trust-badge' | 'loox-video-slider';
|
|
7225
7226
|
type RyviuWidgetType = 'reviews' | 'badge' | 'badgeCollection' | 'carousel' | 'masonry';
|
|
7226
7227
|
type RivyoWidgetType = 'reviews' | 'badge' | 'testimonials' | 'allReviewsPage';
|
|
7227
7228
|
type VitalsWidgetType = 'addToWishlist' | 'goToWishlist' | 'paymentLogos' | 'recentlyViewed' | 'shoppableInstagramFeed' | 'trustSealsAndBadges' | 'productReviews' | 'productBundles' | 'volumeDiscounts' | 'stockScarcity' | 'sizeChart' | 'upsellBuilderBogo' | 'bundleCountdownBox' | 'reviewsUnderTitle' | 'productReviewsCarousel' | 'shippingBox' | 'currencyConverter' | 'relatedProducts' | 'backInStock';
|
|
@@ -7787,11 +7788,150 @@ type TypographyControlType<T> = SharedControlType<T> & {
|
|
|
7787
7788
|
popup?: boolean;
|
|
7788
7789
|
};
|
|
7789
7790
|
|
|
7791
|
+
type SettingStateType = 'normal' | 'hover' | 'focus' | 'active' | 'price' | 'compareAtPrice';
|
|
7792
|
+
type LangKey = 'en' | 'vi';
|
|
7793
|
+
type LabelWithLang = {
|
|
7794
|
+
[P in keyof Record<LangKey, ''>]?: string;
|
|
7795
|
+
};
|
|
7796
|
+
type SettingMediaType = 'image' | 'youtubeVideoID';
|
|
7797
|
+
type SettingUIHelpType = {
|
|
7798
|
+
content: string;
|
|
7799
|
+
button?: {
|
|
7800
|
+
label: string;
|
|
7801
|
+
link: string;
|
|
7802
|
+
};
|
|
7803
|
+
media?: {
|
|
7804
|
+
value: string;
|
|
7805
|
+
type: SettingMediaType;
|
|
7806
|
+
};
|
|
7807
|
+
};
|
|
7808
|
+
type LinkWithSetting = {
|
|
7809
|
+
name: string;
|
|
7810
|
+
state?: string;
|
|
7811
|
+
field?: string;
|
|
7812
|
+
getLinkValue?: boolean;
|
|
7813
|
+
};
|
|
7814
|
+
type ControlConfig = ControlProp<any> & {
|
|
7815
|
+
linkWithSetting?: LinkWithSetting;
|
|
7816
|
+
};
|
|
7817
|
+
type Plan = 'trial' | 'build' | 'starter' | 'optimize' | 'advanced' | 'trial2022' | 'enterprise' | 'development' | 'professional';
|
|
7818
|
+
type LabelVariant = 'primary' | 'secondary' | 'bold';
|
|
7819
|
+
type SettingUIControl = {
|
|
7820
|
+
id?: string;
|
|
7821
|
+
controlConfig?: ControlConfig;
|
|
7822
|
+
type?: 'control' | 'combo' | 'tab' | 'toggleGroup';
|
|
7823
|
+
layout?: 'vertical' | 'horizontal';
|
|
7824
|
+
toggleGroupId?: string;
|
|
7825
|
+
label?: LabelWithLang;
|
|
7826
|
+
conditionDisplay?: string;
|
|
7827
|
+
conditionEnable?: string;
|
|
7828
|
+
options?: {
|
|
7829
|
+
fullWidth?: boolean;
|
|
7830
|
+
onlyShowInTags?: string[];
|
|
7831
|
+
target?: 'tab';
|
|
7832
|
+
disableMessage?: string;
|
|
7833
|
+
nearestSupportedPlan?: Plan;
|
|
7834
|
+
lockedOnPlans?: Plan[];
|
|
7835
|
+
labelVariant?: LabelVariant;
|
|
7836
|
+
labelInsideControl?: boolean;
|
|
7837
|
+
hideLabel?: boolean;
|
|
7838
|
+
updateFields?: {
|
|
7839
|
+
field: string;
|
|
7840
|
+
settingId: string;
|
|
7841
|
+
state?: SettingStateType;
|
|
7842
|
+
}[];
|
|
7843
|
+
};
|
|
7844
|
+
setting?: {
|
|
7845
|
+
id: string;
|
|
7846
|
+
state?: SettingStateType;
|
|
7847
|
+
};
|
|
7848
|
+
searchKeyword?: string;
|
|
7849
|
+
controlChangeTrigger?: ControlTrigger;
|
|
7850
|
+
tabs?: SettingUITab[];
|
|
7851
|
+
info?: LabelWithLang;
|
|
7852
|
+
compoDefaultValue?: any | Record<NameDevices$1, any>;
|
|
7853
|
+
} & SettingUICompo;
|
|
7854
|
+
type ControlTriggerAction$1 = {
|
|
7855
|
+
controlId: string;
|
|
7856
|
+
newValue?: any;
|
|
7857
|
+
valueFromField?: string;
|
|
7858
|
+
controlType: string;
|
|
7859
|
+
groupType: string;
|
|
7860
|
+
valueIfNull?: any;
|
|
7861
|
+
removeDevice?: boolean;
|
|
7862
|
+
state?: SettingStateType;
|
|
7863
|
+
};
|
|
7864
|
+
type ControlTriggerSetting = {
|
|
7865
|
+
source?: string[];
|
|
7866
|
+
condition?: string;
|
|
7867
|
+
action: ControlTriggerAction$1;
|
|
7868
|
+
};
|
|
7869
|
+
type ControlTrigger = {
|
|
7870
|
+
settings?: ControlTriggerSetting[];
|
|
7871
|
+
options?: {
|
|
7872
|
+
noRecordHistory?: boolean;
|
|
7873
|
+
};
|
|
7874
|
+
};
|
|
7875
|
+
type SettingUICompo = {
|
|
7876
|
+
controls?: SettingUIControl[];
|
|
7877
|
+
iconName?: string;
|
|
7878
|
+
getValueFromSettingID?: string;
|
|
7879
|
+
defaultValueWhenClear?: any;
|
|
7880
|
+
fixedValue?: string;
|
|
7881
|
+
placeholder?: string;
|
|
7882
|
+
help?: SettingUIHelpType;
|
|
7883
|
+
popoverLabel?: LabelWithLang;
|
|
7884
|
+
comboType?: 'color' | 'image';
|
|
7885
|
+
isHideClear?: boolean;
|
|
7886
|
+
};
|
|
7887
|
+
type SettingUIMoreSetting = {
|
|
7888
|
+
label?: LabelWithLang;
|
|
7889
|
+
labelAction?: LabelWithLang;
|
|
7890
|
+
controls?: SettingUIControl[];
|
|
7891
|
+
help?: SettingUIHelpType;
|
|
7892
|
+
type?: SettingUIMoreSettingType;
|
|
7893
|
+
};
|
|
7894
|
+
type SettingUIMoreSettingType = 'button' | 'collapse' | 'icon';
|
|
7895
|
+
type SettingUITab = {
|
|
7896
|
+
label?: LabelWithLang;
|
|
7897
|
+
controls?: SettingUIControl[];
|
|
7898
|
+
hide?: boolean;
|
|
7899
|
+
conditionDisplay?: string;
|
|
7900
|
+
};
|
|
7901
|
+
type SettingUIToggleGroup = {
|
|
7902
|
+
label?: LabelWithLang;
|
|
7903
|
+
id?: string;
|
|
7904
|
+
controls?: SettingUIControl[];
|
|
7905
|
+
};
|
|
7906
|
+
type SettingUIToggleSettings = {
|
|
7907
|
+
controls?: SettingUIControl[];
|
|
7908
|
+
isActiveDefault?: boolean;
|
|
7909
|
+
} & SettingUIControl & SettingUIToggleGroup;
|
|
7910
|
+
type SettingUIGroup = {
|
|
7911
|
+
label?: LabelWithLang;
|
|
7912
|
+
message?: string;
|
|
7913
|
+
disableToggle?: boolean;
|
|
7914
|
+
conditionDisplay?: string;
|
|
7915
|
+
conditionEnable?: string;
|
|
7916
|
+
controls?: SettingUIControl[];
|
|
7917
|
+
moreSettings?: SettingUIMoreSetting;
|
|
7918
|
+
toggleSettings?: SettingUIToggleSettings[];
|
|
7919
|
+
states?: SettingUITab[];
|
|
7920
|
+
help?: SettingUIHelpType;
|
|
7921
|
+
options?: {
|
|
7922
|
+
disableMessage?: string;
|
|
7923
|
+
};
|
|
7924
|
+
};
|
|
7925
|
+
|
|
7790
7926
|
type PickLinkControlType<T> = SharedControlType<T> & {
|
|
7791
7927
|
type: 'pick-link';
|
|
7792
7928
|
pickLinkLabel?: string;
|
|
7793
7929
|
isHiddenInsertLink?: boolean;
|
|
7794
7930
|
isHiddenOpenLinkSelect?: boolean;
|
|
7931
|
+
hiddenOptions?: {
|
|
7932
|
+
[key: string]: boolean;
|
|
7933
|
+
};
|
|
7934
|
+
customLabel?: LabelWithLang;
|
|
7795
7935
|
};
|
|
7796
7936
|
|
|
7797
7937
|
type BehaviorStateControlType<T> = {
|
|
@@ -8515,141 +8655,6 @@ type ProductHandleType<T> = SharedControlType<T> & {
|
|
|
8515
8655
|
type: 'product-handle';
|
|
8516
8656
|
};
|
|
8517
8657
|
|
|
8518
|
-
type SettingStateType = 'normal' | 'hover' | 'focus' | 'active' | 'price' | 'compareAtPrice';
|
|
8519
|
-
type LangKey = 'en' | 'vi';
|
|
8520
|
-
type LabelWithLang = {
|
|
8521
|
-
[P in keyof Record<LangKey, ''>]?: string;
|
|
8522
|
-
};
|
|
8523
|
-
type SettingMediaType = 'image' | 'youtubeVideoID';
|
|
8524
|
-
type SettingUIHelpType = {
|
|
8525
|
-
content: string;
|
|
8526
|
-
button?: {
|
|
8527
|
-
label: string;
|
|
8528
|
-
link: string;
|
|
8529
|
-
};
|
|
8530
|
-
media?: {
|
|
8531
|
-
value: string;
|
|
8532
|
-
type: SettingMediaType;
|
|
8533
|
-
};
|
|
8534
|
-
};
|
|
8535
|
-
type LinkWithSetting = {
|
|
8536
|
-
name: string;
|
|
8537
|
-
state?: string;
|
|
8538
|
-
field?: string;
|
|
8539
|
-
getLinkValue?: boolean;
|
|
8540
|
-
};
|
|
8541
|
-
type ControlConfig = ControlProp<any> & {
|
|
8542
|
-
linkWithSetting?: LinkWithSetting;
|
|
8543
|
-
};
|
|
8544
|
-
type Plan = 'trial' | 'build' | 'starter' | 'optimize' | 'advanced' | 'trial2022' | 'enterprise' | 'development' | 'professional';
|
|
8545
|
-
type LabelVariant = 'primary' | 'secondary' | 'bold';
|
|
8546
|
-
type SettingUIControl = {
|
|
8547
|
-
id?: string;
|
|
8548
|
-
controlConfig?: ControlConfig;
|
|
8549
|
-
type?: 'control' | 'combo' | 'tab' | 'toggleGroup';
|
|
8550
|
-
layout?: 'vertical' | 'horizontal';
|
|
8551
|
-
toggleGroupId?: string;
|
|
8552
|
-
label?: LabelWithLang;
|
|
8553
|
-
conditionDisplay?: string;
|
|
8554
|
-
conditionEnable?: string;
|
|
8555
|
-
options?: {
|
|
8556
|
-
fullWidth?: boolean;
|
|
8557
|
-
onlyShowInTags?: string[];
|
|
8558
|
-
target?: 'tab';
|
|
8559
|
-
disableMessage?: string;
|
|
8560
|
-
nearestSupportedPlan?: Plan;
|
|
8561
|
-
lockedOnPlans?: Plan[];
|
|
8562
|
-
labelVariant?: LabelVariant;
|
|
8563
|
-
labelInsideControl?: boolean;
|
|
8564
|
-
hideLabel?: boolean;
|
|
8565
|
-
updateFields?: {
|
|
8566
|
-
field: string;
|
|
8567
|
-
settingId: string;
|
|
8568
|
-
state?: SettingStateType;
|
|
8569
|
-
}[];
|
|
8570
|
-
};
|
|
8571
|
-
setting?: {
|
|
8572
|
-
id: string;
|
|
8573
|
-
state?: SettingStateType;
|
|
8574
|
-
};
|
|
8575
|
-
searchKeyword?: string;
|
|
8576
|
-
controlChangeTrigger?: ControlTrigger;
|
|
8577
|
-
tabs?: SettingUITab[];
|
|
8578
|
-
info?: LabelWithLang;
|
|
8579
|
-
compoDefaultValue?: any | Record<NameDevices$1, any>;
|
|
8580
|
-
} & SettingUICompo;
|
|
8581
|
-
type ControlTriggerAction$1 = {
|
|
8582
|
-
controlId: string;
|
|
8583
|
-
newValue?: any;
|
|
8584
|
-
valueFromField?: string;
|
|
8585
|
-
controlType: string;
|
|
8586
|
-
groupType: string;
|
|
8587
|
-
valueIfNull?: any;
|
|
8588
|
-
removeDevice?: boolean;
|
|
8589
|
-
state?: SettingStateType;
|
|
8590
|
-
};
|
|
8591
|
-
type ControlTriggerSetting = {
|
|
8592
|
-
source?: string[];
|
|
8593
|
-
condition?: string;
|
|
8594
|
-
action: ControlTriggerAction$1;
|
|
8595
|
-
};
|
|
8596
|
-
type ControlTrigger = {
|
|
8597
|
-
settings?: ControlTriggerSetting[];
|
|
8598
|
-
options?: {
|
|
8599
|
-
noRecordHistory?: boolean;
|
|
8600
|
-
};
|
|
8601
|
-
};
|
|
8602
|
-
type SettingUICompo = {
|
|
8603
|
-
controls?: SettingUIControl[];
|
|
8604
|
-
iconName?: string;
|
|
8605
|
-
getValueFromSettingID?: string;
|
|
8606
|
-
defaultValueWhenClear?: any;
|
|
8607
|
-
fixedValue?: string;
|
|
8608
|
-
placeholder?: string;
|
|
8609
|
-
help?: SettingUIHelpType;
|
|
8610
|
-
popoverLabel?: LabelWithLang;
|
|
8611
|
-
comboType?: 'color' | 'image';
|
|
8612
|
-
isHideClear?: boolean;
|
|
8613
|
-
};
|
|
8614
|
-
type SettingUIMoreSetting = {
|
|
8615
|
-
label?: LabelWithLang;
|
|
8616
|
-
labelAction?: LabelWithLang;
|
|
8617
|
-
controls?: SettingUIControl[];
|
|
8618
|
-
help?: SettingUIHelpType;
|
|
8619
|
-
type?: SettingUIMoreSettingType;
|
|
8620
|
-
};
|
|
8621
|
-
type SettingUIMoreSettingType = 'button' | 'collapse' | 'icon';
|
|
8622
|
-
type SettingUITab = {
|
|
8623
|
-
label?: LabelWithLang;
|
|
8624
|
-
controls?: SettingUIControl[];
|
|
8625
|
-
hide?: boolean;
|
|
8626
|
-
conditionDisplay?: string;
|
|
8627
|
-
};
|
|
8628
|
-
type SettingUIToggleGroup = {
|
|
8629
|
-
label?: LabelWithLang;
|
|
8630
|
-
id?: string;
|
|
8631
|
-
controls?: SettingUIControl[];
|
|
8632
|
-
};
|
|
8633
|
-
type SettingUIToggleSettings = {
|
|
8634
|
-
controls?: SettingUIControl[];
|
|
8635
|
-
isActiveDefault?: boolean;
|
|
8636
|
-
} & SettingUIControl & SettingUIToggleGroup;
|
|
8637
|
-
type SettingUIGroup = {
|
|
8638
|
-
label?: LabelWithLang;
|
|
8639
|
-
message?: string;
|
|
8640
|
-
disableToggle?: boolean;
|
|
8641
|
-
conditionDisplay?: string;
|
|
8642
|
-
conditionEnable?: string;
|
|
8643
|
-
controls?: SettingUIControl[];
|
|
8644
|
-
moreSettings?: SettingUIMoreSetting;
|
|
8645
|
-
toggleSettings?: SettingUIToggleSettings[];
|
|
8646
|
-
states?: SettingUITab[];
|
|
8647
|
-
help?: SettingUIHelpType;
|
|
8648
|
-
options?: {
|
|
8649
|
-
disableMessage?: string;
|
|
8650
|
-
};
|
|
8651
|
-
};
|
|
8652
|
-
|
|
8653
8658
|
type ColorPickerV2ControlType<T> = SharedControlType<T> & {
|
|
8654
8659
|
type: 'color-picker-v2';
|
|
8655
8660
|
};
|
|
@@ -32299,6 +32304,7 @@ type PublishedThemePagesQueryResponse = {
|
|
|
32299
32304
|
themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
32300
32305
|
themePageCustomFonts?: Maybe$1<Array<Maybe$1<CustomFont$1>>>;
|
|
32301
32306
|
interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
|
|
32307
|
+
metafiels?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'id' | 'key' | 'value'>>>>;
|
|
32302
32308
|
}>>>;
|
|
32303
32309
|
};
|
|
32304
32310
|
declare const PublishedThemePagesDocument: string;
|
|
@@ -42323,6 +42329,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name'
|
|
|
42323
42329
|
themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
42324
42330
|
themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
42325
42331
|
interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
|
|
42332
|
+
metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'id' | 'key' | 'value'>>>>;
|
|
42326
42333
|
};
|
|
42327
42334
|
|
|
42328
42335
|
declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
|
|
@@ -42372,4 +42379,4 @@ declare const useInteraction: () => {
|
|
|
42372
42379
|
interactionListenerLoaded: (callback: () => void) => void;
|
|
42373
42380
|
};
|
|
42374
42381
|
|
|
42375
|
-
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, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, 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, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options$1 as Options, PaddingType, 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, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, 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, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, 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, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBgImageSourceByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImageByDevice, getStyleBgColor, getStyleBgImageSource, 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, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|
|
42382
|
+
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, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, 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$1 as Options, PaddingType, 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, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, 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, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, 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, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBgImageSourceByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImageByDevice, getStyleBgColor, getStyleBgImageSource, 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, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|