@gem-sdk/components 2.1.12 → 2.1.13-staging.0

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.
Files changed (28) hide show
  1. package/dist/cjs/builder.js +5 -1
  2. package/dist/cjs/index.js +4 -0
  3. package/dist/cjs/index.liquid.js +4 -0
  4. package/dist/cjs/third-party/components/HextomCountdownTimerBar.js +32 -0
  5. package/dist/cjs/third-party/components/HextomCountdownTimerBar.liquid.js +12 -0
  6. package/dist/cjs/third-party/components/TrustBadgesBear.js +32 -0
  7. package/dist/cjs/third-party/components/TrustBadgesBear.liquid.js +12 -0
  8. package/dist/cjs/third-party/configs/HextomCountdownTimerBar.js +12 -0
  9. package/dist/cjs/third-party/configs/TrustBadgesBear.js +12 -0
  10. package/dist/cjs/third-party/next.js +11 -1
  11. package/dist/cjs/third-party/setting/HextomCountdownTimerBar.js +128 -0
  12. package/dist/cjs/third-party/setting/TrustBadgesBear.js +128 -0
  13. package/dist/cjs/third-party/setting/index.js +5 -1
  14. package/dist/esm/builder.js +5 -1
  15. package/dist/esm/index.js +2 -0
  16. package/dist/esm/index.liquid.js +2 -0
  17. package/dist/esm/third-party/components/HextomCountdownTimerBar.js +28 -0
  18. package/dist/esm/third-party/components/HextomCountdownTimerBar.liquid.js +8 -0
  19. package/dist/esm/third-party/components/TrustBadgesBear.js +28 -0
  20. package/dist/esm/third-party/components/TrustBadgesBear.liquid.js +8 -0
  21. package/dist/esm/third-party/configs/HextomCountdownTimerBar.js +8 -0
  22. package/dist/esm/third-party/configs/TrustBadgesBear.js +8 -0
  23. package/dist/esm/third-party/next.js +11 -1
  24. package/dist/esm/third-party/setting/HextomCountdownTimerBar.js +124 -0
  25. package/dist/esm/third-party/setting/TrustBadgesBear.js +124 -0
  26. package/dist/esm/third-party/setting/index.js +206 -202
  27. package/dist/types/index.d.ts +33 -1
  28. package/package.json +2 -2
