@gem-sdk/components 2.1.27-staging.2 → 2.1.27-staging.21

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 (68) hide show
  1. package/dist/cjs/article/components/ArticleList.js +1 -1
  2. package/dist/cjs/builder.js +3 -1
  3. package/dist/cjs/button/components/Button.liquid.js +3 -3
  4. package/dist/cjs/collection/components/CollectionPaginator.liquid.js +1 -1
  5. package/dist/cjs/collection/setting/CollectionPaginator.js +5 -0
  6. package/dist/cjs/helpers.js +26 -4
  7. package/dist/cjs/image/components/AdaptiveImage.js +4 -3
  8. package/dist/cjs/image/components/Image.js +2 -21
  9. package/dist/cjs/image/helpers/getSrcSet.js +2 -1
  10. package/dist/cjs/index.js +4 -0
  11. package/dist/cjs/index.liquid.js +2 -0
  12. package/dist/cjs/intersection-observer/useInView.js +2 -0
  13. package/dist/cjs/post-purchase/product/components/variants/Dropdown.js +1 -1
  14. package/dist/cjs/product/components/ProductButton.js +1 -1
  15. package/dist/cjs/product/components/ProductButton.liquid.js +21 -3
  16. package/dist/cjs/product/components/ProductList.liquid.js +4 -8
  17. package/dist/cjs/product/components/ProductTag.js +9 -1
  18. package/dist/cjs/text/components/Text.js +2 -1
  19. package/dist/cjs/text/components/Text.liquid.js +2 -2
  20. package/dist/cjs/text/components/common.js +14 -0
  21. package/dist/cjs/third-party/components/Bogos/BogosSampleContent.js +9 -10
  22. package/dist/cjs/third-party/components/EcoboostifyShoppableReelUgc.js +32 -0
  23. package/dist/cjs/third-party/components/EcoboostifyShoppableReelUgc.liquid.js +12 -0
  24. package/dist/cjs/third-party/components/RechargeSubscriptions.liquid.js +1 -1
  25. package/dist/cjs/third-party/components/Releasit.liquid.js +4 -2
  26. package/dist/cjs/third-party/configs/BoldProductOptions.js +2 -2
  27. package/dist/cjs/third-party/configs/EcoboostifyShoppableReelUgc.js +12 -0
  28. package/dist/cjs/third-party/next.js +5 -0
  29. package/dist/cjs/third-party/setting/EcoboostifyShoppableReelUgc.js +142 -0
  30. package/dist/cjs/third-party/setting/RechargeSubscriptions.js +5 -2
  31. package/dist/cjs/third-party/setting/Releasit.js +59 -2
  32. package/dist/cjs/third-party/setting/index.js +3 -1
  33. package/dist/esm/article/components/ArticleList.js +1 -1
  34. package/dist/esm/builder.js +3 -1
  35. package/dist/esm/button/components/Button.liquid.js +3 -3
  36. package/dist/esm/collection/components/CollectionPaginator.liquid.js +1 -1
  37. package/dist/esm/collection/setting/CollectionPaginator.js +5 -0
  38. package/dist/esm/helpers.js +25 -5
  39. package/dist/esm/image/components/AdaptiveImage.js +4 -3
  40. package/dist/esm/image/components/Image.js +2 -21
  41. package/dist/esm/image/helpers/getSrcSet.js +2 -1
  42. package/dist/esm/index.js +2 -1
  43. package/dist/esm/index.liquid.js +1 -0
  44. package/dist/esm/intersection-observer/useInView.js +2 -0
  45. package/dist/esm/post-purchase/product/components/variants/Dropdown.js +1 -1
  46. package/dist/esm/product/components/ProductButton.js +1 -1
  47. package/dist/esm/product/components/ProductButton.liquid.js +21 -3
  48. package/dist/esm/product/components/ProductList.liquid.js +4 -8
  49. package/dist/esm/product/components/ProductTag.js +10 -2
  50. package/dist/esm/text/components/Text.js +2 -1
  51. package/dist/esm/text/components/Text.liquid.js +2 -2
  52. package/dist/esm/text/components/common.js +12 -0
  53. package/dist/esm/third-party/components/Bogos/BogosSampleContent.js +10 -11
  54. package/dist/esm/third-party/components/EcoboostifyShoppableReelUgc.js +28 -0
  55. package/dist/esm/third-party/components/EcoboostifyShoppableReelUgc.liquid.js +8 -0
  56. package/dist/esm/third-party/components/RechargeSubscriptions.liquid.js +1 -1
  57. package/dist/esm/third-party/components/Releasit.liquid.js +4 -2
  58. package/dist/esm/third-party/configs/BoldProductOptions.js +2 -2
  59. package/dist/esm/third-party/configs/EcoboostifyShoppableReelUgc.js +8 -0
  60. package/dist/esm/third-party/next.js +5 -0
  61. package/dist/esm/third-party/setting/EcoboostifyShoppableReelUgc.js +138 -0
  62. package/dist/esm/third-party/setting/RechargeSubscriptions.js +5 -2
  63. package/dist/esm/third-party/setting/Releasit.js +59 -2
  64. package/dist/esm/third-party/setting/index.js +3 -1
  65. package/dist/types/index.d.ts +32 -3
  66. package/package.json +3 -3
  67. package/dist/cjs/image/components/NoDataImage.js +0 -133
  68. package/dist/esm/image/components/NoDataImage.js +0 -129
@@ -767,6 +767,7 @@ type CollectionPaginatorProps = BasePropsWrap<{
767
767
  normalColor?: ColorValueType;
768
768
  activeColor?: ColorValueType;
769
769
  align?: ObjectDevices<AlignProp>;
770
+ numberOfProducts?: number;
770
771
  }> & {
771
772
  pageContext?: PageContext;
772
773
  };
@@ -1577,6 +1578,8 @@ type ProductButtonProps = BasePropsWrap<{
1577
1578
  translate?: string;
1578
1579
  outOfStockLabel?: string;
1579
1580
  unavailableLabel?: string;
1581
+ labelUnavailableTranslate?: string;
1582
+ labelOutOfStockTranslate?: string;
1580
1583
  actionEffect?: 'open-cart-drawer' | 'buy-now' | 'continue-shopping' | 'go-to-url';
1581
1584
  customURL?: {
1582
1585
  link?: string;
@@ -2435,6 +2438,7 @@ declare const _default$r: {
2435
2438
  BfSizeChartSizeGuide: _gem_sdk_core.ComponentSetting<BfSizeChartSizeGuideProps>;
2436
2439
  AlsoBoughtCbb: _gem_sdk_core.ComponentSetting<AlsoBoughtCbbProps>;
2437
2440
  HextomFreeShippingBar: _gem_sdk_core.ComponentSetting<HextomFreeShippingBarProps>;
2441
+ EcoboostifyShoppableReelUgc: _gem_sdk_core.ComponentSetting<EcoboostifyShoppableReelUgcProps>;
2438
2442
  };
2439
2443
 
2440
2444
  type RechargeSubscriptionsProps = BaseProps<{
@@ -2872,6 +2876,10 @@ type ReleasitProps = BaseProps<{
2872
2876
  align?: ObjectDevices<AlignProp>;
2873
2877
  openApp?: any;
2874
2878
  install?: any;
2879
+ version?: 'v1' | 'v2';
2880
+ widgetTypeV2?: string;
2881
+ appBlockId?: string;
2882
+ productHandle?: string;
2875
2883
  }>;
2876
2884
  declare const Releasit$1: React.FC<ReleasitProps>;
2877
2885
 
@@ -3505,6 +3513,16 @@ type HextomFreeShippingBarProps = BaseProps<{
3505
3513
  }>;
3506
3514
  declare const HextomFreeShippingBar$1: React.FC<HextomFreeShippingBarProps>;
3507
3515
 
3516
+ type EcoboostifyShoppableReelUgcProps = BaseProps<{
3517
+ align?: ObjectDevices<AlignProp>;
3518
+ openApp?: any;
3519
+ install?: any;
3520
+ appBlockId?: string;
3521
+ widgetType?: string;
3522
+ playlistId?: string;
3523
+ }>;
3524
+ declare const EcoboostifyShoppableReelUgc$1: React.FC<EcoboostifyShoppableReelUgcProps>;
3525
+
3508
3526
  declare const _default$q: {
3509
3527
  InstantJudgemeReviews: _gem_sdk_core.ComponentSetting<InstantJudgemeReviewsProps>;
3510
3528
  InstantLooxReviews: _gem_sdk_core.ComponentSetting<InstantLooxReviewsProps>;
@@ -5137,6 +5155,7 @@ declare const _default$1: {
5137
5155
  InstantLooxReviews: React.ComponentType<InstantLooxReviewsProps>;
5138
5156
  InstantKlaviyo: React.ComponentType<InstantKlaviyoProps>;
5139
5157
  InstantYotpoLoyalty: React.ComponentType<InstantYotpoLoyaltyProps>;
5158
+ EcoboostifyShoppableReelUgc: React.ComponentType<EcoboostifyShoppableReelUgcProps>;
5140
5159
  EstimatedDeliveryDatePlus: React.ComponentType<EstimatedDeliveryDatePlusProps>;
5141
5160
  OkendoReviewsLoyalty: React.ComponentType<OkendoReviewsLoyaltyProps>;
5142
5161
  EssentialAnnouncementBar: React.ComponentType<EssentialAnnouncementBarProps>;
@@ -5395,10 +5414,11 @@ type ButtonLiquidProps = MixedProps & ButtonProps & {
5395
5414
  advanced?: any;
5396
5415
  pageContext?: PageContext;
5397
5416
  nodePrice?: string | null;
5417
+ isForceValue?: boolean;
5398
5418
  } & {
5399
5419
  dataId?: string;
5400
5420
  };
5401
- declare const Button: ({ className, builderProps, customAttrs, pageContext, setting, styles, style, wrapClassName, advanced, nodePrice, dataId, }: ButtonLiquidProps) => string;
5421
+ declare const Button: ({ className, builderProps, customAttrs, pageContext, setting, styles, style, wrapClassName, advanced, nodePrice, dataId, isForceValue, }: ButtonLiquidProps) => string;
5402
5422
 
5403
5423
  declare const Coupon: ({ setting, builderProps, builderAttrs, style, styles, advanced, pageContext, }: _gem_sdk_core.BaseProps<{
5404
5424
  copyContent?: string | undefined;
@@ -5650,6 +5670,8 @@ declare const ProductButton: ({ setting, builderProps, builderAttrs, style, styl
5650
5670
  translate?: string | undefined;
5651
5671
  outOfStockLabel?: string | undefined;
5652
5672
  unavailableLabel?: string | undefined;
5673
+ labelUnavailableTranslate?: string | undefined;
5674
+ labelOutOfStockTranslate?: string | undefined;
5653
5675
  actionEffect?: "buy-now" | "open-cart-drawer" | "continue-shopping" | "go-to-url" | undefined;
5654
5676
  customURL?: {
5655
5677
  link?: string | undefined;
@@ -6904,6 +6926,8 @@ declare const AlsoBoughtCbb: ({ setting, advanced }: AlsoBoughtCbbProps) => stri
6904
6926
 
6905
6927
  declare const HextomFreeShippingBar: ({ setting, advanced }: HextomFreeShippingBarProps) => string;
6906
6928
 
6929
+ declare const EcoboostifyShoppableReelUgc: ({ setting, advanced }: EcoboostifyShoppableReelUgcProps) => string;
6930
+
6907
6931
  declare const ImageComparison: ({ setting, styles, builderProps, advanced, ...props }: ImageComparisonProps) => string;
6908
6932
 
6909
6933
  declare const ThirdPartySlot: ({ setting, advanced }: ThirdPartySlotProps) => string;
@@ -7103,6 +7127,7 @@ declare const index_liquid_DynamicCheckout: typeof DynamicCheckout;
7103
7127
  declare const index_liquid_EasifyProductOptions: typeof EasifyProductOptions;
7104
7128
  declare const index_liquid_EasyBundleBuilderSkailama: typeof EasyBundleBuilderSkailama;
7105
7129
  declare const index_liquid_EasySellCOD: typeof EasySellCOD;
7130
+ declare const index_liquid_EcoboostifyShoppableReelUgc: typeof EcoboostifyShoppableReelUgc;
7106
7131
  declare const index_liquid_EssentialAnnouncementBar: typeof EssentialAnnouncementBar;
7107
7132
  declare const index_liquid_EssentialCountdownTimerBar: typeof EssentialCountdownTimerBar;
7108
7133
  declare const index_liquid_EstimateDate: typeof EstimateDate;
@@ -7293,6 +7318,7 @@ declare namespace index_liquid {
7293
7318
  index_liquid_EasifyProductOptions as EasifyProductOptions,
7294
7319
  index_liquid_EasyBundleBuilderSkailama as EasyBundleBuilderSkailama,
7295
7320
  index_liquid_EasySellCOD as EasySellCOD,
7321
+ index_liquid_EcoboostifyShoppableReelUgc as EcoboostifyShoppableReelUgc,
7296
7322
  index_liquid_EssentialAnnouncementBar as EssentialAnnouncementBar,
7297
7323
  index_liquid_EssentialCountdownTimerBar as EssentialCountdownTimerBar,
7298
7324
  index_liquid_EstimateDate as EstimateDate,
@@ -7780,6 +7806,7 @@ declare const _default: {
7780
7806
  BfSizeChartSizeGuide: React.FC<BfSizeChartSizeGuideProps>;
7781
7807
  AlsoBoughtCbb: React.FC<AlsoBoughtCbbProps>;
7782
7808
  HextomFreeShippingBar: React.FC<HextomFreeShippingBarProps>;
7809
+ EcoboostifyShoppableReelUgc: React.FC<EcoboostifyShoppableReelUgcProps>;
7783
7810
  };
7784
7811
 
7785
7812
  declare const ELEMENT_Z_INDEX: {
@@ -7809,7 +7836,7 @@ declare const isTransparentColor: (str?: string) => boolean;
7809
7836
  declare const isTransparentRGBA: (rgbStr: string) => boolean;
7810
7837
  declare const isHexTransparent: (hex: string) => boolean;
7811
7838
  declare const youtubeShortsRegex: RegExp;
7812
- declare const getDynamicSourceLocales: ({ val, uid, settingId, isLiquid, pageContext, isCapitalize, defaultVal, translate, isReplaceLocationOrigin, isReplaceInventoryQuantity, }: DynamicSource) => string | number | boolean | React.ReactElement<any, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode>;
7839
+ declare const getDynamicSourceLocales: ({ val, uid, settingId, isLiquid, pageContext, defaultVal, translate, isReplaceLocationOrigin, isReplaceInventoryQuantity, }: DynamicSource) => string | number | boolean | React.ReactElement<any, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode>;
7813
7840
  declare const getStaticLocale: (tag: string, key: string) => string;
7814
7841
  declare const getSettingPreloadData: (disabledValue: string, enabledValue?: string) => string;
7815
7842
  declare const getInsertLinkData: (defaultWrap: string, setting?: {
@@ -7822,5 +7849,7 @@ declare const getInsertLinkData: (defaultWrap: string, setting?: {
7822
7849
  shouldRenderLink: boolean;
7823
7850
  };
7824
7851
  declare const replaceLinkData: (text?: string, isTranslate?: boolean) => string | undefined;
7852
+ declare const getAllHrefFromString: (htmlString: string) => string[];
7853
+ declare const replaceAllHrefFromString: (htmlString: string, hrefs: string[]) => string;
7825
7854
 
7826
- export { Accordion$1 as Accordion, AccordionItem$1 as AccordionItem, AccordionItemProps, AccordionProps, AftershipEmailMarketingsms$1 as AftershipEmailMarketingsms, AftershipEmailMarketingsmsProps, AirProductReviewsAppUgc$1 as AirProductReviewsAppUgc, AirProductReviewsAppUgcProps, AliReviews$1 as AliReviews, AliReviewsProps, AlsoBoughtCbb$1 as AlsoBoughtCbb, AlsoBoughtCbbProps, AppointmentBookingCowlendar$1 as AppointmentBookingCowlendar, AppointmentBookingCowlendarProps, AppstleSubscriptions$1 as AppstleSubscriptions, AppstleSubscriptionsProps, ArticleAuthor$1 as ArticleAuthor, ArticleCategory$1 as ArticleCategory, ArticleContent$1 as ArticleContent, ArticleDate$1 as ArticleDate, ArticleExcerpt$1 as ArticleExcerpt, ArticleImage$1 as ArticleImage, ArticleList$1 as ArticleList, ArticlePagination$1 as ArticlePagination, ArticleReadMore$1 as ArticleReadMore, ArticleTag$1 as ArticleTag, ArticleTitle$1 as ArticleTitle, BgImage as BackgroundImage, BackgroundImageProps, BasicHeader, BestBuyFulfillment$1 as BestBuyFulfillment, BestBuyFulfillmentProps, BfSizeChartSizeGuide$1 as BfSizeChartSizeGuide, BfSizeChartSizeGuideProps, BirdChime$1 as BirdChime, BirdChimeProps, Bogos$1 as Bogos, BogosProps, BoldProductOptions$1 as BoldProductOptions, BoldProductOptionsProps, BoldSubscriptions$1 as BoldSubscriptions, BoldSubscriptionsProps, BonLoyaltyRewardsReferrals$1 as BonLoyaltyRewardsReferrals, BonLoyaltyRewardsReferralsProps, BoostAISearchDiscovery$1 as BoostAISearchDiscovery, BoostAISearchDiscoveryProps, Breadcrumb$1 as Breadcrumb, Breadcrumb$1 as BreadcrumbProps, Bundler$1 as Bundler, BundlerProps, Button$2 as Button, ButtonProps, CSSCode$1 as CSSCode, CSSCodeProps, Carousel$1 as Carousel, CarouselItem$1 as CarouselItem, CarouselItemProps, CarouselProps, CarouselSettings, CarouselStyles, Cart, CartCheckout, CartDiscount, CartLineAttribute, CartLineImage, CartLinePrice, CartLineVariant, CartList, CartOrderNote, CartProps, CartTotalItem, CartTotalPrice, CheckoutNow, CleanSizeChartProps, CleanSizeCharts$1 as CleanSizeCharts, Column$1 as Col, ColProps$1 as ColProps, CollectionBanner$1 as CollectionBanner, CollectionBannerProps, CollectionDescription$1 as CollectionDescription, CollectionDescriptionProps, CollectionPaginator$1 as CollectionPaginator, CollectionPaginatorProps, CollectionTitle$1 as CollectionTitle, CollectionTitleProps, CollectionToolbar$1 as CollectionToolbar, CollectionToolbarProps, ContactForm$1 as ContactForm, Countdown$1 as Countdown, CountdownProps, Coupon$1 as Coupon, CouponList, CouponProps, CrossSellCartUpsell$1 as CrossSellCartUpsell, CrossSellCartUpsellProps, CustomProductOptionsVariant$1 as CustomProductOptionsVariant, CustomProductOptionsVariantProps, DataVideoType, DesktopMenu, Dialog$1 as Dialog, DiscountInput, DiscountyBulkDiscountSales$1 as DiscountyBulkDiscountSales, DiscountyBulkDiscountSalesProps, DynamicCheckout$1 as DynamicCheckout, DynamicCheckoutProps, ELEMENT_Z_INDEX, EasifyProductOptions$1 as EasifyProductOptions, EasifyProductOptionsProps, EasyBundleBuilderSkailama$1 as EasyBundleBuilderSkailama, EasyBundleBuilderSkailamaProps, EasySell as EasySellCOD, EasySellProps, EssentialAnnouncementBar$1 as EssentialAnnouncementBar, EssentialAnnouncementBarProps, EssentialCountdownTimerBar$1 as EssentialCountdownTimerBar, EssentialCountdownTimerBarProps, EstimateDate$1 as EstimateDate, EstimateDateProps, EstimatedDeliveryDatePlus$1 as EstimatedDeliveryDatePlus, EstimatedDeliveryDatePlusProps, FastBundleBundlesDiscounts$1 as FastBundleBundlesDiscounts, FastBundleBundlesDiscountsProps, FeraReviews$1 as FeraReviews, FeraReviewsProps, FileUpload$1 as FileUpload, FileUploadProps, FirePush$1 as FirePush, FirePushProps, FlyBundlesUpsellsFbt$1 as FlyBundlesUpsellsFbt, FlyBundlesUpsellsFbtProps, FordeerProductLabels$1 as FordeerProductLabels, FordeerProductLabelsProps, FormCheckbox, FormCheckboxProps, FormDropdown$1 as FormDropdown, FormDropdownProps, FormEmail$1 as FormEmail, FormEmailProps, FormTextArea as FormTextarea, FrequentlyBoughtTogether$1 as FrequentlyBoughtTogether, FrequentlyBoughtTogetherProps, GloColorSwatchvariantImage$1 as GloColorSwatchvariantImage, GloColorSwatchvariantImageProps, GloboProductOptionsVariant$1 as GloboProductOptionsVariant, GloboProductOptionsVariantProps, GoogleReviewsByReputon$1 as GoogleReviewsByReputon, GoogleReviewsByReputonProps, Growave$1 as Growave, GrowaveProps, Header, HeaderProps, Heading$1 as Heading, HeadingProps, HeroBanner$1 as HeroBanner, HeroBannerProps, HextomCountdownTimerBar$1 as HextomCountdownTimerBar, HextomCountdownTimerBarProps, HextomFreeShippingBar$1 as HextomFreeShippingBar, HextomFreeShippingBarProps, HulkFormBuilder$1 as HulkFormBuilder, HulkFormBuilderProps, HulkProductOptions$1 as HulkProductOptions, HulkProductOptionsProps, Icon$1 as Icon, IconList$1 as IconList, IconListHoz$1 as IconListHoz, IconListHozItem, IconListHozProps, IconListItem$1 as IconListItem, IconListItemProps$3 as IconListItemProps, IconListProps$2 as IconListProps, IconListV2$1 as IconListV2, IconProps$1 as IconProps, Image$1 as Image, ImageComparison$1 as ImageComparison, ImageDetection, ImageDetectionProps, ImageProps, InfiniteOptions$1 as InfiniteOptions, InfiniteOptionsProps, Input, InputProps, Instafeed$1 as Instafeed, InstafeedProps, InstantJudgemeReviews, InstantJudgemeReviewsProps, InstantKlaviyo, InstantKlaviyoProps, InstantLooxReviews, InstantLooxReviewsProps, InstantYotpoLoyalty, InstantYotpoLoyaltyProps, InstasellShoppableInstagram$1 as InstasellShoppableInstagram, InstasellShoppableInstagramProps, JudgemeReviews$1 as JudgemeReviews, JudgemeReviewsProps, JunipProductReviewsUgc$1 as JunipProductReviewsUgc, JunipProductReviewsUgcProps, KachingBundles$1 as KachingBundles, KachingBundlesProps, KingProductOptions$1 as KingProductOptions, KingProductOptionsProps, KiteFreeGiftDiscount$1 as KiteFreeGiftDiscount, KiteFreeGiftDiscountProps, KlarnaMessaging$1 as KlarnaMessaging, KlarnaMessagingProps, Klaviyo$1 as Klaviyo, KlaviyoProps, KoalaBundleQuantityDiscount$1 as KoalaBundleQuantityDiscount, KoalaBundleQuantityDiscountProps, LaiProductReviews$1 as LaiProductReviews, LaiProductReviewsProps, Line$2 as Line, LineProps$1 as LineProps, Link, LinkProps$1 as LinkProps, LoloyalLoyaltyReferrals$1 as LoloyalLoyaltyReferrals, LoloyalLoyaltyReferralsProps, LoopSubscriptions$1 as LoopSubscriptions, LoopSubscriptionsProps, LooxReviews$1 as LooxReviews, LooxReviewsProps, Marquee$1 as Marquee, _default$2 as MarqueeItem, MarqueeItemProps, MarqueeProps, MaxbundleProductBundles$1 as MaxbundleProductBundles, MaxbundleProductBundlesProps, MbcBundleVolumeDiscount$1 as MbcBundleVolumeDiscount, MbcBundleVolumeDiscountProps, Menu, MenuProps, MobileMenu, Modal, ModernHeader, MyappgurusProductReviews$1 as MyappgurusProductReviews, MyappgurusProductReviewsProps, Newsletter$1 as Newsletter, NewsletterProps, Notify as Notice, NotificationAPI, NotificationConfig, NotifyBackInStockPreOrder$1 as NotifyBackInStockPreOrder, NotifyBackInStockPreOrderProps, OkendoReviewsLoyalty$1 as OkendoReviewsLoyalty, OkendoReviewsLoyaltyProps, Omnisend$1 as Omnisend, OmnisendProps, Opinew$1 as Opinew, OpinewProps, Pagination, PaginationProps, ParcelPanel$1 as ParcelPanel, ParcelPanelProps, PickyStory$1 as PickyStory, PickyStoryProps, PostPurchaseAcceptButton, PostPurchaseAcceptButtonProps, PostPurchaseAdvancedList, PostPurchaseAdvancedListItem, PostPurchaseAdvancedListProps, Button$1 as PostPurchaseButton, PostPurchaseButtonProps, CalloutBox as PostPurchaseCalloutBox, CalloutText as PostPurchaseCalloutText, PostPurchaseCountdownTimer, PostPurchaseHeading, PostPurchaseImage, PostPurchaseImageProps, Line$1 as PostPurchaseLine, PostPurchaseLineProps, PostPurchaseProductDescription, PostPurchaseProductDescriptionProps, PostPurchaseProductDiscountTag, PostPurchaseProductDiscountTagProps, PostPurchaseProductImages, PostPurchaseProductImagesProps, PostPurchaseProductOffer, PostPurchaseProductOfferProps, PostPurchaseProductPrice, PostPurchaseProductPriceBreakdown, PostPurchaseProductPriceBreakdownProps, PostPurchaseProductPriceProps, PostPurchaseProductQuantity, PostPurchaseProductQuantityProps, PostPurchaseProductTitle, PostPurchaseProductTitleProps, PostPurchaseProductVariants, PostPurchaseProductVariantsProps, Text$1 as PostPurchaseText, PostPurchaseTextProps, PowerfulContactFormBuilder$1 as PowerfulContactFormBuilder, PowerfulContactFormBuilderProps, PowrContactFormBuilder$1 as PowrContactFormBuilder, PowrContactFormBuilderProps, PreorderNowPreOrderPq$1 as PreorderNowPreOrderPq, PreorderNowPreOrderPqProps, PreorderNowWodPresale$1 as PreorderNowWodPresale, PreorderNowWodPresaleProps, Product$1 as Product, ProductBadge$1 as ProductBadge, ProductBadgeProps, ProductBundleDiscount$1 as ProductBundleDiscount, ProductBundleDiscountItem$1 as ProductBundleDiscountItem, ProductButton$1 as ProductButton, ProductButtonProps, ProductDescription$1 as ProductDescription, ProductDescriptionProps, ProductImages$2 as ProductImages, ProductImagesProps, ProductImagesV2, ProductList$1 as ProductList, ProductList$1 as ProductListProps, ProductOptionsCustomizer$1 as ProductOptionsCustomizer, ProductOptionsCustomizerProps, ProductOptionsVariantOption$1 as ProductOptionsVariantOption, ProductOptionsVariantOptionProps, ProductPrice$1 as ProductPrice, ProductPriceProps, ProductPropertiesProps, ProductProperties$1 as ProductPropertyInput, ProductProps, ProductQuantity$1 as ProductQuantity, ProductQuantityBreakItemProps, ProductQuantityBreakProps, ProductQuantityProps, QuickView as ProductQuickView, ProductReviews$1 as ProductReviews, ProductReviewsProps, ProductSku$1 as ProductSku, ProductTag$1 as ProductTag, ProductTagProps, ProductTitle$1 as ProductTitle, ProductTitleProps, ProductVariants$1 as ProductVariants, ProductVariantsProps, ProductVendor$1 as ProductVendor, ProductViewMore$1 as ProductViewMore, ProductViewMoreProps, PumperBundlesVolumeDiscount$1 as PumperBundlesVolumeDiscount, PumperBundlesVolumeDiscountProps, PushOwl$1 as PushOwl, PushOwlProps, QikifyUpsell$1 as QikifyUpsell, QikifyUpsellProps, Radio, RadioProps, RapiBundleQuantityBreaks$1 as RapiBundleQuantityBreaks, RapiBundleQuantityBreaksProps, RechargeSubscriptions$1 as RechargeSubscriptions, RechargeSubscriptionsProps, RecurpaySubscriptionApp$1 as RecurpaySubscriptionApp, RecurpaySubscriptionAppProps, Releasit$1 as Releasit, ReleasitProps, RequestQuoteHidePrice$1 as RequestQuoteHidePrice, RequestQuoteHidePriceProps, ReviewxpoProductReviewsApp$1 as ReviewxpoProductReviewsApp, ReviewxpoProductReviewsAppProps, Rivyo$1 as Rivyo, RivyoProps, Root$1 as Root, RootProps$1 as RootProps, Row$1 as Row, RowProps$1 as RowProps, Ryviu$1 as Ryviu, RyviuProps, SealSubscriptions$1 as SealSubscriptions, SealSubscriptionsProps, Section$1 as Section, SegunoEmailMarketing$1 as SegunoEmailMarketing, SegunoEmailMarketingProps, Select, SelectProps, Selleasy$1 as Selleasy, SelleasyProps, SeoantTrustBadgesIcon$1 as SeoantTrustBadgesIcon, SeoantTrustBadgesIconProps, ShopPayButton$1 as ShopPayButton, ShopPayButtonProps, ShopifyForms$1 as ShopifyForms, ShopifyFormsProps, ShopifySubscriptions$1 as ShopifySubscriptions, ShopifySubscriptionsProps, SimpleBundlesKits$1 as SimpleBundlesKits, SimpleBundlesKitsProps, SkioSubscriptionsYcS20$1 as SkioSubscriptionsYcS20, SkioSubscriptionsYcS20Props, SkuProps, SmartSearchBarAndFilters$1 as SmartSearchBarAndFilters, SmartSearchBarAndFiltersProps, SproutPlantTreesGrowSales$1 as SproutPlantTreesGrowSales, SproutPlantTreesGrowSalesProps, Stamped$1 as Stamped, StampedProps, StellarDeliveryDatePickup$1 as StellarDeliveryDatePickup, StellarDeliveryDatePickupProps, Sticky$1 as Sticky, StickyProps, StockCounter$1 as StockCounter, StockCounterProps, SubifySubscriptionsApp$1 as SubifySubscriptionsApp, SubifySubscriptionsAppProps, SubmitButton$1 as SubmitButton, SubmitButtonProps, TabItem$1 as TabItem, TabItemProps, Tabs$1 as Tabs, TabsProps, TagembedSocialPostReview$1 as TagembedSocialPostReview, TagembedSocialPostReviewProps, TagshopShoppableVideosUgc$1 as TagshopShoppableVideosUgc, TagshopShoppableVideosUgcProps, TeeinblueProductPersonalizer$1 as TeeinblueProductPersonalizer, TeeinblueProductPersonalizerProps, Text$2 as Text, TextAreaProps, TextField$1 as TextField, TextFieldProps, TextProps$1 as TextProps, TextArea as Textarea, TextareaProps, ThirdPartySlot$1 as ThirdPartySlot, TrustBadgesBear$1 as TrustBadgesBear, TrustBadgesBearProps, TrustMe$1 as TrustMe, TrustMeProps, TrustedsiteTrustBadges$1 as TrustedsiteTrustBadges, TrustedsiteTrustBadgesProps, Trustoo$1 as Trustoo, TrustooProps, TrustreviewsProductReviews$1 as TrustreviewsProductReviews, TrustreviewsProductReviewsProps, TrustshopProductReviews$1 as TrustshopProductReviews, TrustshopProductReviewsProps, UltimateSalesBoost$1 as UltimateSalesBoost, UltimateSalesBoostProps, UnlimitedBundlesDiscounts$1 as UnlimitedBundlesDiscounts, UnlimitedBundlesDiscountsProps, VendorProps, Video$1 as Video, Vitals$1 as Vitals, VitalsProps, WhatmoreShoppableVideosreel$1 as WhatmoreShoppableVideosreel, WhatmoreShoppableVideosreelProps, WideBundle$1 as WideBundle, WideBundleProps, Wiser$1 as Wiser, WiserProps, WishlistKing$1 as WishlistKing, WishlistKingProps, WishlistPlus$1 as WishlistPlus, WishlistPlusProps, YotpoLoyalty, YotpoLoyaltyProps, YotpoReviews$1 as YotpoReviews, YotpoReviewsProps, _default$R as accordionSetting, _default$4 as articleListSetting, _default$p as bannerSetting, _default$Q as breadcrumbSetting, _default as builderComponent, _default$P as buttonSetting, _default$N as carouselSetting, _default$K as cartSetting, _default$n as codeSetting, _default$J as collectionSetting, _default$j as contactFormSetting, convertSizeToWidth, _default$I as countdownSetting, _default$O as couponSetting, _default$k as dialogSetting, _default$5 as estimateDeliverySetting, getDynamicSourceLocales, getInsertLinkData, getSettingPreloadData, getStaticLocale, _default$L as gridSetting, _default$G as headerSetting, _default$H as headingSetting, _default$m as iconListHozSetting, _default$o as iconListSetting, _default$e as iconListSettingV2, _default$F as iconSetting, _default$h as imageComparisonSetting, _default$i as imageDetectionSetting, _default$M as imageSetting, _default$E as inputSetting, isHexTransparent, isTransparentColor, isTransparentRGBA, _default$D as lineSetting, _default$C as linkSetting, index_liquid as liquidComponents, _default$3 as marqueeSetting, _default$s as menuSetting, _default$B as modalSetting, _default$1 as nextComponent, openConfirm, _default$A as paginationSetting, _default$7 as postPurchaseAdvancedListSetting, _default$b as postPurchaseButtonSetting, _default$9 as postPurchaseCalloutBoxSetting, _default$6 as postPurchaseCountdownTimerSetting, _default$c as postPurchaseImageSetting, _default$8 as postPurchaseLineSetting, postPurchaseProduct1Col, postPurchaseProduct2Col, postPurchaseProductDefault, _default$a as postPurchaseProductSetting, _default$d as postPurchaseTextSetting, _default$z as productSetting, _default$x as radioSetting, replaceLinkData, _default$w as selectSetting, _default$f as stickySetting, _default$l as stockCounterSetting, _default$v as tabSetting, _default$y as textSetting, _default$u as textareaSetting, _default$q as thirdPartyInstantSetting, _default$r as thirdPartySetting, _default$g as thirdPartySlotSetting, transformHighlighTag, transformNumberTag, useInView, useNotification, _default$t as videoSetting, youtubeShortsRegex };
7855
+ export { Accordion$1 as Accordion, AccordionItem$1 as AccordionItem, AccordionItemProps, AccordionProps, AftershipEmailMarketingsms$1 as AftershipEmailMarketingsms, AftershipEmailMarketingsmsProps, AirProductReviewsAppUgc$1 as AirProductReviewsAppUgc, AirProductReviewsAppUgcProps, AliReviews$1 as AliReviews, AliReviewsProps, AlsoBoughtCbb$1 as AlsoBoughtCbb, AlsoBoughtCbbProps, AppointmentBookingCowlendar$1 as AppointmentBookingCowlendar, AppointmentBookingCowlendarProps, AppstleSubscriptions$1 as AppstleSubscriptions, AppstleSubscriptionsProps, ArticleAuthor$1 as ArticleAuthor, ArticleCategory$1 as ArticleCategory, ArticleContent$1 as ArticleContent, ArticleDate$1 as ArticleDate, ArticleExcerpt$1 as ArticleExcerpt, ArticleImage$1 as ArticleImage, ArticleList$1 as ArticleList, ArticlePagination$1 as ArticlePagination, ArticleReadMore$1 as ArticleReadMore, ArticleTag$1 as ArticleTag, ArticleTitle$1 as ArticleTitle, BgImage as BackgroundImage, BackgroundImageProps, BasicHeader, BestBuyFulfillment$1 as BestBuyFulfillment, BestBuyFulfillmentProps, BfSizeChartSizeGuide$1 as BfSizeChartSizeGuide, BfSizeChartSizeGuideProps, BirdChime$1 as BirdChime, BirdChimeProps, Bogos$1 as Bogos, BogosProps, BoldProductOptions$1 as BoldProductOptions, BoldProductOptionsProps, BoldSubscriptions$1 as BoldSubscriptions, BoldSubscriptionsProps, BonLoyaltyRewardsReferrals$1 as BonLoyaltyRewardsReferrals, BonLoyaltyRewardsReferralsProps, BoostAISearchDiscovery$1 as BoostAISearchDiscovery, BoostAISearchDiscoveryProps, Breadcrumb$1 as Breadcrumb, Breadcrumb$1 as BreadcrumbProps, Bundler$1 as Bundler, BundlerProps, Button$2 as Button, ButtonProps, CSSCode$1 as CSSCode, CSSCodeProps, Carousel$1 as Carousel, CarouselItem$1 as CarouselItem, CarouselItemProps, CarouselProps, CarouselSettings, CarouselStyles, Cart, CartCheckout, CartDiscount, CartLineAttribute, CartLineImage, CartLinePrice, CartLineVariant, CartList, CartOrderNote, CartProps, CartTotalItem, CartTotalPrice, CheckoutNow, CleanSizeChartProps, CleanSizeCharts$1 as CleanSizeCharts, Column$1 as Col, ColProps$1 as ColProps, CollectionBanner$1 as CollectionBanner, CollectionBannerProps, CollectionDescription$1 as CollectionDescription, CollectionDescriptionProps, CollectionPaginator$1 as CollectionPaginator, CollectionPaginatorProps, CollectionTitle$1 as CollectionTitle, CollectionTitleProps, CollectionToolbar$1 as CollectionToolbar, CollectionToolbarProps, ContactForm$1 as ContactForm, Countdown$1 as Countdown, CountdownProps, Coupon$1 as Coupon, CouponList, CouponProps, CrossSellCartUpsell$1 as CrossSellCartUpsell, CrossSellCartUpsellProps, CustomProductOptionsVariant$1 as CustomProductOptionsVariant, CustomProductOptionsVariantProps, DataVideoType, DesktopMenu, Dialog$1 as Dialog, DiscountInput, DiscountyBulkDiscountSales$1 as DiscountyBulkDiscountSales, DiscountyBulkDiscountSalesProps, DynamicCheckout$1 as DynamicCheckout, DynamicCheckoutProps, ELEMENT_Z_INDEX, EasifyProductOptions$1 as EasifyProductOptions, EasifyProductOptionsProps, EasyBundleBuilderSkailama$1 as EasyBundleBuilderSkailama, EasyBundleBuilderSkailamaProps, EasySell as EasySellCOD, EasySellProps, EcoboostifyShoppableReelUgc$1 as EcoboostifyShoppableReelUgc, EcoboostifyShoppableReelUgcProps, EssentialAnnouncementBar$1 as EssentialAnnouncementBar, EssentialAnnouncementBarProps, EssentialCountdownTimerBar$1 as EssentialCountdownTimerBar, EssentialCountdownTimerBarProps, EstimateDate$1 as EstimateDate, EstimateDateProps, EstimatedDeliveryDatePlus$1 as EstimatedDeliveryDatePlus, EstimatedDeliveryDatePlusProps, FastBundleBundlesDiscounts$1 as FastBundleBundlesDiscounts, FastBundleBundlesDiscountsProps, FeraReviews$1 as FeraReviews, FeraReviewsProps, FileUpload$1 as FileUpload, FileUploadProps, FirePush$1 as FirePush, FirePushProps, FlyBundlesUpsellsFbt$1 as FlyBundlesUpsellsFbt, FlyBundlesUpsellsFbtProps, FordeerProductLabels$1 as FordeerProductLabels, FordeerProductLabelsProps, FormCheckbox, FormCheckboxProps, FormDropdown$1 as FormDropdown, FormDropdownProps, FormEmail$1 as FormEmail, FormEmailProps, FormTextArea as FormTextarea, FrequentlyBoughtTogether$1 as FrequentlyBoughtTogether, FrequentlyBoughtTogetherProps, GloColorSwatchvariantImage$1 as GloColorSwatchvariantImage, GloColorSwatchvariantImageProps, GloboProductOptionsVariant$1 as GloboProductOptionsVariant, GloboProductOptionsVariantProps, GoogleReviewsByReputon$1 as GoogleReviewsByReputon, GoogleReviewsByReputonProps, Growave$1 as Growave, GrowaveProps, Header, HeaderProps, Heading$1 as Heading, HeadingProps, HeroBanner$1 as HeroBanner, HeroBannerProps, HextomCountdownTimerBar$1 as HextomCountdownTimerBar, HextomCountdownTimerBarProps, HextomFreeShippingBar$1 as HextomFreeShippingBar, HextomFreeShippingBarProps, HulkFormBuilder$1 as HulkFormBuilder, HulkFormBuilderProps, HulkProductOptions$1 as HulkProductOptions, HulkProductOptionsProps, Icon$1 as Icon, IconList$1 as IconList, IconListHoz$1 as IconListHoz, IconListHozItem, IconListHozProps, IconListItem$1 as IconListItem, IconListItemProps$3 as IconListItemProps, IconListProps$2 as IconListProps, IconListV2$1 as IconListV2, IconProps$1 as IconProps, Image$1 as Image, ImageComparison$1 as ImageComparison, ImageDetection, ImageDetectionProps, ImageProps, InfiniteOptions$1 as InfiniteOptions, InfiniteOptionsProps, Input, InputProps, Instafeed$1 as Instafeed, InstafeedProps, InstantJudgemeReviews, InstantJudgemeReviewsProps, InstantKlaviyo, InstantKlaviyoProps, InstantLooxReviews, InstantLooxReviewsProps, InstantYotpoLoyalty, InstantYotpoLoyaltyProps, InstasellShoppableInstagram$1 as InstasellShoppableInstagram, InstasellShoppableInstagramProps, JudgemeReviews$1 as JudgemeReviews, JudgemeReviewsProps, JunipProductReviewsUgc$1 as JunipProductReviewsUgc, JunipProductReviewsUgcProps, KachingBundles$1 as KachingBundles, KachingBundlesProps, KingProductOptions$1 as KingProductOptions, KingProductOptionsProps, KiteFreeGiftDiscount$1 as KiteFreeGiftDiscount, KiteFreeGiftDiscountProps, KlarnaMessaging$1 as KlarnaMessaging, KlarnaMessagingProps, Klaviyo$1 as Klaviyo, KlaviyoProps, KoalaBundleQuantityDiscount$1 as KoalaBundleQuantityDiscount, KoalaBundleQuantityDiscountProps, LaiProductReviews$1 as LaiProductReviews, LaiProductReviewsProps, Line$2 as Line, LineProps$1 as LineProps, Link, LinkProps$1 as LinkProps, LoloyalLoyaltyReferrals$1 as LoloyalLoyaltyReferrals, LoloyalLoyaltyReferralsProps, LoopSubscriptions$1 as LoopSubscriptions, LoopSubscriptionsProps, LooxReviews$1 as LooxReviews, LooxReviewsProps, Marquee$1 as Marquee, _default$2 as MarqueeItem, MarqueeItemProps, MarqueeProps, MaxbundleProductBundles$1 as MaxbundleProductBundles, MaxbundleProductBundlesProps, MbcBundleVolumeDiscount$1 as MbcBundleVolumeDiscount, MbcBundleVolumeDiscountProps, Menu, MenuProps, MobileMenu, Modal, ModernHeader, MyappgurusProductReviews$1 as MyappgurusProductReviews, MyappgurusProductReviewsProps, Newsletter$1 as Newsletter, NewsletterProps, Notify as Notice, NotificationAPI, NotificationConfig, NotifyBackInStockPreOrder$1 as NotifyBackInStockPreOrder, NotifyBackInStockPreOrderProps, OkendoReviewsLoyalty$1 as OkendoReviewsLoyalty, OkendoReviewsLoyaltyProps, Omnisend$1 as Omnisend, OmnisendProps, Opinew$1 as Opinew, OpinewProps, Pagination, PaginationProps, ParcelPanel$1 as ParcelPanel, ParcelPanelProps, PickyStory$1 as PickyStory, PickyStoryProps, PostPurchaseAcceptButton, PostPurchaseAcceptButtonProps, PostPurchaseAdvancedList, PostPurchaseAdvancedListItem, PostPurchaseAdvancedListProps, Button$1 as PostPurchaseButton, PostPurchaseButtonProps, CalloutBox as PostPurchaseCalloutBox, CalloutText as PostPurchaseCalloutText, PostPurchaseCountdownTimer, PostPurchaseHeading, PostPurchaseImage, PostPurchaseImageProps, Line$1 as PostPurchaseLine, PostPurchaseLineProps, PostPurchaseProductDescription, PostPurchaseProductDescriptionProps, PostPurchaseProductDiscountTag, PostPurchaseProductDiscountTagProps, PostPurchaseProductImages, PostPurchaseProductImagesProps, PostPurchaseProductOffer, PostPurchaseProductOfferProps, PostPurchaseProductPrice, PostPurchaseProductPriceBreakdown, PostPurchaseProductPriceBreakdownProps, PostPurchaseProductPriceProps, PostPurchaseProductQuantity, PostPurchaseProductQuantityProps, PostPurchaseProductTitle, PostPurchaseProductTitleProps, PostPurchaseProductVariants, PostPurchaseProductVariantsProps, Text$1 as PostPurchaseText, PostPurchaseTextProps, PowerfulContactFormBuilder$1 as PowerfulContactFormBuilder, PowerfulContactFormBuilderProps, PowrContactFormBuilder$1 as PowrContactFormBuilder, PowrContactFormBuilderProps, PreorderNowPreOrderPq$1 as PreorderNowPreOrderPq, PreorderNowPreOrderPqProps, PreorderNowWodPresale$1 as PreorderNowWodPresale, PreorderNowWodPresaleProps, Product$1 as Product, ProductBadge$1 as ProductBadge, ProductBadgeProps, ProductBundleDiscount$1 as ProductBundleDiscount, ProductBundleDiscountItem$1 as ProductBundleDiscountItem, ProductButton$1 as ProductButton, ProductButtonProps, ProductDescription$1 as ProductDescription, ProductDescriptionProps, ProductImages$2 as ProductImages, ProductImagesProps, ProductImagesV2, ProductList$1 as ProductList, ProductList$1 as ProductListProps, ProductOptionsCustomizer$1 as ProductOptionsCustomizer, ProductOptionsCustomizerProps, ProductOptionsVariantOption$1 as ProductOptionsVariantOption, ProductOptionsVariantOptionProps, ProductPrice$1 as ProductPrice, ProductPriceProps, ProductPropertiesProps, ProductProperties$1 as ProductPropertyInput, ProductProps, ProductQuantity$1 as ProductQuantity, ProductQuantityBreakItemProps, ProductQuantityBreakProps, ProductQuantityProps, QuickView as ProductQuickView, ProductReviews$1 as ProductReviews, ProductReviewsProps, ProductSku$1 as ProductSku, ProductTag$1 as ProductTag, ProductTagProps, ProductTitle$1 as ProductTitle, ProductTitleProps, ProductVariants$1 as ProductVariants, ProductVariantsProps, ProductVendor$1 as ProductVendor, ProductViewMore$1 as ProductViewMore, ProductViewMoreProps, PumperBundlesVolumeDiscount$1 as PumperBundlesVolumeDiscount, PumperBundlesVolumeDiscountProps, PushOwl$1 as PushOwl, PushOwlProps, QikifyUpsell$1 as QikifyUpsell, QikifyUpsellProps, Radio, RadioProps, RapiBundleQuantityBreaks$1 as RapiBundleQuantityBreaks, RapiBundleQuantityBreaksProps, RechargeSubscriptions$1 as RechargeSubscriptions, RechargeSubscriptionsProps, RecurpaySubscriptionApp$1 as RecurpaySubscriptionApp, RecurpaySubscriptionAppProps, Releasit$1 as Releasit, ReleasitProps, RequestQuoteHidePrice$1 as RequestQuoteHidePrice, RequestQuoteHidePriceProps, ReviewxpoProductReviewsApp$1 as ReviewxpoProductReviewsApp, ReviewxpoProductReviewsAppProps, Rivyo$1 as Rivyo, RivyoProps, Root$1 as Root, RootProps$1 as RootProps, Row$1 as Row, RowProps$1 as RowProps, Ryviu$1 as Ryviu, RyviuProps, SealSubscriptions$1 as SealSubscriptions, SealSubscriptionsProps, Section$1 as Section, SegunoEmailMarketing$1 as SegunoEmailMarketing, SegunoEmailMarketingProps, Select, SelectProps, Selleasy$1 as Selleasy, SelleasyProps, SeoantTrustBadgesIcon$1 as SeoantTrustBadgesIcon, SeoantTrustBadgesIconProps, ShopPayButton$1 as ShopPayButton, ShopPayButtonProps, ShopifyForms$1 as ShopifyForms, ShopifyFormsProps, ShopifySubscriptions$1 as ShopifySubscriptions, ShopifySubscriptionsProps, SimpleBundlesKits$1 as SimpleBundlesKits, SimpleBundlesKitsProps, SkioSubscriptionsYcS20$1 as SkioSubscriptionsYcS20, SkioSubscriptionsYcS20Props, SkuProps, SmartSearchBarAndFilters$1 as SmartSearchBarAndFilters, SmartSearchBarAndFiltersProps, SproutPlantTreesGrowSales$1 as SproutPlantTreesGrowSales, SproutPlantTreesGrowSalesProps, Stamped$1 as Stamped, StampedProps, StellarDeliveryDatePickup$1 as StellarDeliveryDatePickup, StellarDeliveryDatePickupProps, Sticky$1 as Sticky, StickyProps, StockCounter$1 as StockCounter, StockCounterProps, SubifySubscriptionsApp$1 as SubifySubscriptionsApp, SubifySubscriptionsAppProps, SubmitButton$1 as SubmitButton, SubmitButtonProps, TabItem$1 as TabItem, TabItemProps, Tabs$1 as Tabs, TabsProps, TagembedSocialPostReview$1 as TagembedSocialPostReview, TagembedSocialPostReviewProps, TagshopShoppableVideosUgc$1 as TagshopShoppableVideosUgc, TagshopShoppableVideosUgcProps, TeeinblueProductPersonalizer$1 as TeeinblueProductPersonalizer, TeeinblueProductPersonalizerProps, Text$2 as Text, TextAreaProps, TextField$1 as TextField, TextFieldProps, TextProps$1 as TextProps, TextArea as Textarea, TextareaProps, ThirdPartySlot$1 as ThirdPartySlot, TrustBadgesBear$1 as TrustBadgesBear, TrustBadgesBearProps, TrustMe$1 as TrustMe, TrustMeProps, TrustedsiteTrustBadges$1 as TrustedsiteTrustBadges, TrustedsiteTrustBadgesProps, Trustoo$1 as Trustoo, TrustooProps, TrustreviewsProductReviews$1 as TrustreviewsProductReviews, TrustreviewsProductReviewsProps, TrustshopProductReviews$1 as TrustshopProductReviews, TrustshopProductReviewsProps, UltimateSalesBoost$1 as UltimateSalesBoost, UltimateSalesBoostProps, UnlimitedBundlesDiscounts$1 as UnlimitedBundlesDiscounts, UnlimitedBundlesDiscountsProps, VendorProps, Video$1 as Video, Vitals$1 as Vitals, VitalsProps, WhatmoreShoppableVideosreel$1 as WhatmoreShoppableVideosreel, WhatmoreShoppableVideosreelProps, WideBundle$1 as WideBundle, WideBundleProps, Wiser$1 as Wiser, WiserProps, WishlistKing$1 as WishlistKing, WishlistKingProps, WishlistPlus$1 as WishlistPlus, WishlistPlusProps, YotpoLoyalty, YotpoLoyaltyProps, YotpoReviews$1 as YotpoReviews, YotpoReviewsProps, _default$R as accordionSetting, _default$4 as articleListSetting, _default$p as bannerSetting, _default$Q as breadcrumbSetting, _default as builderComponent, _default$P as buttonSetting, _default$N as carouselSetting, _default$K as cartSetting, _default$n as codeSetting, _default$J as collectionSetting, _default$j as contactFormSetting, convertSizeToWidth, _default$I as countdownSetting, _default$O as couponSetting, _default$k as dialogSetting, _default$5 as estimateDeliverySetting, getAllHrefFromString, getDynamicSourceLocales, getInsertLinkData, getSettingPreloadData, getStaticLocale, _default$L as gridSetting, _default$G as headerSetting, _default$H as headingSetting, _default$m as iconListHozSetting, _default$o as iconListSetting, _default$e as iconListSettingV2, _default$F as iconSetting, _default$h as imageComparisonSetting, _default$i as imageDetectionSetting, _default$M as imageSetting, _default$E as inputSetting, isHexTransparent, isTransparentColor, isTransparentRGBA, _default$D as lineSetting, _default$C as linkSetting, index_liquid as liquidComponents, _default$3 as marqueeSetting, _default$s as menuSetting, _default$B as modalSetting, _default$1 as nextComponent, openConfirm, _default$A as paginationSetting, _default$7 as postPurchaseAdvancedListSetting, _default$b as postPurchaseButtonSetting, _default$9 as postPurchaseCalloutBoxSetting, _default$6 as postPurchaseCountdownTimerSetting, _default$c as postPurchaseImageSetting, _default$8 as postPurchaseLineSetting, postPurchaseProduct1Col, postPurchaseProduct2Col, postPurchaseProductDefault, _default$a as postPurchaseProductSetting, _default$d as postPurchaseTextSetting, _default$z as productSetting, _default$x as radioSetting, replaceAllHrefFromString, replaceLinkData, _default$w as selectSetting, _default$f as stickySetting, _default$l as stockCounterSetting, _default$v as tabSetting, _default$y as textSetting, _default$u as textareaSetting, _default$q as thirdPartyInstantSetting, _default$r as thirdPartySetting, _default$g as thirdPartySlotSetting, transformHighlighTag, transformNumberTag, useInView, useNotification, _default$t as videoSetting, youtubeShortsRegex };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/components",
3
- "version": "2.1.27-staging.2",
3
+ "version": "2.1.27-staging.21",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",
@@ -21,8 +21,8 @@
21
21
  "format": "prettier --write \"./src/**/*.{ts,tsx}\""
22
22
  },
23
23
  "devDependencies": {
24
- "@gem-sdk/core": "2.1.27-staging.0",
25
- "@gem-sdk/styles": "2.1.27-staging.0",
24
+ "@gem-sdk/core": "2.1.27-staging.21",
25
+ "@gem-sdk/styles": "2.1.27-staging.13",
26
26
  "@types/react-transition-group": "^4.4.5"
27
27
  },
28
28
  "dependencies": {
@@ -1,133 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var jsxRuntime = require('react/jsx-runtime');
6
- var AdaptiveImage = require('./AdaptiveImage.js');
7
-
8
- const NoDataImage = ({ style })=>{
9
- return /*#__PURE__*/ jsxRuntime.jsxs("div", {
10
- className: "gp-w-full gp-h-full gp-bg-[#F9F9F9] gp-flex gp-items-center gp-justify-center",
11
- children: [
12
- AdaptiveImage.default({
13
- pictureClass: 'gp-w-full',
14
- srcSet: {
15
- desktop: {
16
- src: 'https://cdn.shopify.com/s/assets/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c_large.gif'
17
- }
18
- },
19
- style: {
20
- ...style,
21
- '--op': 0,
22
- '--z': -1
23
- }
24
- }),
25
- /*#__PURE__*/ jsxRuntime.jsx("div", {
26
- className: "gp-absolute gp-flex gp-justify-center gp-items-center",
27
- children: /*#__PURE__*/ jsxRuntime.jsxs("svg", {
28
- width: "40",
29
- height: "40",
30
- viewBox: "0 0 40 40",
31
- fill: "none",
32
- xmlns: "http://www.w3.org/2000/svg",
33
- children: [
34
- /*#__PURE__*/ jsxRuntime.jsxs("g", {
35
- clipPath: "url(#clip0_942_39561)",
36
- children: [
37
- /*#__PURE__*/ jsxRuntime.jsx("rect", {
38
- width: "40",
39
- height: "40",
40
- fill: "#F9F9F9"
41
- }),
42
- /*#__PURE__*/ jsxRuntime.jsx("rect", {
43
- x: "4",
44
- width: "32",
45
- height: "40",
46
- rx: "2",
47
- fill: "#E2E2E2"
48
- }),
49
- /*#__PURE__*/ jsxRuntime.jsx("rect", {
50
- y: "26",
51
- width: "40",
52
- height: "14",
53
- fill: "url(#paint0_linear_942_39561)"
54
- }),
55
- /*#__PURE__*/ jsxRuntime.jsx("rect", {
56
- x: "8",
57
- y: "4",
58
- width: "24",
59
- height: "24",
60
- rx: "1",
61
- fill: "#F9F9F9"
62
- }),
63
- /*#__PURE__*/ jsxRuntime.jsx("circle", {
64
- cx: "15.2809",
65
- cy: "11.3688",
66
- r: "1.36884",
67
- fill: "#D2D2D2"
68
- }),
69
- /*#__PURE__*/ jsxRuntime.jsx("path", {
70
- d: "M13.1916 17.7343L15.3456 15.0797C15.4185 14.9896 15.5086 14.9168 15.6101 14.8659C15.7115 14.815 15.822 14.7872 15.9343 14.7844C16.0466 14.7815 16.1583 14.8036 16.2619 14.8492C16.3656 14.8949 16.459 14.963 16.536 15.0492L17.5432 16.1758L21.4803 11.2146C21.5573 11.1174 21.6542 11.0397 21.7637 10.9874C21.8732 10.9351 21.9925 10.9094 22.1127 10.9123C22.2329 10.9153 22.3509 10.9467 22.458 11.0043C22.5651 11.0619 22.6585 11.1442 22.7312 11.245L27.4383 17.7671C27.5283 17.8921 27.5834 18.0411 27.5974 18.1973C27.6114 18.3535 27.5838 18.5108 27.5176 18.6513C27.4514 18.7919 27.3493 18.9102 27.2228 18.993C27.0963 19.0758 26.9503 19.1198 26.8014 19.12L13.8002 19.1251C13.6473 19.1251 13.4975 19.0789 13.3688 18.992C13.24 18.9051 13.1375 18.7812 13.0735 18.6348C13.0095 18.4885 12.9866 18.326 13.0075 18.1664C13.0285 18.0068 13.0923 17.8569 13.1916 17.7343Z",
71
- fill: "#D2D2D2"
72
- }),
73
- /*#__PURE__*/ jsxRuntime.jsx("rect", {
74
- x: "24.3333",
75
- y: "24.3333",
76
- width: "15.3333",
77
- height: "15.3333",
78
- rx: "7.66667",
79
- fill: "white"
80
- }),
81
- /*#__PURE__*/ jsxRuntime.jsx("rect", {
82
- x: "24.3333",
83
- y: "24.3333",
84
- width: "15.3333",
85
- height: "15.3333",
86
- rx: "7.66667",
87
- stroke: "#C4C4C4",
88
- strokeWidth: "0.666667"
89
- }),
90
- /*#__PURE__*/ jsxRuntime.jsx("path", {
91
- d: "M33.813 34.5199C34.0083 34.7152 34.3249 34.7152 34.5201 34.5199C34.7154 34.3246 34.7154 34.0081 34.5201 33.8128L32.707 31.9997L34.5201 30.1866C34.7154 29.9913 34.7154 29.6747 34.5201 29.4795C34.3249 29.2842 34.0083 29.2842 33.813 29.4795L31.9999 31.2926L30.1868 29.4795C29.9915 29.2842 29.675 29.2842 29.4797 29.4795C29.2844 29.6747 29.2844 29.9913 29.4797 30.1866L31.2928 31.9997L29.4797 33.8128C29.2844 34.0081 29.2844 34.3246 29.4797 34.5199C29.675 34.7152 29.9915 34.7152 30.1868 34.5199L31.9999 32.7068L33.813 34.5199Z",
92
- fill: "#676767"
93
- })
94
- ]
95
- }),
96
- /*#__PURE__*/ jsxRuntime.jsxs("defs", {
97
- children: [
98
- /*#__PURE__*/ jsxRuntime.jsxs("linearGradient", {
99
- id: "paint0_linear_942_39561",
100
- x1: "20",
101
- y1: "26",
102
- x2: "20",
103
- y2: "40",
104
- gradientUnits: "userSpaceOnUse",
105
- children: [
106
- /*#__PURE__*/ jsxRuntime.jsx("stop", {
107
- stopColor: "#F9F9F9",
108
- stopOpacity: "0"
109
- }),
110
- /*#__PURE__*/ jsxRuntime.jsx("stop", {
111
- offset: "1",
112
- stopColor: "#F9F9F9"
113
- })
114
- ]
115
- }),
116
- /*#__PURE__*/ jsxRuntime.jsx("clipPath", {
117
- id: "clip0_942_39561",
118
- children: /*#__PURE__*/ jsxRuntime.jsx("rect", {
119
- width: "40",
120
- height: "40",
121
- fill: "white"
122
- })
123
- })
124
- ]
125
- })
126
- ]
127
- })
128
- })
129
- ]
130
- });
131
- };
132
-
133
- exports.default = NoDataImage;
@@ -1,129 +0,0 @@
1
- import { jsxs, jsx } from 'react/jsx-runtime';
2
- import AdaptiveImage from './AdaptiveImage.js';
3
-
4
- const NoDataImage = ({ style })=>{
5
- return /*#__PURE__*/ jsxs("div", {
6
- className: "gp-w-full gp-h-full gp-bg-[#F9F9F9] gp-flex gp-items-center gp-justify-center",
7
- children: [
8
- AdaptiveImage({
9
- pictureClass: 'gp-w-full',
10
- srcSet: {
11
- desktop: {
12
- src: 'https://cdn.shopify.com/s/assets/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c_large.gif'
13
- }
14
- },
15
- style: {
16
- ...style,
17
- '--op': 0,
18
- '--z': -1
19
- }
20
- }),
21
- /*#__PURE__*/ jsx("div", {
22
- className: "gp-absolute gp-flex gp-justify-center gp-items-center",
23
- children: /*#__PURE__*/ jsxs("svg", {
24
- width: "40",
25
- height: "40",
26
- viewBox: "0 0 40 40",
27
- fill: "none",
28
- xmlns: "http://www.w3.org/2000/svg",
29
- children: [
30
- /*#__PURE__*/ jsxs("g", {
31
- clipPath: "url(#clip0_942_39561)",
32
- children: [
33
- /*#__PURE__*/ jsx("rect", {
34
- width: "40",
35
- height: "40",
36
- fill: "#F9F9F9"
37
- }),
38
- /*#__PURE__*/ jsx("rect", {
39
- x: "4",
40
- width: "32",
41
- height: "40",
42
- rx: "2",
43
- fill: "#E2E2E2"
44
- }),
45
- /*#__PURE__*/ jsx("rect", {
46
- y: "26",
47
- width: "40",
48
- height: "14",
49
- fill: "url(#paint0_linear_942_39561)"
50
- }),
51
- /*#__PURE__*/ jsx("rect", {
52
- x: "8",
53
- y: "4",
54
- width: "24",
55
- height: "24",
56
- rx: "1",
57
- fill: "#F9F9F9"
58
- }),
59
- /*#__PURE__*/ jsx("circle", {
60
- cx: "15.2809",
61
- cy: "11.3688",
62
- r: "1.36884",
63
- fill: "#D2D2D2"
64
- }),
65
- /*#__PURE__*/ jsx("path", {
66
- d: "M13.1916 17.7343L15.3456 15.0797C15.4185 14.9896 15.5086 14.9168 15.6101 14.8659C15.7115 14.815 15.822 14.7872 15.9343 14.7844C16.0466 14.7815 16.1583 14.8036 16.2619 14.8492C16.3656 14.8949 16.459 14.963 16.536 15.0492L17.5432 16.1758L21.4803 11.2146C21.5573 11.1174 21.6542 11.0397 21.7637 10.9874C21.8732 10.9351 21.9925 10.9094 22.1127 10.9123C22.2329 10.9153 22.3509 10.9467 22.458 11.0043C22.5651 11.0619 22.6585 11.1442 22.7312 11.245L27.4383 17.7671C27.5283 17.8921 27.5834 18.0411 27.5974 18.1973C27.6114 18.3535 27.5838 18.5108 27.5176 18.6513C27.4514 18.7919 27.3493 18.9102 27.2228 18.993C27.0963 19.0758 26.9503 19.1198 26.8014 19.12L13.8002 19.1251C13.6473 19.1251 13.4975 19.0789 13.3688 18.992C13.24 18.9051 13.1375 18.7812 13.0735 18.6348C13.0095 18.4885 12.9866 18.326 13.0075 18.1664C13.0285 18.0068 13.0923 17.8569 13.1916 17.7343Z",
67
- fill: "#D2D2D2"
68
- }),
69
- /*#__PURE__*/ jsx("rect", {
70
- x: "24.3333",
71
- y: "24.3333",
72
- width: "15.3333",
73
- height: "15.3333",
74
- rx: "7.66667",
75
- fill: "white"
76
- }),
77
- /*#__PURE__*/ jsx("rect", {
78
- x: "24.3333",
79
- y: "24.3333",
80
- width: "15.3333",
81
- height: "15.3333",
82
- rx: "7.66667",
83
- stroke: "#C4C4C4",
84
- strokeWidth: "0.666667"
85
- }),
86
- /*#__PURE__*/ jsx("path", {
87
- d: "M33.813 34.5199C34.0083 34.7152 34.3249 34.7152 34.5201 34.5199C34.7154 34.3246 34.7154 34.0081 34.5201 33.8128L32.707 31.9997L34.5201 30.1866C34.7154 29.9913 34.7154 29.6747 34.5201 29.4795C34.3249 29.2842 34.0083 29.2842 33.813 29.4795L31.9999 31.2926L30.1868 29.4795C29.9915 29.2842 29.675 29.2842 29.4797 29.4795C29.2844 29.6747 29.2844 29.9913 29.4797 30.1866L31.2928 31.9997L29.4797 33.8128C29.2844 34.0081 29.2844 34.3246 29.4797 34.5199C29.675 34.7152 29.9915 34.7152 30.1868 34.5199L31.9999 32.7068L33.813 34.5199Z",
88
- fill: "#676767"
89
- })
90
- ]
91
- }),
92
- /*#__PURE__*/ jsxs("defs", {
93
- children: [
94
- /*#__PURE__*/ jsxs("linearGradient", {
95
- id: "paint0_linear_942_39561",
96
- x1: "20",
97
- y1: "26",
98
- x2: "20",
99
- y2: "40",
100
- gradientUnits: "userSpaceOnUse",
101
- children: [
102
- /*#__PURE__*/ jsx("stop", {
103
- stopColor: "#F9F9F9",
104
- stopOpacity: "0"
105
- }),
106
- /*#__PURE__*/ jsx("stop", {
107
- offset: "1",
108
- stopColor: "#F9F9F9"
109
- })
110
- ]
111
- }),
112
- /*#__PURE__*/ jsx("clipPath", {
113
- id: "clip0_942_39561",
114
- children: /*#__PURE__*/ jsx("rect", {
115
- width: "40",
116
- height: "40",
117
- fill: "white"
118
- })
119
- })
120
- ]
121
- })
122
- ]
123
- })
124
- })
125
- ]
126
- });
127
- };
128
-
129
- export { NoDataImage as default };