@@ -0,0 +1,124 @@
1
+ import AppConfig from '../configs/HextomCountdownTimerBar.js';
2
+
3
+ const config = {
4
+ tag: AppConfig.tag,
5
+ label: AppConfig.label,
6
+ icon: '<img class="gp-w-6 gp-border gp-border-[#494949] gp-rounded-[3px]" src="https://cdn.shopify.com/app-store/listing_images/904be13e4bba460880341eba1a5579e1/icon/CKCYtc2d5oYDEAE=.png">',
7
+ editorConfigs: {
8
+ component: {
9
+ isThirdParty: true
10
+ }
11
+ },
12
+ presets: [
13
+ {
14
+ id: AppConfig.id,
15
+ name: {
16
+ en: AppConfig.label
17
+ },
18
+ hideTextContent: true,
19
+ icon: {
20
+ desktop: `<div class="w-full flex flex-col items-center">
21
+ <img class="w-24 border border-dark-200 rounded-medium" src="https://cdn.shopify.com/app-store/listing_images/904be13e4bba460880341eba1a5579e1/icon/CKCYtc2d5oYDEAE=.png">
22
+ <span class="preset-item-title">Hextom: Countdown Timer Bar</span>
23
+ </div>`
24
+ },
25
+ components: [
26
+ {
27
+ tag: AppConfig.tag
28
+ }
29
+ ]
30
+ }
31
+ ],
32
+ settings: [
33
+ {
34
+ id: 'setting',
35
+ controls: [
36
+ {
37
+ id: 'appBlockId',
38
+ type: 'input',
39
+ default: ''
40
+ },
41
+ {
42
+ id: 'widgetType',
43
+ label: 'Choose widget',
44
+ type: 'select',
45
+ options: [
46
+ {
47
+ label: 'Fsb Custom Placement',
48
+ value: 'fsb-custom-placement'
49
+ }
50
+ ],
51
+ default: 'fsb-custom-placement'
52
+ },
53
+ {
54
+ id: 'install',
55
+ type: 'open-link',
56
+ target: '_blank',
57
+ linkType: 'install',
58
+ href: 'https://apps.shopify.com/event-promotion-bar?utm_source=gempages',
59
+ appName: AppConfig.label
60
+ },
61
+ {
62
+ id: 'openApp',
63
+ type: 'open-link',
64
+ target: '_blank',
65
+ linkType: 'openApp',
66
+ href: '',
67
+ appName: AppConfig.label
68
+ },
69
+ {
70
+ id: 'align',
71
+ label: 'Alignment',
72
+ type: 'segment',
73
+ options: [
74
+ {
75
+ label: 'Left',
76
+ value: 'left',
77
+ type: 'align'
78
+ },
79
+ {
80
+ label: 'Center',
81
+ value: 'center',
82
+ type: 'align'
83
+ },
84
+ {
85
+ label: 'Right',
86
+ value: 'right',
87
+ type: 'align'
88
+ }
89
+ ],
90
+ devices: {
91
+ desktop: {
92
+ default: 'left'
93
+ }
94
+ }
95
+ }
96
+ ]
97
+ }
98
+ ],
99
+ ui: [
100
+ {
101
+ type: 'control',
102
+ setting: {
103
+ id: 'install'
104
+ }
105
+ },
106
+ {
107
+ type: 'control',
108
+ setting: {
109
+ id: 'openApp'
110
+ }
111
+ },
112
+ {
113
+ type: 'control',
114
+ label: {
115
+ en: 'Align'
116
+ },
117
+ setting: {
118
+ id: 'align'
119
+ }
120
+ }
121
+ ]
122
+ };
123
+
124
+ export { config as default };
@@ -0,0 +1,124 @@
1
+ import AppConfig from '../configs/TrustBadgesBear.js';
2
+
3
+ const config = {
4
+ tag: AppConfig.tag,
5
+ label: AppConfig.label,
6
+ icon: '<img class="gp-w-6 gp-border gp-border-[#494949] gp-rounded-[3px]" src="https://cdn.shopify.com/app-store/listing_images/c9141bfba8db18a258f290a5a639986e/icon/CLDR_q6erfwCEAE=.png">',
7
+ editorConfigs: {
8
+ component: {
9
+ isThirdParty: true
10
+ }
11
+ },
12
+ presets: [
13
+ {
14
+ id: AppConfig.id,
15
+ name: {
16
+ en: AppConfig.label
17
+ },
18
+ hideTextContent: true,
19
+ icon: {
20
+ desktop: `<div class="w-full flex flex-col items-center">
21
+ <img class="w-24 border border-dark-200 rounded-medium" src="https://cdn.shopify.com/app-store/listing_images/c9141bfba8db18a258f290a5a639986e/icon/CLDR_q6erfwCEAE=.png">
22
+ <span class="preset-item-title">Trust Badges Bear</span>
23
+ </div>`
24
+ },
25
+ components: [
26
+ {
27
+ tag: AppConfig.tag
28
+ }
29
+ ]
30
+ }
31
+ ],
32
+ settings: [
33
+ {
34
+ id: 'setting',
35
+ controls: [
36
+ {
37
+ id: 'appBlockId',
38
+ type: 'input',
39
+ default: ''
40
+ },
41
+ {
42
+ id: 'widgetType',
43
+ label: 'Choose widget',
44
+ type: 'select',
45
+ options: [
46
+ {
47
+ label: 'Widget',
48
+ value: 'widget'
49
+ }
50
+ ],
51
+ default: 'widget'
52
+ },
53
+ {
54
+ id: 'install',
55
+ type: 'open-link',
56
+ target: '_blank',
57
+ linkType: 'install',
58
+ href: 'https://apps.shopify.com/ultimate-trust-badges?utm_source=gempages',
59
+ appName: AppConfig.label
60
+ },
61
+ {
62
+ id: 'openApp',
63
+ type: 'open-link',
64
+ target: '_blank',
65
+ linkType: 'openApp',
66
+ href: 'https://admin.shopify.com/?redirect=/apps/ultimate-trust-badge',
67
+ appName: AppConfig.label
68
+ },
69
+ {
70
+ id: 'align',
71
+ label: 'Alignment',
72
+ type: 'segment',
73
+ options: [
74
+ {
75
+ label: 'Left',
76
+ value: 'left',
77
+ type: 'align'
78
+ },
79
+ {
80
+ label: 'Center',
81
+ value: 'center',
82
+ type: 'align'
83
+ },
84
+ {
85
+ label: 'Right',
86
+ value: 'right',
87
+ type: 'align'
88
+ }
89
+ ],
90
+ devices: {
91
+ desktop: {
92
+ default: 'left'
93
+ }
94
+ }
95
+ }
96
+ ]
97
+ }
98
+ ],
99
+ ui: [
100
+ {
101
+ type: 'control',
102
+ setting: {
103
+ id: 'install'
104
+ }
105
+ },
106
+ {
107
+ type: 'control',
108
+ setting: {
109
+ id: 'openApp'
110
+ }
111
+ },
112
+ {
113
+ type: 'control',
114
+ label: {
115
+ en: 'Align'
116
+ },
117
+ setting: {
118
+ id: 'align'
119
+ }
120
+ }
121
+ ]
122
+ };
123
+
124
+ export { config as default };
@@ -1,207 +1,211 @@
1
- import config$W from './JudgemeReviews.js';
2
- import config$X from './LooxReviews.js';
3
- import config$Y from './Klaviyo.js';
4
- import config$Z from './YotpoLoyalty.js';
5
- import config$_ from './SmartSearchBarAndFilters.js';
6
- import config$$ from './Instafeed.js';
7
- import config$10 from './ProductReviews.js';
8
- import config$11 from './Ryviu.js';
9
- import config$12 from './Rivyo.js';
10
- import config$13 from './Vitals.js';
11
- import config$14 from './Omnisend.js';
12
- import config$15 from './Trustoo.js';
13
- import config$16 from './SealSubscriptions.js';
14
- import config$17 from './AppstleSubscriptions.js';
15
- import config$18 from './FeraReviews.js';
16
- import config$19 from './Growave.js';
17
- import config$1u from './PushOwl.js';
18
- import config$1a from './AliReviews.js';
19
- import config$1b from './Opinew.js';
20
- import config$1c from './UltimateSalesBoost.js';
21
- import config$1d from './FirePush.js';
22
- import config$1e from './ParcelPanel.js';
23
- import config$1f from './TrustMe.js';
24
- import config$1g from './FrequentlyBoughtTogether.js';
25
- import config$1h from './BoldSubscriptions.js';
26
- import config$1i from './BoldProductOptions.js';
27
- import config$1j from './WideBundle.js';
28
- import config$1k from './PickyStory.js';
29
- import config$1l from './InfiniteOptions.js';
30
- import config$1m from './Wiser.js';
31
- import config$1n from './Stamped.js';
32
- import config$1o from './Bundler.js';
33
- import config$1p from './LaiProductReviews.js';
34
- import config$1q from './CrossSellCartUpsell.js';
35
- import config$1r from './BoostAISearchDiscovery.js';
36
- import config$1s from './YotpoReviews.js';
37
- import config$1t from './KachingBundles.js';
38
- import config$V from './CleanSizeCharts.js';
39
- import config$1v from './Bogos.js';
40
- import config$U from './QikifyUpsell.js';
41
- import config$1w from './Releasit.js';
42
- import config$1x from './KingProductOptions.js';
43
- import config$T from './EasySellCOD.js';
44
- import config$1y from './RequestQuoteHidePrice.js';
45
- import config$1z from './BirdChime.js';
46
- import config$1A from './FordeerProductLabels.js';
47
- import config$S from './RechargeSubscriptions.js';
48
- import config$R from './KlarnaMessaging.js';
49
- import config$P from './EasifyProductOptions.js';
50
- import config$Q from './CustomProductOptionsVariant.js';
51
- import config$O from './ShopifySubscriptions.js';
52
- import config$N from './BonLoyaltyRewardsReferrals.js';
53
- import config$L from './RecurpaySubscriptionApp.js';
54
- import config$M from './SubifySubscriptionsApp.js';
55
- import config$K from './Selleasy.js';
56
- import config$J from './LoopSubscriptions.js';
57
- import config$I from './SkioSubscriptionsYcS20.js';
58
- import config$H from './ShopifyForms.js';
59
- import config$G from './NotifyBackInStockPreOrder.js';
60
- import config$E from './ReviewxpoProductReviewsApp.js';
61
- import config$F from './PumperBundlesVolumeDiscount.js';
62
- import config$C from './UnlimitedBundlesDiscounts.js';
63
- import config$B from './KiteFreeGiftDiscount.js';
64
- import config$A from './FastBundleBundlesDiscounts.js';
65
- import config$D from './SimpleBundlesKits.js';
66
- import config$z from './EasyBundleBuilderSkailama.js';
67
- import config$y from './KoalaBundleQuantityDiscount.js';
68
- import config$w from './PreorderNowPreOrderPq.js';
69
- import config$u from './FlyBundlesUpsellsFbt.js';
70
- import config$t from './JunipProductReviewsUgc.js';
71
- import config$x from './MaxbundleProductBundles.js';
72
- import config$v from './PreorderNowWodPresale.js';
73
- import config$s from './TagshopShoppableVideosUgc.js';
74
- import config$r from './WhatmoreShoppableVideosreel.js';
75
- import config$q from './TagembedSocialPostReview.js';
76
- import config$o from './ProductOptionsCustomizer.js';
77
- import config$p from './AirProductReviewsAppUgc.js';
78
- import config$n from './MbcBundleVolumeDiscount.js';
79
- import config$m from './GoogleReviewsByReputon.js';
80
- import config$k from './RapiBundleQuantityBreaks.js';
81
- import config$l from './AppointmentBookingCowlendar.js';
82
- import config$j from './SproutPlantTreesGrowSales.js';
83
- import config$i from './InstasellShoppableInstagram.js';
84
- import config$h from './WishlistPlus.js';
85
- import config$f from './LoloyalLoyaltyReferrals.js';
86
- import config$e from './HulkFormBuilder.js';
87
- import config$g from './PowerfulContactFormBuilder.js';
88
- import config$d from './WishlistKing.js';
89
- import config$c from './TeeinblueProductPersonalizer.js';
90
- import config$b from './GloboProductOptionsVariant.js';
91
- import config$7 from './DiscountyBulkDiscountSales.js';
92
- import config$4 from './PowrContactFormBuilder.js';
93
- import config$a from './ProductOptionsVariantOption.js';
94
- import config$9 from './BestBuyFulfillment.js';
95
- import config$8 from './AftershipEmailMarketingsms.js';
96
- import config$6 from './SegunoEmailMarketing.js';
97
- import config$5 from './SeoantTrustBadgesIcon.js';
98
- import config$2 from './TrustreviewsProductReviews.js';
99
- import config$3 from './MyappgurusProductReviews.js';
100
- import config$1 from './HulkProductOptions.js';
101
- import config from './TrustshopProductReviews.js';
1
+ import config$X from './JudgemeReviews.js';
2
+ import config$Y from './LooxReviews.js';
3
+ import config$Z from './Klaviyo.js';
4
+ import config$_ from './YotpoLoyalty.js';
5
+ import config$$ from './SmartSearchBarAndFilters.js';
6
+ import config$10 from './Instafeed.js';
7
+ import config$11 from './ProductReviews.js';
8
+ import config$12 from './Ryviu.js';
9
+ import config$13 from './Rivyo.js';
10
+ import config$14 from './Vitals.js';
11
+ import config$15 from './Omnisend.js';
12
+ import config$16 from './Trustoo.js';
13
+ import config$17 from './SealSubscriptions.js';
14
+ import config$18 from './AppstleSubscriptions.js';
15
+ import config$19 from './FeraReviews.js';
16
+ import config$1a from './Growave.js';
17
+ import config$1v from './PushOwl.js';
18
+ import config$1b from './AliReviews.js';
19
+ import config$1c from './Opinew.js';
20
+ import config$1d from './UltimateSalesBoost.js';
21
+ import config$1e from './FirePush.js';
22
+ import config$1f from './ParcelPanel.js';
23
+ import config$1g from './TrustMe.js';
24
+ import config$1h from './FrequentlyBoughtTogether.js';
25
+ import config$1i from './BoldSubscriptions.js';
26
+ import config$1j from './BoldProductOptions.js';
27
+ import config$1k from './WideBundle.js';
28
+ import config$1l from './PickyStory.js';
29
+ import config$1m from './InfiniteOptions.js';
30
+ import config$1n from './Wiser.js';
31
+ import config$1o from './Stamped.js';
32
+ import config$1p from './Bundler.js';
33
+ import config$1q from './LaiProductReviews.js';
34
+ import config$1r from './CrossSellCartUpsell.js';
35
+ import config$1s from './BoostAISearchDiscovery.js';
36
+ import config$1t from './YotpoReviews.js';
37
+ import config$1u from './KachingBundles.js';
38
+ import config$W from './CleanSizeCharts.js';
39
+ import config$1w from './Bogos.js';
40
+ import config$V from './QikifyUpsell.js';
41
+ import config$1x from './Releasit.js';
42
+ import config$1y from './KingProductOptions.js';
43
+ import config$U from './EasySellCOD.js';
44
+ import config$1z from './RequestQuoteHidePrice.js';
45
+ import config$1A from './BirdChime.js';
46
+ import config$1B from './FordeerProductLabels.js';
47
+ import config$T from './RechargeSubscriptions.js';
48
+ import config$S from './KlarnaMessaging.js';
49
+ import config$Q from './EasifyProductOptions.js';
50
+ import config$R from './CustomProductOptionsVariant.js';
51
+ import config$P from './ShopifySubscriptions.js';
52
+ import config$O from './BonLoyaltyRewardsReferrals.js';
53
+ import config$M from './RecurpaySubscriptionApp.js';
54
+ import config$N from './SubifySubscriptionsApp.js';
55
+ import config$L from './Selleasy.js';
56
+ import config$K from './LoopSubscriptions.js';
57
+ import config$J from './SkioSubscriptionsYcS20.js';
58
+ import config$I from './ShopifyForms.js';
59
+ import config$H from './NotifyBackInStockPreOrder.js';
60
+ import config$F from './ReviewxpoProductReviewsApp.js';
61
+ import config$G from './PumperBundlesVolumeDiscount.js';
62
+ import config$D from './UnlimitedBundlesDiscounts.js';
63
+ import config$C from './KiteFreeGiftDiscount.js';
64
+ import config$B from './FastBundleBundlesDiscounts.js';
65
+ import config$E from './SimpleBundlesKits.js';
66
+ import config$A from './EasyBundleBuilderSkailama.js';
67
+ import config$z from './KoalaBundleQuantityDiscount.js';
68
+ import config$x from './PreorderNowPreOrderPq.js';
69
+ import config$v from './FlyBundlesUpsellsFbt.js';
70
+ import config$u from './JunipProductReviewsUgc.js';
71
+ import config$y from './MaxbundleProductBundles.js';
72
+ import config$w from './PreorderNowWodPresale.js';
73
+ import config$t from './TagshopShoppableVideosUgc.js';
74
+ import config$s from './WhatmoreShoppableVideosreel.js';
75
+ import config$r from './TagembedSocialPostReview.js';
76
+ import config$p from './ProductOptionsCustomizer.js';
77
+ import config$q from './AirProductReviewsAppUgc.js';
78
+ import config$o from './MbcBundleVolumeDiscount.js';
79
+ import config$n from './GoogleReviewsByReputon.js';
80
+ import config$l from './RapiBundleQuantityBreaks.js';
81
+ import config$m from './AppointmentBookingCowlendar.js';
82
+ import config$k from './SproutPlantTreesGrowSales.js';
83
+ import config$j from './InstasellShoppableInstagram.js';
84
+ import config$i from './WishlistPlus.js';
85
+ import config$g from './LoloyalLoyaltyReferrals.js';
86
+ import config$f from './HulkFormBuilder.js';
87
+ import config$h from './PowerfulContactFormBuilder.js';
88
+ import config$e from './WishlistKing.js';
89
+ import config$d from './TeeinblueProductPersonalizer.js';
90
+ import config$c from './GloboProductOptionsVariant.js';
91
+ import config$8 from './DiscountyBulkDiscountSales.js';
92
+ import config$5 from './PowrContactFormBuilder.js';
93
+ import config$b from './ProductOptionsVariantOption.js';
94
+ import config$a from './BestBuyFulfillment.js';
95
+ import config$9 from './AftershipEmailMarketingsms.js';
96
+ import config$7 from './SegunoEmailMarketing.js';
97
+ import config$6 from './SeoantTrustBadgesIcon.js';
98
+ import config$3 from './TrustreviewsProductReviews.js';
99
+ import config$4 from './MyappgurusProductReviews.js';
100
+ import config$2 from './HulkProductOptions.js';
101
+ import config$1 from './TrustshopProductReviews.js';
102
+ import config from './HextomCountdownTimerBar.js';
103
+ import config$1C from './TrustBadgesBear.js';
102
104
 
103
105
  var index = {
104
- TrustshopProductReviews: config,
105
- HulkProductOptions: config$1,
106
- TrustreviewsProductReviews: config$2,
107
- MyappgurusProductReviews: config$3,
108
- PowrContactFormBuilder: config$4,
109
- SeoantTrustBadgesIcon: config$5,
110
- SegunoEmailMarketing: config$6,
111
- DiscountyBulkDiscountSales: config$7,
112
- AftershipEmailMarketingsms: config$8,
113
- BestBuyFulfillment: config$9,
114
- ProductOptionsVariantOption: config$a,
115
- GloboProductOptionsVariant: config$b,
116
- TeeinblueProductPersonalizer: config$c,
117
- WishlistKing: config$d,
118
- HulkFormBuilder: config$e,
119
- LoloyalLoyaltyReferrals: config$f,
120
- PowerfulContactFormBuilder: config$g,
121
- WishlistPlus: config$h,
122
- InstasellShoppableInstagram: config$i,
123
- SproutPlantTreesGrowSales: config$j,
124
- RapiBundleQuantityBreaks: config$k,
125
- AppointmentBookingCowlendar: config$l,
126
- GoogleReviewsByReputon: config$m,
127
- MbcBundleVolumeDiscount: config$n,
128
- ProductOptionsCustomizer: config$o,
129
- AirProductReviewsAppUgc: config$p,
130
- TagembedSocialPostReview: config$q,
131
- WhatmoreShoppableVideosreel: config$r,
132
- TagshopShoppableVideosUgc: config$s,
133
- JunipProductReviewsUgc: config$t,
134
- FlyBundlesUpsellsFbt: config$u,
135
- PreorderNowWodPresale: config$v,
136
- PreorderNowPreOrderPq: config$w,
137
- MaxbundleProductBundles: config$x,
138
- KoalaBundleQuantityDiscount: config$y,
139
- EasyBundleBuilderSkailama: config$z,
140
- FastBundleBundlesDiscounts: config$A,
141
- KiteFreeGiftDiscount: config$B,
142
- UnlimitedBundlesDiscounts: config$C,
143
- SimpleBundlesKits: config$D,
144
- ReviewxpoProductReviewsApp: config$E,
145
- PumperBundlesVolumeDiscount: config$F,
146
- NotifyBackInStockPreOrder: config$G,
147
- ShopifyForms: config$H,
148
- SkioSubscriptionsYcS20: config$I,
149
- LoopSubscriptions: config$J,
150
- Selleasy: config$K,
151
- RecurpaySubscriptionApp: config$L,
152
- SubifySubscriptionsApp: config$M,
153
- BonLoyaltyRewardsReferrals: config$N,
154
- ShopifySubscriptions: config$O,
155
- EasifyProductOptions: config$P,
156
- CustomProductOptionsVariant: config$Q,
157
- KlarnaMessaging: config$R,
158
- RechargeSubscriptions: config$S,
159
- EasySellCOD: config$T,
160
- QikifyUpsell: config$U,
161
- CleanSizeCharts: config$V,
162
- JudgemeReviews: config$W,
163
- LooxReviews: config$X,
164
- Klaviyo: config$Y,
165
- YotpoLoyalty: config$Z,
166
- SmartSearchBarAndFilters: config$_,
167
- Instafeed: config$$,
168
- ProductReviews: config$10,
169
- Ryviu: config$11,
170
- Rivyo: config$12,
171
- Vitals: config$13,
172
- Omnisend: config$14,
173
- Trustoo: config$15,
174
- SealSubscriptions: config$16,
175
- AppstleSubscriptions: config$17,
176
- FeraReviews: config$18,
177
- Growave: config$19,
178
- AliReviews: config$1a,
179
- Opinew: config$1b,
180
- UltimateSalesBoost: config$1c,
181
- FirePush: config$1d,
182
- ParcelPanel: config$1e,
183
- TrustMe: config$1f,
184
- FrequentlyBoughtTogether: config$1g,
185
- BoldSubscriptions: config$1h,
186
- BoldProductOptions: config$1i,
187
- WideBundle: config$1j,
188
- PickyStory: config$1k,
189
- InfiniteOptions: config$1l,
190
- Wiser: config$1m,
191
- Stamped: config$1n,
192
- Bundler: config$1o,
193
- LaiProductReviews: config$1p,
194
- CrossSellCartUpsell: config$1q,
195
- BoostAISearchDiscovery: config$1r,
196
- YotpoReviews: config$1s,
197
- KachingBundles: config$1t,
198
- PushOwl: config$1u,
199
- Bogos: config$1v,
200
- Releasit: config$1w,
201
- KingProductOptions: config$1x,
202
- RequestQuoteHidePrice: config$1y,
203
- BirdChime: config$1z,
204
- FordeerProductLabels: config$1A
106
+ HextomCountdownTimerBar: config,
107
+ TrustshopProductReviews: config$1,
108
+ HulkProductOptions: config$2,
109
+ TrustreviewsProductReviews: config$3,
110
+ MyappgurusProductReviews: config$4,
111
+ PowrContactFormBuilder: config$5,
112
+ SeoantTrustBadgesIcon: config$6,
113
+ SegunoEmailMarketing: config$7,
114
+ DiscountyBulkDiscountSales: config$8,
115
+ AftershipEmailMarketingsms: config$9,
116
+ BestBuyFulfillment: config$a,
117
+ ProductOptionsVariantOption: config$b,
118
+ GloboProductOptionsVariant: config$c,
119
+ TeeinblueProductPersonalizer: config$d,
120
+ WishlistKing: config$e,
121
+ HulkFormBuilder: config$f,
122
+ LoloyalLoyaltyReferrals: config$g,
123
+ PowerfulContactFormBuilder: config$h,
124
+ WishlistPlus: config$i,
125
+ InstasellShoppableInstagram: config$j,
126
+ SproutPlantTreesGrowSales: config$k,
127
+ RapiBundleQuantityBreaks: config$l,
128
+ AppointmentBookingCowlendar: config$m,
129
+ GoogleReviewsByReputon: config$n,
130
+ MbcBundleVolumeDiscount: config$o,
131
+ ProductOptionsCustomizer: config$p,
132
+ AirProductReviewsAppUgc: config$q,
133
+ TagembedSocialPostReview: config$r,
134
+ WhatmoreShoppableVideosreel: config$s,
135
+ TagshopShoppableVideosUgc: config$t,
136
+ JunipProductReviewsUgc: config$u,
137
+ FlyBundlesUpsellsFbt: config$v,
138
+ PreorderNowWodPresale: config$w,
139
+ PreorderNowPreOrderPq: config$x,
140
+ MaxbundleProductBundles: config$y,
141
+ KoalaBundleQuantityDiscount: config$z,
142
+ EasyBundleBuilderSkailama: config$A,
143
+ FastBundleBundlesDiscounts: config$B,
144
+ KiteFreeGiftDiscount: config$C,
145
+ UnlimitedBundlesDiscounts: config$D,
146
+ SimpleBundlesKits: config$E,
147
+ ReviewxpoProductReviewsApp: config$F,
148
+ PumperBundlesVolumeDiscount: config$G,
149
+ NotifyBackInStockPreOrder: config$H,
150
+ ShopifyForms: config$I,
151
+ SkioSubscriptionsYcS20: config$J,
152
+ LoopSubscriptions: config$K,
153
+ Selleasy: config$L,
154
+ RecurpaySubscriptionApp: config$M,
155
+ SubifySubscriptionsApp: config$N,
156
+ BonLoyaltyRewardsReferrals: config$O,
157
+ ShopifySubscriptions: config$P,
158
+ EasifyProductOptions: config$Q,
159
+ CustomProductOptionsVariant: config$R,
160
+ KlarnaMessaging: config$S,
161
+ RechargeSubscriptions: config$T,
162
+ EasySellCOD: config$U,
163
+ QikifyUpsell: config$V,
164
+ CleanSizeCharts: config$W,
165
+ JudgemeReviews: config$X,
166
+ LooxReviews: config$Y,
167
+ Klaviyo: config$Z,
168
+ YotpoLoyalty: config$_,
169
+ SmartSearchBarAndFilters: config$$,
170
+ Instafeed: config$10,
171
+ ProductReviews: config$11,
172
+ Ryviu: config$12,
173
+ Rivyo: config$13,
174
+ Vitals: config$14,
175
+ Omnisend: config$15,
176
+ Trustoo: config$16,
177
+ SealSubscriptions: config$17,
178
+ AppstleSubscriptions: config$18,
179
+ FeraReviews: config$19,
180
+ Growave: config$1a,
181
+ AliReviews: config$1b,
182
+ Opinew: config$1c,
183
+ UltimateSalesBoost: config$1d,
184
+ FirePush: config$1e,
185
+ ParcelPanel: config$1f,
186
+ TrustMe: config$1g,
187
+ FrequentlyBoughtTogether: config$1h,
188
+ BoldSubscriptions: config$1i,
189
+ BoldProductOptions: config$1j,
190
+ WideBundle: config$1k,
191
+ PickyStory: config$1l,
192
+ InfiniteOptions: config$1m,
193
+ Wiser: config$1n,
194
+ Stamped: config$1o,
195
+ Bundler: config$1p,
196
+ LaiProductReviews: config$1q,
197
+ CrossSellCartUpsell: config$1r,
198
+ BoostAISearchDiscovery: config$1s,
199
+ YotpoReviews: config$1t,
200
+ KachingBundles: config$1u,
201
+ PushOwl: config$1v,
202
+ Bogos: config$1w,
203
+ Releasit: config$1x,
204
+ KingProductOptions: config$1y,
205
+ RequestQuoteHidePrice: config$1z,
206
+ BirdChime: config$1A,
207
+ FordeerProductLabels: config$1B,
208
+ TrustBadgesBear: config$1C
205
209
  };
206
210
 
207
211
  export { index as default };