@gem-sdk/components 3.0.0-pre-production.14 → 3.0.1

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 (5488) hide show
  1. package/dist/cjs/accordion/common/classes.js +1 -0
  2. package/dist/cjs/accordion/common/helpers.js +1 -0
  3. package/dist/cjs/accordion/common/styles.js +1 -0
  4. package/dist/cjs/accordion/components/Accordion.js +2 -195
  5. package/dist/cjs/accordion/components/Accordion.liquid.js +16 -112
  6. package/dist/cjs/accordion/components/AccordionItem.js +2 -309
  7. package/dist/cjs/accordion/components/AccordionItem.liquid.js +33 -242
  8. package/dist/cjs/accordion/hooks/useAccordion.js +1 -0
  9. package/dist/cjs/accordion/hooks/useAccordionItem.js +1 -0
  10. package/dist/cjs/accordion/hooks/useMountTransition.js +2 -27
  11. package/dist/cjs/accordion/index.js +1 -0
  12. package/dist/cjs/accordion/next.js +1 -20
  13. package/dist/cjs/accordion/settings/Accordion.js +70 -0
  14. package/dist/cjs/accordion/settings/AccordionItem.js +1 -0
  15. package/dist/cjs/accordion/settings/configs/child-items.js +1 -0
  16. package/dist/cjs/accordion/settings/configs/settings.js +39 -0
  17. package/dist/cjs/accordion/settings/configs/ui-v1.js +1 -0
  18. package/dist/cjs/accordion/settings/configs/ui-v2.js +1 -0
  19. package/dist/cjs/article/common/helpers.js +13 -0
  20. package/dist/cjs/article/components/ArticleAuthor.js +2 -34
  21. package/dist/cjs/article/components/ArticleAuthor.liquid.js +4 -26
  22. package/dist/cjs/article/components/ArticleCategory.js +2 -27
  23. package/dist/cjs/article/components/ArticleCategory.liquid.js +4 -26
  24. package/dist/cjs/article/components/ArticleContent.js +4 -63
  25. package/dist/cjs/article/components/ArticleContent.liquid.js +8 -31
  26. package/dist/cjs/article/components/ArticleDate.js +2 -44
  27. package/dist/cjs/article/components/ArticleDate.liquid.js +4 -34
  28. package/dist/cjs/article/components/ArticleExcerpt.js +2 -52
  29. package/dist/cjs/article/components/ArticleExcerpt.liquid.js +4 -25
  30. package/dist/cjs/article/components/ArticleImage.js +2 -40
  31. package/dist/cjs/article/components/ArticleImage.liquid.js +9 -51
  32. package/dist/cjs/article/components/ArticleList.js +2 -145
  33. package/dist/cjs/article/components/ArticleList.liquid.js +20 -58
  34. package/dist/cjs/article/components/ArticleNotFound.js +2 -141
  35. package/dist/cjs/article/components/ArticlePagination.js +2 -18
  36. package/dist/cjs/article/components/ArticlePagination.liquid.js +2 -12
  37. package/dist/cjs/article/components/ArticleReadMore.js +2 -52
  38. package/dist/cjs/article/components/ArticleReadMore.liquid.js +6 -57
  39. package/dist/cjs/article/components/ArticleTag.js +2 -32
  40. package/dist/cjs/article/components/ArticleTag.liquid.js +5 -26
  41. package/dist/cjs/article/components/ArticleTitle.js +2 -41
  42. package/dist/cjs/article/components/ArticleTitle.liquid.js +8 -42
  43. package/dist/cjs/article/hooks/useArticleLink.js +1 -28
  44. package/dist/cjs/article/index.js +1 -0
  45. package/dist/cjs/article/next.js +1 -56
  46. package/dist/cjs/article/settings/ArticleAuthor.js +6 -0
  47. package/dist/cjs/article/settings/ArticleCategory.js +6 -0
  48. package/dist/cjs/article/settings/ArticleContent.js +6 -0
  49. package/dist/cjs/article/settings/ArticleDate.js +6 -0
  50. package/dist/cjs/article/settings/ArticleExcerpt.js +6 -0
  51. package/dist/cjs/article/settings/ArticleImage.js +7 -0
  52. package/dist/cjs/article/settings/ArticleList.js +8 -0
  53. package/dist/cjs/article/settings/ArticlePagination.js +12 -0
  54. package/dist/cjs/article/settings/ArticleReadMore.js +6 -0
  55. package/dist/cjs/article/settings/ArticleTag.js +6 -0
  56. package/dist/cjs/article/settings/ArticleTitle.js +6 -0
  57. package/dist/cjs/article/settings/configs/article-author/presets.js +6 -0
  58. package/dist/cjs/article/settings/configs/article-author/settings.js +1 -0
  59. package/dist/cjs/article/settings/configs/article-author/ui-v1.js +1 -0
  60. package/dist/cjs/article/settings/configs/article-author/ui-v2.js +1 -0
  61. package/dist/cjs/article/settings/configs/article-category/presets.js +6 -0
  62. package/dist/cjs/article/settings/configs/article-category/settings.js +1 -0
  63. package/dist/cjs/article/settings/configs/article-category/ui-v1.js +1 -0
  64. package/dist/cjs/article/settings/configs/article-category/ui-v2.js +1 -0
  65. package/dist/cjs/article/settings/configs/article-content/presets.js +4 -0
  66. package/dist/cjs/article/settings/configs/article-content/settings.js +1 -0
  67. package/dist/cjs/article/settings/configs/article-content/ui-v1.js +1 -0
  68. package/dist/cjs/article/settings/configs/article-content/ui-v2.js +1 -0
  69. package/dist/cjs/article/settings/configs/article-date/presets.js +5 -0
  70. package/dist/cjs/article/settings/configs/article-date/settings.js +1 -0
  71. package/dist/cjs/article/settings/configs/article-date/ui-v1.js +1 -0
  72. package/dist/cjs/article/settings/configs/article-date/ui-v2.js +1 -0
  73. package/dist/cjs/article/settings/configs/article-excerpt/presets.js +5 -0
  74. package/dist/cjs/article/settings/configs/article-excerpt/settings.js +1 -0
  75. package/dist/cjs/article/settings/configs/article-excerpt/ui-v1.js +1 -0
  76. package/dist/cjs/article/settings/configs/article-excerpt/ui-v2.js +1 -0
  77. package/dist/cjs/article/settings/configs/article-image/presets.js +4 -0
  78. package/dist/cjs/article/settings/configs/article-image/settings.js +1 -0
  79. package/dist/cjs/article/settings/configs/article-image/ui-v1.js +1 -0
  80. package/dist/cjs/article/settings/configs/article-image/ui-v2.js +1 -0
  81. package/dist/cjs/article/settings/configs/article-list/presets.js +19 -0
  82. package/dist/cjs/article/settings/configs/article-list/settings.js +1 -0
  83. package/dist/cjs/article/settings/configs/article-list/ui-v2.js +1 -0
  84. package/dist/cjs/article/settings/configs/article-read-more/presets.js +5 -0
  85. package/dist/cjs/article/settings/configs/article-read-more/settings.js +2 -0
  86. package/dist/cjs/article/settings/configs/article-read-more/ui-v1.js +1 -0
  87. package/dist/cjs/article/settings/configs/article-read-more/ui-v2.js +1 -0
  88. package/dist/cjs/article/settings/configs/article-tag/presets.js +6 -0
  89. package/dist/cjs/article/settings/configs/article-tag/settings.js +1 -0
  90. package/dist/cjs/article/settings/configs/article-tag/ui-v1.js +1 -0
  91. package/dist/cjs/article/settings/configs/article-tag/ui-v2.js +1 -0
  92. package/dist/cjs/article/settings/configs/article-title/presets.js +5 -0
  93. package/dist/cjs/article/settings/configs/article-title/settings.js +1 -0
  94. package/dist/cjs/article/settings/configs/article-title/ui-v1.js +1 -0
  95. package/dist/cjs/article/settings/configs/article-title/ui-v2.js +1 -0
  96. package/dist/cjs/breadcrumb/common/attrs.js +1 -0
  97. package/dist/cjs/breadcrumb/common/classes.js +9 -0
  98. package/dist/cjs/breadcrumb/common/helpers.js +1 -0
  99. package/dist/cjs/breadcrumb/common/styles.js +1 -0
  100. package/dist/cjs/breadcrumb/components/Breadcrumb.js +2 -180
  101. package/dist/cjs/breadcrumb/components/Breadcrumb.liquid.js +15 -233
  102. package/dist/cjs/breadcrumb/components/BreadcrumbItem.js +2 -0
  103. package/dist/cjs/breadcrumb/components/BreadcrumbItem.liquid.js +1 -0
  104. package/dist/cjs/breadcrumb/components/templates/article.js +10 -0
  105. package/dist/cjs/breadcrumb/components/templates/collection.js +6 -0
  106. package/dist/cjs/breadcrumb/components/templates/home.js +4 -0
  107. package/dist/cjs/breadcrumb/components/templates/landing.js +6 -0
  108. package/dist/cjs/breadcrumb/components/templates/product.js +20 -0
  109. package/dist/cjs/breadcrumb/constants.js +1 -0
  110. package/dist/cjs/breadcrumb/hooks/useBreadcrumb.js +1 -0
  111. package/dist/cjs/breadcrumb/index.js +1 -0
  112. package/dist/cjs/breadcrumb/next.js +1 -16
  113. package/dist/cjs/breadcrumb/settings/Breadcrumb.js +8 -0
  114. package/dist/cjs/breadcrumb/settings/configs/settings.js +4 -0
  115. package/dist/cjs/breadcrumb/settings/configs/ui-v1.js +1 -0
  116. package/dist/cjs/breadcrumb/settings/configs/ui-v2.js +1 -0
  117. package/dist/cjs/breadcrumb/types.js +1 -0
  118. package/dist/cjs/builder.js +2 -515
  119. package/dist/cjs/button/common/attrs.js +1 -0
  120. package/dist/cjs/button/common/classes.js +1 -0
  121. package/dist/cjs/button/common/helpers.js +22 -0
  122. package/dist/cjs/button/common/styles.js +32 -0
  123. package/dist/cjs/button/components/Button.js +2 -193
  124. package/dist/cjs/button/components/Button.liquid.js +28 -185
  125. package/dist/cjs/button/components/ButtonIcon.js +1 -0
  126. package/dist/cjs/button/components/ButtonIcon.liquid.js +8 -0
  127. package/dist/cjs/button/components/ButtonLabel.js +1 -0
  128. package/dist/cjs/button/components/ButtonLabel.liquid.js +8 -0
  129. package/dist/cjs/button/components/ButtonLoadingIndicator.js +1 -0
  130. package/dist/cjs/button/components/ButtonLoadingIndicator.liquid.js +1 -0
  131. package/dist/cjs/button/index.js +1 -0
  132. package/dist/cjs/button/next.js +1 -16
  133. package/dist/cjs/button/settings/Button.js +27 -0
  134. package/dist/cjs/button/settings/configs/settings.js +4 -0
  135. package/dist/cjs/button/settings/configs/ui-v1.js +1 -0
  136. package/dist/cjs/button/settings/configs/ui-v2.js +1 -0
  137. package/dist/cjs/carousel/common/helpers.js +1 -0
  138. package/dist/cjs/carousel/components/arrow/Arrow.js +10 -0
  139. package/dist/cjs/carousel/components/arrow/Arrow.liquid.js +26 -0
  140. package/dist/cjs/carousel/components/arrow/common/classes.js +1 -0
  141. package/dist/cjs/carousel/components/arrow/common/helpers.js +1 -0
  142. package/dist/cjs/carousel/components/arrow/common/styles.js +33 -0
  143. package/dist/cjs/carousel/components/dot/Dots.js +2 -0
  144. package/dist/cjs/carousel/components/dot/Dots.liquid.js +7 -0
  145. package/dist/cjs/carousel/components/dot/common/classes.js +1 -0
  146. package/dist/cjs/carousel/components/dot/common/helpers.js +1 -0
  147. package/dist/cjs/carousel/components/dot/common/styles.js +1 -0
  148. package/dist/cjs/carousel/components/item/CarouselItem.js +2 -0
  149. package/dist/cjs/carousel/components/item/CarouselItem.liquid.js +22 -0
  150. package/dist/cjs/carousel/components/item/common/classes.js +1 -0
  151. package/dist/cjs/carousel/components/item/common/styles.js +1 -0
  152. package/dist/cjs/carousel/components/root/Carousel.js +2 -0
  153. package/dist/cjs/carousel/components/root/Carousel.liquid.js +21 -0
  154. package/dist/cjs/carousel/components/root/common/attrs.js +1 -0
  155. package/dist/cjs/carousel/components/root/common/classes.js +1 -0
  156. package/dist/cjs/carousel/components/root/common/helpers.js +1 -0
  157. package/dist/cjs/carousel/components/root/common/styles.js +1 -0
  158. package/dist/cjs/carousel/hooks/useCarouseItem.js +1 -0
  159. package/dist/cjs/carousel/hooks/useCarousel.js +1 -0
  160. package/dist/cjs/carousel/hooks/useDotsSetting.js +1 -0
  161. package/dist/cjs/carousel/hooks/useTrackPreviewPause.js +1 -0
  162. package/dist/cjs/carousel/index.js +1 -0
  163. package/dist/cjs/carousel/next.js +1 -20
  164. package/dist/cjs/carousel/plugins/animation.js +1 -0
  165. package/dist/cjs/carousel/plugins/auto-play.js +1 -0
  166. package/dist/cjs/carousel/plugins/fix-slider-move-backward.js +1 -0
  167. package/dist/cjs/carousel/plugins/mutation.js +1 -0
  168. package/dist/cjs/carousel/settings/Carousel.js +5 -0
  169. package/dist/cjs/carousel/settings/CarouselItem.js +1 -0
  170. package/dist/cjs/carousel/settings/configs/presets.js +114 -0
  171. package/dist/cjs/carousel/settings/configs/settings-v2.js +3 -0
  172. package/dist/cjs/carousel/settings/configs/ui-v1.js +1 -0
  173. package/dist/cjs/carousel/settings/configs/ui-v2.js +1 -0
  174. package/dist/cjs/cart/components/Cart.js +2 -85
  175. package/dist/cjs/cart/components/CartCheckout.js +2 -18
  176. package/dist/cjs/cart/components/CartDiscount.js +2 -13
  177. package/dist/cjs/cart/components/CartLineAttribute.js +2 -31
  178. package/dist/cjs/cart/components/CartLineImage.js +2 -45
  179. package/dist/cjs/cart/components/CartLinePrice.js +2 -46
  180. package/dist/cjs/cart/components/CartLineVariant.js +2 -28
  181. package/dist/cjs/cart/components/CartList.js +2 -37
  182. package/dist/cjs/cart/components/CartOrderNote.js +2 -47
  183. package/dist/cjs/cart/components/CartTotalItem.js +2 -23
  184. package/dist/cjs/cart/components/CartTotalPrice.js +2 -56
  185. package/dist/cjs/cart/components/CheckoutNow.js +2 -41
  186. package/dist/cjs/cart/components/CouponList.js +2 -15
  187. package/dist/cjs/cart/components/DiscountInput.js +2 -28
  188. package/dist/cjs/cart/components/shop-pay-button/ShopPayButton.js +2 -0
  189. package/dist/cjs/cart/components/shop-pay-button/ShopPayButton.liquid.js +16 -0
  190. package/dist/cjs/cart/components/shop-pay-button/common/classes.js +1 -0
  191. package/dist/cjs/cart/components/shop-pay-button/common/helpers.js +1 -0
  192. package/dist/cjs/cart/components/shop-pay-button/common/styles.js +1 -0
  193. package/dist/cjs/cart/components/shop-pay-button/icons/BaseIcon.js +2 -0
  194. package/dist/cjs/cart/components/shop-pay-button/icons/BaseIcon.liquid.js +5 -0
  195. package/dist/cjs/cart/components/shop-pay-button/icons/DynamicCheckoutBlack.js +2 -0
  196. package/dist/cjs/cart/components/shop-pay-button/icons/DynamicCheckoutBlack.liquid.js +29 -0
  197. package/dist/cjs/cart/components/shop-pay-button/icons/DynamicCheckoutPurple.js +2 -0
  198. package/dist/cjs/cart/components/shop-pay-button/icons/DynamicCheckoutPurple.liquid.js +29 -0
  199. package/dist/cjs/cart/components/shop-pay-button/icons/DynamicCheckoutWhite.js +2 -0
  200. package/dist/cjs/cart/components/shop-pay-button/icons/DynamicCheckoutWhite.liquid.js +15 -0
  201. package/dist/cjs/cart/components/shop-pay-button/icons/ExpressCheckoutBlack.js +2 -0
  202. package/dist/cjs/cart/components/shop-pay-button/icons/ExpressCheckoutBlack.liquid.js +25 -0
  203. package/dist/cjs/cart/components/shop-pay-button/icons/ExpressCheckoutPurple.js +2 -0
  204. package/dist/cjs/cart/components/shop-pay-button/icons/ExpressCheckoutPurple.liquid.js +25 -0
  205. package/dist/cjs/cart/components/shop-pay-button/icons/ExpressCheckoutWhite.js +2 -0
  206. package/dist/cjs/cart/components/shop-pay-button/icons/ExpressCheckoutWhite.liquid.js +25 -0
  207. package/dist/cjs/cart/hooks/useShopPayButton.js +1 -0
  208. package/dist/cjs/cart/index.js +1 -0
  209. package/dist/cjs/cart/next.js +1 -74
  210. package/dist/cjs/cart/settings/Cart.js +7 -0
  211. package/dist/cjs/cart/settings/CartCheckout.js +1 -0
  212. package/dist/cjs/cart/settings/CartDiscount.js +1 -0
  213. package/dist/cjs/cart/settings/CartLineAttribute.js +1 -0
  214. package/dist/cjs/cart/settings/CartLineImage.js +1 -0
  215. package/dist/cjs/cart/settings/CartLinePrice.js +1 -0
  216. package/dist/cjs/cart/settings/CartLineVariant.js +1 -0
  217. package/dist/cjs/cart/settings/CartList.js +1 -0
  218. package/dist/cjs/cart/settings/CartOrderNote.js +1 -0
  219. package/dist/cjs/cart/settings/CartTotalItem.js +1 -0
  220. package/dist/cjs/cart/settings/CartTotalPrice.js +1 -0
  221. package/dist/cjs/cart/settings/CouponList.js +1 -0
  222. package/dist/cjs/cart/settings/DiscountInput.js +1 -0
  223. package/dist/cjs/cart/settings/ShopPayButton.js +1 -0
  224. package/dist/cjs/code/common/classes.js +1 -0
  225. package/dist/cjs/code/common/styles.js +1 -0
  226. package/dist/cjs/code/components/CSSCode.js +2 -149
  227. package/dist/cjs/code/components/CSSCode.liquid.js +10 -30
  228. package/dist/cjs/code/hooks/useCSSCode.js +11 -0
  229. package/dist/cjs/code/index.js +1 -0
  230. package/dist/cjs/code/next.js +1 -16
  231. package/dist/cjs/code/settings/CSSCode.js +7 -0
  232. package/dist/cjs/code/settings/configs/settings.js +1 -0
  233. package/dist/cjs/code/settings/configs/ui-v1.js +1 -0
  234. package/dist/cjs/code/settings/configs/ui-v2.js +1 -0
  235. package/dist/cjs/collection/components/collection-banner/CollectionBanner.js +2 -0
  236. package/dist/cjs/collection/components/collection-banner/CollectionBanner.liquid.js +19 -0
  237. package/dist/cjs/collection/components/collection-banner/common/classes.js +1 -0
  238. package/dist/cjs/collection/components/collection-banner/common/helpers.js +1 -0
  239. package/dist/cjs/collection/components/collection-banner/common/styles.js +1 -0
  240. package/dist/cjs/collection/components/collection-description/CollectionDescription.js +2 -0
  241. package/dist/cjs/collection/components/collection-description/CollectionDescription.liquid.js +21 -0
  242. package/dist/cjs/collection/components/collection-description/common/classes.js +1 -0
  243. package/dist/cjs/collection/components/collection-description/common/helpers.js +3 -0
  244. package/dist/cjs/collection/components/collection-description/common/styles.js +16 -0
  245. package/dist/cjs/collection/components/collection-paginator/CollectionPaginator.js +2 -0
  246. package/dist/cjs/collection/components/collection-paginator/CollectionPaginator.liquid.js +8 -0
  247. package/dist/cjs/collection/components/collection-paginator/common/classes.js +1 -0
  248. package/dist/cjs/collection/components/collection-paginator/common/helpers.js +8 -0
  249. package/dist/cjs/collection/components/collection-paginator/common/styles.js +1 -0
  250. package/dist/cjs/collection/components/collection-title/CollectionTitle.js +2 -0
  251. package/dist/cjs/collection/components/collection-title/CollectionTitle.liquid.js +3 -0
  252. package/dist/cjs/collection/components/collection-toolbar/CollectionToolbar.js +2 -0
  253. package/dist/cjs/collection/components/collection-toolbar/CollectionToolbar.liquid.js +42 -0
  254. package/dist/cjs/collection/components/collection-toolbar/common/classes.js +1 -0
  255. package/dist/cjs/collection/components/collection-toolbar/common/helpers.js +1 -0
  256. package/dist/cjs/collection/components/collection-toolbar/common/styles.js +1 -0
  257. package/dist/cjs/collection/hooks/useDescription.js +1 -0
  258. package/dist/cjs/collection/index.js +1 -0
  259. package/dist/cjs/collection/next.js +1 -32
  260. package/dist/cjs/collection/settings/collection-banner/CollectionBanner.js +12 -0
  261. package/dist/cjs/collection/settings/collection-banner/configs/settings.js +14 -0
  262. package/dist/cjs/collection/settings/collection-banner/configs/ui-v1.js +1 -0
  263. package/dist/cjs/collection/settings/collection-banner/configs/ui-v2.js +1 -0
  264. package/dist/cjs/collection/settings/collection-description/CollectionDescription.js +9 -0
  265. package/dist/cjs/collection/settings/collection-description/configs/settings.js +1 -0
  266. package/dist/cjs/collection/settings/collection-description/configs/ui-v1.js +1 -0
  267. package/dist/cjs/collection/settings/collection-description/configs/ui-v2.js +1 -0
  268. package/dist/cjs/collection/settings/collection-paginator/CollectionPaginator.js +12 -0
  269. package/dist/cjs/collection/settings/collection-paginator/configs/settings.js +1 -0
  270. package/dist/cjs/collection/settings/collection-paginator/configs/ui-v1.js +1 -0
  271. package/dist/cjs/collection/settings/collection-paginator/configs/ui-v2.js +1 -0
  272. package/dist/cjs/collection/settings/collection-title/CollectionTitle.js +9 -0
  273. package/dist/cjs/collection/settings/collection-title/configs/settings.js +1 -0
  274. package/dist/cjs/collection/settings/collection-title/configs/ui-v1.js +1 -0
  275. package/dist/cjs/collection/settings/collection-title/configs/ui-v2.js +1 -0
  276. package/dist/cjs/collection/settings/collection-toolbar/CollectionToolbar.js +11 -0
  277. package/dist/cjs/collection/settings/collection-toolbar/configs/settings.js +1 -0
  278. package/dist/cjs/collection/settings/collection-toolbar/configs/ui-v1.js +1 -0
  279. package/dist/cjs/collection/settings/collection-toolbar/configs/ui-v2.js +1 -0
  280. package/dist/cjs/common/components/Loading.js +2 -21
  281. package/dist/cjs/common/components/NoDataState.js +1 -0
  282. package/dist/cjs/common/components/Tooltip.js +2 -67
  283. package/dist/cjs/common/components/TooltipHover.js +2 -0
  284. package/dist/cjs/common/const.js +1 -10
  285. package/dist/cjs/common/hooks/useInView.js +2 -0
  286. package/dist/cjs/constant.js +1 -0
  287. package/dist/cjs/countdown-timer/common/attrs.js +1 -0
  288. package/dist/cjs/countdown-timer/common/classes.js +1 -0
  289. package/dist/cjs/countdown-timer/common/helpers.js +1 -0
  290. package/dist/cjs/countdown-timer/common/styles.js +1 -0
  291. package/dist/cjs/countdown-timer/components/Countdown.js +2 -339
  292. package/dist/cjs/countdown-timer/components/Countdown.liquid.js +37 -110
  293. package/dist/cjs/countdown-timer/hooks/useCountDownTimer.js +1 -0
  294. package/dist/cjs/countdown-timer/hooks/useTimeLeft.js +1 -94
  295. package/dist/cjs/countdown-timer/index.js +1 -0
  296. package/dist/cjs/countdown-timer/next.js +1 -17
  297. package/dist/cjs/countdown-timer/settings/Countdown.js +9 -0
  298. package/dist/cjs/countdown-timer/settings/configs/setting.js +1 -0
  299. package/dist/cjs/countdown-timer/settings/configs/ui-v1.js +1 -0
  300. package/dist/cjs/countdown-timer/settings/configs/ui-v2.js +1 -0
  301. package/dist/cjs/coupon/common/classes.js +1 -0
  302. package/dist/cjs/coupon/common/helpers.js +1 -0
  303. package/dist/cjs/coupon/common/styles.js +16 -0
  304. package/dist/cjs/coupon/components/Coupon.js +2 -110
  305. package/dist/cjs/coupon/components/Coupon.liquid.js +7 -70
  306. package/dist/cjs/coupon/hooks/useCoupon.js +1 -0
  307. package/dist/cjs/coupon/index.js +1 -0
  308. package/dist/cjs/coupon/next.js +1 -16
  309. package/dist/cjs/coupon/settings/Coupon.js +6 -0
  310. package/dist/cjs/coupon/settings/configs/presets.js +6 -0
  311. package/dist/cjs/coupon/settings/configs/settings.js +5 -0
  312. package/dist/cjs/coupon/settings/configs/ui-v1.js +1 -0
  313. package/dist/cjs/coupon/settings/configs/ui-v2.js +1 -0
  314. package/dist/cjs/dialog/common/attrs.js +1 -0
  315. package/dist/cjs/dialog/common/classes.js +1 -0
  316. package/dist/cjs/dialog/common/helpers.js +1 -0
  317. package/dist/cjs/dialog/common/styles.js +1 -0
  318. package/dist/cjs/dialog/components/Dialog.js +4 -417
  319. package/dist/cjs/dialog/components/Dialog.liquid.js +33 -149
  320. package/dist/cjs/dialog/hooks/useDialog.js +1 -0
  321. package/dist/cjs/dialog/hooks/useScrollPercentage.js +1 -0
  322. package/dist/cjs/dialog/index.js +1 -0
  323. package/dist/cjs/dialog/next.js +1 -16
  324. package/dist/cjs/dialog/settings/Dialog.js +10 -0
  325. package/dist/cjs/dialog/settings/configs/settings.js +5 -0
  326. package/dist/cjs/dialog/settings/configs/ui-v1.js +1 -0
  327. package/dist/cjs/dialog/settings/configs/ui-v2.js +1 -0
  328. package/dist/cjs/estimate-delivery/common/classes.js +1 -0
  329. package/dist/cjs/estimate-delivery/common/helpers.js +1 -0
  330. package/dist/cjs/estimate-delivery/common/styles.js +1 -0
  331. package/dist/cjs/estimate-delivery/components/EstimateDate.js +2 -78
  332. package/dist/cjs/estimate-delivery/components/EstimateDate.liquid.js +6 -104
  333. package/dist/cjs/estimate-delivery/index.js +1 -0
  334. package/dist/cjs/estimate-delivery/next.js +1 -16
  335. package/dist/cjs/estimate-delivery/settings/EstimateDate.js +10 -0
  336. package/dist/cjs/estimate-delivery/settings/configs/settings.js +1 -0
  337. package/dist/cjs/estimate-delivery/settings/configs/ui-v1.js +1 -0
  338. package/dist/cjs/estimate-delivery/settings/configs/ui-v2.js +1 -0
  339. package/dist/cjs/form/common/helpers.js +1 -0
  340. package/dist/cjs/form/components/contact/Contact.js +2 -15
  341. package/dist/cjs/form/components/contact/Contact.liquid.js +3 -22
  342. package/dist/cjs/form/components/contact/common/classes.js +1 -0
  343. package/dist/cjs/form/components/contact/common/styles.js +1 -0
  344. package/dist/cjs/form/components/form-checkbox/FormCheckbox.js +2 -52
  345. package/dist/cjs/form/components/form-checkbox/FormCheckbox.liquid.js +13 -50
  346. package/dist/cjs/form/components/form-checkbox/common/classes.js +1 -0
  347. package/dist/cjs/form/components/form-checkbox/common/styles.js +1 -0
  348. package/dist/cjs/form/components/form-dropdown/FormDropdown.js +2 -73
  349. package/dist/cjs/form/components/form-dropdown/FormDropdown.liquid.js +22 -72
  350. package/dist/cjs/form/components/form-dropdown/common/classes.js +1 -0
  351. package/dist/cjs/form/components/form-dropdown/common/styles.js +1 -0
  352. package/dist/cjs/form/components/form-email/FormEmail.js +2 -60
  353. package/dist/cjs/form/components/form-email/FormEmail.liquid.js +13 -70
  354. package/dist/cjs/form/components/form-email/common/classes.js +1 -0
  355. package/dist/cjs/form/components/form-email/common/styles.js +1 -0
  356. package/dist/cjs/form/components/newsletter/Newsletter.js +2 -15
  357. package/dist/cjs/form/components/newsletter/Newsletter.liquid.js +36 -81
  358. package/dist/cjs/form/components/newsletter/common/attrs.js +1 -0
  359. package/dist/cjs/form/components/newsletter/common/classes.js +1 -0
  360. package/dist/cjs/form/components/newsletter/common/styles.js +6 -0
  361. package/dist/cjs/form/components/submit-button/SubmitButton.js +2 -31
  362. package/dist/cjs/form/components/submit-button/SubmitButton.liquid.js +3 -34
  363. package/dist/cjs/form/components/submit-button/common/helpers.js +1 -0
  364. package/dist/cjs/form/components/submit-button/common/styles.js +1 -0
  365. package/dist/cjs/form/components/textarea/TextArea.js +2 -76
  366. package/dist/cjs/form/components/textarea/TextArea.liquid.js +12 -78
  367. package/dist/cjs/form/components/textarea/common/classes.js +1 -0
  368. package/dist/cjs/form/components/textarea/common/styles.js +1 -0
  369. package/dist/cjs/form/components/textfield/TextField.js +2 -69
  370. package/dist/cjs/form/components/textfield/TextField.liquid.js +12 -78
  371. package/dist/cjs/form/components/textfield/common/classes.js +1 -0
  372. package/dist/cjs/form/components/textfield/common/styles.js +1 -0
  373. package/dist/cjs/form/components/textinput/TextInput.js +2 -0
  374. package/dist/cjs/form/components/textinput/TextInput.liquid.js +28 -0
  375. package/dist/cjs/form/components/textinput/common/classes.js +1 -0
  376. package/dist/cjs/form/components/textinput/common/styles.js +1 -0
  377. package/dist/cjs/form/hooks/useGetColorContent.js +1 -0
  378. package/dist/cjs/form/index.js +1 -0
  379. package/dist/cjs/form/next.js +1 -44
  380. package/dist/cjs/form/settings/contact/Contact.js +17 -0
  381. package/dist/cjs/form/settings/contact/configs/inits.js +1 -0
  382. package/dist/cjs/form/settings/contact/configs/settings.js +1 -0
  383. package/dist/cjs/form/settings/contact/configs/ui-v1.js +1 -0
  384. package/dist/cjs/form/settings/contact/configs/ui-v2.js +1 -0
  385. package/dist/cjs/form/settings/form-checkbox/FormCheckbox.js +12 -0
  386. package/dist/cjs/form/settings/form-checkbox/configs/inits.js +1 -0
  387. package/dist/cjs/form/settings/form-checkbox/configs/settings.js +1 -0
  388. package/dist/cjs/form/settings/form-checkbox/configs/ui-v1.js +1 -0
  389. package/dist/cjs/form/settings/form-checkbox/configs/ui-v2.js +1 -0
  390. package/dist/cjs/form/settings/form-dropdown/FormDropdown.js +13 -0
  391. package/dist/cjs/form/settings/form-dropdown/configs/inits.js +1 -0
  392. package/dist/cjs/form/settings/form-dropdown/configs/settings.js +1 -0
  393. package/dist/cjs/form/settings/form-dropdown/configs/ui-v1.js +1 -0
  394. package/dist/cjs/form/settings/form-dropdown/configs/ui-v2.js +1 -0
  395. package/dist/cjs/form/settings/form-email/FormEmail.js +12 -0
  396. package/dist/cjs/form/settings/form-email/configs/inits.js +1 -0
  397. package/dist/cjs/form/settings/form-email/configs/settings.js +1 -0
  398. package/dist/cjs/form/settings/form-email/configs/ui-v1.js +1 -0
  399. package/dist/cjs/form/settings/form-email/configs/ui-v2.js +1 -0
  400. package/dist/cjs/form/settings/form-textarea/Textarea.js +14 -0
  401. package/dist/cjs/form/settings/form-textarea/configs/settings.js +1 -0
  402. package/dist/cjs/form/settings/form-textarea/configs/ui-v1.js +1 -0
  403. package/dist/cjs/form/settings/form-textarea/configs/ui-v2.js +1 -0
  404. package/dist/cjs/form/settings/newsletter/Newsletter.js +12 -0
  405. package/dist/cjs/form/settings/newsletter/configs/inits.js +1 -0
  406. package/dist/cjs/form/settings/newsletter/configs/settings.js +1 -0
  407. package/dist/cjs/form/settings/newsletter/configs/ui-v1.js +1 -0
  408. package/dist/cjs/form/settings/newsletter/configs/ui-v2.js +1 -0
  409. package/dist/cjs/form/settings/submit-button/SubmitButton.js +10 -0
  410. package/dist/cjs/form/settings/submit-button/configs/inits.js +1 -0
  411. package/dist/cjs/form/settings/submit-button/configs/settings.js +3 -0
  412. package/dist/cjs/form/settings/submit-button/configs/ui-v1.js +1 -0
  413. package/dist/cjs/form/settings/submit-button/configs/ui-v2.js +1 -0
  414. package/dist/cjs/form/settings/text-field/TextField.js +11 -0
  415. package/dist/cjs/form/settings/text-field/configs/settings.js +1 -0
  416. package/dist/cjs/form/settings/text-field/configs/ui-v1.js +1 -0
  417. package/dist/cjs/form/settings/text-field/configs/ui-v2.js +1 -0
  418. package/dist/cjs/form/settings/text-input/TextInput.js +11 -0
  419. package/dist/cjs/form/settings/text-input/configs/settings.js +1 -0
  420. package/dist/cjs/form/settings/text-input/configs/ui-v1.js +1 -0
  421. package/dist/cjs/form/settings/text-input/configs/ui-v2.js +1 -0
  422. package/dist/cjs/grid/components/ChildrenDroppable.js +5 -76
  423. package/dist/cjs/grid/components/col/Col.js +2 -0
  424. package/dist/cjs/grid/components/col/Col.liquid.js +7 -0
  425. package/dist/cjs/grid/components/col/common/attrs.js +1 -0
  426. package/dist/cjs/grid/components/col/common/classes.js +1 -0
  427. package/dist/cjs/grid/components/col/common/styles.js +1 -0
  428. package/dist/cjs/grid/components/root/Root.js +2 -0
  429. package/dist/cjs/grid/components/root/Root.liquid.js +1 -0
  430. package/dist/cjs/grid/components/row/Row.js +1 -0
  431. package/dist/cjs/grid/components/row/Row.liquid.js +28 -0
  432. package/dist/cjs/grid/components/row/common/attrs.js +1 -0
  433. package/dist/cjs/grid/components/row/common/classes.js +1 -0
  434. package/dist/cjs/grid/components/row/common/helpers.js +1 -0
  435. package/dist/cjs/grid/components/row/common/styles.js +2 -0
  436. package/dist/cjs/grid/components/section/Section.js +2 -0
  437. package/dist/cjs/grid/components/section/Section.liquid.js +1 -0
  438. package/dist/cjs/grid/hooks/useRowSetting.js +1 -0
  439. package/dist/cjs/grid/index.js +1 -0
  440. package/dist/cjs/grid/next.js +1 -28
  441. package/dist/cjs/grid/settings/Col.js +1 -0
  442. package/dist/cjs/grid/settings/Root.js +1 -0
  443. package/dist/cjs/grid/settings/Row.js +5 -0
  444. package/dist/cjs/grid/settings/Section.js +1 -0
  445. package/dist/cjs/grid/settings/configs/row/presets.js +23 -0
  446. package/dist/cjs/grid/settings/configs/row/settings.js +1 -0
  447. package/dist/cjs/grid/settings/configs/row/ui-v1.js +1 -0
  448. package/dist/cjs/grid/settings/configs/row/ui-v2.js +1 -0
  449. package/dist/cjs/grid/settings/configs/section/settings.js +1 -0
  450. package/dist/cjs/grid/settings/configs/section/ui-v1.js +1 -0
  451. package/dist/cjs/grid/settings/configs/section/ui-v2.js +1 -0
  452. package/dist/cjs/header/components/Header.js +2 -41
  453. package/dist/cjs/header/components/SalePageHeaderWarning.js +2 -62
  454. package/dist/cjs/header/components/icons/ChevronLeft.js +2 -18
  455. package/dist/cjs/header/components/icons/Dismiss.js +2 -18
  456. package/dist/cjs/header/components/icons/MenuIcon.js +2 -18
  457. package/dist/cjs/header/components/kind/basic/DesktopMenu.js +2 -36
  458. package/dist/cjs/header/components/kind/basic/DesktopMenuItem.js +2 -66
  459. package/dist/cjs/header/components/kind/basic/MenuMobileItem.js +2 -160
  460. package/dist/cjs/header/components/kind/basic/MobileMenu.js +2 -157
  461. package/dist/cjs/header/components/kind/basic/index.js +2 -109
  462. package/dist/cjs/header/components/kind/modern/index.js +2 -33
  463. package/dist/cjs/header/hooks/useBodyOverlay.js +1 -0
  464. package/dist/cjs/header/index.js +1 -0
  465. package/dist/cjs/header/next.js +1 -16
  466. package/dist/cjs/header/settings/Header.js +8 -0
  467. package/dist/cjs/header/settings/configs/presets.js +7 -0
  468. package/dist/cjs/header/settings/configs/settings.js +4 -0
  469. package/dist/cjs/header/settings/configs/ui-v1.js +1 -0
  470. package/dist/cjs/header/settings/configs/ui-v2.js +1 -0
  471. package/dist/cjs/heading/components/Heading.js +2 -0
  472. package/dist/cjs/heading/components/Heading.liquid.js +1 -0
  473. package/dist/cjs/heading/index.js +1 -0
  474. package/dist/cjs/heading/next.js +1 -16
  475. package/dist/cjs/heading/settings/Heading.js +5 -0
  476. package/dist/cjs/heading/settings/configs/presets.js +3 -0
  477. package/dist/cjs/heading/settings/configs/settings.js +1 -0
  478. package/dist/cjs/heading/settings/configs/ui-v1.js +1 -0
  479. package/dist/cjs/heading/settings/configs/ui-v2.js +1 -0
  480. package/dist/cjs/helpers.js +1 -182
  481. package/dist/cjs/hero-banner/common/animation-manager.js +1 -0
  482. package/dist/cjs/hero-banner/common/attrs.js +1 -0
  483. package/dist/cjs/hero-banner/common/classes.js +1 -0
  484. package/dist/cjs/hero-banner/common/helpers.js +1 -0
  485. package/dist/cjs/hero-banner/common/styles.js +1 -0
  486. package/dist/cjs/hero-banner/components/HeroBanner.js +2 -0
  487. package/dist/cjs/hero-banner/components/HeroBanner.liquid.js +21 -0
  488. package/dist/cjs/hero-banner/components/HeroBannerItem.js +2 -0
  489. package/dist/cjs/hero-banner/components/HeroBannerItem.liquid.js +18 -0
  490. package/dist/cjs/hero-banner/hooks/useHeroBanner.js +1 -0
  491. package/dist/cjs/hero-banner/hooks/useIntersectionObserver.js +1 -0
  492. package/dist/cjs/hero-banner/hooks/useTranslateValue.js +1 -0
  493. package/dist/cjs/hero-banner/hooks/useWindowSize.js +1 -0
  494. package/dist/cjs/hero-banner/index.js +1 -0
  495. package/dist/cjs/hero-banner/next.js +1 -0
  496. package/dist/cjs/hero-banner/settings/HeroBanner.js +5 -0
  497. package/dist/cjs/hero-banner/settings/configs/presets/banner-1-col-pre-sales-page.js +18 -0
  498. package/dist/cjs/hero-banner/settings/configs/presets/banner-1-col.js +18 -0
  499. package/dist/cjs/hero-banner/settings/configs/presets/banner-content-left-pre-sales-page.js +17 -0
  500. package/dist/cjs/hero-banner/settings/configs/presets/banner-content-left.js +17 -0
  501. package/dist/cjs/hero-banner/settings/configs/presets/banner-content-right-pre-sales-page.js +26 -0
  502. package/dist/cjs/hero-banner/settings/configs/presets/banner-content-right.js +26 -0
  503. package/dist/cjs/hero-banner/settings/configs/presets/banner-parallax-pre-sales-page.js +16 -0
  504. package/dist/cjs/hero-banner/settings/configs/presets/banner-parallax.js +16 -0
  505. package/dist/cjs/hero-banner/settings/configs/presets/banner-video-pre-sales-page.js +15 -0
  506. package/dist/cjs/hero-banner/settings/configs/presets/banner-video.js +15 -0
  507. package/dist/cjs/hero-banner/settings/configs/settings.js +146 -0
  508. package/dist/cjs/hero-banner/settings/configs/ui-v1.js +1 -0
  509. package/dist/cjs/hero-banner/settings/configs/ui-v2.js +1 -0
  510. package/dist/cjs/hooks/useGetProductId.js +1 -15
  511. package/dist/cjs/icon/common/attrs.js +1 -0
  512. package/dist/cjs/icon/common/classes.js +1 -0
  513. package/dist/cjs/icon/common/helpers.js +1 -0
  514. package/dist/cjs/icon/common/styles.js +1 -0
  515. package/dist/cjs/icon/components/Icon.js +2 -75
  516. package/dist/cjs/icon/components/Icon.liquid.js +8 -73
  517. package/dist/cjs/icon/index.js +1 -0
  518. package/dist/cjs/icon/next.js +1 -16
  519. package/dist/cjs/icon/settings/Icon.js +6 -0
  520. package/dist/cjs/icon/settings/configs/presets.js +9 -0
  521. package/dist/cjs/icon/settings/configs/settings.js +2 -0
  522. package/dist/cjs/icon/settings/configs/ui-v1.js +1 -0
  523. package/dist/cjs/icon/settings/configs/ui-v2.js +1 -0
  524. package/dist/cjs/icon-list/common/attrs.js +1 -0
  525. package/dist/cjs/icon-list/common/classes.js +1 -0
  526. package/dist/cjs/icon-list/common/styles.js +1 -0
  527. package/dist/cjs/icon-list/components/IconList.js +2 -84
  528. package/dist/cjs/icon-list/components/IconList.liquid.js +14 -50
  529. package/dist/cjs/icon-list/components/IconListItem.js +2 -31
  530. package/dist/cjs/icon-list/components/IconListItem.liquid.js +6 -22
  531. package/dist/cjs/icon-list/index.js +1 -0
  532. package/dist/cjs/icon-list/next.js +1 -20
  533. package/dist/cjs/icon-list/settings/IconList.js +29 -0
  534. package/dist/cjs/icon-list/settings/IconListItem.js +1 -0
  535. package/dist/cjs/icon-list/settings/configs/items.js +1 -0
  536. package/dist/cjs/icon-list/settings/configs/settings.js +1 -0
  537. package/dist/cjs/icon-list/settings/configs/ui-v1.js +1 -0
  538. package/dist/cjs/icon-list/settings/configs/ui-v2.js +1 -0
  539. package/dist/cjs/icon-list-hoz/common/attrs.js +1 -0
  540. package/dist/cjs/icon-list-hoz/common/classes.js +1 -0
  541. package/dist/cjs/icon-list-hoz/common/styles.js +1 -0
  542. package/dist/cjs/icon-list-hoz/components/IconListHoz.js +2 -71
  543. package/dist/cjs/icon-list-hoz/components/IconListHoz.liquid.js +9 -42
  544. package/dist/cjs/icon-list-hoz/components/IconListHozItem.js +2 -30
  545. package/dist/cjs/icon-list-hoz/components/IconListIHozItem.liquid.js +5 -0
  546. package/dist/cjs/icon-list-hoz/index.js +1 -0
  547. package/dist/cjs/icon-list-hoz/next.js +1 -20
  548. package/dist/cjs/icon-list-hoz/settings/IconListHoz.js +7 -0
  549. package/dist/cjs/icon-list-hoz/settings/IconListItem.js +1 -0
  550. package/dist/cjs/icon-list-hoz/settings/ItemTemplate.js +1 -0
  551. package/dist/cjs/icon-list-hoz/settings/configs/presets.js +17 -0
  552. package/dist/cjs/icon-list-hoz/settings/configs/settings.js +1 -0
  553. package/dist/cjs/icon-list-hoz/settings/configs/uiV1.js +1 -0
  554. package/dist/cjs/icon-list-hoz/settings/configs/uiV2.js +1 -0
  555. package/dist/cjs/icon-list-v2/common/classes.js +1 -0
  556. package/dist/cjs/icon-list-v2/common/helpers.js +1 -0
  557. package/dist/cjs/icon-list-v2/common/styles.js +1 -0
  558. package/dist/cjs/icon-list-v2/components/IconList.js +2 -147
  559. package/dist/cjs/icon-list-v2/components/IconList.liquid.js +31 -114
  560. package/dist/cjs/icon-list-v2/hooks/useIconLineHeight.js +1 -0
  561. package/dist/cjs/icon-list-v2/index.js +1 -0
  562. package/dist/cjs/icon-list-v2/next.js +1 -16
  563. package/dist/cjs/icon-list-v2/settings/IconList.js +31 -0
  564. package/dist/cjs/icon-list-v2/settings/configs/items.js +1 -0
  565. package/dist/cjs/icon-list-v2/settings/configs/settings.js +1 -0
  566. package/dist/cjs/icon-list-v2/settings/configs/ui-v1.js +1 -0
  567. package/dist/cjs/icon-list-v2/settings/configs/ui-v2.js +1 -0
  568. package/dist/cjs/image/common/attrs.js +1 -0
  569. package/dist/cjs/image/common/classes.js +1 -0
  570. package/dist/cjs/image/common/helpers.js +12 -0
  571. package/dist/cjs/image/common/styles.js +1 -0
  572. package/dist/cjs/image/components/AdaptiveImage.js +2 -61
  573. package/dist/cjs/image/components/AdaptiveImage.liquid.js +15 -55
  574. package/dist/cjs/image/components/Image.js +2 -156
  575. package/dist/cjs/image/components/Image.liquid.js +14 -118
  576. package/dist/cjs/image/components/Modal3d.liquid.js +5 -35
  577. package/dist/cjs/image/components/NextImage.js +2 -70
  578. package/dist/cjs/image/components/NextImage.liquid.js +7 -127
  579. package/dist/cjs/image/components/Video.liquid.js +5 -26
  580. package/dist/cjs/image/index.js +1 -0
  581. package/dist/cjs/image/next.js +1 -20
  582. package/dist/cjs/image/settings/Image.js +5 -0
  583. package/dist/cjs/image/settings/configs/presets.js +25 -0
  584. package/dist/cjs/image/settings/configs/settings.js +1 -0
  585. package/dist/cjs/image/settings/configs/ui-v1.js +4 -0
  586. package/dist/cjs/image/settings/configs/ui-v2.js +1 -0
  587. package/dist/cjs/image-comparison/common/attrs.js +1 -0
  588. package/dist/cjs/image-comparison/common/classes.js +1 -0
  589. package/dist/cjs/image-comparison/common/helpers.js +1 -0
  590. package/dist/cjs/image-comparison/common/styles.js +20 -0
  591. package/dist/cjs/image-comparison/components/CompareImage.js +2 -561
  592. package/dist/cjs/image-comparison/components/CompareImage.liquid.js +23 -347
  593. package/dist/cjs/image-comparison/components/ImageComparison.js +2 -61
  594. package/dist/cjs/image-comparison/components/ImageComparison.liquid.js +4 -38
  595. package/dist/cjs/image-comparison/components/Label.js +1 -0
  596. package/dist/cjs/image-comparison/components/Label.liquid.js +12 -52
  597. package/dist/cjs/image-comparison/components/SlideHandle.js +1 -0
  598. package/dist/cjs/image-comparison/components/SlideHandle.liquid.js +26 -0
  599. package/dist/cjs/image-comparison/hooks/useCompareImage.js +1 -0
  600. package/dist/cjs/image-comparison/index.js +1 -0
  601. package/dist/cjs/image-comparison/next.js +1 -16
  602. package/dist/cjs/image-comparison/settings/ImageComparison.js +12 -0
  603. package/dist/cjs/image-comparison/settings/configs/settings.js +1 -0
  604. package/dist/cjs/image-comparison/settings/configs/ui-v1.js +1 -0
  605. package/dist/cjs/image-comparison/settings/configs/ui-v2.js +1 -0
  606. package/dist/cjs/image-detection/components/ImageDetection.js +2 -0
  607. package/dist/cjs/image-detection/index.js +1 -0
  608. package/dist/cjs/image-detection/next.js +1 -16
  609. package/dist/cjs/image-detection/settings/ImageDetection.js +3 -0
  610. package/dist/cjs/image-detection/settings/configs/settings.js +1 -0
  611. package/dist/cjs/index.js +1 -647
  612. package/dist/cjs/index.liquid.js +2 -397
  613. package/dist/cjs/input/components/Input.js +2 -0
  614. package/dist/cjs/input/index.js +1 -0
  615. package/dist/cjs/input/next.js +1 -16
  616. package/dist/cjs/input/settings/Input.js +7 -0
  617. package/dist/cjs/input/settings/configs/settings.js +1 -0
  618. package/dist/cjs/line/common/classes.js +1 -0
  619. package/dist/cjs/line/common/helpers.js +1 -0
  620. package/dist/cjs/line/common/styles.js +1 -0
  621. package/dist/cjs/line/components/Divider.js +2 -0
  622. package/dist/cjs/line/components/Divider.liquid.js +1 -0
  623. package/dist/cjs/line/components/Line.js +2 -0
  624. package/dist/cjs/line/components/Line.liquid.js +25 -0
  625. package/dist/cjs/line/index.js +1 -0
  626. package/dist/cjs/line/next.js +1 -16
  627. package/dist/cjs/line/settings/Line.js +5 -0
  628. package/dist/cjs/line/settings/configs/presets.js +5 -0
  629. package/dist/cjs/line/settings/configs/settings.js +1 -0
  630. package/dist/cjs/line/settings/configs/ui-v1.js +1 -0
  631. package/dist/cjs/line/settings/configs/ui-v2.js +1 -0
  632. package/dist/cjs/link/common/helpers.js +1 -0
  633. package/dist/cjs/link/components/CustomLink.js +2 -14
  634. package/dist/cjs/link/components/Link.js +2 -36
  635. package/dist/cjs/link/components/ProductLink.js +2 -18
  636. package/dist/cjs/link/components/next-link/CustomLink.js +2 -18
  637. package/dist/cjs/link/components/next-link/ProductLink.js +2 -22
  638. package/dist/cjs/link/components/next-link/index.js +2 -29
  639. package/dist/cjs/link/index.js +1 -0
  640. package/dist/cjs/link/next.js +1 -16
  641. package/dist/cjs/link/settings/Link.js +1 -0
  642. package/dist/cjs/link/settings/configs/settings.js +1 -0
  643. package/dist/cjs/marquee/common/classes.js +1 -0
  644. package/dist/cjs/marquee/common/helpers.js +1 -0
  645. package/dist/cjs/marquee/common/styles.js +1 -0
  646. package/dist/cjs/marquee/components/Marquee.js +2 -157
  647. package/dist/cjs/marquee/components/Marquee.liquid.js +27 -232
  648. package/dist/cjs/marquee/components/MarqueeBase.js +2 -216
  649. package/dist/cjs/marquee/components/MarqueeBase.liquid.js +11 -69
  650. package/dist/cjs/marquee/components/MarqueeItem.js +2 -99
  651. package/dist/cjs/marquee/components/MarqueeItem.liquid.js +6 -47
  652. package/dist/cjs/marquee/hooks/useMarquee.js +1 -0
  653. package/dist/cjs/marquee/hooks/useMarqueeBase.js +1 -0
  654. package/dist/cjs/marquee/hooks/useMarqueeItem.js +1 -0
  655. package/dist/cjs/marquee/hooks/useMarqueeScrollToItem.js +1 -191
  656. package/dist/cjs/marquee/hooks/useMarqueeStyles.js +1 -164
  657. package/dist/cjs/marquee/hooks/useTransition.js +1 -20
  658. package/dist/cjs/marquee/index.js +1 -0
  659. package/dist/cjs/marquee/next.js +1 -20
  660. package/dist/cjs/marquee/settings/Marquee.js +5 -0
  661. package/dist/cjs/marquee/settings/MarqueeItem.js +1 -0
  662. package/dist/cjs/marquee/settings/configs/child-image-template.js +1 -0
  663. package/dist/cjs/marquee/settings/configs/child-template.js +1 -0
  664. package/dist/cjs/marquee/settings/configs/child-text-template.js +1 -0
  665. package/dist/cjs/marquee/settings/configs/presets.js +46 -0
  666. package/dist/cjs/marquee/settings/configs/settings-v2.js +2 -0
  667. package/dist/cjs/marquee/settings/configs/ui-v1.js +1 -0
  668. package/dist/cjs/marquee/settings/configs/ui-v2.js +1 -0
  669. package/dist/cjs/menu/components/DropdownMenu.js +2 -67
  670. package/dist/cjs/menu/components/MegaMenu.js +2 -67
  671. package/dist/cjs/menu/components/Menu.js +2 -20
  672. package/dist/cjs/menu/components/NavigationMenu.js +2 -63
  673. package/dist/cjs/menu/components/SubMegaMenu.js +2 -46
  674. package/dist/cjs/menu/components/SubNavigationMenu.js +2 -61
  675. package/dist/cjs/menu/index.js +1 -0
  676. package/dist/cjs/menu/next.js +1 -16
  677. package/dist/cjs/menu/settings/Menu.js +1 -0
  678. package/dist/cjs/menu/settings/configs/settings.js +1 -0
  679. package/dist/cjs/modal/common/helpers.js +1 -0
  680. package/dist/cjs/modal/components/Modal.js +2 -98
  681. package/dist/cjs/modal/components/confirm.js +2 -158
  682. package/dist/cjs/modal/hooks/useModalContainer.js +1 -21
  683. package/dist/cjs/modal/index.js +1 -0
  684. package/dist/cjs/modal/next.js +1 -16
  685. package/dist/cjs/modal/settings/Modal.js +1 -0
  686. package/dist/cjs/modal/settings/configs/settings.js +1 -0
  687. package/dist/cjs/next.js +2 -97
  688. package/dist/cjs/notification/components/Notice.js +2 -74
  689. package/dist/cjs/notification/components/Notifications.js +2 -96
  690. package/dist/cjs/notification/components/icons/CloseIcon.js +2 -17
  691. package/dist/cjs/notification/hooks/useNotification.js +2 -0
  692. package/dist/cjs/pagination/components/Pagination.js +2 -0
  693. package/dist/cjs/pagination/index.js +1 -0
  694. package/dist/cjs/pagination/next.js +1 -16
  695. package/dist/cjs/pagination/settings/Pagination.js +1 -0
  696. package/dist/cjs/pagination/settings/configs/settings.js +1 -0
  697. package/dist/cjs/post-purchase/advanced-list/common/attrs.js +1 -0
  698. package/dist/cjs/post-purchase/advanced-list/common/classes.js +1 -0
  699. package/dist/cjs/post-purchase/advanced-list/common/styles.js +1 -0
  700. package/dist/cjs/post-purchase/advanced-list/components/AdvancedListPostPurchase.js +2 -38
  701. package/dist/cjs/post-purchase/advanced-list/components/PostPurchaseAdvancedListItem.js +2 -21
  702. package/dist/cjs/post-purchase/advanced-list/index.js +1 -0
  703. package/dist/cjs/post-purchase/advanced-list/next.js +1 -15
  704. package/dist/cjs/post-purchase/advanced-list/settings/AdvancedListPostPurchase.js +8 -0
  705. package/dist/cjs/post-purchase/advanced-list/settings/PostPurchaseAdvancedListItem.js +1 -0
  706. package/dist/cjs/post-purchase/advanced-list/settings/configs/presets.js +8 -0
  707. package/dist/cjs/post-purchase/advanced-list/settings/configs/settings.js +1 -0
  708. package/dist/cjs/post-purchase/advanced-list/settings/configs/templates.js +1 -0
  709. package/dist/cjs/post-purchase/advanced-list/settings/configs/ui-v1.js +1 -0
  710. package/dist/cjs/post-purchase/advanced-list/settings/configs/ui-v2.js +1 -0
  711. package/dist/cjs/post-purchase/advanced-list/types.js +1 -0
  712. package/dist/cjs/post-purchase/button/common/classes.js +1 -0
  713. package/dist/cjs/post-purchase/button/common/styles.js +1 -0
  714. package/dist/cjs/post-purchase/button/components/Button.js +2 -0
  715. package/dist/cjs/post-purchase/button/index.js +1 -0
  716. package/dist/cjs/post-purchase/button/next.js +1 -11
  717. package/dist/cjs/post-purchase/button/settings/Button.js +5 -0
  718. package/dist/cjs/post-purchase/button/settings/configs/presets.js +5 -0
  719. package/dist/cjs/post-purchase/button/settings/configs/settings.js +1 -0
  720. package/dist/cjs/post-purchase/button/settings/configs/ui-v1.js +1 -0
  721. package/dist/cjs/post-purchase/button/settings/configs/ui-v2.js +1 -0
  722. package/dist/cjs/post-purchase/callout-banner/common/classes.js +1 -0
  723. package/dist/cjs/post-purchase/callout-banner/common/styles.js +1 -0
  724. package/dist/cjs/post-purchase/callout-banner/components/CalloutBox.js +2 -38
  725. package/dist/cjs/post-purchase/callout-banner/components/CalloutText.js +2 -49
  726. package/dist/cjs/post-purchase/callout-banner/index.js +1 -0
  727. package/dist/cjs/post-purchase/callout-banner/next.js +1 -15
  728. package/dist/cjs/post-purchase/callout-banner/settings/CalloutBox.js +1 -0
  729. package/dist/cjs/post-purchase/callout-banner/settings/CalloutText.js +1 -0
  730. package/dist/cjs/post-purchase/callout-banner/settings/config/callout-box/preset.js +16 -0
  731. package/dist/cjs/post-purchase/callout-banner/settings/config/callout-box/setting.js +46 -0
  732. package/dist/cjs/post-purchase/callout-banner/settings/config/callout-box/ui-v1.js +1 -0
  733. package/dist/cjs/post-purchase/callout-banner/settings/config/callout-box/ui-v2.js +1 -0
  734. package/dist/cjs/post-purchase/callout-banner/settings/config/callout-text/preset.js +5 -0
  735. package/dist/cjs/post-purchase/callout-banner/settings/config/callout-text/setting.js +1 -0
  736. package/dist/cjs/post-purchase/callout-banner/settings/config/callout-text/ui-v1.js +1 -0
  737. package/dist/cjs/post-purchase/callout-banner/settings/config/callout-text/ui-v2.js +1 -0
  738. package/dist/cjs/post-purchase/common/constants.js +1 -0
  739. package/dist/cjs/post-purchase/common/helper.js +1 -0
  740. package/dist/cjs/post-purchase/countdown-timer/common/classes.js +1 -0
  741. package/dist/cjs/post-purchase/countdown-timer/common/styles.js +1 -0
  742. package/dist/cjs/post-purchase/countdown-timer/components/PostPurchaseCountdownTimer.js +2 -53
  743. package/dist/cjs/post-purchase/countdown-timer/components/TextCountdown.js +2 -43
  744. package/dist/cjs/post-purchase/countdown-timer/hooks/useCountdownTimer.js +1 -47
  745. package/dist/cjs/post-purchase/countdown-timer/hooks/useGetTimeExpired.js +1 -0
  746. package/dist/cjs/post-purchase/countdown-timer/index.js +1 -0
  747. package/dist/cjs/post-purchase/countdown-timer/next.js +1 -11
  748. package/dist/cjs/post-purchase/countdown-timer/settings/CountdownTimer.js +2 -370
  749. package/dist/cjs/post-purchase/countdown-timer/settings/config/preset.js +3 -0
  750. package/dist/cjs/post-purchase/countdown-timer/settings/config/setting.js +1 -0
  751. package/dist/cjs/post-purchase/countdown-timer/settings/config/ui-v1.js +1 -0
  752. package/dist/cjs/post-purchase/countdown-timer/settings/config/ui-v2.js +1 -0
  753. package/dist/cjs/post-purchase/image/common/classes.js +1 -0
  754. package/dist/cjs/post-purchase/image/common/helpers.js +1 -0
  755. package/dist/cjs/post-purchase/image/common/styles.js +1 -0
  756. package/dist/cjs/post-purchase/image/components/AdaptiveImage.js +2 -55
  757. package/dist/cjs/post-purchase/image/components/Image.js +2 -52
  758. package/dist/cjs/post-purchase/image/components/Img.js +2 -29
  759. package/dist/cjs/post-purchase/image/index.js +1 -0
  760. package/dist/cjs/post-purchase/image/next.js +1 -11
  761. package/dist/cjs/post-purchase/image/settings/Image.js +11 -0
  762. package/dist/cjs/post-purchase/image/settings/configs/setting-v2.js +1 -0
  763. package/dist/cjs/post-purchase/image/settings/configs/ui-v2.js +1 -0
  764. package/dist/cjs/post-purchase/line/common/classes.js +1 -0
  765. package/dist/cjs/post-purchase/line/common/styles.js +1 -0
  766. package/dist/cjs/post-purchase/line/components/PostPurchaseLine.js +2 -53
  767. package/dist/cjs/post-purchase/line/index.js +1 -0
  768. package/dist/cjs/post-purchase/line/next.js +1 -11
  769. package/dist/cjs/post-purchase/line/settings/PostPurchaseLine.js +5 -0
  770. package/dist/cjs/post-purchase/line/settings/configs/presets.js +5 -0
  771. package/dist/cjs/post-purchase/line/settings/configs/settings.js +1 -0
  772. package/dist/cjs/post-purchase/line/settings/configs/ui-v1.js +1 -0
  773. package/dist/cjs/post-purchase/line/settings/configs/ui-v2.js +1 -0
  774. package/dist/cjs/post-purchase/line/types.js +1 -0
  775. package/dist/cjs/post-purchase/link/common/classes.js +1 -0
  776. package/dist/cjs/post-purchase/link/common/helpers.js +1 -0
  777. package/dist/cjs/post-purchase/link/common/styles.js +1 -0
  778. package/dist/cjs/post-purchase/link/components/PostPurchaseLink.js +2 -0
  779. package/dist/cjs/post-purchase/link/index.js +1 -0
  780. package/dist/cjs/post-purchase/link/next.js +1 -0
  781. package/dist/cjs/post-purchase/link/settings/PostPurchaseLink.js +5 -0
  782. package/dist/cjs/post-purchase/link/settings/configs/presets.js +13 -0
  783. package/dist/cjs/post-purchase/link/settings/configs/settings.js +1 -0
  784. package/dist/cjs/post-purchase/link/settings/configs/ui-v1.js +1 -0
  785. package/dist/cjs/post-purchase/link/settings/configs/ui-v2.js +1 -0
  786. package/dist/cjs/post-purchase/product/common/attrs.js +1 -0
  787. package/dist/cjs/post-purchase/product/common/classes.js +1 -0
  788. package/dist/cjs/post-purchase/product/common/helpers.js +1 -0
  789. package/dist/cjs/post-purchase/product/common/styles.js +1 -0
  790. package/dist/cjs/post-purchase/product/components/AcceptButton.js +2 -35
  791. package/dist/cjs/post-purchase/product/components/ProductDescription.js +2 -25
  792. package/dist/cjs/post-purchase/product/components/ProductDiscountTag.js +2 -41
  793. package/dist/cjs/post-purchase/product/components/ProductPrice.js +2 -71
  794. package/dist/cjs/post-purchase/product/components/ProductPriceBreakdown.js +2 -160
  795. package/dist/cjs/post-purchase/product/components/ProductQuantity.js +2 -86
  796. package/dist/cjs/post-purchase/product/components/ProductTitle.js +2 -25
  797. package/dist/cjs/post-purchase/product/components/price-breakdown/MoneyLine.js +2 -0
  798. package/dist/cjs/post-purchase/product/components/product-image/FeatureImage.js +2 -58
  799. package/dist/cjs/post-purchase/product/components/product-image/ImageListCarousel.js +2 -76
  800. package/dist/cjs/post-purchase/product/components/product-image/ImageListGrid.js +2 -85
  801. package/dist/cjs/post-purchase/product/components/product-image/ItemCarouselPostPurchase.js +2 -0
  802. package/dist/cjs/post-purchase/product/components/product-image/ItemGridPostPurchase.js +2 -0
  803. package/dist/cjs/post-purchase/product/components/product-image/carousel-post-purchase/Arrow.js +2 -0
  804. package/dist/cjs/post-purchase/product/components/product-image/carousel-post-purchase/CarouselPostPurchase.js +2 -0
  805. package/dist/cjs/post-purchase/product/components/product-image/carousel-post-purchase/CarouselPostPurchaseContext.js +1 -0
  806. package/dist/cjs/post-purchase/product/components/product-image/carousel-post-purchase/CarouselWrapperPostPurchase.js +2 -0
  807. package/dist/cjs/post-purchase/product/components/product-image/index.js +2 -104
  808. package/dist/cjs/post-purchase/product/components/product-image/layouts/FeatureImageWithGalleryImage.js +2 -87
  809. package/dist/cjs/post-purchase/product/components/product-image/layouts/OnlyGalleryImage.js +2 -36
  810. package/dist/cjs/post-purchase/product/components/product-offer/common/attrs.js +1 -0
  811. package/dist/cjs/post-purchase/product/components/product-offer/common/classes.js +1 -0
  812. package/dist/cjs/post-purchase/product/components/product-offer/common/styles.js +1 -0
  813. package/dist/cjs/post-purchase/product/components/product-offer/components/ProductOffer.js +2 -0
  814. package/dist/cjs/post-purchase/product/components/product-offer/components/ProductOfferItem.js +2 -0
  815. package/dist/cjs/post-purchase/product/components/product-offer/hooks/useProductOfferData.js +1 -0
  816. package/dist/cjs/post-purchase/product/components/product-variant/common/classes.js +1 -0
  817. package/dist/cjs/post-purchase/product/components/product-variant/common/helpers.js +1 -0
  818. package/dist/cjs/post-purchase/product/components/product-variant/common/styles.js +1 -0
  819. package/dist/cjs/post-purchase/product/components/product-variant/components/ProductOption.js +1 -0
  820. package/dist/cjs/post-purchase/product/components/product-variant/components/ProductVariant.js +2 -0
  821. package/dist/cjs/post-purchase/product/components/product-variant/components/variants/Dropdown.js +2 -0
  822. package/dist/cjs/post-purchase/product/components/product-variant/components/variants/DropdownOption.js +2 -0
  823. package/dist/cjs/post-purchase/product/components/product-variant/components/variants/RectangleList.js +2 -0
  824. package/dist/cjs/post-purchase/product/components/product-variant/components/variants/VariantGroup.js +2 -0
  825. package/dist/cjs/post-purchase/product/components/product-variant/components/variants/VariantItem.js +2 -0
  826. package/dist/cjs/post-purchase/product/components/product-variant/components/variants/VariantOption.js +2 -0
  827. package/dist/cjs/post-purchase/product/components/product-variant/hooks/useTransition.js +1 -0
  828. package/dist/cjs/post-purchase/product/constants/ProductOfferPlaceholder.js +1 -127
  829. package/dist/cjs/post-purchase/product/constants/index.js +1 -0
  830. package/dist/cjs/post-purchase/product/helpers/index.js +1 -35
  831. package/dist/cjs/post-purchase/product/helpers/product-price-breakdown/getClasses.js +1 -0
  832. package/dist/cjs/post-purchase/product/helpers/product-price-breakdown/getStyles.js +1 -0
  833. package/dist/cjs/post-purchase/product/helpers/product-quantity/getClasses.js +1 -0
  834. package/dist/cjs/post-purchase/product/helpers/product-quantity/getStyles.js +1 -0
  835. package/dist/cjs/post-purchase/product/hooks/useCarousel.js +1 -0
  836. package/dist/cjs/post-purchase/product/hooks/useDynamicProduct.js +1 -28
  837. package/dist/cjs/post-purchase/product/hooks/useFeatureImagePostPurchase.js +1 -0
  838. package/dist/cjs/post-purchase/product/hooks/useGetItemGapPriceBreakdown.js +1 -0
  839. package/dist/cjs/post-purchase/product/hooks/useGetMoneyLines.js +1 -0
  840. package/dist/cjs/post-purchase/product/hooks/useGetTextSetting.js +1 -0
  841. package/dist/cjs/post-purchase/product/hooks/useHandleQuantity.js +1 -0
  842. package/dist/cjs/post-purchase/product/hooks/useListCarousel.js +1 -0
  843. package/dist/cjs/post-purchase/product/hooks/useNavigationCarouselPostPurchase.js +1 -0
  844. package/dist/cjs/post-purchase/product/hooks/useProductImagePostPurchase.js +1 -0
  845. package/dist/cjs/post-purchase/product/hooks/useSetCollapsePrice.js +1 -0
  846. package/dist/cjs/post-purchase/product/hooks/useSlideCarousel.js +1 -0
  847. package/dist/cjs/post-purchase/product/index.js +1 -0
  848. package/dist/cjs/post-purchase/product/next.js +1 -48
  849. package/dist/cjs/post-purchase/product/settings/accept-button/configs/presets.js +5 -0
  850. package/dist/cjs/post-purchase/product/settings/accept-button/configs/settings.js +1 -0
  851. package/dist/cjs/post-purchase/product/settings/accept-button/configs/ui-v1.js +1 -0
  852. package/dist/cjs/post-purchase/product/settings/accept-button/configs/ui-v2.js +1 -0
  853. package/dist/cjs/post-purchase/product/settings/accept-button/index.js +5 -0
  854. package/dist/cjs/post-purchase/product/settings/presets-config/product-presets/product-1-col.js +2 -214
  855. package/dist/cjs/post-purchase/product/settings/presets-config/product-presets/product-2-col.js +2 -213
  856. package/dist/cjs/post-purchase/product/settings/presets-config/product-presets/product-default.js +2 -214
  857. package/dist/cjs/post-purchase/product/settings/presets-config/product-presets/product-offer-1-col.js +2 -199
  858. package/dist/cjs/post-purchase/product/settings/presets-config/product-presets/product-offer-2-col.js +2 -212
  859. package/dist/cjs/post-purchase/product/settings/presets-config/product-presets/product-offer-default.js +2 -213
  860. package/dist/cjs/post-purchase/product/settings/product-description/ProductDescription.js +9 -0
  861. package/dist/cjs/post-purchase/product/settings/product-description/configs/settings-v2.js +1 -0
  862. package/dist/cjs/post-purchase/product/settings/product-description/configs/ui-v1.js +1 -0
  863. package/dist/cjs/post-purchase/product/settings/product-description/configs/ui-v2.js +1 -0
  864. package/dist/cjs/post-purchase/product/settings/product-discount-tag/ProductDiscountTag.js +4 -0
  865. package/dist/cjs/post-purchase/product/settings/product-discount-tag/configs/setting-v2.js +1 -0
  866. package/dist/cjs/post-purchase/product/settings/product-discount-tag/configs/ui-v1.js +1 -0
  867. package/dist/cjs/post-purchase/product/settings/product-discount-tag/configs/ui-v2.js +1 -0
  868. package/dist/cjs/post-purchase/product/settings/product-image/ProductFeatureImage.js +1 -101
  869. package/dist/cjs/post-purchase/product/settings/product-image/ProductGalleryImage.js +1 -223
  870. package/dist/cjs/post-purchase/product/settings/product-image/ProductImageLayoutSetting.js +1 -152
  871. package/dist/cjs/post-purchase/product/settings/product-image/ProductImages.js +5 -166
  872. package/dist/cjs/post-purchase/product/settings/product-image/configs/settings-v2.js +1 -0
  873. package/dist/cjs/post-purchase/product/settings/product-image/configs/ui-v1.js +1 -0
  874. package/dist/cjs/post-purchase/product/settings/product-image/configs/ui-v2.js +1 -0
  875. package/dist/cjs/post-purchase/product/settings/product-offer/configs/settings-v2.js +46 -0
  876. package/dist/cjs/post-purchase/product/settings/product-offer/configs/ui-v1.js +1 -0
  877. package/dist/cjs/post-purchase/product/settings/product-offer/configs/ui-v2.js +1 -0
  878. package/dist/cjs/post-purchase/product/settings/product-offer/index.js +8 -0
  879. package/dist/cjs/post-purchase/product/settings/product-price/ProductPrice.js +15 -0
  880. package/dist/cjs/post-purchase/product/settings/product-price/configs/settings-v2.js +1 -0
  881. package/dist/cjs/post-purchase/product/settings/product-price/configs/ui-v1.js +1 -0
  882. package/dist/cjs/post-purchase/product/settings/product-price/configs/ui-v2.js +1 -0
  883. package/dist/cjs/post-purchase/product/settings/product-price-breakdown/configs/presets.js +12 -0
  884. package/dist/cjs/post-purchase/product/settings/product-price-breakdown/configs/settings.js +1 -0
  885. package/dist/cjs/post-purchase/product/settings/product-price-breakdown/configs/ui-v1.js +1 -0
  886. package/dist/cjs/post-purchase/product/settings/product-price-breakdown/configs/ui-v2.js +1 -0
  887. package/dist/cjs/post-purchase/product/settings/product-price-breakdown/index.js +19 -0
  888. package/dist/cjs/post-purchase/product/settings/product-quantity/configs/presets.js +8 -0
  889. package/dist/cjs/post-purchase/product/settings/product-quantity/configs/settings.js +1 -0
  890. package/dist/cjs/post-purchase/product/settings/product-quantity/configs/ui-v1.js +1 -0
  891. package/dist/cjs/post-purchase/product/settings/product-quantity/configs/ui-v2.js +1 -0
  892. package/dist/cjs/post-purchase/product/settings/product-quantity/index.js +5 -0
  893. package/dist/cjs/post-purchase/product/settings/product-title/ProductTitle.js +9 -0
  894. package/dist/cjs/post-purchase/product/settings/product-title/configs/settings-v2.js +1 -0
  895. package/dist/cjs/post-purchase/product/settings/product-title/configs/ui-v1.js +1 -0
  896. package/dist/cjs/post-purchase/product/settings/product-title/configs/ui-v2.js +1 -0
  897. package/dist/cjs/post-purchase/product/settings/product-variants/ProductVariant.js +14 -0
  898. package/dist/cjs/post-purchase/product/settings/product-variants/configs/settings-v1.js +14 -0
  899. package/dist/cjs/post-purchase/product/settings/product-variants/configs/settings-v2.js +14 -0
  900. package/dist/cjs/post-purchase/product/settings/product-variants/configs/ui-v1.js +1 -0
  901. package/dist/cjs/post-purchase/product/settings/product-variants/configs/ui-v2.js +1 -0
  902. package/dist/cjs/post-purchase/text/common/attrs.js +1 -0
  903. package/dist/cjs/post-purchase/text/common/classes.js +1 -0
  904. package/dist/cjs/post-purchase/text/common/helpers.js +1 -0
  905. package/dist/cjs/post-purchase/text/common/styles.js +1 -0
  906. package/dist/cjs/post-purchase/text/components/Text.js +3 -0
  907. package/dist/cjs/post-purchase/text/index.js +1 -11
  908. package/dist/cjs/post-purchase/text/next.js +1 -15
  909. package/dist/cjs/post-purchase/text/settings/heading/Heading.js +1 -0
  910. package/dist/cjs/post-purchase/text/settings/heading/configs/presets-v2.js +3 -0
  911. package/dist/cjs/post-purchase/text/settings/text/Text.js +7 -0
  912. package/dist/cjs/post-purchase/text/settings/text/configs/setting-v2.js +1 -0
  913. package/dist/cjs/post-purchase/text/settings/text/configs/ui-v1.js +1 -0
  914. package/dist/cjs/post-purchase/text/settings/text/configs/ui-v2.js +1 -0
  915. package/dist/cjs/postPurchaseSetting.js +1 -0
  916. package/dist/cjs/product/components/ProductImages.js +2 -284
  917. package/dist/cjs/product/components/ProductImages.liquid.js +17 -89
  918. package/dist/cjs/product/components/ProductNotFound.js +2 -147
  919. package/dist/cjs/product/components/SalePageProductListWarning.js +2 -61
  920. package/dist/cjs/product/components/constants/product-bundle.js +1 -8
  921. package/dist/cjs/product/components/dynamic-checkout/Button.liquid.js +20 -0
  922. package/dist/cjs/product/components/dynamic-checkout/DynamicCheckout.js +2 -0
  923. package/dist/cjs/product/components/dynamic-checkout/DynamicCheckout.liquid.js +1 -0
  924. package/dist/cjs/product/components/dynamic-checkout/common/classes.js +1 -0
  925. package/dist/cjs/product/components/dynamic-checkout/common/styles.js +126 -0
  926. package/dist/cjs/product/components/file-upload/UploadFile.js +2 -0
  927. package/dist/cjs/product/components/file-upload/UploadFile.liquid.js +33 -0
  928. package/dist/cjs/product/components/file-upload/common/attr.js +1 -0
  929. package/dist/cjs/product/components/file-upload/common/classes.js +1 -0
  930. package/dist/cjs/product/components/file-upload/common/helpers.js +1 -0
  931. package/dist/cjs/product/components/file-upload/common/style.js +1 -0
  932. package/dist/cjs/product/components/file-upload/settings/configs/presets.js +8 -0
  933. package/dist/cjs/product/components/file-upload/settings/configs/settings.js +19 -0
  934. package/dist/cjs/product/components/file-upload/settings/configs/ui-v1.js +1 -0
  935. package/dist/cjs/product/components/file-upload/settings/configs/ui-v2.js +1 -0
  936. package/dist/cjs/product/components/file-upload/settings/index.js +8 -0
  937. package/dist/cjs/product/components/product-badge/ProductBadge.js +2 -0
  938. package/dist/cjs/product/components/product-badge/ProductBadge.liquid.js +39 -0
  939. package/dist/cjs/product/components/product-badge/common/attrs.js +1 -0
  940. package/dist/cjs/product/components/product-badge/common/classes.js +1 -0
  941. package/dist/cjs/product/components/product-badge/common/styles.js +1 -0
  942. package/dist/cjs/product/components/product-badge/constants.js +1 -0
  943. package/dist/cjs/product/components/product-badge/types.js +1 -0
  944. package/dist/cjs/product/components/product-badge/utils/common.js +1 -0
  945. package/dist/cjs/product/components/product-badge/utils/generateLiquidContent.js +24 -0
  946. package/dist/cjs/product/components/product-badge/utils/getRotateShape.js +1 -0
  947. package/dist/cjs/product/components/product-badge/utils/getShapePosition.js +1 -0
  948. package/dist/cjs/product/components/product-badge/utils/getStyleAdvanced.js +1 -0
  949. package/dist/cjs/product/components/product-badge/utils/getWhiteSpace.js +1 -0
  950. package/dist/cjs/product/components/product-badge/utils/renderBadgeILP.js +1 -0
  951. package/dist/cjs/product/components/product-badge/utils/renderBadgeLiquid.js +171 -0
  952. package/dist/cjs/product/components/product-badge/utils/shape.js +1 -0
  953. package/dist/cjs/product/components/product-badge/utils/stylesV2.js +18 -0
  954. package/dist/cjs/product/components/product-bundle/ProductBundleDiscount.js +2 -0
  955. package/dist/cjs/product/components/product-bundle/ProductBundleDiscount.liquid.js +33 -0
  956. package/dist/cjs/product/components/product-bundle/ProductBundleDiscountChildrenItem.js +2 -0
  957. package/dist/cjs/product/components/product-bundle/ProductBundleDiscountChildrenItem.liquid.js +22 -0
  958. package/dist/cjs/product/components/product-bundle/ProductBundleDiscountItem.js +2 -0
  959. package/dist/cjs/product/components/product-bundle/ProductBundleDiscountItem.liquid.js +1 -0
  960. package/dist/cjs/product/components/product-bundle/common/classes.js +1 -0
  961. package/dist/cjs/product/components/product-bundle/common/helpers.js +1 -0
  962. package/dist/cjs/product/components/product-bundle/common/styles.js +1 -0
  963. package/dist/cjs/product/components/product-bundle/hooks/useProductBundleDataState.js +25 -0
  964. package/dist/cjs/product/components/product-bundle/hooks/useProductBundleDiscountState.js +1 -0
  965. package/dist/cjs/product/components/product-bundle/setting/ProductBundleDiscount.js +28 -0
  966. package/dist/cjs/product/components/product-bundle/setting/ProductBundleDiscountItem.js +1 -0
  967. package/dist/cjs/product/components/product-bundle/setting/configs/settings.js +1 -0
  968. package/dist/cjs/product/components/product-bundle/setting/configs/ui-v1.js +1 -0
  969. package/dist/cjs/product/components/product-bundle/setting/configs/ui-v2.js +1 -0
  970. package/dist/cjs/product/components/product-button/AddToCartButton.js +1 -0
  971. package/dist/cjs/product/components/product-button/AddToCartButton.liquid.js +1 -0
  972. package/dist/cjs/product/components/product-button/BlankSpace.js +1 -0
  973. package/dist/cjs/product/components/product-button/BlankSpace.liquid.js +3 -0
  974. package/dist/cjs/product/components/product-button/CartMessage.js +1 -0
  975. package/dist/cjs/product/components/product-button/PriceComponent.js +1 -0
  976. package/dist/cjs/product/components/product-button/PriceComponent.liquid.js +1 -0
  977. package/dist/cjs/product/components/product-button/PriceLayout.js +1 -0
  978. package/dist/cjs/product/components/product-button/PriceLayout.liquid.js +7 -0
  979. package/dist/cjs/product/components/product-button/ProductButton.js +2 -0
  980. package/dist/cjs/product/components/product-button/ProductButton.liquid.js +20 -0
  981. package/dist/cjs/product/components/product-button/ProductButtonPrice.js +2 -0
  982. package/dist/cjs/product/components/product-button/ProductButtonPrice.liquid.js +2 -0
  983. package/dist/cjs/product/components/product-button/Separator.js +1 -0
  984. package/dist/cjs/product/components/product-button/Separator.liquid.js +8 -0
  985. package/dist/cjs/product/components/product-button/SoldOutButton.js +1 -0
  986. package/dist/cjs/product/components/product-button/SoldOutButton.liquid.js +1 -0
  987. package/dist/cjs/product/components/product-button/common/classes.js +1 -0
  988. package/dist/cjs/product/components/product-button/common/constants.js +23 -0
  989. package/dist/cjs/product/components/product-button/common/data.js +1 -0
  990. package/dist/cjs/product/components/product-button/common/helpers.js +1 -0
  991. package/dist/cjs/product/components/product-button/common/styles.js +1 -0
  992. package/dist/cjs/product/components/product-button/helpers/getButtonDynamicSourceLocales.js +1 -0
  993. package/dist/cjs/product/components/product-button/hooks/useAddToCart.js +1 -0
  994. package/dist/cjs/product/components/product-button/hooks/useCartMessage.js +1 -0
  995. package/dist/cjs/product/components/product-button/hooks/useCartOperations.js +1 -0
  996. package/dist/cjs/product/components/product-button/hooks/useDispatchAfterSubmitEvent.js +1 -0
  997. package/dist/cjs/product/components/product-button/types.js +1 -0
  998. package/dist/cjs/product/components/product-description/ProductDescription.js +2 -0
  999. package/dist/cjs/product/components/product-description/ProductDescription.liquid.js +23 -0
  1000. package/dist/cjs/product/components/product-description/common/classes.js +1 -0
  1001. package/dist/cjs/product/components/product-description/common/helpers.js +3 -0
  1002. package/dist/cjs/product/components/product-description/common/styles.js +16 -0
  1003. package/dist/cjs/product/components/product-description/hooks/useGpDescription.js +1 -0
  1004. package/dist/cjs/product/components/product-discount-tag/ProductDiscountTag.js +2 -0
  1005. package/dist/cjs/product/components/product-discount-tag/ProductDiscountTag.liquid.js +30 -0
  1006. package/dist/cjs/product/components/product-discount-tag/common/classes.js +1 -0
  1007. package/dist/cjs/product/components/product-discount-tag/common/styles.js +1 -0
  1008. package/dist/cjs/product/components/product-discount-tag/hooks/useGpDiscountTag.js +1 -0
  1009. package/dist/cjs/product/components/product-images/ProductFeaturedImage.js +2 -0
  1010. package/dist/cjs/product/components/product-images/ProductFeaturedImage.liquid.js +93 -0
  1011. package/dist/cjs/product/components/product-images/ProductGalleryCarousel.js +2 -0
  1012. package/dist/cjs/product/components/product-images/ProductGalleryCarousel.liquid.js +72 -0
  1013. package/dist/cjs/product/components/product-images/ProductGalleryGrid.js +2 -0
  1014. package/dist/cjs/product/components/product-images/ProductGalleryGrid.liquid.js +86 -0
  1015. package/dist/cjs/product/components/product-images/ProductImagesLightBox.js +2 -0
  1016. package/dist/cjs/product/components/product-images/common/helpers.js +1 -0
  1017. package/dist/cjs/product/components/product-images/common/productFeaturedImage.js +1 -0
  1018. package/dist/cjs/product/components/product-images/common/productGallery.js +1 -0
  1019. package/dist/cjs/product/components/product-images-v2/ProductImageV2.js +26 -0
  1020. package/dist/cjs/product/components/product-images-v2/ProductImagesV2.liquid.js +44 -0
  1021. package/dist/cjs/product/components/product-images-v2/common/attrs.js +1 -0
  1022. package/dist/cjs/product/components/product-images-v2/common/classes.js +1 -0
  1023. package/dist/cjs/product/components/product-images-v2/common/common.js +1 -0
  1024. package/dist/cjs/product/components/product-images-v2/common/getBorderActiveCss.js +16 -0
  1025. package/dist/cjs/product/components/product-images-v2/common/hoverAction.js +1 -0
  1026. package/dist/cjs/product/components/product-images-v2/common/productFeaturedImage.js +1 -0
  1027. package/dist/cjs/product/components/product-images-v2/common/productGallery.js +1 -0
  1028. package/dist/cjs/product/components/product-images-v2/common/styles.js +1 -0
  1029. package/dist/cjs/product/components/product-images-v2/components/child/MediaIcon.js +2 -0
  1030. package/dist/cjs/product/components/product-images-v2/components/child/ProductFeatureVideo.js +1 -0
  1031. package/dist/cjs/product/components/product-images-v2/components/child/ProductFeaturedImageCarousel.js +1 -0
  1032. package/dist/cjs/product/components/product-images-v2/components/child/ProductFeaturedImageOnly.js +2 -0
  1033. package/dist/cjs/product/components/product-images-v2/components/child/ProductGalleryGrid.js +2 -0
  1034. package/dist/cjs/product/components/product-images-v2/components/feature-gallery/FeatureImageWithGallery.js +1 -0
  1035. package/dist/cjs/product/components/product-images-v2/components/feature-gallery/FeatureImageWithGallery.liquid.js +118 -0
  1036. package/dist/cjs/product/components/product-images-v2/components/feature-only/OnlyFeatureImage.js +2 -0
  1037. package/dist/cjs/product/components/product-images-v2/components/gallery-carousel/GalleryCarousel.js +1 -0
  1038. package/dist/cjs/product/components/product-images-v2/components/gallery-carousel/GalleryCarousel.liquid.js +46 -0
  1039. package/dist/cjs/product/components/product-images-v2/components/gallery-grid/GalleryGrid.js +2 -0
  1040. package/dist/cjs/product/components/product-images-v2/components/gallery-grid/GalleryGrid.liquid.js +89 -0
  1041. package/dist/cjs/product/components/product-images-v2/components/lightbox/ButtonOpenLightBox.js +2 -0
  1042. package/dist/cjs/product/components/product-images-v2/components/lightbox/ProductImagesLightBox.js +2 -0
  1043. package/dist/cjs/product/components/product-images-v2/composables/getProductImagesAttr.js +1 -0
  1044. package/dist/cjs/product/components/product-images-v2/composables/getProductImagesClassName.js +1 -0
  1045. package/dist/cjs/product/components/product-images-v2/composables/getProductImagesStyles.js +1 -0
  1046. package/dist/cjs/product/components/product-images-v2/hooks/useFeatureImageWithGallery.js +1 -0
  1047. package/dist/cjs/product/components/product-images-v2/hooks/useFilterImagesByVariant.js +1 -0
  1048. package/dist/cjs/product/components/product-images-v2/hooks/useGalleryCarousel.js +1 -0
  1049. package/dist/cjs/product/components/product-images-v2/hooks/useProductFeaturedImageCarousel.js +1 -0
  1050. package/dist/cjs/product/components/product-images-v2/hooks/useProductGalleryGrid.js +1 -0
  1051. package/dist/cjs/product/components/product-list/ProductList.js +1 -0
  1052. package/dist/cjs/product/components/product-list/ProductList.liquid.js +197 -0
  1053. package/dist/cjs/product/components/product-list/ProductListCarouselItem.liquid.js +15 -0
  1054. package/dist/cjs/product/components/product-list/ProductListCarouselLayout.js +1 -0
  1055. package/dist/cjs/product/components/product-list/ProductListCarouselLayout.liquid.js +22 -0
  1056. package/dist/cjs/product/components/product-list/ProductListGridItem.liquid.js +19 -0
  1057. package/dist/cjs/product/components/product-list/ProductListGridLayout.js +1 -0
  1058. package/dist/cjs/product/components/product-list/ProductListGridLayout.liquid.js +34 -0
  1059. package/dist/cjs/product/components/product-list/common/attrs.js +1 -0
  1060. package/dist/cjs/product/components/product-list/common/classes.js +1 -0
  1061. package/dist/cjs/product/components/product-list/common/helpers.js +1 -0
  1062. package/dist/cjs/product/components/product-list/common/styles.js +1 -0
  1063. package/dist/cjs/product/components/product-price/ProductPrice.js +2 -0
  1064. package/dist/cjs/product/components/product-price/ProductPrice.liquid.js +11 -0
  1065. package/dist/cjs/product/components/product-price/common/attrs.js +1 -0
  1066. package/dist/cjs/product/components/product-price/common/classes.js +1 -0
  1067. package/dist/cjs/product/components/product-price/common/helpers.js +11 -0
  1068. package/dist/cjs/product/components/product-price/hooks/useGpPrice.js +1 -0
  1069. package/dist/cjs/product/components/product-properties/ProductProperties.js +1 -0
  1070. package/dist/cjs/product/components/product-properties/ProductProperties.liquid.js +39 -0
  1071. package/dist/cjs/product/components/product-properties/common/attrs.js +1 -0
  1072. package/dist/cjs/product/components/product-properties/common/classes.js +1 -0
  1073. package/dist/cjs/product/components/product-properties/common/helpers.js +1 -0
  1074. package/dist/cjs/product/components/product-properties/common/styles.js +1 -0
  1075. package/dist/cjs/product/components/product-properties/property-choice/ProductPropertyChoice.js +2 -0
  1076. package/dist/cjs/product/components/product-properties/property-choice/ProductPropertyChoice.liquid.js +24 -0
  1077. package/dist/cjs/product/components/product-properties/property-choice/common/getProductPropertiesChoiceAttrs.js +1 -0
  1078. package/dist/cjs/product/components/product-properties/property-choice/common/getProductPropertiesChoiceClasses.js +1 -0
  1079. package/dist/cjs/product/components/product-properties/property-choice/common/getProductPropertiesChoiceInlineCss.js +6 -0
  1080. package/dist/cjs/product/components/product-properties/property-choice/common/getProductPropertiesChoiceStyles.js +1 -0
  1081. package/dist/cjs/product/components/product-properties/property-input/ProductPropertyInput.js +2 -0
  1082. package/dist/cjs/product/components/product-properties/property-input/ProductPropertyInput.liquid.js +15 -0
  1083. package/dist/cjs/product/components/product-properties/property-input/common/attrs.js +1 -0
  1084. package/dist/cjs/product/components/product-properties/property-input/common/classes.js +1 -0
  1085. package/dist/cjs/product/components/product-properties/property-input/common/helpers.js +1 -0
  1086. package/dist/cjs/product/components/product-properties/property-input/common/styles.js +1 -0
  1087. package/dist/cjs/product/components/product-properties/property-select/ProductPropertySelect.js +2 -0
  1088. package/dist/cjs/product/components/product-properties/property-select/ProductPropertySelect.liquid.js +17 -0
  1089. package/dist/cjs/product/components/product-properties/property-select/common/attrs.js +1 -0
  1090. package/dist/cjs/product/components/product-properties/property-select/common/classes.js +1 -0
  1091. package/dist/cjs/product/components/product-properties/property-select/common/styles.js +1 -0
  1092. package/dist/cjs/product/components/product-quantity/ProductQuantity.js +2 -0
  1093. package/dist/cjs/product/components/product-quantity/ProductQuantity.liquid.js +48 -0
  1094. package/dist/cjs/product/components/product-quantity/common/attrs.js +1 -0
  1095. package/dist/cjs/product/components/product-quantity/common/classes.js +1 -0
  1096. package/dist/cjs/product/components/product-quantity/common/helpers.js +17 -0
  1097. package/dist/cjs/product/components/product-quantity/common/styles.js +1 -0
  1098. package/dist/cjs/product/components/product-quantity/hooks/useProductQuantity.js +1 -0
  1099. package/dist/cjs/product/components/product-quick-view/ProductQuickView.js +2 -0
  1100. package/dist/cjs/product/components/product-quick-view/QuickView.js +2 -0
  1101. package/dist/cjs/product/components/product-sku/Sku.js +2 -0
  1102. package/dist/cjs/product/components/product-sku/Sku.liquid.js +6 -0
  1103. package/dist/cjs/product/components/product-title/ProductTitle.js +2 -0
  1104. package/dist/cjs/product/components/product-title/ProductTitle.liquid.js +3 -0
  1105. package/dist/cjs/product/components/product-title/common/helpers.js +1 -0
  1106. package/dist/cjs/product/components/product-variants/ProductVariants.js +2 -0
  1107. package/dist/cjs/product/components/product-variants/ProductVariants.liquid.js +157 -0
  1108. package/dist/cjs/product/components/product-variants/common/base/attrs.js +1 -0
  1109. package/dist/cjs/product/components/product-variants/common/base/classes.js +2 -0
  1110. package/dist/cjs/product/components/product-variants/common/base/styles.js +1 -0
  1111. package/dist/cjs/product/components/product-variants/common/common.js +1 -0
  1112. package/dist/cjs/product/components/product-variants/common/dropdown/attrs.js +1 -0
  1113. package/dist/cjs/product/components/product-variants/common/dropdown/classes.js +1 -0
  1114. package/dist/cjs/product/components/product-variants/common/dropdown/styles.js +1 -0
  1115. package/dist/cjs/product/components/product-variants/common/main/classes.js +1 -0
  1116. package/dist/cjs/product/components/product-variants/common/main/getAttr.js +1 -0
  1117. package/dist/cjs/product/components/product-variants/common/main/getData.js +1 -0
  1118. package/dist/cjs/product/components/product-variants/common/main/styles.js +1 -0
  1119. package/dist/cjs/product/components/product-variants/common/variants/attrs.js +1 -0
  1120. package/dist/cjs/product/components/product-variants/common/variants/classes.js +1 -0
  1121. package/dist/cjs/product/components/product-variants/common/variants/styles.js +1 -0
  1122. package/dist/cjs/product/components/product-variants/components/base/base.js +11 -0
  1123. package/dist/cjs/product/components/product-variants/components/base/base.liquid.js +25 -0
  1124. package/dist/cjs/product/components/product-variants/components/color/color.js +2 -0
  1125. package/dist/cjs/product/components/product-variants/components/color/color.liquid.js +13 -0
  1126. package/dist/cjs/product/components/product-variants/components/dropdown-group/DropdownGroup.js +2 -0
  1127. package/dist/cjs/product/components/product-variants/components/dropdown-group/DropdownGroup.liquid.js +1 -0
  1128. package/dist/cjs/product/components/product-variants/components/dropdown-option/DropdownOption.js +2 -0
  1129. package/dist/cjs/product/components/product-variants/components/dropdown-option/VariantOption.js +2 -0
  1130. package/dist/cjs/product/components/product-variants/components/dropdown-option/render-liquid/index.js +43 -0
  1131. package/dist/cjs/product/components/product-variants/components/dropdown-swatches/Dropdown.js +2 -0
  1132. package/dist/cjs/product/components/product-variants/components/dropdown-swatches/Dropdown.liquid.js +9 -0
  1133. package/dist/cjs/product/components/product-variants/components/dropdown-swatches/hooks/useDropdownSwatches.js +1 -0
  1134. package/dist/cjs/product/components/product-variants/components/image/Image.js +2 -0
  1135. package/dist/cjs/product/components/product-variants/components/image/Image.liquid.js +9 -0
  1136. package/dist/cjs/product/components/product-variants/components/image-shopify/ImageShopify.js +2 -0
  1137. package/dist/cjs/product/components/product-variants/components/image-shopify/ImageShopify.liquid.js +21 -0
  1138. package/dist/cjs/product/components/product-variants/components/rectangle-list/RectangleList.js +2 -0
  1139. package/dist/cjs/product/components/product-variants/components/variants/index.js +2 -0
  1140. package/dist/cjs/product/components/product-variants/components/variants/index.liquid.js +62 -0
  1141. package/dist/cjs/product/components/product-variants/hooks/useGpVariants.js +1 -0
  1142. package/dist/cjs/product/components/product-variants/hooks/useVariantInteraction.js +1 -0
  1143. package/dist/cjs/product/components/product-variants/utils/mappingVariantStyles.js +1 -0
  1144. package/dist/cjs/product/components/product-vendor/Vendor.js +2 -0
  1145. package/dist/cjs/product/components/product-vendor/Vendor.liquid.js +14 -0
  1146. package/dist/cjs/product/components/product-view-more/ProductViewMore.js +2 -0
  1147. package/dist/cjs/product/components/product-view-more/ProductViewMore.liquid.js +6 -0
  1148. package/dist/cjs/product/components/product-view-more/common/helpers.js +1 -0
  1149. package/dist/cjs/product/components/product-view-more/common/styles.js +1 -0
  1150. package/dist/cjs/product/components/product-wrap/Product.js +1 -0
  1151. package/dist/cjs/product/components/product-wrap/Product.liquid.js +99 -0
  1152. package/dist/cjs/product/components/product-wrap/common/helpers.js +1 -0
  1153. package/dist/cjs/product/components/product-wrap/hook/useProductSetting.js +1 -0
  1154. package/dist/cjs/product/helpers/function.js +1 -42
  1155. package/dist/cjs/product/helpers/product-bundle.js +1 -53
  1156. package/dist/cjs/product/helpers/product-image.js +1 -33
  1157. package/dist/cjs/product/helpers/product.js +1 -56
  1158. package/dist/cjs/product/helpers/tracking.js +1 -11
  1159. package/dist/cjs/product/index.js +1 -0
  1160. package/dist/cjs/product/next.js +1 -98
  1161. package/dist/cjs/product/settings/DynamicCheckout.js +5 -0
  1162. package/dist/cjs/product/settings/Product.js +8 -0
  1163. package/dist/cjs/product/settings/ProductBadge.js +1 -0
  1164. package/dist/cjs/product/settings/ProductButton.js +5 -0
  1165. package/dist/cjs/product/settings/ProductDescription.js +1 -0
  1166. package/dist/cjs/product/settings/ProductImages.js +25 -0
  1167. package/dist/cjs/product/settings/ProductList.js +8 -0
  1168. package/dist/cjs/product/settings/ProductPrice.js +5 -0
  1169. package/dist/cjs/product/settings/ProductProperties.js +8 -0
  1170. package/dist/cjs/product/settings/ProductQuantity.js +5 -0
  1171. package/dist/cjs/product/settings/ProductTag.js +1 -0
  1172. package/dist/cjs/product/settings/ProductTitle.js +6 -0
  1173. package/dist/cjs/product/settings/ProductVariants.js +5 -0
  1174. package/dist/cjs/product/settings/ProductViewMore.js +5 -0
  1175. package/dist/cjs/product/settings/Sku.js +5 -0
  1176. package/dist/cjs/product/settings/Vendor.js +5 -0
  1177. package/dist/cjs/product/settings/bundle-layout/horizontal-one.js +1 -0
  1178. package/dist/cjs/product/settings/bundle-layout/horizontal-three.js +1 -0
  1179. package/dist/cjs/product/settings/bundle-layout/horizontal-two.js +1 -0
  1180. package/dist/cjs/product/settings/bundle-layout/vertical-one.js +1 -0
  1181. package/dist/cjs/product/settings/bundle-layout/vertical-three.js +1 -0
  1182. package/dist/cjs/product/settings/bundle-layout/vertical-two.js +1 -0
  1183. package/dist/cjs/product/settings/dynamic-checkout/configs/presets.js +6 -0
  1184. package/dist/cjs/product/settings/dynamic-checkout/configs/settings.js +1 -0
  1185. package/dist/cjs/product/settings/dynamic-checkout/configs/ui-v1.js +1 -0
  1186. package/dist/cjs/product/settings/dynamic-checkout/configs/ui-v2.js +1 -0
  1187. package/dist/cjs/product/settings/product/configs/presets.js +1 -0
  1188. package/dist/cjs/product/settings/product/configs/product-presets/product-1-col.js +15 -0
  1189. package/dist/cjs/product/settings/product/configs/product-presets/product-2-col.js +21 -0
  1190. package/dist/cjs/product/settings/product/configs/product-presets/product-default.js +23 -0
  1191. package/dist/cjs/product/settings/product/configs/settings.js +1 -0
  1192. package/dist/cjs/product/settings/product/configs/ui-v1.js +1 -0
  1193. package/dist/cjs/product/settings/product/configs/ui-v2.js +1 -0
  1194. package/dist/cjs/product/settings/product-badge/configs/presets.js +11 -0
  1195. package/dist/cjs/product/settings/product-badge/configs/settings.js +1 -0
  1196. package/dist/cjs/product/settings/product-badge/configs/ui-v1.js +1 -0
  1197. package/dist/cjs/product/settings/product-badge/configs/ui-v2.js +1 -0
  1198. package/dist/cjs/product/settings/product-button/configs/presets.js +11 -0
  1199. package/dist/cjs/product/settings/product-button/configs/settings.js +3 -0
  1200. package/dist/cjs/product/settings/product-button/configs/ui-v1.js +1 -0
  1201. package/dist/cjs/product/settings/product-button/configs/ui-v2.js +1 -0
  1202. package/dist/cjs/product/settings/product-description/configs/presets.js +4 -0
  1203. package/dist/cjs/product/settings/product-description/configs/settings.js +1 -0
  1204. package/dist/cjs/product/settings/product-description/configs/ui-v1.js +1 -0
  1205. package/dist/cjs/product/settings/product-description/configs/ui-v2.js +1 -0
  1206. package/dist/cjs/product/settings/product-discount-tag/configs/settings.js +1 -0
  1207. package/dist/cjs/product/settings/product-discount-tag/configs/ui-v2.js +1 -0
  1208. package/dist/cjs/product/settings/product-image-v2/ProductFeatureImage.js +1 -0
  1209. package/dist/cjs/product/settings/product-image-v2/ProductGalleryImage.js +1 -0
  1210. package/dist/cjs/product/settings/product-image-v2/ProductImages.js +21 -0
  1211. package/dist/cjs/product/settings/product-image-v2/configs/setting-v2/ProductFeatureImage.js +2 -0
  1212. package/dist/cjs/product/settings/product-image-v2/configs/setting-v2/ProductGalleryImage.js +3 -0
  1213. package/dist/cjs/product/settings/product-image-v2/configs/setting-v2/index.js +1 -0
  1214. package/dist/cjs/product/settings/product-image-v2/configs/ui/FeatureDots.js +1 -0
  1215. package/dist/cjs/product/settings/product-image-v2/configs/ui/FeatureNavigation.js +1 -0
  1216. package/dist/cjs/product/settings/product-image-v2/configs/ui/ImageListNavigation.js +1 -0
  1217. package/dist/cjs/product/settings/product-image-v2/configs/ui-v1.js +1 -0
  1218. package/dist/cjs/product/settings/product-image-v2/configs/ui-v2.js +1 -0
  1219. package/dist/cjs/product/settings/product-list/configs/presets.js +37 -0
  1220. package/dist/cjs/product/settings/product-list/configs/settings-v2.js +1 -0
  1221. package/dist/cjs/product/settings/product-list/configs/ui-v1.js +1 -0
  1222. package/dist/cjs/product/settings/product-list/configs/ui-v2.js +1 -0
  1223. package/dist/cjs/product/settings/product-price/configs/presets.js +11 -0
  1224. package/dist/cjs/product/settings/product-price/configs/settings.js +1 -0
  1225. package/dist/cjs/product/settings/product-price/configs/ui-v1.js +1 -0
  1226. package/dist/cjs/product/settings/product-price/configs/ui-v2.js +1 -0
  1227. package/dist/cjs/product/settings/product-properties/configs/presets.js +6 -0
  1228. package/dist/cjs/product/settings/product-properties/configs/settings-v2.js +1 -0
  1229. package/dist/cjs/product/settings/product-properties/configs/ui-v1.js +1 -0
  1230. package/dist/cjs/product/settings/product-properties/configs/ui-v2.js +1 -0
  1231. package/dist/cjs/product/settings/product-quantity/configs/presets.js +20 -0
  1232. package/dist/cjs/product/settings/product-quantity/configs/settings.js +3 -0
  1233. package/dist/cjs/product/settings/product-quantity/configs/ui-v1.js +1 -0
  1234. package/dist/cjs/product/settings/product-quantity/configs/ui-v2.js +1 -0
  1235. package/dist/cjs/product/settings/product-sku/configs/presets.js +4 -0
  1236. package/dist/cjs/product/settings/product-sku/configs/settings.js +1 -0
  1237. package/dist/cjs/product/settings/product-sku/configs/ui-v1.js +1 -0
  1238. package/dist/cjs/product/settings/product-sku/configs/ui-v2.js +1 -0
  1239. package/dist/cjs/product/settings/product-title/configs/presets.js +4 -0
  1240. package/dist/cjs/product/settings/product-title/configs/settings.js +1 -0
  1241. package/dist/cjs/product/settings/product-title/configs/ui-v1.js +1 -0
  1242. package/dist/cjs/product/settings/product-title/configs/ui-v2.js +1 -0
  1243. package/dist/cjs/product/settings/product-variant/configs/presets.js +24 -0
  1244. package/dist/cjs/product/settings/product-variant/configs/settings.js +1 -0
  1245. package/dist/cjs/product/settings/product-variant/configs/ui-v1.js +1 -0
  1246. package/dist/cjs/product/settings/product-variant/configs/ui-v2.js +1 -0
  1247. package/dist/cjs/product/settings/product-variant/swatches-style-config/color.js +1 -0
  1248. package/dist/cjs/product/settings/product-variant/swatches-style-config/dropdown.js +1 -0
  1249. package/dist/cjs/product/settings/product-variant/swatches-style-config/image-shopify.js +1 -0
  1250. package/dist/cjs/product/settings/product-variant/swatches-style-config/image.js +1 -0
  1251. package/dist/cjs/product/settings/product-variant/swatches-style-config/rectangle-list.js +1 -0
  1252. package/dist/cjs/product/settings/product-vendor/configs/presets.js +3 -0
  1253. package/dist/cjs/product/settings/product-vendor/configs/settings.js +1 -0
  1254. package/dist/cjs/product/settings/product-vendor/configs/ui-v1.js +1 -0
  1255. package/dist/cjs/product/settings/product-vendor/configs/ui-v2.js +1 -0
  1256. package/dist/cjs/product/settings/product-view-more/configs/presets.js +5 -0
  1257. package/dist/cjs/product/settings/product-view-more/configs/settings.js +8 -0
  1258. package/dist/cjs/product/settings/product-view-more/configs/ui-v1.js +1 -0
  1259. package/dist/cjs/product/settings/product-view-more/configs/ui-v2.js +1 -0
  1260. package/dist/cjs/radio/components/Radio.js +2 -0
  1261. package/dist/cjs/radio/index.js +1 -0
  1262. package/dist/cjs/radio/next.js +1 -16
  1263. package/dist/cjs/radio/settings/Radio.js +1 -0
  1264. package/dist/cjs/radio/settings/configs/settings.js +1 -0
  1265. package/dist/cjs/select/components/Select.js +4 -0
  1266. package/dist/cjs/select/index.js +1 -0
  1267. package/dist/cjs/select/next.js +1 -16
  1268. package/dist/cjs/select/settings/Select.js +1 -0
  1269. package/dist/cjs/select/settings/configs/settings.js +1 -0
  1270. package/dist/cjs/setting.js +1 -0
  1271. package/dist/cjs/shop-pay-installment/components/ShopPayInstallments.js +1 -0
  1272. package/dist/cjs/shop-pay-installment/components/ShopPayInstallments.liquid.js +3 -0
  1273. package/dist/cjs/shop-pay-installment/components/common/helpers.js +1 -0
  1274. package/dist/cjs/shop-pay-installment/index.js +1 -0
  1275. package/dist/cjs/shop-pay-installment/next.js +1 -0
  1276. package/dist/cjs/shop-pay-installment/settings/ShopPayInstallments.js +12 -0
  1277. package/dist/cjs/shop-pay-installment/settings/configs/settings.js +1 -0
  1278. package/dist/cjs/sticky/common/classes.js +1 -0
  1279. package/dist/cjs/sticky/common/styles.js +1 -0
  1280. package/dist/cjs/sticky/components/Sticky.js +2 -183
  1281. package/dist/cjs/sticky/components/Sticky.liquid.js +16 -86
  1282. package/dist/cjs/sticky/hooks/useSticky.js +1 -0
  1283. package/dist/cjs/sticky/index.js +1 -0
  1284. package/dist/cjs/sticky/next.js +1 -16
  1285. package/dist/cjs/sticky/settings/Sticky.js +1 -0
  1286. package/dist/cjs/sticky/settings/configs/presets.js +31 -0
  1287. package/dist/cjs/sticky/settings/configs/settings-v2.js +1 -0
  1288. package/dist/cjs/sticky/settings/configs/settings.js +1 -0
  1289. package/dist/cjs/sticky/settings/configs/ui-v1.js +1 -0
  1290. package/dist/cjs/sticky/settings/configs/ui-v2.js +1 -0
  1291. package/dist/cjs/stock-counter/common/attrs.js +1 -0
  1292. package/dist/cjs/stock-counter/common/classes.js +1 -0
  1293. package/dist/cjs/stock-counter/common/helpers.js +71 -0
  1294. package/dist/cjs/stock-counter/common/styles.js +1 -0
  1295. package/dist/cjs/stock-counter/components/StockCounter.js +2 -132
  1296. package/dist/cjs/stock-counter/components/StockCounter.liquid.js +61 -185
  1297. package/dist/cjs/stock-counter/hooks/useStockCounter.js +1 -0
  1298. package/dist/cjs/stock-counter/hooks/useStockCounterInteraction.js +1 -68
  1299. package/dist/cjs/stock-counter/index.js +1 -0
  1300. package/dist/cjs/stock-counter/next.js +1 -16
  1301. package/dist/cjs/stock-counter/settings/StockCounter.js +5 -0
  1302. package/dist/cjs/stock-counter/settings/configs/presets.js +11 -0
  1303. package/dist/cjs/stock-counter/settings/configs/settings-v2.js +2 -0
  1304. package/dist/cjs/stock-counter/settings/configs/ui-v1.js +1 -0
  1305. package/dist/cjs/stock-counter/settings/configs/ui-v2.js +1 -0
  1306. package/dist/cjs/tab/common/attrs.js +1 -0
  1307. package/dist/cjs/tab/common/classes.js +4 -0
  1308. package/dist/cjs/tab/common/helpers.js +2 -0
  1309. package/dist/cjs/tab/common/styles.js +1 -0
  1310. package/dist/cjs/tab/components/TabItem.js +2 -24
  1311. package/dist/cjs/tab/components/TabItem.liquid.js +6 -25
  1312. package/dist/cjs/tab/components/Tabs.js +2 -157
  1313. package/dist/cjs/tab/components/Tabs.liquid.js +26 -118
  1314. package/dist/cjs/tab/hooks/useTab.js +1 -0
  1315. package/dist/cjs/tab/hooks/useTabInteraction.js +1 -56
  1316. package/dist/cjs/tab/index.js +1 -0
  1317. package/dist/cjs/tab/next.js +1 -20
  1318. package/dist/cjs/tab/settings/TabItem.js +5 -0
  1319. package/dist/cjs/tab/settings/Tabs.js +11 -0
  1320. package/dist/cjs/tab/settings/configs/settings.js +1 -0
  1321. package/dist/cjs/tab/settings/configs/ui-v1.js +1 -0
  1322. package/dist/cjs/tab/settings/configs/ui-v2.js +1 -0
  1323. package/dist/cjs/text/common/attrs.js +1 -0
  1324. package/dist/cjs/text/common/classes.js +1 -0
  1325. package/dist/cjs/text/common/helpers.js +1 -0
  1326. package/dist/cjs/text/common/styles.js +1 -0
  1327. package/dist/cjs/text/components/Text.js +2 -102
  1328. package/dist/cjs/text/components/Text.liquid.js +15 -106
  1329. package/dist/cjs/text/components/TextInline.js +7 -33
  1330. package/dist/cjs/text/index.js +1 -10
  1331. package/dist/cjs/text/next.js +1 -16
  1332. package/dist/cjs/text/settings/Text.js +5 -0
  1333. package/dist/cjs/text/settings/configs/presets.js +3 -0
  1334. package/dist/cjs/text/settings/configs/settings.js +1 -0
  1335. package/dist/cjs/text/settings/configs/ui-v1.js +1 -0
  1336. package/dist/cjs/text/settings/configs/ui-v2.js +1 -0
  1337. package/dist/cjs/textarea/components/Textarea.js +2 -0
  1338. package/dist/cjs/textarea/index.js +1 -0
  1339. package/dist/cjs/textarea/next.js +1 -16
  1340. package/dist/cjs/textarea/settings/Textarea.js +7 -0
  1341. package/dist/cjs/textarea/settings/configs/settings.js +1 -0
  1342. package/dist/cjs/third-party/common/helpers.js +13 -0
  1343. package/dist/cjs/third-party/components/AftershipEmailMarketingsms.js +2 -32
  1344. package/dist/cjs/third-party/components/AftershipEmailMarketingsms.liquid.js +1 -12
  1345. package/dist/cjs/third-party/components/AirProductReviewsAppUgc.js +2 -38
  1346. package/dist/cjs/third-party/components/AirProductReviewsAppUgc.liquid.js +5 -23
  1347. package/dist/cjs/third-party/components/AliReviews/AliReviewsSampleContent.js +2 -28
  1348. package/dist/cjs/third-party/components/AliReviews.js +2 -22
  1349. package/dist/cjs/third-party/components/AliReviews.liquid.js +6 -19
  1350. package/dist/cjs/third-party/components/AlsoBoughtCbb.js +2 -32
  1351. package/dist/cjs/third-party/components/AlsoBoughtCbb.liquid.js +4 -17
  1352. package/dist/cjs/third-party/components/AovFreeGiftBuyXGetYBogo.js +2 -0
  1353. package/dist/cjs/third-party/components/AovFreeGiftBuyXGetYBogo.liquid.js +1 -0
  1354. package/dist/cjs/third-party/components/AppointmentBookingCowlendar.js +2 -38
  1355. package/dist/cjs/third-party/components/AppointmentBookingCowlendar.liquid.js +1 -12
  1356. package/dist/cjs/third-party/components/AppstleBundlesDiscounts.js +2 -32
  1357. package/dist/cjs/third-party/components/AppstleBundlesDiscounts.liquid.js +1 -12
  1358. package/dist/cjs/third-party/components/AppstleSubscriptions/AppstleSubscriptionsSampleContent.js +2 -23
  1359. package/dist/cjs/third-party/components/AppstleSubscriptions.js +2 -22
  1360. package/dist/cjs/third-party/components/AppstleSubscriptions.liquid.js +4 -17
  1361. package/dist/cjs/third-party/components/BestBuyFulfillment.js +1 -38
  1362. package/dist/cjs/third-party/components/BestBuyFulfillment.liquid.js +1 -12
  1363. package/dist/cjs/third-party/components/BfSizeChartSizeGuide.js +2 -32
  1364. package/dist/cjs/third-party/components/BfSizeChartSizeGuide.liquid.js +1 -12
  1365. package/dist/cjs/third-party/components/BirdChime/BirdChimeContent.js +2 -23
  1366. package/dist/cjs/third-party/components/BirdChime.js +2 -22
  1367. package/dist/cjs/third-party/components/BirdChime.liquid.js +4 -17
  1368. package/dist/cjs/third-party/components/Bogos/BogosSampleContent.js +2 -38
  1369. package/dist/cjs/third-party/components/Bogos.js +2 -22
  1370. package/dist/cjs/third-party/components/Bogos.liquid.js +7 -18
  1371. package/dist/cjs/third-party/components/BoldProductOptions/BoldProductOptionsSampleContent.js +2 -23
  1372. package/dist/cjs/third-party/components/BoldProductOptions.js +2 -22
  1373. package/dist/cjs/third-party/components/BoldProductOptions.liquid.js +4 -17
  1374. package/dist/cjs/third-party/components/BoldSubscriptions/BoldSubscriptionsSampleContent.js +2 -34
  1375. package/dist/cjs/third-party/components/BoldSubscriptions.js +2 -22
  1376. package/dist/cjs/third-party/components/BoldSubscriptions.liquid.js +6 -19
  1377. package/dist/cjs/third-party/components/BonLoyaltyRewardsReferrals.js +2 -38
  1378. package/dist/cjs/third-party/components/BonLoyaltyRewardsReferrals.liquid.js +1 -12
  1379. package/dist/cjs/third-party/components/BoostAISearchDiscovery/BoostAISearchDiscoverySampleContent.js +2 -23
  1380. package/dist/cjs/third-party/components/BoostAISearchDiscovery.js +2 -22
  1381. package/dist/cjs/third-party/components/BoostAISearchDiscovery.liquid.js +5 -20
  1382. package/dist/cjs/third-party/components/Bundler/BundlerSampleContent.js +2 -23
  1383. package/dist/cjs/third-party/components/Bundler.js +2 -24
  1384. package/dist/cjs/third-party/components/Bundler.liquid.js +5 -22
  1385. package/dist/cjs/third-party/components/CleanSizeCharts.js +2 -43
  1386. package/dist/cjs/third-party/components/CleanSizeCharts.liquid.js +5 -18
  1387. package/dist/cjs/third-party/components/CrossSellCartUpsell/CrossSellCartUpsellSampleContent.js +2 -23
  1388. package/dist/cjs/third-party/components/CrossSellCartUpsell.js +2 -22
  1389. package/dist/cjs/third-party/components/CrossSellCartUpsell.liquid.js +4 -16
  1390. package/dist/cjs/third-party/components/CustomProductOptionsVariant.js +2 -38
  1391. package/dist/cjs/third-party/components/CustomProductOptionsVariant.liquid.js +4 -17
  1392. package/dist/cjs/third-party/components/DiscountyBulkDiscountSales.js +2 -32
  1393. package/dist/cjs/third-party/components/DiscountyBulkDiscountSales.liquid.js +4 -17
  1394. package/dist/cjs/third-party/components/EasifyProductOptions.js +2 -38
  1395. package/dist/cjs/third-party/components/EasifyProductOptions.liquid.js +4 -17
  1396. package/dist/cjs/third-party/components/EasyBundleBuilderSkailama.js +2 -38
  1397. package/dist/cjs/third-party/components/EasyBundleBuilderSkailama.liquid.js +1 -12
  1398. package/dist/cjs/third-party/components/EasySellCOD.js +2 -38
  1399. package/dist/cjs/third-party/components/EasySellCOD.liquid.js +4 -17
  1400. package/dist/cjs/third-party/components/EcoboostifyShoppableReelUgc.js +2 -32
  1401. package/dist/cjs/third-party/components/EcoboostifyShoppableReelUgc.liquid.js +1 -12
  1402. package/dist/cjs/third-party/components/EcomsendBackInStockAlert.js +2 -32
  1403. package/dist/cjs/third-party/components/EcomsendBackInStockAlert.liquid.js +5 -18
  1404. package/dist/cjs/third-party/components/EssentialAnnouncementBar.js +2 -32
  1405. package/dist/cjs/third-party/components/EssentialAnnouncementBar.liquid.js +1 -12
  1406. package/dist/cjs/third-party/components/EssentialCountdownTimerBar.js +2 -32
  1407. package/dist/cjs/third-party/components/EssentialCountdownTimerBar.liquid.js +1 -12
  1408. package/dist/cjs/third-party/components/EstimatedDeliveryDatePlus.js +2 -32
  1409. package/dist/cjs/third-party/components/EstimatedDeliveryDatePlus.liquid.js +1 -12
  1410. package/dist/cjs/third-party/components/FastBundleBundlesDiscounts.js +2 -38
  1411. package/dist/cjs/third-party/components/FastBundleBundlesDiscounts.liquid.js +5 -26
  1412. package/dist/cjs/third-party/components/FeraReviews/FeraReviewsSampleContent.js +2 -49
  1413. package/dist/cjs/third-party/components/FeraReviews/LiquidTemplateByWidget.js +1 -52
  1414. package/dist/cjs/third-party/components/FeraReviews.js +2 -27
  1415. package/dist/cjs/third-party/components/FeraReviews.liquid.js +5 -20
  1416. package/dist/cjs/third-party/components/FirePush/FirePushSampleContent.js +2 -21
  1417. package/dist/cjs/third-party/components/FirePush.js +2 -22
  1418. package/dist/cjs/third-party/components/FirePush.liquid.js +4 -17
  1419. package/dist/cjs/third-party/components/FlyBundlesUpsellsFbt.js +2 -84
  1420. package/dist/cjs/third-party/components/FlyBundlesUpsellsFbt.liquid.js +1 -12
  1421. package/dist/cjs/third-party/components/FordeerProductLabels.js +2 -49
  1422. package/dist/cjs/third-party/components/FordeerProductLabels.liquid.js +7 -20
  1423. package/dist/cjs/third-party/components/FrequentlyBoughtTogether/FrequentlyBoughtTogetherSampleContent.js +2 -23
  1424. package/dist/cjs/third-party/components/FrequentlyBoughtTogether.js +2 -24
  1425. package/dist/cjs/third-party/components/FrequentlyBoughtTogether.liquid.js +5 -18
  1426. package/dist/cjs/third-party/components/GloColorSwatchvariantImage.js +2 -32
  1427. package/dist/cjs/third-party/components/GloColorSwatchvariantImage.liquid.js +1 -12
  1428. package/dist/cjs/third-party/components/GloboProductOptionsVariant.js +1 -38
  1429. package/dist/cjs/third-party/components/GloboProductOptionsVariant.liquid.js +1 -12
  1430. package/dist/cjs/third-party/components/GoogleReviewsByReputon.js +2 -38
  1431. package/dist/cjs/third-party/components/GoogleReviewsByReputon.liquid.js +7 -20
  1432. package/dist/cjs/third-party/components/Growave/GrowaveSampleContent.js +2 -38
  1433. package/dist/cjs/third-party/components/Growave.js +2 -22
  1434. package/dist/cjs/third-party/components/Growave.liquid.js +5 -19
  1435. package/dist/cjs/third-party/components/HextomCountdownTimerBar.js +2 -32
  1436. package/dist/cjs/third-party/components/HextomCountdownTimerBar.liquid.js +1 -12
  1437. package/dist/cjs/third-party/components/HextomFreeShippingBar.js +2 -32
  1438. package/dist/cjs/third-party/components/HextomFreeShippingBar.liquid.js +1 -12
  1439. package/dist/cjs/third-party/components/HulkFormBuilder.js +2 -38
  1440. package/dist/cjs/third-party/components/HulkFormBuilder.liquid.js +5 -18
  1441. package/dist/cjs/third-party/components/HulkProductOptions.js +2 -32
  1442. package/dist/cjs/third-party/components/HulkProductOptions.liquid.js +1 -12
  1443. package/dist/cjs/third-party/components/InfiniteOptions/InfiniteOptionsSampleContent.js +2 -23
  1444. package/dist/cjs/third-party/components/InfiniteOptions.js +2 -22
  1445. package/dist/cjs/third-party/components/InfiniteOptions.liquid.js +4 -16
  1446. package/dist/cjs/third-party/components/Instafeed/InstafeedSampleContent.js +2 -23
  1447. package/dist/cjs/third-party/components/Instafeed.js +2 -22
  1448. package/dist/cjs/third-party/components/Instafeed.liquid.js +4 -17
  1449. package/dist/cjs/third-party/components/InstasellShoppableInstagram.js +2 -38
  1450. package/dist/cjs/third-party/components/InstasellShoppableInstagram.liquid.js +1 -12
  1451. package/dist/cjs/third-party/components/Judgeme/JudgemeSampleContent.js +2 -39
  1452. package/dist/cjs/third-party/components/JudgemeReviews.js +2 -23
  1453. package/dist/cjs/third-party/components/JudgemeReviews.liquid.js +10 -23
  1454. package/dist/cjs/third-party/components/JunipProductReviewsUgc.js +2 -38
  1455. package/dist/cjs/third-party/components/JunipProductReviewsUgc.liquid.js +1 -12
  1456. package/dist/cjs/third-party/components/KachingBundles/KachingBundlesSampleContent.js +2 -27
  1457. package/dist/cjs/third-party/components/KachingBundles.js +2 -22
  1458. package/dist/cjs/third-party/components/KachingBundles.liquid.js +5 -19
  1459. package/dist/cjs/third-party/components/KingProductOptions/KingProductOptionsSampleContent.js +2 -23
  1460. package/dist/cjs/third-party/components/KingProductOptions.js +2 -22
  1461. package/dist/cjs/third-party/components/KingProductOptions.liquid.js +5 -18
  1462. package/dist/cjs/third-party/components/KiteFreeGiftDiscount.js +2 -38
  1463. package/dist/cjs/third-party/components/KiteFreeGiftDiscount.liquid.js +1 -12
  1464. package/dist/cjs/third-party/components/KlarnaMessaging.js +2 -51
  1465. package/dist/cjs/third-party/components/KlarnaMessaging.liquid.js +5 -36
  1466. package/dist/cjs/third-party/components/Klaviyo/KlaviyoSampleContent.js +2 -23
  1467. package/dist/cjs/third-party/components/Klaviyo.js +2 -30
  1468. package/dist/cjs/third-party/components/Klaviyo.liquid.js +5 -19
  1469. package/dist/cjs/third-party/components/KoalaBundleQuantityDiscount.js +2 -38
  1470. package/dist/cjs/third-party/components/KoalaBundleQuantityDiscount.liquid.js +4 -17
  1471. package/dist/cjs/third-party/components/LaiProductReviews/LaiProductReviewsSampleContent.js +2 -58
  1472. package/dist/cjs/third-party/components/LaiProductReviews/LiquidTemplateByWiget.js +13 -46
  1473. package/dist/cjs/third-party/components/LaiProductReviews.js +2 -24
  1474. package/dist/cjs/third-party/components/LaiProductReviews.liquid.js +5 -21
  1475. package/dist/cjs/third-party/components/LoloyalLoyaltyReferrals.js +2 -38
  1476. package/dist/cjs/third-party/components/LoloyalLoyaltyReferrals.liquid.js +1 -12
  1477. package/dist/cjs/third-party/components/LoopSubscriptions.js +2 -38
  1478. package/dist/cjs/third-party/components/LoopSubscriptions.liquid.js +2 -17
  1479. package/dist/cjs/third-party/components/LooxReviews/LooxReviewsSampleContent.js +2 -35
  1480. package/dist/cjs/third-party/components/LooxReviews.js +2 -22
  1481. package/dist/cjs/third-party/components/LooxReviews.liquid.js +10 -53
  1482. package/dist/cjs/third-party/components/MaxbundleProductBundles.js +2 -38
  1483. package/dist/cjs/third-party/components/MaxbundleProductBundles.liquid.js +5 -18
  1484. package/dist/cjs/third-party/components/MbcBundleVolumeDiscount.js +2 -38
  1485. package/dist/cjs/third-party/components/MbcBundleVolumeDiscount.liquid.js +4 -17
  1486. package/dist/cjs/third-party/components/MyappgurusProductReviews.js +2 -32
  1487. package/dist/cjs/third-party/components/MyappgurusProductReviews.liquid.js +1 -12
  1488. package/dist/cjs/third-party/components/NotifyBackInStockPreOrder.js +2 -38
  1489. package/dist/cjs/third-party/components/NotifyBackInStockPreOrder.liquid.js +4 -17
  1490. package/dist/cjs/third-party/components/OkendoReviewsLoyalty.js +2 -32
  1491. package/dist/cjs/third-party/components/OkendoReviewsLoyalty.liquid.js +1 -12
  1492. package/dist/cjs/third-party/components/Omnisend/OmnisendSampleContent.js +2 -34
  1493. package/dist/cjs/third-party/components/Omnisend.js +2 -22
  1494. package/dist/cjs/third-party/components/Omnisend.liquid.js +9 -22
  1495. package/dist/cjs/third-party/components/Opinew/OpinewSampleContent.js +2 -33
  1496. package/dist/cjs/third-party/components/Opinew.js +2 -22
  1497. package/dist/cjs/third-party/components/Opinew.liquid.js +6 -19
  1498. package/dist/cjs/third-party/components/ParcelPanel/ParcelPanelSampleContent.js +2 -23
  1499. package/dist/cjs/third-party/components/ParcelPanel.js +2 -22
  1500. package/dist/cjs/third-party/components/ParcelPanel.liquid.js +5 -19
  1501. package/dist/cjs/third-party/components/PickyStory/PickyStorySampleContent.js +2 -36
  1502. package/dist/cjs/third-party/components/PickyStory.js +2 -22
  1503. package/dist/cjs/third-party/components/PickyStory.liquid.js +5 -18
  1504. package/dist/cjs/third-party/components/PowerfulContactFormBuilder.js +2 -38
  1505. package/dist/cjs/third-party/components/PowerfulContactFormBuilder.liquid.js +1 -12
  1506. package/dist/cjs/third-party/components/PreorderNowPreOrderPq.js +2 -38
  1507. package/dist/cjs/third-party/components/PreorderNowPreOrderPq.liquid.js +1 -12
  1508. package/dist/cjs/third-party/components/PreorderNowWodPresale.js +2 -51
  1509. package/dist/cjs/third-party/components/PreorderNowWodPresale.liquid.js +1 -12
  1510. package/dist/cjs/third-party/components/ProductOptionsCustomizer.js +2 -38
  1511. package/dist/cjs/third-party/components/ProductOptionsCustomizer.liquid.js +1 -12
  1512. package/dist/cjs/third-party/components/ProductOptionsVariantOption.js +1 -38
  1513. package/dist/cjs/third-party/components/ProductOptionsVariantOption.liquid.js +4 -17
  1514. package/dist/cjs/third-party/components/ProductReviews/ProductReviewsSampleContent.js +2 -29
  1515. package/dist/cjs/third-party/components/ProductReviews.js +2 -22
  1516. package/dist/cjs/third-party/components/ProductReviews.liquid.js +5 -18
  1517. package/dist/cjs/third-party/components/PumperBundlesVolumeDiscount.js +2 -38
  1518. package/dist/cjs/third-party/components/PumperBundlesVolumeDiscount.liquid.js +1 -12
  1519. package/dist/cjs/third-party/components/PushOwl.js +2 -9
  1520. package/dist/cjs/third-party/components/PushOwl.liquid.js +3 -37
  1521. package/dist/cjs/third-party/components/QikifyUpsell.js +2 -79
  1522. package/dist/cjs/third-party/components/QikifyUpsell.liquid.js +1 -12
  1523. package/dist/cjs/third-party/components/RapiBundleQuantityBreaks.js +2 -38
  1524. package/dist/cjs/third-party/components/RapiBundleQuantityBreaks.liquid.js +5 -18
  1525. package/dist/cjs/third-party/components/RechargeSubscriptions.js +2 -38
  1526. package/dist/cjs/third-party/components/RechargeSubscriptions.liquid.js +1 -12
  1527. package/dist/cjs/third-party/components/RecurpaySubscriptionApp.js +2 -38
  1528. package/dist/cjs/third-party/components/RecurpaySubscriptionApp.liquid.js +4 -17
  1529. package/dist/cjs/third-party/components/Releasit/ReleasitSampleContent.js +2 -21
  1530. package/dist/cjs/third-party/components/Releasit.js +1 -22
  1531. package/dist/cjs/third-party/components/Releasit.liquid.js +4 -18
  1532. package/dist/cjs/third-party/components/RequestQuoteHidePrice.js +2 -38
  1533. package/dist/cjs/third-party/components/RequestQuoteHidePrice.liquid.js +4 -17
  1534. package/dist/cjs/third-party/components/ReviewxpoProductReviewsApp.js +2 -36
  1535. package/dist/cjs/third-party/components/ReviewxpoProductReviewsApp.liquid.js +1 -12
  1536. package/dist/cjs/third-party/components/Rivyo/RivyoSampleContent.js +2 -36
  1537. package/dist/cjs/third-party/components/Rivyo.js +2 -22
  1538. package/dist/cjs/third-party/components/Rivyo.liquid.js +5 -18
  1539. package/dist/cjs/third-party/components/Ryviu/RyviuSampleContent.js +2 -37
  1540. package/dist/cjs/third-party/components/Ryviu.js +2 -22
  1541. package/dist/cjs/third-party/components/Ryviu.liquid.js +6 -19
  1542. package/dist/cjs/third-party/components/SealSubscriptions/SealSubscriptionsSampleContent.js +2 -23
  1543. package/dist/cjs/third-party/components/SealSubscriptions.js +2 -22
  1544. package/dist/cjs/third-party/components/SealSubscriptions.liquid.js +4 -17
  1545. package/dist/cjs/third-party/components/SegunoEmailMarketing.js +2 -32
  1546. package/dist/cjs/third-party/components/SegunoEmailMarketing.liquid.js +1 -12
  1547. package/dist/cjs/third-party/components/Selleasy.js +2 -36
  1548. package/dist/cjs/third-party/components/Selleasy.liquid.js +1 -12
  1549. package/dist/cjs/third-party/components/SeoantTrustBadgesIcon.js +2 -32
  1550. package/dist/cjs/third-party/components/SeoantTrustBadgesIcon.liquid.js +1 -12
  1551. package/dist/cjs/third-party/components/ShopifyForms.js +2 -38
  1552. package/dist/cjs/third-party/components/ShopifyForms.liquid.js +1 -12
  1553. package/dist/cjs/third-party/components/ShopifySubscriptions.js +2 -38
  1554. package/dist/cjs/third-party/components/ShopifySubscriptions.liquid.js +4 -18
  1555. package/dist/cjs/third-party/components/SimpleBundlesKits.js +2 -38
  1556. package/dist/cjs/third-party/components/SimpleBundlesKits.liquid.js +1 -12
  1557. package/dist/cjs/third-party/components/SkioSubscriptionsYcS20.js +2 -38
  1558. package/dist/cjs/third-party/components/SkioSubscriptionsYcS20.liquid.js +5 -18
  1559. package/dist/cjs/third-party/components/SmartSearchBarAndFilters/SmartSearchBarAndFiltersSampleContent.js +2 -23
  1560. package/dist/cjs/third-party/components/SmartSearchBarAndFilters.js +2 -24
  1561. package/dist/cjs/third-party/components/SmartSearchBarAndFilters.liquid.js +6 -21
  1562. package/dist/cjs/third-party/components/SproutPlantTreesGrowSales.js +2 -38
  1563. package/dist/cjs/third-party/components/SproutPlantTreesGrowSales.liquid.js +1 -12
  1564. package/dist/cjs/third-party/components/Stamped/LiquidTemplateByWidget.js +101 -174
  1565. package/dist/cjs/third-party/components/Stamped/StampedSampleContent.js +2 -46
  1566. package/dist/cjs/third-party/components/Stamped.js +2 -22
  1567. package/dist/cjs/third-party/components/Stamped.liquid.js +5 -21
  1568. package/dist/cjs/third-party/components/StellarDeliveryDatePickup.js +2 -32
  1569. package/dist/cjs/third-party/components/StellarDeliveryDatePickup.liquid.js +4 -17
  1570. package/dist/cjs/third-party/components/SubifySubscriptionsApp.js +2 -38
  1571. package/dist/cjs/third-party/components/SubifySubscriptionsApp.liquid.js +1 -12
  1572. package/dist/cjs/third-party/components/TagembedSocialPostReview.js +2 -38
  1573. package/dist/cjs/third-party/components/TagembedSocialPostReview.liquid.js +5 -18
  1574. package/dist/cjs/third-party/components/TagshopShoppableVideosUgc.js +2 -38
  1575. package/dist/cjs/third-party/components/TagshopShoppableVideosUgc.liquid.js +5 -18
  1576. package/dist/cjs/third-party/components/TeeinblueProductPersonalizer.js +1 -38
  1577. package/dist/cjs/third-party/components/TeeinblueProductPersonalizer.liquid.js +4 -17
  1578. package/dist/cjs/third-party/components/ThirdPartyPreview.js +2 -75
  1579. package/dist/cjs/third-party/components/TrustBadgesBear.js +2 -32
  1580. package/dist/cjs/third-party/components/TrustBadgesBear.liquid.js +1 -12
  1581. package/dist/cjs/third-party/components/TrustMe/TrustMeSampleContent.js +2 -23
  1582. package/dist/cjs/third-party/components/TrustMe.js +2 -22
  1583. package/dist/cjs/third-party/components/TrustMe.liquid.js +4 -17
  1584. package/dist/cjs/third-party/components/TrustedsiteTrustBadges.js +2 -32
  1585. package/dist/cjs/third-party/components/TrustedsiteTrustBadges.liquid.js +1 -12
  1586. package/dist/cjs/third-party/components/Trustoo/TrustooSampleContent.js +2 -35
  1587. package/dist/cjs/third-party/components/Trustoo.js +2 -22
  1588. package/dist/cjs/third-party/components/Trustoo.liquid.js +12 -38
  1589. package/dist/cjs/third-party/components/TrustreviewsProductReviews.js +2 -32
  1590. package/dist/cjs/third-party/components/TrustreviewsProductReviews.liquid.js +1 -12
  1591. package/dist/cjs/third-party/components/TrustshopProductReviews.js +2 -46
  1592. package/dist/cjs/third-party/components/TrustshopProductReviews.liquid.js +1 -12
  1593. package/dist/cjs/third-party/components/UltimateSalesBoost/UltimateSalesBoostSampleContent.js +2 -33
  1594. package/dist/cjs/third-party/components/UltimateSalesBoost.js +2 -22
  1595. package/dist/cjs/third-party/components/UltimateSalesBoost.liquid.js +5 -18
  1596. package/dist/cjs/third-party/components/UnlimitedBundlesDiscounts.js +2 -38
  1597. package/dist/cjs/third-party/components/UnlimitedBundlesDiscounts.liquid.js +1 -12
  1598. package/dist/cjs/third-party/components/Vitals/VitalsSampleContent.js +2 -51
  1599. package/dist/cjs/third-party/components/Vitals.js +2 -22
  1600. package/dist/cjs/third-party/components/Vitals.liquid.js +7 -20
  1601. package/dist/cjs/third-party/components/WhatmoreShoppableVideosreel.js +2 -38
  1602. package/dist/cjs/third-party/components/WhatmoreShoppableVideosreel.liquid.js +1 -12
  1603. package/dist/cjs/third-party/components/WideBundle/WideBundleSampleContent.js +2 -23
  1604. package/dist/cjs/third-party/components/WideBundle.js +2 -22
  1605. package/dist/cjs/third-party/components/WideBundle.liquid.js +4 -17
  1606. package/dist/cjs/third-party/components/Wiser/WiserSampleContent.js +2 -57
  1607. package/dist/cjs/third-party/components/Wiser.js +2 -27
  1608. package/dist/cjs/third-party/components/Wiser.liquid.js +5 -19
  1609. package/dist/cjs/third-party/components/WishlistKing.js +2 -38
  1610. package/dist/cjs/third-party/components/WishlistKing.liquid.js +1 -12
  1611. package/dist/cjs/third-party/components/WishlistPlus.js +2 -38
  1612. package/dist/cjs/third-party/components/WishlistPlus.liquid.js +6 -19
  1613. package/dist/cjs/third-party/components/YotpoLoyalty/YotpoLoyaltySampleContent.js +2 -23
  1614. package/dist/cjs/third-party/components/YotpoLoyalty.js +2 -43
  1615. package/dist/cjs/third-party/components/YotpoReviews/YotpoReviewsSampleContent.js +2 -37
  1616. package/dist/cjs/third-party/components/YotpoReviews.js +2 -22
  1617. package/dist/cjs/third-party/components/YotpoReviews.liquid.js +6 -20
  1618. package/dist/cjs/third-party/configs/AftershipEmailMarketingsms.js +1 -12
  1619. package/dist/cjs/third-party/configs/AirProductReviewsAppUgc.js +1 -0
  1620. package/dist/cjs/third-party/configs/AliReviews.js +1 -12
  1621. package/dist/cjs/third-party/configs/AlsoBoughtCbb.js +1 -12
  1622. package/dist/cjs/third-party/configs/AovFreeGiftBuyXGetYBogo.js +1 -0
  1623. package/dist/cjs/third-party/configs/AppointmentBookingCowlendar.js +1 -0
  1624. package/dist/cjs/third-party/configs/AppstleBundlesDiscounts.js +1 -12
  1625. package/dist/cjs/third-party/configs/AppstleSubscriptions.js +1 -12
  1626. package/dist/cjs/third-party/configs/BfSizeChartSizeGuide.js +1 -12
  1627. package/dist/cjs/third-party/configs/BirdChime.js +1 -12
  1628. package/dist/cjs/third-party/configs/Bogos.js +1 -12
  1629. package/dist/cjs/third-party/configs/BoldProductOptions.js +1 -12
  1630. package/dist/cjs/third-party/configs/BoldSubscription.js +1 -12
  1631. package/dist/cjs/third-party/configs/BonLoyaltyRewardsReferrals.js +1 -0
  1632. package/dist/cjs/third-party/configs/BoostAISearchDiscovery.js +1 -12
  1633. package/dist/cjs/third-party/configs/Bundler.js +1 -12
  1634. package/dist/cjs/third-party/configs/CleanSizeCharts.js +1 -0
  1635. package/dist/cjs/third-party/configs/CrossSellCartUpsell.js +1 -12
  1636. package/dist/cjs/third-party/configs/CustomProductOptionsVariant.js +1 -0
  1637. package/dist/cjs/third-party/configs/DiscountyBulkDiscountSales.js +1 -12
  1638. package/dist/cjs/third-party/configs/EasifyProductOptions.js +1 -0
  1639. package/dist/cjs/third-party/configs/EasyBundleBuilderSkailama.js +1 -0
  1640. package/dist/cjs/third-party/configs/EasySellCOD.js +1 -0
  1641. package/dist/cjs/third-party/configs/EcoboostifyShoppableReelUgc.js +1 -12
  1642. package/dist/cjs/third-party/configs/EcomsendBackInStockAlert.js +1 -12
  1643. package/dist/cjs/third-party/configs/EssentialAnnouncementBar.js +1 -12
  1644. package/dist/cjs/third-party/configs/EssentialCountdownTimerBar.js +1 -12
  1645. package/dist/cjs/third-party/configs/EstimatedDeliveryDatePlus.js +1 -12
  1646. package/dist/cjs/third-party/configs/FastBundleBundlesDiscount.js +1 -0
  1647. package/dist/cjs/third-party/configs/FeraReviews.js +1 -12
  1648. package/dist/cjs/third-party/configs/FirePush.js +1 -12
  1649. package/dist/cjs/third-party/configs/FlyBundlesUpsellsFbt.js +1 -0
  1650. package/dist/cjs/third-party/configs/FordeerProductLabels.js +1 -0
  1651. package/dist/cjs/third-party/configs/FrequentlyBoughtTogether.js +1 -12
  1652. package/dist/cjs/third-party/configs/GloColorSwatchvariantImage.js +1 -12
  1653. package/dist/cjs/third-party/configs/GoogleReviewsByReputon.js +1 -0
  1654. package/dist/cjs/third-party/configs/Growave.js +1 -12
  1655. package/dist/cjs/third-party/configs/HextomCountdownTimerBar.js +1 -12
  1656. package/dist/cjs/third-party/configs/HextomFreeShippingBar.js +1 -12
  1657. package/dist/cjs/third-party/configs/HulkFormBuilder.js +1 -0
  1658. package/dist/cjs/third-party/configs/HulkProductOptions.js +1 -12
  1659. package/dist/cjs/third-party/configs/InfiniteOptions.js +1 -12
  1660. package/dist/cjs/third-party/configs/Instafeed.js +1 -12
  1661. package/dist/cjs/third-party/configs/InstasellShoppableInstagram.js +1 -0
  1662. package/dist/cjs/third-party/configs/JudgemeReviews.js +1 -12
  1663. package/dist/cjs/third-party/configs/JunipProductReviewsUgc.js +1 -0
  1664. package/dist/cjs/third-party/configs/KachingBundles.js +1 -12
  1665. package/dist/cjs/third-party/configs/KingProductOptions.js +1 -12
  1666. package/dist/cjs/third-party/configs/KiteFreeGiftDiscount.js +1 -0
  1667. package/dist/cjs/third-party/configs/KlarmaMessaging.js +1 -0
  1668. package/dist/cjs/third-party/configs/Klaviyo.js +1 -12
  1669. package/dist/cjs/third-party/configs/KoalaBundleQuantityDiscount.js +1 -0
  1670. package/dist/cjs/third-party/configs/LaiProductReviews.js +1 -12
  1671. package/dist/cjs/third-party/configs/LoloyalLoyaltyReferrals.js +1 -0
  1672. package/dist/cjs/third-party/configs/LoopSubscriptions.js +1 -0
  1673. package/dist/cjs/third-party/configs/LooxReviews.js +1 -12
  1674. package/dist/cjs/third-party/configs/MaxbundleProductBundles.js +1 -0
  1675. package/dist/cjs/third-party/configs/MbcBundleVolumeDiscount.js +1 -0
  1676. package/dist/cjs/third-party/configs/MyappgurusProductReviews.js +1 -12
  1677. package/dist/cjs/third-party/configs/NotifyBackInStockPreOrder.js +1 -0
  1678. package/dist/cjs/third-party/configs/OkendoReviewsLoyalty.js +1 -12
  1679. package/dist/cjs/third-party/configs/Omnisend.js +1 -12
  1680. package/dist/cjs/third-party/configs/Opinew.js +1 -12
  1681. package/dist/cjs/third-party/configs/ParcelPanel.js +1 -12
  1682. package/dist/cjs/third-party/configs/PickyStory.js +1 -12
  1683. package/dist/cjs/third-party/configs/PowerfulContactFormBuilder.js +1 -0
  1684. package/dist/cjs/third-party/configs/PreorderNowPreOrderPq.js +1 -0
  1685. package/dist/cjs/third-party/configs/PreorderNowWodPresale.js +1 -0
  1686. package/dist/cjs/third-party/configs/ProductOptionsCustomizer.js +1 -0
  1687. package/dist/cjs/third-party/configs/ProductReviews.js +1 -12
  1688. package/dist/cjs/third-party/configs/PumperBundlesVolumeDiscount.js +1 -0
  1689. package/dist/cjs/third-party/configs/PushOwl.js +1 -12
  1690. package/dist/cjs/third-party/configs/QikifyUpsell.js +1 -0
  1691. package/dist/cjs/third-party/configs/RapiBundleQuantityBreaks.js +1 -0
  1692. package/dist/cjs/third-party/configs/RechargeSubscriptions.js +1 -0
  1693. package/dist/cjs/third-party/configs/RecurpaySubscriptionApp.js +1 -0
  1694. package/dist/cjs/third-party/configs/Releasit.js +1 -12
  1695. package/dist/cjs/third-party/configs/RequestQuoteHidePrice.js +1 -0
  1696. package/dist/cjs/third-party/configs/ReviewxpoProductReviewsApp.js +1 -0
  1697. package/dist/cjs/third-party/configs/Rivyo.js +1 -12
  1698. package/dist/cjs/third-party/configs/Ryviu.js +1 -12
  1699. package/dist/cjs/third-party/configs/SealSubscriptions.js +1 -12
  1700. package/dist/cjs/third-party/configs/SegunoEmailMarketing.js +1 -12
  1701. package/dist/cjs/third-party/configs/Selleasy.js +1 -0
  1702. package/dist/cjs/third-party/configs/SeoantTrustBadgesIcon.js +1 -12
  1703. package/dist/cjs/third-party/configs/ShopifyForms.js +1 -0
  1704. package/dist/cjs/third-party/configs/ShopifySubscriptions.js +1 -0
  1705. package/dist/cjs/third-party/configs/SimpleBundlesKits.js +1 -0
  1706. package/dist/cjs/third-party/configs/SkioSubscriptionsYcS20.js +1 -0
  1707. package/dist/cjs/third-party/configs/SmartSearchBarAndFilters.js +1 -12
  1708. package/dist/cjs/third-party/configs/SproutPlantTreesGrowSales.js +1 -0
  1709. package/dist/cjs/third-party/configs/Stamped.js +1 -12
  1710. package/dist/cjs/third-party/configs/StellarDeliveryDatePickup.js +1 -12
  1711. package/dist/cjs/third-party/configs/SubifySubscriptionsApp.js +1 -0
  1712. package/dist/cjs/third-party/configs/TagembedSocialPostReview.js +1 -0
  1713. package/dist/cjs/third-party/configs/TagshopShoppableVideosUgc.js +1 -0
  1714. package/dist/cjs/third-party/configs/TrustBadgesBear.js +1 -12
  1715. package/dist/cjs/third-party/configs/TrustMe.js +1 -12
  1716. package/dist/cjs/third-party/configs/TrustedsiteTrustBadges.js +1 -12
  1717. package/dist/cjs/third-party/configs/Trustoo.js +1 -12
  1718. package/dist/cjs/third-party/configs/TrustreviewsProductReviews.js +1 -12
  1719. package/dist/cjs/third-party/configs/TrustshopProductReviews.js +1 -12
  1720. package/dist/cjs/third-party/configs/UltimateSalesBoost.js +1 -12
  1721. package/dist/cjs/third-party/configs/UnlimitedBundlesDiscounts.js +1 -0
  1722. package/dist/cjs/third-party/configs/Vitals.js +1 -12
  1723. package/dist/cjs/third-party/configs/WhatmoreShoppableVideosreel.js +1 -0
  1724. package/dist/cjs/third-party/configs/WideBundle.js +1 -12
  1725. package/dist/cjs/third-party/configs/Wiser.js +1 -12
  1726. package/dist/cjs/third-party/configs/WishlistKing.js +1 -0
  1727. package/dist/cjs/third-party/configs/WishlistPlus.js +1 -0
  1728. package/dist/cjs/third-party/configs/YotpoLoyalty.js +1 -12
  1729. package/dist/cjs/third-party/configs/YotpoReviews.js +1 -12
  1730. package/dist/cjs/third-party/index.js +1 -0
  1731. package/dist/cjs/third-party/next.js +1 -592
  1732. package/dist/cjs/third-party/settings/AftershipEmailMarketingsms/index.js +4 -0
  1733. package/dist/cjs/third-party/settings/AftershipEmailMarketingsms/uiV1.js +1 -0
  1734. package/dist/cjs/third-party/settings/AftershipEmailMarketingsms/uiV2.js +1 -0
  1735. package/dist/cjs/third-party/settings/AirProductReviewsAppUgc/index.js +4 -0
  1736. package/dist/cjs/third-party/settings/AirProductReviewsAppUgc/uiV1.js +1 -0
  1737. package/dist/cjs/third-party/settings/AirProductReviewsAppUgc/uiV2.js +1 -0
  1738. package/dist/cjs/third-party/settings/AliReviews/index.js +6 -0
  1739. package/dist/cjs/third-party/settings/AliReviews/uiV1.js +1 -0
  1740. package/dist/cjs/third-party/settings/AliReviews/uiV2.js +1 -0
  1741. package/dist/cjs/third-party/settings/AlsoBoughtCbb/index.js +4 -0
  1742. package/dist/cjs/third-party/settings/AlsoBoughtCbb/uiV1.js +1 -0
  1743. package/dist/cjs/third-party/settings/AlsoBoughtCbb/uiV2.js +1 -0
  1744. package/dist/cjs/third-party/settings/AovFreeGiftBuyXGetYBogo/index.js +4 -0
  1745. package/dist/cjs/third-party/settings/AovFreeGiftBuyXGetYBogo/uiV1.js +1 -0
  1746. package/dist/cjs/third-party/settings/AovFreeGiftBuyXGetYBogo/uiV2.js +1 -0
  1747. package/dist/cjs/third-party/settings/AppointmentBookingCowlendar/index.js +4 -0
  1748. package/dist/cjs/third-party/settings/AppointmentBookingCowlendar/uiV1.js +1 -0
  1749. package/dist/cjs/third-party/settings/AppointmentBookingCowlendar/uiV2.js +1 -0
  1750. package/dist/cjs/third-party/settings/AppstleBundlesDiscounts/index.js +4 -0
  1751. package/dist/cjs/third-party/settings/AppstleBundlesDiscounts/uiV1.js +1 -0
  1752. package/dist/cjs/third-party/settings/AppstleBundlesDiscounts/uiV2.js +1 -0
  1753. package/dist/cjs/third-party/settings/AppstleSubscriptions/index.js +6 -0
  1754. package/dist/cjs/third-party/settings/AppstleSubscriptions/uiV1.js +1 -0
  1755. package/dist/cjs/third-party/settings/AppstleSubscriptions/uiV2.js +1 -0
  1756. package/dist/cjs/third-party/settings/BestBuyFulfillment/index.js +4 -0
  1757. package/dist/cjs/third-party/settings/BestBuyFulfillment/uiV1.js +1 -0
  1758. package/dist/cjs/third-party/settings/BestBuyFulfillment/uiV2.js +1 -0
  1759. package/dist/cjs/third-party/settings/BfSizeChartSizeGuide/index.js +4 -0
  1760. package/dist/cjs/third-party/settings/BfSizeChartSizeGuide/uiV1.js +1 -0
  1761. package/dist/cjs/third-party/settings/BfSizeChartSizeGuide/uiV2.js +1 -0
  1762. package/dist/cjs/third-party/settings/BirdChime/index.js +6 -0
  1763. package/dist/cjs/third-party/settings/BirdChime/uiV1.js +1 -0
  1764. package/dist/cjs/third-party/settings/BirdChime/uiV2.js +1 -0
  1765. package/dist/cjs/third-party/settings/Bogos/index.js +6 -0
  1766. package/dist/cjs/third-party/settings/Bogos/uiV1.js +1 -0
  1767. package/dist/cjs/third-party/settings/Bogos/uiV2.js +1 -0
  1768. package/dist/cjs/third-party/settings/BoldProductOptions/index.js +6 -0
  1769. package/dist/cjs/third-party/settings/BoldProductOptions/uiV1.js +1 -0
  1770. package/dist/cjs/third-party/settings/BoldProductOptions/uiV2.js +1 -0
  1771. package/dist/cjs/third-party/settings/BoldSubscriptions/index.js +6 -0
  1772. package/dist/cjs/third-party/settings/BoldSubscriptions/uiV1.js +1 -0
  1773. package/dist/cjs/third-party/settings/BoldSubscriptions/uiV2.js +1 -0
  1774. package/dist/cjs/third-party/settings/BonLoyaltyRewardsReferrals/index.js +4 -0
  1775. package/dist/cjs/third-party/settings/BonLoyaltyRewardsReferrals/uiV1.js +1 -0
  1776. package/dist/cjs/third-party/settings/BonLoyaltyRewardsReferrals/uiV2.js +1 -0
  1777. package/dist/cjs/third-party/settings/BoostAISearchDiscovery/index.js +6 -0
  1778. package/dist/cjs/third-party/settings/BoostAISearchDiscovery/uiV1.js +1 -0
  1779. package/dist/cjs/third-party/settings/BoostAISearchDiscovery/uiV2.js +1 -0
  1780. package/dist/cjs/third-party/settings/Bundler/index.js +6 -0
  1781. package/dist/cjs/third-party/settings/Bundler/uiV1.js +1 -0
  1782. package/dist/cjs/third-party/settings/Bundler/uiV2.js +1 -0
  1783. package/dist/cjs/third-party/settings/CleanSizeCharts/index.js +6 -0
  1784. package/dist/cjs/third-party/settings/CleanSizeCharts/uiV1.js +1 -0
  1785. package/dist/cjs/third-party/settings/CleanSizeCharts/uiV2.js +1 -0
  1786. package/dist/cjs/third-party/settings/CrossSellCartUpsell/index.js +6 -0
  1787. package/dist/cjs/third-party/settings/CrossSellCartUpsell/uiV1.js +1 -0
  1788. package/dist/cjs/third-party/settings/CrossSellCartUpsell/uiV2.js +1 -0
  1789. package/dist/cjs/third-party/settings/CustomProductOptionsVariant/index.js +4 -0
  1790. package/dist/cjs/third-party/settings/CustomProductOptionsVariant/uiV1.js +1 -0
  1791. package/dist/cjs/third-party/settings/CustomProductOptionsVariant/uiV2.js +1 -0
  1792. package/dist/cjs/third-party/settings/DiscountyBulkDiscountSales/index.js +4 -0
  1793. package/dist/cjs/third-party/settings/DiscountyBulkDiscountSales/uiV1.js +1 -0
  1794. package/dist/cjs/third-party/settings/DiscountyBulkDiscountSales/uiV2.js +1 -0
  1795. package/dist/cjs/third-party/settings/EasifyProductOptions/index.js +4 -0
  1796. package/dist/cjs/third-party/settings/EasifyProductOptions/uiV1.js +1 -0
  1797. package/dist/cjs/third-party/settings/EasifyProductOptions/uiV2.js +1 -0
  1798. package/dist/cjs/third-party/settings/EasyBundleBuilderSkailama/index.js +4 -0
  1799. package/dist/cjs/third-party/settings/EasyBundleBuilderSkailama/uiV1.js +1 -0
  1800. package/dist/cjs/third-party/settings/EasyBundleBuilderSkailama/uiV2.js +1 -0
  1801. package/dist/cjs/third-party/settings/EasySellCOD/index.js +6 -0
  1802. package/dist/cjs/third-party/settings/EasySellCOD/uiV1.js +1 -0
  1803. package/dist/cjs/third-party/settings/EasySellCOD/uiV2.js +1 -0
  1804. package/dist/cjs/third-party/settings/EcoboostifyShoppableReelUgc/index.js +4 -0
  1805. package/dist/cjs/third-party/settings/EcoboostifyShoppableReelUgc/uiV1.js +1 -0
  1806. package/dist/cjs/third-party/settings/EcoboostifyShoppableReelUgc/uiV2.js +1 -0
  1807. package/dist/cjs/third-party/settings/EcomsendBackInStockAlert/index.js +4 -0
  1808. package/dist/cjs/third-party/settings/EcomsendBackInStockAlert/uiV1.js +1 -0
  1809. package/dist/cjs/third-party/settings/EcomsendBackInStockAlert/uiV2.js +1 -0
  1810. package/dist/cjs/third-party/settings/EssentialAnnouncementBar/index.js +4 -0
  1811. package/dist/cjs/third-party/settings/EssentialAnnouncementBar/uiV1.js +1 -0
  1812. package/dist/cjs/third-party/settings/EssentialAnnouncementBar/uiV2.js +1 -0
  1813. package/dist/cjs/third-party/settings/EssentialCountdownTimerBar/index.js +4 -0
  1814. package/dist/cjs/third-party/settings/EssentialCountdownTimerBar/uiV1.js +1 -0
  1815. package/dist/cjs/third-party/settings/EssentialCountdownTimerBar/uiV2.js +1 -0
  1816. package/dist/cjs/third-party/settings/EstimatedDeliveryDatePlus/index.js +4 -0
  1817. package/dist/cjs/third-party/settings/EstimatedDeliveryDatePlus/uiV1.js +1 -0
  1818. package/dist/cjs/third-party/settings/EstimatedDeliveryDatePlus/uiV2.js +1 -0
  1819. package/dist/cjs/third-party/settings/FastBundleBundlesDiscounts/index.js +4 -0
  1820. package/dist/cjs/third-party/settings/FastBundleBundlesDiscounts/uiV1.js +1 -0
  1821. package/dist/cjs/third-party/settings/FastBundleBundlesDiscounts/uiV2.js +1 -0
  1822. package/dist/cjs/third-party/settings/FeraReviews/index.js +6 -0
  1823. package/dist/cjs/third-party/settings/FeraReviews/uiV1.js +1 -0
  1824. package/dist/cjs/third-party/settings/FeraReviews/uiV2.js +1 -0
  1825. package/dist/cjs/third-party/settings/FirePush/index.js +6 -0
  1826. package/dist/cjs/third-party/settings/FirePush/uiV1.js +1 -0
  1827. package/dist/cjs/third-party/settings/FirePush/uiV2.js +1 -0
  1828. package/dist/cjs/third-party/settings/FlyBundlesUpsellsFbt/index.js +4 -0
  1829. package/dist/cjs/third-party/settings/FlyBundlesUpsellsFbt/uiV1.js +1 -0
  1830. package/dist/cjs/third-party/settings/FlyBundlesUpsellsFbt/uiV2.js +1 -0
  1831. package/dist/cjs/third-party/settings/FordeerProductLabels/index.js +4 -0
  1832. package/dist/cjs/third-party/settings/FordeerProductLabels/uiV1.js +1 -0
  1833. package/dist/cjs/third-party/settings/FordeerProductLabels/uiV2.js +1 -0
  1834. package/dist/cjs/third-party/settings/FrequentlyBoughtTogether/index.js +8 -0
  1835. package/dist/cjs/third-party/settings/FrequentlyBoughtTogether/uiV1.js +1 -0
  1836. package/dist/cjs/third-party/settings/FrequentlyBoughtTogether/uiV2.js +1 -0
  1837. package/dist/cjs/third-party/settings/GloColorSwatchvariantImage/index.js +4 -0
  1838. package/dist/cjs/third-party/settings/GloColorSwatchvariantImage/uiV1.js +1 -0
  1839. package/dist/cjs/third-party/settings/GloColorSwatchvariantImage/uiV2.js +1 -0
  1840. package/dist/cjs/third-party/settings/GloboProductOptionsVariant/index.js +4 -0
  1841. package/dist/cjs/third-party/settings/GloboProductOptionsVariant/uiV1.js +1 -0
  1842. package/dist/cjs/third-party/settings/GloboProductOptionsVariant/uiV2.js +1 -0
  1843. package/dist/cjs/third-party/settings/GoogleReviewsByReputon/index.js +4 -0
  1844. package/dist/cjs/third-party/settings/GoogleReviewsByReputon/uiV1.js +1 -0
  1845. package/dist/cjs/third-party/settings/GoogleReviewsByReputon/uiV2.js +1 -0
  1846. package/dist/cjs/third-party/settings/Growave/index.js +6 -0
  1847. package/dist/cjs/third-party/settings/Growave/uiV1.js +1 -0
  1848. package/dist/cjs/third-party/settings/Growave/uiV2.js +1 -0
  1849. package/dist/cjs/third-party/settings/HextomCountdownTimerBar/index.js +4 -0
  1850. package/dist/cjs/third-party/settings/HextomCountdownTimerBar/uiV1.js +1 -0
  1851. package/dist/cjs/third-party/settings/HextomCountdownTimerBar/uiV2.js +1 -0
  1852. package/dist/cjs/third-party/settings/HextomFreeShippingBar/index.js +4 -0
  1853. package/dist/cjs/third-party/settings/HextomFreeShippingBar/uiV1.js +1 -0
  1854. package/dist/cjs/third-party/settings/HextomFreeShippingBar/uiV2.js +1 -0
  1855. package/dist/cjs/third-party/settings/HulkFormBuilder/index.js +4 -0
  1856. package/dist/cjs/third-party/settings/HulkFormBuilder/uiV1.js +1 -0
  1857. package/dist/cjs/third-party/settings/HulkFormBuilder/uiV2.js +1 -0
  1858. package/dist/cjs/third-party/settings/HulkProductOptions/index.js +4 -0
  1859. package/dist/cjs/third-party/settings/HulkProductOptions/uiV1.js +1 -0
  1860. package/dist/cjs/third-party/settings/HulkProductOptions/uiV2.js +1 -0
  1861. package/dist/cjs/third-party/settings/InfiniteOptions/index.js +6 -0
  1862. package/dist/cjs/third-party/settings/InfiniteOptions/uiV1.js +1 -0
  1863. package/dist/cjs/third-party/settings/InfiniteOptions/uiV2.js +1 -0
  1864. package/dist/cjs/third-party/settings/Instafeed/index.js +6 -0
  1865. package/dist/cjs/third-party/settings/Instafeed/uiV1.js +1 -0
  1866. package/dist/cjs/third-party/settings/Instafeed/uiV2.js +1 -0
  1867. package/dist/cjs/third-party/settings/InstasellShoppableInstagram/index.js +4 -0
  1868. package/dist/cjs/third-party/settings/InstasellShoppableInstagram/uiV1.js +1 -0
  1869. package/dist/cjs/third-party/settings/InstasellShoppableInstagram/uiV2.js +1 -0
  1870. package/dist/cjs/third-party/settings/JudgemeReviews/index.js +6 -0
  1871. package/dist/cjs/third-party/settings/JudgemeReviews/uiV1.js +1 -0
  1872. package/dist/cjs/third-party/settings/JudgemeReviews/uiV2.js +1 -0
  1873. package/dist/cjs/third-party/settings/JunipProductReviewsUgc/index.js +4 -0
  1874. package/dist/cjs/third-party/settings/JunipProductReviewsUgc/uiV1.js +1 -0
  1875. package/dist/cjs/third-party/settings/JunipProductReviewsUgc/uiV2.js +1 -0
  1876. package/dist/cjs/third-party/settings/KachingBundles/index.js +6 -0
  1877. package/dist/cjs/third-party/settings/KachingBundles/uiV1.js +1 -0
  1878. package/dist/cjs/third-party/settings/KachingBundles/uiV2.js +1 -0
  1879. package/dist/cjs/third-party/settings/KingProductOptions/index.js +6 -0
  1880. package/dist/cjs/third-party/settings/KingProductOptions/uiV1.js +1 -0
  1881. package/dist/cjs/third-party/settings/KingProductOptions/uiV2.js +1 -0
  1882. package/dist/cjs/third-party/settings/KiteFreeGiftDiscount/index.js +4 -0
  1883. package/dist/cjs/third-party/settings/KiteFreeGiftDiscount/uiV1.js +1 -0
  1884. package/dist/cjs/third-party/settings/KiteFreeGiftDiscount/uiV2.js +1 -0
  1885. package/dist/cjs/third-party/settings/KlarnaMessaging/index.js +5 -0
  1886. package/dist/cjs/third-party/settings/KlarnaMessaging/uiV1.js +1 -0
  1887. package/dist/cjs/third-party/settings/KlarnaMessaging/uiV2.js +1 -0
  1888. package/dist/cjs/third-party/settings/Klaviyo/index.js +6 -0
  1889. package/dist/cjs/third-party/settings/Klaviyo/uiV1.js +1 -0
  1890. package/dist/cjs/third-party/settings/Klaviyo/uiV2.js +1 -0
  1891. package/dist/cjs/third-party/settings/KoalaBundleQuantityDiscount/index.js +4 -0
  1892. package/dist/cjs/third-party/settings/KoalaBundleQuantityDiscount/uiV1.js +1 -0
  1893. package/dist/cjs/third-party/settings/KoalaBundleQuantityDiscount/uiV2.js +1 -0
  1894. package/dist/cjs/third-party/settings/LaiProductReviews/index.js +6 -0
  1895. package/dist/cjs/third-party/settings/LaiProductReviews/uiV1.js +1 -0
  1896. package/dist/cjs/third-party/settings/LaiProductReviews/uiV2.js +1 -0
  1897. package/dist/cjs/third-party/settings/LoloyalLoyaltyReferrals/index.js +4 -0
  1898. package/dist/cjs/third-party/settings/LoloyalLoyaltyReferrals/uiV1.js +1 -0
  1899. package/dist/cjs/third-party/settings/LoloyalLoyaltyReferrals/uiV2.js +1 -0
  1900. package/dist/cjs/third-party/settings/LoopSubscriptions/index.js +4 -0
  1901. package/dist/cjs/third-party/settings/LoopSubscriptions/uiV1.js +1 -0
  1902. package/dist/cjs/third-party/settings/LoopSubscriptions/uiV2.js +1 -0
  1903. package/dist/cjs/third-party/settings/LooxReviews/index.js +6 -0
  1904. package/dist/cjs/third-party/settings/LooxReviews/uiV1.js +1 -0
  1905. package/dist/cjs/third-party/settings/LooxReviews/uiV2.js +1 -0
  1906. package/dist/cjs/third-party/settings/MaxbundleProductBundles/index.js +4 -0
  1907. package/dist/cjs/third-party/settings/MaxbundleProductBundles/uiV1.js +1 -0
  1908. package/dist/cjs/third-party/settings/MaxbundleProductBundles/uiV2.js +1 -0
  1909. package/dist/cjs/third-party/settings/MbcBundleVolumeDiscount/index.js +4 -0
  1910. package/dist/cjs/third-party/settings/MbcBundleVolumeDiscount/uiV1.js +1 -0
  1911. package/dist/cjs/third-party/settings/MbcBundleVolumeDiscount/uiV2.js +1 -0
  1912. package/dist/cjs/third-party/settings/MyappgurusProductReviews/index.js +4 -0
  1913. package/dist/cjs/third-party/settings/MyappgurusProductReviews/uiV1.js +1 -0
  1914. package/dist/cjs/third-party/settings/MyappgurusProductReviews/uiV2.js +1 -0
  1915. package/dist/cjs/third-party/settings/NotifyBackInStockPreOrder/index.js +4 -0
  1916. package/dist/cjs/third-party/settings/NotifyBackInStockPreOrder/uiV1.js +1 -0
  1917. package/dist/cjs/third-party/settings/NotifyBackInStockPreOrder/uiV2.js +1 -0
  1918. package/dist/cjs/third-party/settings/OkendoReviewsLoyalty/index.js +4 -0
  1919. package/dist/cjs/third-party/settings/OkendoReviewsLoyalty/uiV1.js +1 -0
  1920. package/dist/cjs/third-party/settings/OkendoReviewsLoyalty/uiV2.js +1 -0
  1921. package/dist/cjs/third-party/settings/Omnisend/index.js +6 -0
  1922. package/dist/cjs/third-party/settings/Omnisend/uiV1.js +1 -0
  1923. package/dist/cjs/third-party/settings/Omnisend/uiV2.js +1 -0
  1924. package/dist/cjs/third-party/settings/Opinew/index.js +6 -0
  1925. package/dist/cjs/third-party/settings/Opinew/uiV1.js +1 -0
  1926. package/dist/cjs/third-party/settings/Opinew/uiV2.js +1 -0
  1927. package/dist/cjs/third-party/settings/ParcelPanel/index.js +6 -0
  1928. package/dist/cjs/third-party/settings/ParcelPanel/uiV1.js +1 -0
  1929. package/dist/cjs/third-party/settings/ParcelPanel/uiV2.js +1 -0
  1930. package/dist/cjs/third-party/settings/PickyStory/index.js +6 -0
  1931. package/dist/cjs/third-party/settings/PickyStory/uiV1.js +1 -0
  1932. package/dist/cjs/third-party/settings/PickyStory/uiV2.js +1 -0
  1933. package/dist/cjs/third-party/settings/PowerfulContactFormBuilder/index.js +4 -0
  1934. package/dist/cjs/third-party/settings/PowerfulContactFormBuilder/uiV1.js +1 -0
  1935. package/dist/cjs/third-party/settings/PowerfulContactFormBuilder/uiV2.js +1 -0
  1936. package/dist/cjs/third-party/settings/PreorderNowPreOrderPq/index.js +4 -0
  1937. package/dist/cjs/third-party/settings/PreorderNowPreOrderPq/uiV1.js +1 -0
  1938. package/dist/cjs/third-party/settings/PreorderNowPreOrderPq/uiV2.js +1 -0
  1939. package/dist/cjs/third-party/settings/PreorderNowWodPresale/index.js +4 -0
  1940. package/dist/cjs/third-party/settings/PreorderNowWodPresale/uiV1.js +1 -0
  1941. package/dist/cjs/third-party/settings/PreorderNowWodPresale/uiV2.js +1 -0
  1942. package/dist/cjs/third-party/settings/ProductOptionsCustomizer/index.js +4 -0
  1943. package/dist/cjs/third-party/settings/ProductOptionsCustomizer/uiV1.js +1 -0
  1944. package/dist/cjs/third-party/settings/ProductOptionsCustomizer/uiV2.js +1 -0
  1945. package/dist/cjs/third-party/settings/ProductOptionsVariantOption/index.js +4 -0
  1946. package/dist/cjs/third-party/settings/ProductOptionsVariantOption/uiV1.js +1 -0
  1947. package/dist/cjs/third-party/settings/ProductOptionsVariantOption/uiV2.js +1 -0
  1948. package/dist/cjs/third-party/settings/ProductReviews/index.js +6 -0
  1949. package/dist/cjs/third-party/settings/ProductReviews/uiV1.js +1 -0
  1950. package/dist/cjs/third-party/settings/ProductReviews/uiV2.js +1 -0
  1951. package/dist/cjs/third-party/settings/PumperBundlesVolumeDiscount/index.js +4 -0
  1952. package/dist/cjs/third-party/settings/PumperBundlesVolumeDiscount/uiV1.js +1 -0
  1953. package/dist/cjs/third-party/settings/PumperBundlesVolumeDiscount/uiV2.js +1 -0
  1954. package/dist/cjs/third-party/settings/PushOwl/index.js +6 -0
  1955. package/dist/cjs/third-party/settings/PushOwl/uiV1.js +1 -0
  1956. package/dist/cjs/third-party/settings/PushOwl/uiV2.js +1 -0
  1957. package/dist/cjs/third-party/settings/QikifyUpsell/index.js +6 -0
  1958. package/dist/cjs/third-party/settings/QikifyUpsell/uiV1.js +1 -0
  1959. package/dist/cjs/third-party/settings/QikifyUpsell/uiV2.js +1 -0
  1960. package/dist/cjs/third-party/settings/RapiBundleQuantityBreaks/index.js +4 -0
  1961. package/dist/cjs/third-party/settings/RapiBundleQuantityBreaks/uiV1.js +1 -0
  1962. package/dist/cjs/third-party/settings/RapiBundleQuantityBreaks/uiV2.js +1 -0
  1963. package/dist/cjs/third-party/settings/RechargeSubscriptions/index.js +4 -0
  1964. package/dist/cjs/third-party/settings/RechargeSubscriptions/uiV1.js +1 -0
  1965. package/dist/cjs/third-party/settings/RechargeSubscriptions/uiV2.js +1 -0
  1966. package/dist/cjs/third-party/settings/RecurpaySubscriptionApp/index.js +4 -0
  1967. package/dist/cjs/third-party/settings/RecurpaySubscriptionApp/uiV1.js +1 -0
  1968. package/dist/cjs/third-party/settings/RecurpaySubscriptionApp/uiV2.js +1 -0
  1969. package/dist/cjs/third-party/settings/Releasit/index.js +6 -0
  1970. package/dist/cjs/third-party/settings/Releasit/uiV1.js +1 -0
  1971. package/dist/cjs/third-party/settings/Releasit/uiV2.js +1 -0
  1972. package/dist/cjs/third-party/settings/RequestQuoteHidePrice/index.js +4 -0
  1973. package/dist/cjs/third-party/settings/RequestQuoteHidePrice/uiV1.js +1 -0
  1974. package/dist/cjs/third-party/settings/RequestQuoteHidePrice/uiV2.js +1 -0
  1975. package/dist/cjs/third-party/settings/ReviewxpoProductReviewsApp/index.js +4 -0
  1976. package/dist/cjs/third-party/settings/ReviewxpoProductReviewsApp/uiV1.js +1 -0
  1977. package/dist/cjs/third-party/settings/ReviewxpoProductReviewsApp/uiV2.js +1 -0
  1978. package/dist/cjs/third-party/settings/Rivyo/index.js +6 -0
  1979. package/dist/cjs/third-party/settings/Rivyo/uiV1.js +1 -0
  1980. package/dist/cjs/third-party/settings/Rivyo/uiV2.js +1 -0
  1981. package/dist/cjs/third-party/settings/Ryviu/index.js +6 -0
  1982. package/dist/cjs/third-party/settings/Ryviu/uiV1.js +1 -0
  1983. package/dist/cjs/third-party/settings/Ryviu/uiV2.js +1 -0
  1984. package/dist/cjs/third-party/settings/SealSubscriptions/index.js +6 -0
  1985. package/dist/cjs/third-party/settings/SealSubscriptions/uiV1.js +1 -0
  1986. package/dist/cjs/third-party/settings/SealSubscriptions/uiV2.js +1 -0
  1987. package/dist/cjs/third-party/settings/SegunoEmailMarketing/index.js +4 -0
  1988. package/dist/cjs/third-party/settings/SegunoEmailMarketing/uiV1.js +1 -0
  1989. package/dist/cjs/third-party/settings/SegunoEmailMarketing/uiV2.js +1 -0
  1990. package/dist/cjs/third-party/settings/Selleasy/index.js +4 -0
  1991. package/dist/cjs/third-party/settings/Selleasy/uiV1.js +1 -0
  1992. package/dist/cjs/third-party/settings/Selleasy/uiV2.js +1 -0
  1993. package/dist/cjs/third-party/settings/SeoantTrustBadgesIcon/index.js +4 -0
  1994. package/dist/cjs/third-party/settings/SeoantTrustBadgesIcon/uiV1.js +1 -0
  1995. package/dist/cjs/third-party/settings/SeoantTrustBadgesIcon/uiV2.js +1 -0
  1996. package/dist/cjs/third-party/settings/ShopifyForms/index.js +4 -0
  1997. package/dist/cjs/third-party/settings/ShopifyForms/uiV1.js +1 -0
  1998. package/dist/cjs/third-party/settings/ShopifyForms/uiV2.js +1 -0
  1999. package/dist/cjs/third-party/settings/ShopifySubscriptions/index.js +4 -0
  2000. package/dist/cjs/third-party/settings/ShopifySubscriptions/uiV1.js +1 -0
  2001. package/dist/cjs/third-party/settings/ShopifySubscriptions/uiV2.js +1 -0
  2002. package/dist/cjs/third-party/settings/SimpleBundlesKits/index.js +4 -0
  2003. package/dist/cjs/third-party/settings/SimpleBundlesKits/uiV1.js +1 -0
  2004. package/dist/cjs/third-party/settings/SimpleBundlesKits/uiV2.js +1 -0
  2005. package/dist/cjs/third-party/settings/SkioSubscriptionsYcS20/index.js +4 -0
  2006. package/dist/cjs/third-party/settings/SkioSubscriptionsYcS20/uiV1.js +1 -0
  2007. package/dist/cjs/third-party/settings/SkioSubscriptionsYcS20/uiV2.js +1 -0
  2008. package/dist/cjs/third-party/settings/SmartSearchBarAndFilters/index.js +6 -0
  2009. package/dist/cjs/third-party/settings/SmartSearchBarAndFilters/uiV1.js +1 -0
  2010. package/dist/cjs/third-party/settings/SmartSearchBarAndFilters/uiV2.js +1 -0
  2011. package/dist/cjs/third-party/settings/SproutPlantTreesGrowSales/index.js +4 -0
  2012. package/dist/cjs/third-party/settings/SproutPlantTreesGrowSales/uiV1.js +1 -0
  2013. package/dist/cjs/third-party/settings/SproutPlantTreesGrowSales/uiV2.js +1 -0
  2014. package/dist/cjs/third-party/settings/Stamped/Badge.js +1 -0
  2015. package/dist/cjs/third-party/settings/Stamped/BadgeDouble.js +1 -0
  2016. package/dist/cjs/third-party/settings/Stamped/BadgeRibbon.js +1 -0
  2017. package/dist/cjs/third-party/settings/Stamped/BadgeSingle.js +1 -0
  2018. package/dist/cjs/third-party/settings/Stamped/Carousel.js +1 -0
  2019. package/dist/cjs/third-party/settings/Stamped/CheckoutReviews.js +1 -0
  2020. package/dist/cjs/third-party/settings/Stamped/Colors.js +1 -0
  2021. package/dist/cjs/third-party/settings/Stamped/Filters.js +1 -0
  2022. package/dist/cjs/third-party/settings/Stamped/FullPage.js +1 -0
  2023. package/dist/cjs/third-party/settings/Stamped/InstagramFeed.js +1 -0
  2024. package/dist/cjs/third-party/settings/Stamped/MainWidget.js +1 -0
  2025. package/dist/cjs/third-party/settings/Stamped/ProductRating.js +1 -0
  2026. package/dist/cjs/third-party/settings/Stamped/SingleHighlight.js +1 -0
  2027. package/dist/cjs/third-party/settings/Stamped/SiteBadge.js +1 -0
  2028. package/dist/cjs/third-party/settings/Stamped/TopRated.js +1 -0
  2029. package/dist/cjs/third-party/settings/Stamped/VisualGallery.js +1 -0
  2030. package/dist/cjs/third-party/settings/Stamped/WallPhotos.js +1 -0
  2031. package/dist/cjs/third-party/settings/Stamped/index.js +1 -0
  2032. package/dist/cjs/third-party/settings/Stamped.js +6 -0
  2033. package/dist/cjs/third-party/settings/StellarDeliveryDatePickup/index.js +4 -0
  2034. package/dist/cjs/third-party/settings/StellarDeliveryDatePickup/uiV1.js +1 -0
  2035. package/dist/cjs/third-party/settings/StellarDeliveryDatePickup/uiV2.js +1 -0
  2036. package/dist/cjs/third-party/settings/SubifySubscriptionsApp/index.js +4 -0
  2037. package/dist/cjs/third-party/settings/SubifySubscriptionsApp/uiV1.js +1 -0
  2038. package/dist/cjs/third-party/settings/SubifySubscriptionsApp/uiV2.js +1 -0
  2039. package/dist/cjs/third-party/settings/TagembedSocialPostReview/index.js +4 -0
  2040. package/dist/cjs/third-party/settings/TagembedSocialPostReview/uiV1.js +1 -0
  2041. package/dist/cjs/third-party/settings/TagembedSocialPostReview/uiV2.js +1 -0
  2042. package/dist/cjs/third-party/settings/TagshopShoppableVideosUgc/index.js +4 -0
  2043. package/dist/cjs/third-party/settings/TagshopShoppableVideosUgc/uiV1.js +1 -0
  2044. package/dist/cjs/third-party/settings/TagshopShoppableVideosUgc/uiV2.js +1 -0
  2045. package/dist/cjs/third-party/settings/TeeinblueProductPersonalizer/index.js +4 -0
  2046. package/dist/cjs/third-party/settings/TeeinblueProductPersonalizer/uiV1.js +1 -0
  2047. package/dist/cjs/third-party/settings/TeeinblueProductPersonalizer/uiV2.js +1 -0
  2048. package/dist/cjs/third-party/settings/TrustBadgesBear/index.js +4 -0
  2049. package/dist/cjs/third-party/settings/TrustBadgesBear/uiV1.js +1 -0
  2050. package/dist/cjs/third-party/settings/TrustBadgesBear/uiV2.js +1 -0
  2051. package/dist/cjs/third-party/settings/TrustMe/index.js +6 -0
  2052. package/dist/cjs/third-party/settings/TrustMe/uiV1.js +1 -0
  2053. package/dist/cjs/third-party/settings/TrustMe/uiV2.js +1 -0
  2054. package/dist/cjs/third-party/settings/TrustedsiteTrustBadges/index.js +4 -0
  2055. package/dist/cjs/third-party/settings/TrustedsiteTrustBadges/uiV1.js +1 -0
  2056. package/dist/cjs/third-party/settings/TrustedsiteTrustBadges/uiV2.js +1 -0
  2057. package/dist/cjs/third-party/settings/Trustoo/index.js +6 -0
  2058. package/dist/cjs/third-party/settings/Trustoo/uiV1.js +1 -0
  2059. package/dist/cjs/third-party/settings/Trustoo/uiV2.js +1 -0
  2060. package/dist/cjs/third-party/settings/TrustreviewsProductReviews/index.js +4 -0
  2061. package/dist/cjs/third-party/settings/TrustreviewsProductReviews/uiV1.js +1 -0
  2062. package/dist/cjs/third-party/settings/TrustreviewsProductReviews/uiV2.js +1 -0
  2063. package/dist/cjs/third-party/settings/TrustshopProductReviews/index.js +4 -0
  2064. package/dist/cjs/third-party/settings/TrustshopProductReviews/uiV1.js +1 -0
  2065. package/dist/cjs/third-party/settings/TrustshopProductReviews/uiV2.js +1 -0
  2066. package/dist/cjs/third-party/settings/UltimateSalesBoost/index.js +6 -0
  2067. package/dist/cjs/third-party/settings/UltimateSalesBoost/uiV1.js +1 -0
  2068. package/dist/cjs/third-party/settings/UltimateSalesBoost/uiV2.js +1 -0
  2069. package/dist/cjs/third-party/settings/UnlimitedBundlesDiscounts/index.js +4 -0
  2070. package/dist/cjs/third-party/settings/UnlimitedBundlesDiscounts/uiV1.js +1 -0
  2071. package/dist/cjs/third-party/settings/UnlimitedBundlesDiscounts/uiV2.js +1 -0
  2072. package/dist/cjs/third-party/settings/Vitals/index.js +6 -0
  2073. package/dist/cjs/third-party/settings/Vitals/uiV1.js +1 -0
  2074. package/dist/cjs/third-party/settings/Vitals/uiV2.js +1 -0
  2075. package/dist/cjs/third-party/settings/WhatmoreShoppableVideosreel/index.js +4 -0
  2076. package/dist/cjs/third-party/settings/WhatmoreShoppableVideosreel/uiV1.js +1 -0
  2077. package/dist/cjs/third-party/settings/WhatmoreShoppableVideosreel/uiV2.js +1 -0
  2078. package/dist/cjs/third-party/settings/WideBundle/index.js +6 -0
  2079. package/dist/cjs/third-party/settings/WideBundle/uiV1.js +1 -0
  2080. package/dist/cjs/third-party/settings/WideBundle/uiV2.js +1 -0
  2081. package/dist/cjs/third-party/settings/Wiser/index.js +6 -0
  2082. package/dist/cjs/third-party/settings/Wiser/uiV1.js +1 -0
  2083. package/dist/cjs/third-party/settings/Wiser/uiV2.js +1 -0
  2084. package/dist/cjs/third-party/settings/WishlistKing/index.js +4 -0
  2085. package/dist/cjs/third-party/settings/WishlistKing/uiV1.js +1 -0
  2086. package/dist/cjs/third-party/settings/WishlistKing/uiV2.js +1 -0
  2087. package/dist/cjs/third-party/settings/WishlistPlus/index.js +6 -0
  2088. package/dist/cjs/third-party/settings/WishlistPlus/uiV1.js +1 -0
  2089. package/dist/cjs/third-party/settings/WishlistPlus/uiV2.js +1 -0
  2090. package/dist/cjs/third-party/settings/YotpoLoyalty/index.js +6 -0
  2091. package/dist/cjs/third-party/settings/YotpoLoyalty/uiV1.js +1 -0
  2092. package/dist/cjs/third-party/settings/YotpoLoyalty/uiV2.js +1 -0
  2093. package/dist/cjs/third-party/settings/YotpoReviews/index.js +6 -0
  2094. package/dist/cjs/third-party/settings/YotpoReviews/uiV1.js +1 -0
  2095. package/dist/cjs/third-party/settings/YotpoReviews/uiV2.js +1 -0
  2096. package/dist/cjs/third-party/types.js +1 -0
  2097. package/dist/cjs/third-party-instant/common/helpers.js +1 -0
  2098. package/dist/cjs/third-party-instant/components/InstantJudgemeReviews.js +2 -75
  2099. package/dist/cjs/third-party-instant/components/InstantKlaviyo.js +2 -47
  2100. package/dist/cjs/third-party-instant/components/InstantLooxReviews.js +2 -36
  2101. package/dist/cjs/third-party-instant/components/InstantThirdPartyPreview.js +2 -72
  2102. package/dist/cjs/third-party-instant/components/InstantYotpoLoyalty.js +2 -43
  2103. package/dist/cjs/third-party-instant/components/Judgeme/JudgemeSampleContent.js +2 -23
  2104. package/dist/cjs/third-party-instant/components/Judgeme/SingleProduct.js +2 -48
  2105. package/dist/cjs/third-party-instant/components/Judgeme/WithoutProduct.js +2 -93
  2106. package/dist/cjs/third-party-instant/components/Klaviyo/KlaviyoSampleContent.js +2 -23
  2107. package/dist/cjs/third-party-instant/components/LooxReviews/LooxReviewsSampleContent.js +3 -24
  2108. package/dist/cjs/third-party-instant/components/LooxReviews/SingleProduct.js +2 -51
  2109. package/dist/cjs/third-party-instant/components/LooxReviews/WithoutProduct.js +2 -55
  2110. package/dist/cjs/third-party-instant/components/YotpoLoyalty/YotpoLoyaltySampleContent.js +2 -23
  2111. package/dist/cjs/third-party-instant/configs/JudgemeReviews.js +1 -12
  2112. package/dist/cjs/third-party-instant/configs/Klaviyo.js +1 -12
  2113. package/dist/cjs/third-party-instant/configs/LooxReviews.js +1 -12
  2114. package/dist/cjs/third-party-instant/configs/YotpoLoyalty.js +1 -12
  2115. package/dist/cjs/third-party-instant/index.js +1 -0
  2116. package/dist/cjs/third-party-instant/next.js +1 -33
  2117. package/dist/cjs/third-party-instant/settings/InstantJudgemeReviews/configs/settings.js +1 -0
  2118. package/dist/cjs/third-party-instant/settings/InstantJudgemeReviews/configs/ui-v1.js +1 -0
  2119. package/dist/cjs/third-party-instant/settings/InstantJudgemeReviews/configs/ui-v2.js +1 -0
  2120. package/dist/cjs/third-party-instant/settings/InstantJudgemeReviews/index.js +6 -0
  2121. package/dist/cjs/third-party-instant/settings/InstantKlaviyo/configs/settings.js +1 -0
  2122. package/dist/cjs/third-party-instant/settings/InstantKlaviyo/configs/ui-v1.js +1 -0
  2123. package/dist/cjs/third-party-instant/settings/InstantKlaviyo/configs/ui-v2.js +1 -0
  2124. package/dist/cjs/third-party-instant/settings/InstantKlaviyo/index.js +6 -0
  2125. package/dist/cjs/third-party-instant/settings/InstantLooxReviews/configs/settings.js +1 -0
  2126. package/dist/cjs/third-party-instant/settings/InstantLooxReviews/index.js +6 -0
  2127. package/dist/cjs/third-party-instant/settings/InstantYotpoLoyalty/configs/settings.js +1 -0
  2128. package/dist/cjs/third-party-instant/settings/InstantYotpoLoyalty/index.js +6 -0
  2129. package/dist/cjs/third-party-instant/types.js +1 -0
  2130. package/dist/cjs/third-party-slot/common/classes.js +1 -0
  2131. package/dist/cjs/third-party-slot/common/helpers.js +40 -0
  2132. package/dist/cjs/third-party-slot/common/styles.js +1 -0
  2133. package/dist/cjs/third-party-slot/components/ThirdPartySlot.js +2 -47
  2134. package/dist/cjs/third-party-slot/components/ThirdPartySlot.liquid.js +8 -56
  2135. package/dist/cjs/third-party-slot/index.js +1 -0
  2136. package/dist/cjs/third-party-slot/next.js +1 -16
  2137. package/dist/cjs/third-party-slot/settings/ThirdPartySlot.js +10 -0
  2138. package/dist/cjs/third-party-slot/settings/configs/settings.js +1 -0
  2139. package/dist/cjs/third-party-slot/settings/configs/ui-v1.js +1 -0
  2140. package/dist/cjs/third-party-slot/settings/configs/ui-v2.js +1 -0
  2141. package/dist/cjs/validates/background.js +1 -0
  2142. package/dist/cjs/video/common/attrs.js +1 -0
  2143. package/dist/cjs/video/common/classes.js +1 -0
  2144. package/dist/cjs/video/common/helpers.js +1 -0
  2145. package/dist/cjs/video/common/styles.js +1 -0
  2146. package/dist/cjs/video/components/HTML5Embed.js +2 -83
  2147. package/dist/cjs/video/components/HTML5Embed.liquid.js +38 -87
  2148. package/dist/cjs/video/components/LiteVimeoEmbed.js +2 -117
  2149. package/dist/cjs/video/components/LiteVimeoEmbed.liquid.js +18 -56
  2150. package/dist/cjs/video/components/LiteYouTubeEmbed.js +2 -195
  2151. package/dist/cjs/video/components/LiteYouTubeEmbed.liquid.js +21 -83
  2152. package/dist/cjs/video/components/Video.js +2 -112
  2153. package/dist/cjs/video/components/Video.liquid.js +4 -107
  2154. package/dist/cjs/video/hooks/useLiteHtml5Embed.js +1 -0
  2155. package/dist/cjs/video/hooks/useLiteVimeoEmbed.js +1 -0
  2156. package/dist/cjs/video/hooks/useLiteYoutubeEmbed.js +1 -0
  2157. package/dist/cjs/video/index.js +1 -0
  2158. package/dist/cjs/video/next.js +1 -16
  2159. package/dist/cjs/video/settings/Video.js +12 -0
  2160. package/dist/cjs/video/settings/configs/settings.js +1 -0
  2161. package/dist/cjs/video/settings/configs/ui-v1.js +1 -0
  2162. package/dist/cjs/video/settings/configs/ui-v2.js +1 -0
  2163. package/dist/esm/accordion/common/classes.js +1 -0
  2164. package/dist/esm/accordion/common/helpers.js +1 -0
  2165. package/dist/esm/accordion/common/styles.js +1 -0
  2166. package/dist/esm/accordion/components/Accordion.js +2 -191
  2167. package/dist/esm/accordion/components/Accordion.liquid.js +16 -108
  2168. package/dist/esm/accordion/components/AccordionItem.js +2 -303
  2169. package/dist/esm/accordion/components/AccordionItem.liquid.js +33 -238
  2170. package/dist/esm/accordion/hooks/useAccordion.js +1 -0
  2171. package/dist/esm/accordion/hooks/useAccordionItem.js +1 -0
  2172. package/dist/esm/accordion/hooks/useMountTransition.js +2 -23
  2173. package/dist/esm/accordion/index.js +1 -0
  2174. package/dist/esm/accordion/next.js +1 -16
  2175. package/dist/esm/accordion/settings/Accordion.js +70 -0
  2176. package/dist/esm/accordion/settings/AccordionItem.js +1 -0
  2177. package/dist/esm/accordion/settings/configs/child-items.js +1 -0
  2178. package/dist/esm/accordion/settings/configs/settings.js +39 -0
  2179. package/dist/esm/accordion/settings/configs/ui-v1.js +1 -0
  2180. package/dist/esm/accordion/settings/configs/ui-v2.js +1 -0
  2181. package/dist/esm/article/common/helpers.js +13 -0
  2182. package/dist/esm/article/components/ArticleAuthor.js +2 -30
  2183. package/dist/esm/article/components/ArticleAuthor.liquid.js +4 -22
  2184. package/dist/esm/article/components/ArticleCategory.js +2 -23
  2185. package/dist/esm/article/components/ArticleCategory.liquid.js +4 -22
  2186. package/dist/esm/article/components/ArticleContent.js +4 -59
  2187. package/dist/esm/article/components/ArticleContent.liquid.js +8 -27
  2188. package/dist/esm/article/components/ArticleDate.js +2 -40
  2189. package/dist/esm/article/components/ArticleDate.liquid.js +4 -30
  2190. package/dist/esm/article/components/ArticleExcerpt.js +2 -48
  2191. package/dist/esm/article/components/ArticleExcerpt.liquid.js +4 -21
  2192. package/dist/esm/article/components/ArticleImage.js +2 -36
  2193. package/dist/esm/article/components/ArticleImage.liquid.js +9 -47
  2194. package/dist/esm/article/components/ArticleList.js +2 -141
  2195. package/dist/esm/article/components/ArticleList.liquid.js +20 -54
  2196. package/dist/esm/article/components/ArticleNotFound.js +2 -137
  2197. package/dist/esm/article/components/ArticlePagination.js +2 -14
  2198. package/dist/esm/article/components/ArticlePagination.liquid.js +2 -8
  2199. package/dist/esm/article/components/ArticleReadMore.js +2 -48
  2200. package/dist/esm/article/components/ArticleReadMore.liquid.js +6 -53
  2201. package/dist/esm/article/components/ArticleTag.js +2 -28
  2202. package/dist/esm/article/components/ArticleTag.liquid.js +5 -22
  2203. package/dist/esm/article/components/ArticleTitle.js +2 -37
  2204. package/dist/esm/article/components/ArticleTitle.liquid.js +8 -38
  2205. package/dist/esm/article/hooks/useArticleLink.js +1 -26
  2206. package/dist/esm/article/index.js +1 -0
  2207. package/dist/esm/article/next.js +1 -52
  2208. package/dist/esm/article/settings/ArticleAuthor.js +6 -0
  2209. package/dist/esm/article/settings/ArticleCategory.js +6 -0
  2210. package/dist/esm/article/settings/ArticleContent.js +6 -0
  2211. package/dist/esm/article/settings/ArticleDate.js +6 -0
  2212. package/dist/esm/article/settings/ArticleExcerpt.js +6 -0
  2213. package/dist/esm/article/settings/ArticleImage.js +7 -0
  2214. package/dist/esm/article/settings/ArticleList.js +8 -0
  2215. package/dist/esm/article/settings/ArticlePagination.js +12 -0
  2216. package/dist/esm/article/settings/ArticleReadMore.js +6 -0
  2217. package/dist/esm/article/settings/ArticleTag.js +6 -0
  2218. package/dist/esm/article/settings/ArticleTitle.js +6 -0
  2219. package/dist/esm/article/settings/configs/article-author/presets.js +6 -0
  2220. package/dist/esm/article/settings/configs/article-author/settings.js +1 -0
  2221. package/dist/esm/article/settings/configs/article-author/ui-v1.js +1 -0
  2222. package/dist/esm/article/settings/configs/article-author/ui-v2.js +1 -0
  2223. package/dist/esm/article/settings/configs/article-category/presets.js +6 -0
  2224. package/dist/esm/article/settings/configs/article-category/settings.js +1 -0
  2225. package/dist/esm/article/settings/configs/article-category/ui-v1.js +1 -0
  2226. package/dist/esm/article/settings/configs/article-category/ui-v2.js +1 -0
  2227. package/dist/esm/article/settings/configs/article-content/presets.js +4 -0
  2228. package/dist/esm/article/settings/configs/article-content/settings.js +1 -0
  2229. package/dist/esm/article/settings/configs/article-content/ui-v1.js +1 -0
  2230. package/dist/esm/article/settings/configs/article-content/ui-v2.js +1 -0
  2231. package/dist/esm/article/settings/configs/article-date/presets.js +5 -0
  2232. package/dist/esm/article/settings/configs/article-date/settings.js +1 -0
  2233. package/dist/esm/article/settings/configs/article-date/ui-v1.js +1 -0
  2234. package/dist/esm/article/settings/configs/article-date/ui-v2.js +1 -0
  2235. package/dist/esm/article/settings/configs/article-excerpt/presets.js +5 -0
  2236. package/dist/esm/article/settings/configs/article-excerpt/settings.js +1 -0
  2237. package/dist/esm/article/settings/configs/article-excerpt/ui-v1.js +1 -0
  2238. package/dist/esm/article/settings/configs/article-excerpt/ui-v2.js +1 -0
  2239. package/dist/esm/article/settings/configs/article-image/presets.js +4 -0
  2240. package/dist/esm/article/settings/configs/article-image/settings.js +1 -0
  2241. package/dist/esm/article/settings/configs/article-image/ui-v1.js +1 -0
  2242. package/dist/esm/article/settings/configs/article-image/ui-v2.js +1 -0
  2243. package/dist/esm/article/settings/configs/article-list/presets.js +19 -0
  2244. package/dist/esm/article/settings/configs/article-list/settings.js +1 -0
  2245. package/dist/esm/article/settings/configs/article-list/ui-v2.js +1 -0
  2246. package/dist/esm/article/settings/configs/article-read-more/presets.js +5 -0
  2247. package/dist/esm/article/settings/configs/article-read-more/settings.js +2 -0
  2248. package/dist/esm/article/settings/configs/article-read-more/ui-v1.js +1 -0
  2249. package/dist/esm/article/settings/configs/article-read-more/ui-v2.js +1 -0
  2250. package/dist/esm/article/settings/configs/article-tag/presets.js +6 -0
  2251. package/dist/esm/article/settings/configs/article-tag/settings.js +1 -0
  2252. package/dist/esm/article/settings/configs/article-tag/ui-v1.js +1 -0
  2253. package/dist/esm/article/settings/configs/article-tag/ui-v2.js +1 -0
  2254. package/dist/esm/article/settings/configs/article-title/presets.js +5 -0
  2255. package/dist/esm/article/settings/configs/article-title/settings.js +1 -0
  2256. package/dist/esm/article/settings/configs/article-title/ui-v1.js +1 -0
  2257. package/dist/esm/article/settings/configs/article-title/ui-v2.js +1 -0
  2258. package/dist/esm/breadcrumb/common/attrs.js +1 -0
  2259. package/dist/esm/breadcrumb/common/classes.js +9 -0
  2260. package/dist/esm/breadcrumb/common/helpers.js +1 -0
  2261. package/dist/esm/breadcrumb/common/styles.js +1 -0
  2262. package/dist/esm/breadcrumb/components/Breadcrumb.js +2 -176
  2263. package/dist/esm/breadcrumb/components/Breadcrumb.liquid.js +15 -229
  2264. package/dist/esm/breadcrumb/components/BreadcrumbItem.js +2 -0
  2265. package/dist/esm/breadcrumb/components/BreadcrumbItem.liquid.js +1 -0
  2266. package/dist/esm/breadcrumb/components/templates/article.js +10 -0
  2267. package/dist/esm/breadcrumb/components/templates/collection.js +6 -0
  2268. package/dist/esm/breadcrumb/components/templates/home.js +4 -0
  2269. package/dist/esm/breadcrumb/components/templates/landing.js +6 -0
  2270. package/dist/esm/breadcrumb/components/templates/product.js +20 -0
  2271. package/dist/esm/breadcrumb/constants.js +1 -0
  2272. package/dist/esm/breadcrumb/hooks/useBreadcrumb.js +1 -0
  2273. package/dist/esm/breadcrumb/index.js +1 -0
  2274. package/dist/esm/breadcrumb/next.js +1 -12
  2275. package/dist/esm/breadcrumb/settings/Breadcrumb.js +8 -0
  2276. package/dist/esm/breadcrumb/settings/configs/settings.js +4 -0
  2277. package/dist/esm/breadcrumb/settings/configs/ui-v1.js +1 -0
  2278. package/dist/esm/breadcrumb/settings/configs/ui-v2.js +1 -0
  2279. package/dist/esm/breadcrumb/types.js +1 -0
  2280. package/dist/esm/builder.js +2 -511
  2281. package/dist/esm/button/common/attrs.js +1 -0
  2282. package/dist/esm/button/common/classes.js +1 -0
  2283. package/dist/esm/button/common/helpers.js +22 -0
  2284. package/dist/esm/button/common/styles.js +32 -0
  2285. package/dist/esm/button/components/Button.js +2 -189
  2286. package/dist/esm/button/components/Button.liquid.js +28 -181
  2287. package/dist/esm/button/components/ButtonIcon.js +1 -0
  2288. package/dist/esm/button/components/ButtonIcon.liquid.js +8 -0
  2289. package/dist/esm/button/components/ButtonLabel.js +1 -0
  2290. package/dist/esm/button/components/ButtonLabel.liquid.js +8 -0
  2291. package/dist/esm/button/components/ButtonLoadingIndicator.js +1 -0
  2292. package/dist/esm/button/components/ButtonLoadingIndicator.liquid.js +1 -0
  2293. package/dist/esm/button/index.js +1 -0
  2294. package/dist/esm/button/next.js +1 -12
  2295. package/dist/esm/button/settings/Button.js +27 -0
  2296. package/dist/esm/button/settings/configs/settings.js +4 -0
  2297. package/dist/esm/button/settings/configs/ui-v1.js +1 -0
  2298. package/dist/esm/button/settings/configs/ui-v2.js +1 -0
  2299. package/dist/esm/carousel/common/helpers.js +1 -0
  2300. package/dist/esm/carousel/components/arrow/Arrow.js +10 -0
  2301. package/dist/esm/carousel/components/arrow/Arrow.liquid.js +26 -0
  2302. package/dist/esm/carousel/components/arrow/common/classes.js +1 -0
  2303. package/dist/esm/carousel/components/arrow/common/helpers.js +1 -0
  2304. package/dist/esm/carousel/components/arrow/common/styles.js +33 -0
  2305. package/dist/esm/carousel/components/dot/Dots.js +2 -0
  2306. package/dist/esm/carousel/components/dot/Dots.liquid.js +7 -0
  2307. package/dist/esm/carousel/components/dot/common/classes.js +1 -0
  2308. package/dist/esm/carousel/components/dot/common/helpers.js +1 -0
  2309. package/dist/esm/carousel/components/dot/common/styles.js +1 -0
  2310. package/dist/esm/carousel/components/item/CarouselItem.js +2 -0
  2311. package/dist/esm/carousel/components/item/CarouselItem.liquid.js +22 -0
  2312. package/dist/esm/carousel/components/item/common/classes.js +1 -0
  2313. package/dist/esm/carousel/components/item/common/styles.js +1 -0
  2314. package/dist/esm/carousel/components/root/Carousel.js +2 -0
  2315. package/dist/esm/carousel/components/root/Carousel.liquid.js +21 -0
  2316. package/dist/esm/carousel/components/root/common/attrs.js +1 -0
  2317. package/dist/esm/carousel/components/root/common/classes.js +1 -0
  2318. package/dist/esm/carousel/components/root/common/helpers.js +1 -0
  2319. package/dist/esm/carousel/components/root/common/styles.js +1 -0
  2320. package/dist/esm/carousel/hooks/useCarouseItem.js +1 -0
  2321. package/dist/esm/carousel/hooks/useCarousel.js +1 -0
  2322. package/dist/esm/carousel/hooks/useDotsSetting.js +1 -0
  2323. package/dist/esm/carousel/hooks/useTrackPreviewPause.js +1 -0
  2324. package/dist/esm/carousel/index.js +1 -0
  2325. package/dist/esm/carousel/next.js +1 -16
  2326. package/dist/esm/carousel/plugins/animation.js +1 -0
  2327. package/dist/esm/carousel/plugins/auto-play.js +1 -0
  2328. package/dist/esm/carousel/plugins/fix-slider-move-backward.js +1 -0
  2329. package/dist/esm/carousel/plugins/mutation.js +1 -0
  2330. package/dist/esm/carousel/settings/Carousel.js +5 -0
  2331. package/dist/esm/carousel/settings/CarouselItem.js +1 -0
  2332. package/dist/esm/carousel/settings/configs/presets.js +114 -0
  2333. package/dist/esm/carousel/settings/configs/settings-v2.js +3 -0
  2334. package/dist/esm/carousel/settings/configs/ui-v1.js +1 -0
  2335. package/dist/esm/carousel/settings/configs/ui-v2.js +1 -0
  2336. package/dist/esm/cart/components/Cart.js +2 -81
  2337. package/dist/esm/cart/components/CartCheckout.js +2 -14
  2338. package/dist/esm/cart/components/CartDiscount.js +2 -9
  2339. package/dist/esm/cart/components/CartLineAttribute.js +2 -27
  2340. package/dist/esm/cart/components/CartLineImage.js +2 -41
  2341. package/dist/esm/cart/components/CartLinePrice.js +2 -42
  2342. package/dist/esm/cart/components/CartLineVariant.js +2 -24
  2343. package/dist/esm/cart/components/CartList.js +2 -33
  2344. package/dist/esm/cart/components/CartOrderNote.js +2 -43
  2345. package/dist/esm/cart/components/CartTotalItem.js +2 -19
  2346. package/dist/esm/cart/components/CartTotalPrice.js +2 -52
  2347. package/dist/esm/cart/components/CheckoutNow.js +2 -37
  2348. package/dist/esm/cart/components/CouponList.js +2 -11
  2349. package/dist/esm/cart/components/DiscountInput.js +2 -24
  2350. package/dist/esm/cart/components/shop-pay-button/ShopPayButton.js +2 -0
  2351. package/dist/esm/cart/components/shop-pay-button/ShopPayButton.liquid.js +16 -0
  2352. package/dist/esm/cart/components/shop-pay-button/common/classes.js +1 -0
  2353. package/dist/esm/cart/components/shop-pay-button/common/helpers.js +1 -0
  2354. package/dist/esm/cart/components/shop-pay-button/common/styles.js +1 -0
  2355. package/dist/esm/cart/components/shop-pay-button/icons/BaseIcon.js +2 -0
  2356. package/dist/esm/cart/components/shop-pay-button/icons/BaseIcon.liquid.js +5 -0
  2357. package/dist/esm/cart/components/shop-pay-button/icons/DynamicCheckoutBlack.js +2 -0
  2358. package/dist/esm/cart/components/shop-pay-button/icons/DynamicCheckoutBlack.liquid.js +29 -0
  2359. package/dist/esm/cart/components/shop-pay-button/icons/DynamicCheckoutPurple.js +2 -0
  2360. package/dist/esm/cart/components/shop-pay-button/icons/DynamicCheckoutPurple.liquid.js +29 -0
  2361. package/dist/esm/cart/components/shop-pay-button/icons/DynamicCheckoutWhite.js +2 -0
  2362. package/dist/esm/cart/components/shop-pay-button/icons/DynamicCheckoutWhite.liquid.js +15 -0
  2363. package/dist/esm/cart/components/shop-pay-button/icons/ExpressCheckoutBlack.js +2 -0
  2364. package/dist/esm/cart/components/shop-pay-button/icons/ExpressCheckoutBlack.liquid.js +25 -0
  2365. package/dist/esm/cart/components/shop-pay-button/icons/ExpressCheckoutPurple.js +2 -0
  2366. package/dist/esm/cart/components/shop-pay-button/icons/ExpressCheckoutPurple.liquid.js +25 -0
  2367. package/dist/esm/cart/components/shop-pay-button/icons/ExpressCheckoutWhite.js +2 -0
  2368. package/dist/esm/cart/components/shop-pay-button/icons/ExpressCheckoutWhite.liquid.js +25 -0
  2369. package/dist/esm/cart/hooks/useShopPayButton.js +1 -0
  2370. package/dist/esm/cart/index.js +1 -0
  2371. package/dist/esm/cart/next.js +1 -70
  2372. package/dist/esm/cart/settings/Cart.js +7 -0
  2373. package/dist/esm/cart/settings/CartCheckout.js +1 -0
  2374. package/dist/esm/cart/settings/CartDiscount.js +1 -0
  2375. package/dist/esm/cart/settings/CartLineAttribute.js +1 -0
  2376. package/dist/esm/cart/settings/CartLineImage.js +1 -0
  2377. package/dist/esm/cart/settings/CartLinePrice.js +1 -0
  2378. package/dist/esm/cart/settings/CartLineVariant.js +1 -0
  2379. package/dist/esm/cart/settings/CartList.js +1 -0
  2380. package/dist/esm/cart/settings/CartOrderNote.js +1 -0
  2381. package/dist/esm/cart/settings/CartTotalItem.js +1 -0
  2382. package/dist/esm/cart/settings/CartTotalPrice.js +1 -0
  2383. package/dist/esm/cart/settings/CouponList.js +1 -0
  2384. package/dist/esm/cart/settings/DiscountInput.js +1 -0
  2385. package/dist/esm/cart/settings/ShopPayButton.js +1 -0
  2386. package/dist/esm/code/common/classes.js +1 -0
  2387. package/dist/esm/code/common/styles.js +1 -0
  2388. package/dist/esm/code/components/CSSCode.js +2 -145
  2389. package/dist/esm/code/components/CSSCode.liquid.js +10 -26
  2390. package/dist/esm/code/hooks/useCSSCode.js +11 -0
  2391. package/dist/esm/code/index.js +1 -0
  2392. package/dist/esm/code/next.js +1 -12
  2393. package/dist/esm/code/settings/CSSCode.js +7 -0
  2394. package/dist/esm/code/settings/configs/settings.js +1 -0
  2395. package/dist/esm/code/settings/configs/ui-v1.js +1 -0
  2396. package/dist/esm/code/settings/configs/ui-v2.js +1 -0
  2397. package/dist/esm/collection/components/collection-banner/CollectionBanner.js +2 -0
  2398. package/dist/esm/collection/components/collection-banner/CollectionBanner.liquid.js +19 -0
  2399. package/dist/esm/collection/components/collection-banner/common/classes.js +1 -0
  2400. package/dist/esm/collection/components/collection-banner/common/helpers.js +1 -0
  2401. package/dist/esm/collection/components/collection-banner/common/styles.js +1 -0
  2402. package/dist/esm/collection/components/collection-description/CollectionDescription.js +2 -0
  2403. package/dist/esm/collection/components/collection-description/CollectionDescription.liquid.js +21 -0
  2404. package/dist/esm/collection/components/collection-description/common/classes.js +1 -0
  2405. package/dist/esm/collection/components/collection-description/common/helpers.js +3 -0
  2406. package/dist/esm/collection/components/collection-description/common/styles.js +16 -0
  2407. package/dist/esm/collection/components/collection-paginator/CollectionPaginator.js +2 -0
  2408. package/dist/esm/collection/components/collection-paginator/CollectionPaginator.liquid.js +8 -0
  2409. package/dist/esm/collection/components/collection-paginator/common/classes.js +1 -0
  2410. package/dist/esm/collection/components/collection-paginator/common/helpers.js +8 -0
  2411. package/dist/esm/collection/components/collection-paginator/common/styles.js +1 -0
  2412. package/dist/esm/collection/components/collection-title/CollectionTitle.js +2 -0
  2413. package/dist/esm/collection/components/collection-title/CollectionTitle.liquid.js +3 -0
  2414. package/dist/esm/collection/components/collection-toolbar/CollectionToolbar.js +2 -0
  2415. package/dist/esm/collection/components/collection-toolbar/CollectionToolbar.liquid.js +42 -0
  2416. package/dist/esm/collection/components/collection-toolbar/common/classes.js +1 -0
  2417. package/dist/esm/collection/components/collection-toolbar/common/helpers.js +1 -0
  2418. package/dist/esm/collection/components/collection-toolbar/common/styles.js +1 -0
  2419. package/dist/esm/collection/hooks/useDescription.js +1 -0
  2420. package/dist/esm/collection/index.js +1 -0
  2421. package/dist/esm/collection/next.js +1 -28
  2422. package/dist/esm/collection/settings/collection-banner/CollectionBanner.js +12 -0
  2423. package/dist/esm/collection/settings/collection-banner/configs/settings.js +14 -0
  2424. package/dist/esm/collection/settings/collection-banner/configs/ui-v1.js +1 -0
  2425. package/dist/esm/collection/settings/collection-banner/configs/ui-v2.js +1 -0
  2426. package/dist/esm/collection/settings/collection-description/CollectionDescription.js +9 -0
  2427. package/dist/esm/collection/settings/collection-description/configs/settings.js +1 -0
  2428. package/dist/esm/collection/settings/collection-description/configs/ui-v1.js +1 -0
  2429. package/dist/esm/collection/settings/collection-description/configs/ui-v2.js +1 -0
  2430. package/dist/esm/collection/settings/collection-paginator/CollectionPaginator.js +12 -0
  2431. package/dist/esm/collection/settings/collection-paginator/configs/settings.js +1 -0
  2432. package/dist/esm/collection/settings/collection-paginator/configs/ui-v1.js +1 -0
  2433. package/dist/esm/collection/settings/collection-paginator/configs/ui-v2.js +1 -0
  2434. package/dist/esm/collection/settings/collection-title/CollectionTitle.js +9 -0
  2435. package/dist/esm/collection/settings/collection-title/configs/settings.js +1 -0
  2436. package/dist/esm/collection/settings/collection-title/configs/ui-v1.js +1 -0
  2437. package/dist/esm/collection/settings/collection-title/configs/ui-v2.js +1 -0
  2438. package/dist/esm/collection/settings/collection-toolbar/CollectionToolbar.js +11 -0
  2439. package/dist/esm/collection/settings/collection-toolbar/configs/settings.js +1 -0
  2440. package/dist/esm/collection/settings/collection-toolbar/configs/ui-v1.js +1 -0
  2441. package/dist/esm/collection/settings/collection-toolbar/configs/ui-v2.js +1 -0
  2442. package/dist/esm/common/components/Loading.js +2 -17
  2443. package/dist/esm/common/components/NoDataState.js +1 -0
  2444. package/dist/esm/common/components/Tooltip.js +2 -63
  2445. package/dist/esm/common/components/TooltipHover.js +2 -0
  2446. package/dist/esm/common/const.js +1 -8
  2447. package/dist/esm/common/hooks/useInView.js +2 -0
  2448. package/dist/esm/constant.js +1 -0
  2449. package/dist/esm/countdown-timer/common/attrs.js +1 -0
  2450. package/dist/esm/countdown-timer/common/classes.js +1 -0
  2451. package/dist/esm/countdown-timer/common/helpers.js +1 -0
  2452. package/dist/esm/countdown-timer/common/styles.js +1 -0
  2453. package/dist/esm/countdown-timer/components/Countdown.js +2 -335
  2454. package/dist/esm/countdown-timer/components/Countdown.liquid.js +37 -106
  2455. package/dist/esm/countdown-timer/hooks/useCountDownTimer.js +1 -0
  2456. package/dist/esm/countdown-timer/hooks/useTimeLeft.js +1 -90
  2457. package/dist/esm/countdown-timer/index.js +1 -0
  2458. package/dist/esm/countdown-timer/next.js +1 -13
  2459. package/dist/esm/countdown-timer/settings/Countdown.js +9 -0
  2460. package/dist/esm/countdown-timer/settings/configs/setting.js +1 -0
  2461. package/dist/esm/countdown-timer/settings/configs/ui-v1.js +1 -0
  2462. package/dist/esm/countdown-timer/settings/configs/ui-v2.js +1 -0
  2463. package/dist/esm/coupon/common/classes.js +1 -0
  2464. package/dist/esm/coupon/common/helpers.js +1 -0
  2465. package/dist/esm/coupon/common/styles.js +16 -0
  2466. package/dist/esm/coupon/components/Coupon.js +2 -106
  2467. package/dist/esm/coupon/components/Coupon.liquid.js +7 -66
  2468. package/dist/esm/coupon/hooks/useCoupon.js +1 -0
  2469. package/dist/esm/coupon/index.js +1 -0
  2470. package/dist/esm/coupon/next.js +1 -12
  2471. package/dist/esm/coupon/settings/Coupon.js +6 -0
  2472. package/dist/esm/coupon/settings/configs/presets.js +6 -0
  2473. package/dist/esm/coupon/settings/configs/settings.js +5 -0
  2474. package/dist/esm/coupon/settings/configs/ui-v1.js +1 -0
  2475. package/dist/esm/coupon/settings/configs/ui-v2.js +1 -0
  2476. package/dist/esm/dialog/common/attrs.js +1 -0
  2477. package/dist/esm/dialog/common/classes.js +1 -0
  2478. package/dist/esm/dialog/common/helpers.js +1 -0
  2479. package/dist/esm/dialog/common/styles.js +1 -0
  2480. package/dist/esm/dialog/components/Dialog.js +4 -413
  2481. package/dist/esm/dialog/components/Dialog.liquid.js +33 -145
  2482. package/dist/esm/dialog/hooks/useDialog.js +1 -0
  2483. package/dist/esm/dialog/hooks/useScrollPercentage.js +1 -0
  2484. package/dist/esm/dialog/index.js +1 -0
  2485. package/dist/esm/dialog/next.js +1 -12
  2486. package/dist/esm/dialog/settings/Dialog.js +10 -0
  2487. package/dist/esm/dialog/settings/configs/settings.js +5 -0
  2488. package/dist/esm/dialog/settings/configs/ui-v1.js +1 -0
  2489. package/dist/esm/dialog/settings/configs/ui-v2.js +1 -0
  2490. package/dist/esm/estimate-delivery/common/classes.js +1 -0
  2491. package/dist/esm/estimate-delivery/common/helpers.js +1 -0
  2492. package/dist/esm/estimate-delivery/common/styles.js +1 -0
  2493. package/dist/esm/estimate-delivery/components/EstimateDate.js +2 -74
  2494. package/dist/esm/estimate-delivery/components/EstimateDate.liquid.js +6 -100
  2495. package/dist/esm/estimate-delivery/index.js +1 -0
  2496. package/dist/esm/estimate-delivery/next.js +1 -12
  2497. package/dist/esm/estimate-delivery/settings/EstimateDate.js +10 -0
  2498. package/dist/esm/estimate-delivery/settings/configs/settings.js +1 -0
  2499. package/dist/esm/estimate-delivery/settings/configs/ui-v1.js +1 -0
  2500. package/dist/esm/estimate-delivery/settings/configs/ui-v2.js +1 -0
  2501. package/dist/esm/form/common/helpers.js +1 -0
  2502. package/dist/esm/form/components/contact/Contact.js +2 -11
  2503. package/dist/esm/form/components/contact/Contact.liquid.js +3 -18
  2504. package/dist/esm/form/components/contact/common/classes.js +1 -0
  2505. package/dist/esm/form/components/contact/common/styles.js +1 -0
  2506. package/dist/esm/form/components/form-checkbox/FormCheckbox.js +2 -48
  2507. package/dist/esm/form/components/form-checkbox/FormCheckbox.liquid.js +13 -46
  2508. package/dist/esm/form/components/form-checkbox/common/classes.js +1 -0
  2509. package/dist/esm/form/components/form-checkbox/common/styles.js +1 -0
  2510. package/dist/esm/form/components/form-dropdown/FormDropdown.js +2 -69
  2511. package/dist/esm/form/components/form-dropdown/FormDropdown.liquid.js +22 -68
  2512. package/dist/esm/form/components/form-dropdown/common/classes.js +1 -0
  2513. package/dist/esm/form/components/form-dropdown/common/styles.js +1 -0
  2514. package/dist/esm/form/components/form-email/FormEmail.js +2 -56
  2515. package/dist/esm/form/components/form-email/FormEmail.liquid.js +13 -66
  2516. package/dist/esm/form/components/form-email/common/classes.js +1 -0
  2517. package/dist/esm/form/components/form-email/common/styles.js +1 -0
  2518. package/dist/esm/form/components/newsletter/Newsletter.js +2 -11
  2519. package/dist/esm/form/components/newsletter/Newsletter.liquid.js +36 -77
  2520. package/dist/esm/form/components/newsletter/common/attrs.js +1 -0
  2521. package/dist/esm/form/components/newsletter/common/classes.js +1 -0
  2522. package/dist/esm/form/components/newsletter/common/styles.js +6 -0
  2523. package/dist/esm/form/components/submit-button/SubmitButton.js +2 -27
  2524. package/dist/esm/form/components/submit-button/SubmitButton.liquid.js +3 -30
  2525. package/dist/esm/form/components/submit-button/common/helpers.js +1 -0
  2526. package/dist/esm/form/components/submit-button/common/styles.js +1 -0
  2527. package/dist/esm/form/components/textarea/TextArea.js +2 -72
  2528. package/dist/esm/form/components/textarea/TextArea.liquid.js +12 -74
  2529. package/dist/esm/form/components/textarea/common/classes.js +1 -0
  2530. package/dist/esm/form/components/textarea/common/styles.js +1 -0
  2531. package/dist/esm/form/components/textfield/TextField.js +2 -65
  2532. package/dist/esm/form/components/textfield/TextField.liquid.js +12 -74
  2533. package/dist/esm/form/components/textfield/common/classes.js +1 -0
  2534. package/dist/esm/form/components/textfield/common/styles.js +1 -0
  2535. package/dist/esm/form/components/textinput/TextInput.js +2 -0
  2536. package/dist/esm/form/components/textinput/TextInput.liquid.js +28 -0
  2537. package/dist/esm/form/components/textinput/common/classes.js +1 -0
  2538. package/dist/esm/form/components/textinput/common/styles.js +1 -0
  2539. package/dist/esm/form/hooks/useGetColorContent.js +1 -0
  2540. package/dist/esm/form/index.js +1 -0
  2541. package/dist/esm/form/next.js +1 -40
  2542. package/dist/esm/form/settings/contact/Contact.js +17 -0
  2543. package/dist/esm/form/settings/contact/configs/inits.js +1 -0
  2544. package/dist/esm/form/settings/contact/configs/settings.js +1 -0
  2545. package/dist/esm/form/settings/contact/configs/ui-v1.js +1 -0
  2546. package/dist/esm/form/settings/contact/configs/ui-v2.js +1 -0
  2547. package/dist/esm/form/settings/form-checkbox/FormCheckbox.js +12 -0
  2548. package/dist/esm/form/settings/form-checkbox/configs/inits.js +1 -0
  2549. package/dist/esm/form/settings/form-checkbox/configs/settings.js +1 -0
  2550. package/dist/esm/form/settings/form-checkbox/configs/ui-v1.js +1 -0
  2551. package/dist/esm/form/settings/form-checkbox/configs/ui-v2.js +1 -0
  2552. package/dist/esm/form/settings/form-dropdown/FormDropdown.js +13 -0
  2553. package/dist/esm/form/settings/form-dropdown/configs/inits.js +1 -0
  2554. package/dist/esm/form/settings/form-dropdown/configs/settings.js +1 -0
  2555. package/dist/esm/form/settings/form-dropdown/configs/ui-v1.js +1 -0
  2556. package/dist/esm/form/settings/form-dropdown/configs/ui-v2.js +1 -0
  2557. package/dist/esm/form/settings/form-email/FormEmail.js +12 -0
  2558. package/dist/esm/form/settings/form-email/configs/inits.js +1 -0
  2559. package/dist/esm/form/settings/form-email/configs/settings.js +1 -0
  2560. package/dist/esm/form/settings/form-email/configs/ui-v1.js +1 -0
  2561. package/dist/esm/form/settings/form-email/configs/ui-v2.js +1 -0
  2562. package/dist/esm/form/settings/form-textarea/Textarea.js +14 -0
  2563. package/dist/esm/form/settings/form-textarea/configs/settings.js +1 -0
  2564. package/dist/esm/form/settings/form-textarea/configs/ui-v1.js +1 -0
  2565. package/dist/esm/form/settings/form-textarea/configs/ui-v2.js +1 -0
  2566. package/dist/esm/form/settings/newsletter/Newsletter.js +12 -0
  2567. package/dist/esm/form/settings/newsletter/configs/inits.js +1 -0
  2568. package/dist/esm/form/settings/newsletter/configs/settings.js +1 -0
  2569. package/dist/esm/form/settings/newsletter/configs/ui-v1.js +1 -0
  2570. package/dist/esm/form/settings/newsletter/configs/ui-v2.js +1 -0
  2571. package/dist/esm/form/settings/submit-button/SubmitButton.js +10 -0
  2572. package/dist/esm/form/settings/submit-button/configs/inits.js +1 -0
  2573. package/dist/esm/form/settings/submit-button/configs/settings.js +3 -0
  2574. package/dist/esm/form/settings/submit-button/configs/ui-v1.js +1 -0
  2575. package/dist/esm/form/settings/submit-button/configs/ui-v2.js +1 -0
  2576. package/dist/esm/form/settings/text-field/TextField.js +11 -0
  2577. package/dist/esm/form/settings/text-field/configs/settings.js +1 -0
  2578. package/dist/esm/form/settings/text-field/configs/ui-v1.js +1 -0
  2579. package/dist/esm/form/settings/text-field/configs/ui-v2.js +1 -0
  2580. package/dist/esm/form/settings/text-input/TextInput.js +11 -0
  2581. package/dist/esm/form/settings/text-input/configs/settings.js +1 -0
  2582. package/dist/esm/form/settings/text-input/configs/ui-v1.js +1 -0
  2583. package/dist/esm/form/settings/text-input/configs/ui-v2.js +1 -0
  2584. package/dist/esm/grid/components/ChildrenDroppable.js +5 -72
  2585. package/dist/esm/grid/components/col/Col.js +2 -0
  2586. package/dist/esm/grid/components/col/Col.liquid.js +7 -0
  2587. package/dist/esm/grid/components/col/common/attrs.js +1 -0
  2588. package/dist/esm/grid/components/col/common/classes.js +1 -0
  2589. package/dist/esm/grid/components/col/common/styles.js +1 -0
  2590. package/dist/esm/grid/components/root/Root.js +2 -0
  2591. package/dist/esm/grid/components/root/Root.liquid.js +1 -0
  2592. package/dist/esm/grid/components/row/Row.js +1 -0
  2593. package/dist/esm/grid/components/row/Row.liquid.js +28 -0
  2594. package/dist/esm/grid/components/row/common/attrs.js +1 -0
  2595. package/dist/esm/grid/components/row/common/classes.js +1 -0
  2596. package/dist/esm/grid/components/row/common/helpers.js +1 -0
  2597. package/dist/esm/grid/components/row/common/styles.js +2 -0
  2598. package/dist/esm/grid/components/section/Section.js +2 -0
  2599. package/dist/esm/grid/components/section/Section.liquid.js +1 -0
  2600. package/dist/esm/grid/hooks/useRowSetting.js +1 -0
  2601. package/dist/esm/grid/index.js +1 -0
  2602. package/dist/esm/grid/next.js +1 -24
  2603. package/dist/esm/grid/settings/Col.js +1 -0
  2604. package/dist/esm/grid/settings/Root.js +1 -0
  2605. package/dist/esm/grid/settings/Row.js +5 -0
  2606. package/dist/esm/grid/settings/Section.js +1 -0
  2607. package/dist/esm/grid/settings/configs/row/presets.js +23 -0
  2608. package/dist/esm/grid/settings/configs/row/settings.js +1 -0
  2609. package/dist/esm/grid/settings/configs/row/ui-v1.js +1 -0
  2610. package/dist/esm/grid/settings/configs/row/ui-v2.js +1 -0
  2611. package/dist/esm/grid/settings/configs/section/settings.js +1 -0
  2612. package/dist/esm/grid/settings/configs/section/ui-v1.js +1 -0
  2613. package/dist/esm/grid/settings/configs/section/ui-v2.js +1 -0
  2614. package/dist/esm/header/components/Header.js +2 -37
  2615. package/dist/esm/header/components/SalePageHeaderWarning.js +2 -58
  2616. package/dist/esm/header/components/icons/ChevronLeft.js +2 -14
  2617. package/dist/esm/header/components/icons/Dismiss.js +2 -14
  2618. package/dist/esm/header/components/icons/MenuIcon.js +2 -14
  2619. package/dist/esm/header/components/kind/basic/DesktopMenu.js +2 -32
  2620. package/dist/esm/header/components/kind/basic/DesktopMenuItem.js +2 -62
  2621. package/dist/esm/header/components/kind/basic/MenuMobileItem.js +2 -156
  2622. package/dist/esm/header/components/kind/basic/MobileMenu.js +2 -153
  2623. package/dist/esm/header/components/kind/basic/index.js +2 -105
  2624. package/dist/esm/header/components/kind/modern/index.js +2 -29
  2625. package/dist/esm/header/hooks/useBodyOverlay.js +1 -0
  2626. package/dist/esm/header/index.js +1 -0
  2627. package/dist/esm/header/next.js +1 -12
  2628. package/dist/esm/header/settings/Header.js +8 -0
  2629. package/dist/esm/header/settings/configs/presets.js +7 -0
  2630. package/dist/esm/header/settings/configs/settings.js +4 -0
  2631. package/dist/esm/header/settings/configs/ui-v1.js +1 -0
  2632. package/dist/esm/header/settings/configs/ui-v2.js +1 -0
  2633. package/dist/esm/heading/components/Heading.js +2 -0
  2634. package/dist/esm/heading/components/Heading.liquid.js +1 -0
  2635. package/dist/esm/heading/index.js +1 -0
  2636. package/dist/esm/heading/next.js +1 -12
  2637. package/dist/esm/heading/settings/Heading.js +5 -0
  2638. package/dist/esm/heading/settings/configs/presets.js +3 -0
  2639. package/dist/esm/heading/settings/configs/settings.js +1 -0
  2640. package/dist/esm/heading/settings/configs/ui-v1.js +1 -0
  2641. package/dist/esm/heading/settings/configs/ui-v2.js +1 -0
  2642. package/dist/esm/helpers.js +1 -169
  2643. package/dist/esm/hero-banner/common/animation-manager.js +1 -0
  2644. package/dist/esm/hero-banner/common/attrs.js +1 -0
  2645. package/dist/esm/hero-banner/common/classes.js +1 -0
  2646. package/dist/esm/hero-banner/common/helpers.js +1 -0
  2647. package/dist/esm/hero-banner/common/styles.js +1 -0
  2648. package/dist/esm/hero-banner/components/HeroBanner.js +2 -0
  2649. package/dist/esm/hero-banner/components/HeroBanner.liquid.js +21 -0
  2650. package/dist/esm/hero-banner/components/HeroBannerItem.js +2 -0
  2651. package/dist/esm/hero-banner/components/HeroBannerItem.liquid.js +18 -0
  2652. package/dist/esm/hero-banner/hooks/useHeroBanner.js +1 -0
  2653. package/dist/esm/hero-banner/hooks/useIntersectionObserver.js +1 -0
  2654. package/dist/esm/hero-banner/hooks/useTranslateValue.js +1 -0
  2655. package/dist/esm/hero-banner/hooks/useWindowSize.js +1 -0
  2656. package/dist/esm/hero-banner/index.js +1 -0
  2657. package/dist/esm/hero-banner/next.js +1 -0
  2658. package/dist/esm/hero-banner/settings/HeroBanner.js +5 -0
  2659. package/dist/esm/hero-banner/settings/configs/presets/banner-1-col-pre-sales-page.js +18 -0
  2660. package/dist/esm/hero-banner/settings/configs/presets/banner-1-col.js +18 -0
  2661. package/dist/esm/hero-banner/settings/configs/presets/banner-content-left-pre-sales-page.js +17 -0
  2662. package/dist/esm/hero-banner/settings/configs/presets/banner-content-left.js +17 -0
  2663. package/dist/esm/hero-banner/settings/configs/presets/banner-content-right-pre-sales-page.js +26 -0
  2664. package/dist/esm/hero-banner/settings/configs/presets/banner-content-right.js +26 -0
  2665. package/dist/esm/hero-banner/settings/configs/presets/banner-parallax-pre-sales-page.js +16 -0
  2666. package/dist/esm/hero-banner/settings/configs/presets/banner-parallax.js +16 -0
  2667. package/dist/esm/hero-banner/settings/configs/presets/banner-video-pre-sales-page.js +15 -0
  2668. package/dist/esm/hero-banner/settings/configs/presets/banner-video.js +15 -0
  2669. package/dist/esm/hero-banner/settings/configs/settings.js +146 -0
  2670. package/dist/esm/hero-banner/settings/configs/ui-v1.js +1 -0
  2671. package/dist/esm/hero-banner/settings/configs/ui-v2.js +1 -0
  2672. package/dist/esm/hooks/useGetProductId.js +1 -13
  2673. package/dist/esm/icon/common/attrs.js +1 -0
  2674. package/dist/esm/icon/common/classes.js +1 -0
  2675. package/dist/esm/icon/common/helpers.js +1 -0
  2676. package/dist/esm/icon/common/styles.js +1 -0
  2677. package/dist/esm/icon/components/Icon.js +2 -71
  2678. package/dist/esm/icon/components/Icon.liquid.js +8 -69
  2679. package/dist/esm/icon/index.js +1 -0
  2680. package/dist/esm/icon/next.js +1 -12
  2681. package/dist/esm/icon/settings/Icon.js +6 -0
  2682. package/dist/esm/icon/settings/configs/presets.js +9 -0
  2683. package/dist/esm/icon/settings/configs/settings.js +2 -0
  2684. package/dist/esm/icon/settings/configs/ui-v1.js +1 -0
  2685. package/dist/esm/icon/settings/configs/ui-v2.js +1 -0
  2686. package/dist/esm/icon-list/common/attrs.js +1 -0
  2687. package/dist/esm/icon-list/common/classes.js +1 -0
  2688. package/dist/esm/icon-list/common/styles.js +1 -0
  2689. package/dist/esm/icon-list/components/IconList.js +2 -80
  2690. package/dist/esm/icon-list/components/IconList.liquid.js +14 -46
  2691. package/dist/esm/icon-list/components/IconListItem.js +2 -27
  2692. package/dist/esm/icon-list/components/IconListItem.liquid.js +6 -18
  2693. package/dist/esm/icon-list/index.js +1 -0
  2694. package/dist/esm/icon-list/next.js +1 -16
  2695. package/dist/esm/icon-list/settings/IconList.js +29 -0
  2696. package/dist/esm/icon-list/settings/IconListItem.js +1 -0
  2697. package/dist/esm/icon-list/settings/configs/items.js +1 -0
  2698. package/dist/esm/icon-list/settings/configs/settings.js +1 -0
  2699. package/dist/esm/icon-list/settings/configs/ui-v1.js +1 -0
  2700. package/dist/esm/icon-list/settings/configs/ui-v2.js +1 -0
  2701. package/dist/esm/icon-list-hoz/common/attrs.js +1 -0
  2702. package/dist/esm/icon-list-hoz/common/classes.js +1 -0
  2703. package/dist/esm/icon-list-hoz/common/styles.js +1 -0
  2704. package/dist/esm/icon-list-hoz/components/IconListHoz.js +2 -67
  2705. package/dist/esm/icon-list-hoz/components/IconListHoz.liquid.js +9 -38
  2706. package/dist/esm/icon-list-hoz/components/IconListHozItem.js +2 -26
  2707. package/dist/esm/icon-list-hoz/components/IconListIHozItem.liquid.js +5 -0
  2708. package/dist/esm/icon-list-hoz/index.js +1 -0
  2709. package/dist/esm/icon-list-hoz/next.js +1 -16
  2710. package/dist/esm/icon-list-hoz/settings/IconListHoz.js +7 -0
  2711. package/dist/esm/icon-list-hoz/settings/IconListItem.js +1 -0
  2712. package/dist/esm/icon-list-hoz/settings/ItemTemplate.js +1 -0
  2713. package/dist/esm/icon-list-hoz/settings/configs/presets.js +17 -0
  2714. package/dist/esm/icon-list-hoz/settings/configs/settings.js +1 -0
  2715. package/dist/esm/icon-list-hoz/settings/configs/uiV1.js +1 -0
  2716. package/dist/esm/icon-list-hoz/settings/configs/uiV2.js +1 -0
  2717. package/dist/esm/icon-list-v2/common/classes.js +1 -0
  2718. package/dist/esm/icon-list-v2/common/helpers.js +1 -0
  2719. package/dist/esm/icon-list-v2/common/styles.js +1 -0
  2720. package/dist/esm/icon-list-v2/components/IconList.js +2 -143
  2721. package/dist/esm/icon-list-v2/components/IconList.liquid.js +31 -110
  2722. package/dist/esm/icon-list-v2/hooks/useIconLineHeight.js +1 -0
  2723. package/dist/esm/icon-list-v2/index.js +1 -0
  2724. package/dist/esm/icon-list-v2/next.js +1 -12
  2725. package/dist/esm/icon-list-v2/settings/IconList.js +31 -0
  2726. package/dist/esm/icon-list-v2/settings/configs/items.js +1 -0
  2727. package/dist/esm/icon-list-v2/settings/configs/settings.js +1 -0
  2728. package/dist/esm/icon-list-v2/settings/configs/ui-v1.js +1 -0
  2729. package/dist/esm/icon-list-v2/settings/configs/ui-v2.js +1 -0
  2730. package/dist/esm/image/common/attrs.js +1 -0
  2731. package/dist/esm/image/common/classes.js +1 -0
  2732. package/dist/esm/image/common/helpers.js +12 -0
  2733. package/dist/esm/image/common/styles.js +1 -0
  2734. package/dist/esm/image/components/AdaptiveImage.js +2 -57
  2735. package/dist/esm/image/components/AdaptiveImage.liquid.js +15 -51
  2736. package/dist/esm/image/components/Image.js +2 -152
  2737. package/dist/esm/image/components/Image.liquid.js +14 -114
  2738. package/dist/esm/image/components/Modal3d.liquid.js +5 -31
  2739. package/dist/esm/image/components/NextImage.js +2 -66
  2740. package/dist/esm/image/components/NextImage.liquid.js +7 -123
  2741. package/dist/esm/image/components/Video.liquid.js +5 -22
  2742. package/dist/esm/image/index.js +1 -0
  2743. package/dist/esm/image/next.js +1 -16
  2744. package/dist/esm/image/settings/Image.js +5 -0
  2745. package/dist/esm/image/settings/configs/presets.js +25 -0
  2746. package/dist/esm/image/settings/configs/settings.js +1 -0
  2747. package/dist/esm/image/settings/configs/ui-v1.js +4 -0
  2748. package/dist/esm/image/settings/configs/ui-v2.js +1 -0
  2749. package/dist/esm/image-comparison/common/attrs.js +1 -0
  2750. package/dist/esm/image-comparison/common/classes.js +1 -0
  2751. package/dist/esm/image-comparison/common/helpers.js +1 -0
  2752. package/dist/esm/image-comparison/common/styles.js +20 -0
  2753. package/dist/esm/image-comparison/components/CompareImage.js +2 -557
  2754. package/dist/esm/image-comparison/components/CompareImage.liquid.js +23 -343
  2755. package/dist/esm/image-comparison/components/ImageComparison.js +2 -57
  2756. package/dist/esm/image-comparison/components/ImageComparison.liquid.js +4 -34
  2757. package/dist/esm/image-comparison/components/Label.js +1 -0
  2758. package/dist/esm/image-comparison/components/Label.liquid.js +12 -48
  2759. package/dist/esm/image-comparison/components/SlideHandle.js +1 -0
  2760. package/dist/esm/image-comparison/components/SlideHandle.liquid.js +26 -0
  2761. package/dist/esm/image-comparison/hooks/useCompareImage.js +1 -0
  2762. package/dist/esm/image-comparison/index.js +1 -0
  2763. package/dist/esm/image-comparison/next.js +1 -12
  2764. package/dist/esm/image-comparison/settings/ImageComparison.js +12 -0
  2765. package/dist/esm/image-comparison/settings/configs/settings.js +1 -0
  2766. package/dist/esm/image-comparison/settings/configs/ui-v1.js +1 -0
  2767. package/dist/esm/image-comparison/settings/configs/ui-v2.js +1 -0
  2768. package/dist/esm/image-detection/components/ImageDetection.js +2 -0
  2769. package/dist/esm/image-detection/index.js +1 -0
  2770. package/dist/esm/image-detection/next.js +1 -12
  2771. package/dist/esm/image-detection/settings/ImageDetection.js +3 -0
  2772. package/dist/esm/image-detection/settings/configs/settings.js +1 -0
  2773. package/dist/esm/index.js +1 -316
  2774. package/dist/esm/index.liquid.js +2 -196
  2775. package/dist/esm/input/components/Input.js +2 -0
  2776. package/dist/esm/input/index.js +1 -0
  2777. package/dist/esm/input/next.js +1 -12
  2778. package/dist/esm/input/settings/Input.js +7 -0
  2779. package/dist/esm/input/settings/configs/settings.js +1 -0
  2780. package/dist/esm/line/common/classes.js +1 -0
  2781. package/dist/esm/line/common/helpers.js +1 -0
  2782. package/dist/esm/line/common/styles.js +1 -0
  2783. package/dist/esm/line/components/Divider.js +2 -0
  2784. package/dist/esm/line/components/Divider.liquid.js +1 -0
  2785. package/dist/esm/line/components/Line.js +2 -0
  2786. package/dist/esm/line/components/Line.liquid.js +25 -0
  2787. package/dist/esm/line/index.js +1 -0
  2788. package/dist/esm/line/next.js +1 -12
  2789. package/dist/esm/line/settings/Line.js +5 -0
  2790. package/dist/esm/line/settings/configs/presets.js +5 -0
  2791. package/dist/esm/line/settings/configs/settings.js +1 -0
  2792. package/dist/esm/line/settings/configs/ui-v1.js +1 -0
  2793. package/dist/esm/line/settings/configs/ui-v2.js +1 -0
  2794. package/dist/esm/link/common/helpers.js +1 -0
  2795. package/dist/esm/link/components/CustomLink.js +2 -10
  2796. package/dist/esm/link/components/Link.js +2 -32
  2797. package/dist/esm/link/components/ProductLink.js +2 -14
  2798. package/dist/esm/link/components/next-link/CustomLink.js +2 -14
  2799. package/dist/esm/link/components/next-link/ProductLink.js +2 -18
  2800. package/dist/esm/link/components/next-link/index.js +2 -25
  2801. package/dist/esm/link/index.js +1 -0
  2802. package/dist/esm/link/next.js +1 -12
  2803. package/dist/esm/link/settings/Link.js +1 -0
  2804. package/dist/esm/link/settings/configs/settings.js +1 -0
  2805. package/dist/esm/marquee/common/classes.js +1 -0
  2806. package/dist/esm/marquee/common/helpers.js +1 -0
  2807. package/dist/esm/marquee/common/styles.js +1 -0
  2808. package/dist/esm/marquee/components/Marquee.js +2 -153
  2809. package/dist/esm/marquee/components/Marquee.liquid.js +27 -228
  2810. package/dist/esm/marquee/components/MarqueeBase.js +2 -212
  2811. package/dist/esm/marquee/components/MarqueeBase.liquid.js +11 -65
  2812. package/dist/esm/marquee/components/MarqueeItem.js +2 -95
  2813. package/dist/esm/marquee/components/MarqueeItem.liquid.js +6 -43
  2814. package/dist/esm/marquee/hooks/useMarquee.js +1 -0
  2815. package/dist/esm/marquee/hooks/useMarqueeBase.js +1 -0
  2816. package/dist/esm/marquee/hooks/useMarqueeItem.js +1 -0
  2817. package/dist/esm/marquee/hooks/useMarqueeScrollToItem.js +1 -189
  2818. package/dist/esm/marquee/hooks/useMarqueeStyles.js +1 -162
  2819. package/dist/esm/marquee/hooks/useTransition.js +1 -18
  2820. package/dist/esm/marquee/index.js +1 -0
  2821. package/dist/esm/marquee/next.js +1 -16
  2822. package/dist/esm/marquee/settings/Marquee.js +5 -0
  2823. package/dist/esm/marquee/settings/MarqueeItem.js +1 -0
  2824. package/dist/esm/marquee/settings/configs/child-image-template.js +1 -0
  2825. package/dist/esm/marquee/settings/configs/child-template.js +1 -0
  2826. package/dist/esm/marquee/settings/configs/child-text-template.js +1 -0
  2827. package/dist/esm/marquee/settings/configs/presets.js +46 -0
  2828. package/dist/esm/marquee/settings/configs/settings-v2.js +2 -0
  2829. package/dist/esm/marquee/settings/configs/ui-v1.js +1 -0
  2830. package/dist/esm/marquee/settings/configs/ui-v2.js +1 -0
  2831. package/dist/esm/menu/components/DropdownMenu.js +2 -63
  2832. package/dist/esm/menu/components/MegaMenu.js +2 -63
  2833. package/dist/esm/menu/components/Menu.js +2 -16
  2834. package/dist/esm/menu/components/NavigationMenu.js +2 -59
  2835. package/dist/esm/menu/components/SubMegaMenu.js +2 -42
  2836. package/dist/esm/menu/components/SubNavigationMenu.js +2 -57
  2837. package/dist/esm/menu/index.js +1 -0
  2838. package/dist/esm/menu/next.js +1 -12
  2839. package/dist/esm/menu/settings/Menu.js +1 -0
  2840. package/dist/esm/menu/settings/configs/settings.js +1 -0
  2841. package/dist/esm/modal/common/helpers.js +1 -0
  2842. package/dist/esm/modal/components/Modal.js +2 -94
  2843. package/dist/esm/modal/components/confirm.js +2 -148
  2844. package/dist/esm/modal/hooks/useModalContainer.js +1 -17
  2845. package/dist/esm/modal/index.js +1 -0
  2846. package/dist/esm/modal/next.js +1 -12
  2847. package/dist/esm/modal/settings/Modal.js +1 -0
  2848. package/dist/esm/modal/settings/configs/settings.js +1 -0
  2849. package/dist/esm/next.js +2 -93
  2850. package/dist/esm/notification/components/Notice.js +2 -70
  2851. package/dist/esm/notification/components/Notifications.js +2 -92
  2852. package/dist/esm/notification/components/icons/CloseIcon.js +2 -13
  2853. package/dist/esm/notification/hooks/useNotification.js +2 -0
  2854. package/dist/esm/pagination/components/Pagination.js +2 -0
  2855. package/dist/esm/pagination/index.js +1 -0
  2856. package/dist/esm/pagination/next.js +1 -12
  2857. package/dist/esm/pagination/settings/Pagination.js +1 -0
  2858. package/dist/esm/pagination/settings/configs/settings.js +1 -0
  2859. package/dist/esm/post-purchase/advanced-list/common/attrs.js +1 -0
  2860. package/dist/esm/post-purchase/advanced-list/common/classes.js +1 -0
  2861. package/dist/esm/post-purchase/advanced-list/common/styles.js +1 -0
  2862. package/dist/esm/post-purchase/advanced-list/components/AdvancedListPostPurchase.js +2 -34
  2863. package/dist/esm/post-purchase/advanced-list/components/PostPurchaseAdvancedListItem.js +2 -17
  2864. package/dist/esm/post-purchase/advanced-list/index.js +1 -0
  2865. package/dist/esm/post-purchase/advanced-list/next.js +1 -12
  2866. package/dist/esm/post-purchase/advanced-list/settings/AdvancedListPostPurchase.js +8 -0
  2867. package/dist/esm/post-purchase/advanced-list/settings/PostPurchaseAdvancedListItem.js +1 -0
  2868. package/dist/esm/post-purchase/advanced-list/settings/configs/presets.js +8 -0
  2869. package/dist/esm/post-purchase/advanced-list/settings/configs/settings.js +1 -0
  2870. package/dist/esm/post-purchase/advanced-list/settings/configs/templates.js +1 -0
  2871. package/dist/esm/post-purchase/advanced-list/settings/configs/ui-v1.js +1 -0
  2872. package/dist/esm/post-purchase/advanced-list/settings/configs/ui-v2.js +1 -0
  2873. package/dist/esm/post-purchase/advanced-list/types.js +1 -0
  2874. package/dist/esm/post-purchase/button/common/classes.js +1 -0
  2875. package/dist/esm/post-purchase/button/common/styles.js +1 -0
  2876. package/dist/esm/post-purchase/button/components/Button.js +2 -0
  2877. package/dist/esm/post-purchase/button/index.js +1 -0
  2878. package/dist/esm/post-purchase/button/next.js +1 -9
  2879. package/dist/esm/post-purchase/button/settings/Button.js +5 -0
  2880. package/dist/esm/post-purchase/button/settings/configs/presets.js +5 -0
  2881. package/dist/esm/post-purchase/button/settings/configs/settings.js +1 -0
  2882. package/dist/esm/post-purchase/button/settings/configs/ui-v1.js +1 -0
  2883. package/dist/esm/post-purchase/button/settings/configs/ui-v2.js +1 -0
  2884. package/dist/esm/post-purchase/callout-banner/common/classes.js +1 -0
  2885. package/dist/esm/post-purchase/callout-banner/common/styles.js +1 -0
  2886. package/dist/esm/post-purchase/callout-banner/components/CalloutBox.js +2 -34
  2887. package/dist/esm/post-purchase/callout-banner/components/CalloutText.js +2 -45
  2888. package/dist/esm/post-purchase/callout-banner/index.js +1 -0
  2889. package/dist/esm/post-purchase/callout-banner/next.js +1 -12
  2890. package/dist/esm/post-purchase/callout-banner/settings/CalloutBox.js +1 -0
  2891. package/dist/esm/post-purchase/callout-banner/settings/CalloutText.js +1 -0
  2892. package/dist/esm/post-purchase/callout-banner/settings/config/callout-box/preset.js +16 -0
  2893. package/dist/esm/post-purchase/callout-banner/settings/config/callout-box/setting.js +46 -0
  2894. package/dist/esm/post-purchase/callout-banner/settings/config/callout-box/ui-v1.js +1 -0
  2895. package/dist/esm/post-purchase/callout-banner/settings/config/callout-box/ui-v2.js +1 -0
  2896. package/dist/esm/post-purchase/callout-banner/settings/config/callout-text/preset.js +5 -0
  2897. package/dist/esm/post-purchase/callout-banner/settings/config/callout-text/setting.js +1 -0
  2898. package/dist/esm/post-purchase/callout-banner/settings/config/callout-text/ui-v1.js +1 -0
  2899. package/dist/esm/post-purchase/callout-banner/settings/config/callout-text/ui-v2.js +1 -0
  2900. package/dist/esm/post-purchase/common/constants.js +1 -0
  2901. package/dist/esm/post-purchase/common/helper.js +1 -0
  2902. package/dist/esm/post-purchase/countdown-timer/common/classes.js +1 -0
  2903. package/dist/esm/post-purchase/countdown-timer/common/styles.js +1 -0
  2904. package/dist/esm/post-purchase/countdown-timer/components/PostPurchaseCountdownTimer.js +2 -49
  2905. package/dist/esm/post-purchase/countdown-timer/components/TextCountdown.js +2 -41
  2906. package/dist/esm/post-purchase/countdown-timer/hooks/useCountdownTimer.js +1 -45
  2907. package/dist/esm/post-purchase/countdown-timer/hooks/useGetTimeExpired.js +1 -0
  2908. package/dist/esm/post-purchase/countdown-timer/index.js +1 -0
  2909. package/dist/esm/post-purchase/countdown-timer/next.js +1 -9
  2910. package/dist/esm/post-purchase/countdown-timer/settings/CountdownTimer.js +2 -366
  2911. package/dist/esm/post-purchase/countdown-timer/settings/config/preset.js +3 -0
  2912. package/dist/esm/post-purchase/countdown-timer/settings/config/setting.js +1 -0
  2913. package/dist/esm/post-purchase/countdown-timer/settings/config/ui-v1.js +1 -0
  2914. package/dist/esm/post-purchase/countdown-timer/settings/config/ui-v2.js +1 -0
  2915. package/dist/esm/post-purchase/image/common/classes.js +1 -0
  2916. package/dist/esm/post-purchase/image/common/helpers.js +1 -0
  2917. package/dist/esm/post-purchase/image/common/styles.js +1 -0
  2918. package/dist/esm/post-purchase/image/components/AdaptiveImage.js +2 -51
  2919. package/dist/esm/post-purchase/image/components/Image.js +2 -48
  2920. package/dist/esm/post-purchase/image/components/Img.js +2 -25
  2921. package/dist/esm/post-purchase/image/index.js +1 -0
  2922. package/dist/esm/post-purchase/image/next.js +1 -9
  2923. package/dist/esm/post-purchase/image/settings/Image.js +11 -0
  2924. package/dist/esm/post-purchase/image/settings/configs/setting-v2.js +1 -0
  2925. package/dist/esm/post-purchase/image/settings/configs/ui-v2.js +1 -0
  2926. package/dist/esm/post-purchase/line/common/classes.js +1 -0
  2927. package/dist/esm/post-purchase/line/common/styles.js +1 -0
  2928. package/dist/esm/post-purchase/line/components/PostPurchaseLine.js +2 -49
  2929. package/dist/esm/post-purchase/line/index.js +1 -0
  2930. package/dist/esm/post-purchase/line/next.js +1 -9
  2931. package/dist/esm/post-purchase/line/settings/PostPurchaseLine.js +5 -0
  2932. package/dist/esm/post-purchase/line/settings/configs/presets.js +5 -0
  2933. package/dist/esm/post-purchase/line/settings/configs/settings.js +1 -0
  2934. package/dist/esm/post-purchase/line/settings/configs/ui-v1.js +1 -0
  2935. package/dist/esm/post-purchase/line/settings/configs/ui-v2.js +1 -0
  2936. package/dist/esm/post-purchase/line/types.js +1 -0
  2937. package/dist/esm/post-purchase/link/common/classes.js +1 -0
  2938. package/dist/esm/post-purchase/link/common/helpers.js +1 -0
  2939. package/dist/esm/post-purchase/link/common/styles.js +1 -0
  2940. package/dist/esm/post-purchase/link/components/PostPurchaseLink.js +2 -0
  2941. package/dist/esm/post-purchase/link/index.js +1 -0
  2942. package/dist/esm/post-purchase/link/next.js +1 -0
  2943. package/dist/esm/post-purchase/link/settings/PostPurchaseLink.js +5 -0
  2944. package/dist/esm/post-purchase/link/settings/configs/presets.js +13 -0
  2945. package/dist/esm/post-purchase/link/settings/configs/settings.js +1 -0
  2946. package/dist/esm/post-purchase/link/settings/configs/ui-v1.js +1 -0
  2947. package/dist/esm/post-purchase/link/settings/configs/ui-v2.js +1 -0
  2948. package/dist/esm/post-purchase/product/common/attrs.js +1 -0
  2949. package/dist/esm/post-purchase/product/common/classes.js +1 -0
  2950. package/dist/esm/post-purchase/product/common/helpers.js +1 -0
  2951. package/dist/esm/post-purchase/product/common/styles.js +1 -0
  2952. package/dist/esm/post-purchase/product/components/AcceptButton.js +2 -31
  2953. package/dist/esm/post-purchase/product/components/ProductDescription.js +2 -21
  2954. package/dist/esm/post-purchase/product/components/ProductDiscountTag.js +2 -37
  2955. package/dist/esm/post-purchase/product/components/ProductPrice.js +2 -67
  2956. package/dist/esm/post-purchase/product/components/ProductPriceBreakdown.js +2 -156
  2957. package/dist/esm/post-purchase/product/components/ProductQuantity.js +2 -82
  2958. package/dist/esm/post-purchase/product/components/ProductTitle.js +2 -21
  2959. package/dist/esm/post-purchase/product/components/price-breakdown/MoneyLine.js +2 -0
  2960. package/dist/esm/post-purchase/product/components/product-image/FeatureImage.js +2 -54
  2961. package/dist/esm/post-purchase/product/components/product-image/ImageListCarousel.js +2 -72
  2962. package/dist/esm/post-purchase/product/components/product-image/ImageListGrid.js +2 -81
  2963. package/dist/esm/post-purchase/product/components/product-image/ItemCarouselPostPurchase.js +2 -0
  2964. package/dist/esm/post-purchase/product/components/product-image/ItemGridPostPurchase.js +2 -0
  2965. package/dist/esm/post-purchase/product/components/product-image/carousel-post-purchase/Arrow.js +2 -0
  2966. package/dist/esm/post-purchase/product/components/product-image/carousel-post-purchase/CarouselPostPurchase.js +2 -0
  2967. package/dist/esm/post-purchase/product/components/product-image/carousel-post-purchase/CarouselPostPurchaseContext.js +1 -0
  2968. package/dist/esm/post-purchase/product/components/product-image/carousel-post-purchase/CarouselWrapperPostPurchase.js +2 -0
  2969. package/dist/esm/post-purchase/product/components/product-image/index.js +2 -100
  2970. package/dist/esm/post-purchase/product/components/product-image/layouts/FeatureImageWithGalleryImage.js +2 -83
  2971. package/dist/esm/post-purchase/product/components/product-image/layouts/OnlyGalleryImage.js +2 -32
  2972. package/dist/esm/post-purchase/product/components/product-offer/common/attrs.js +1 -0
  2973. package/dist/esm/post-purchase/product/components/product-offer/common/classes.js +1 -0
  2974. package/dist/esm/post-purchase/product/components/product-offer/common/styles.js +1 -0
  2975. package/dist/esm/post-purchase/product/components/product-offer/components/ProductOffer.js +2 -0
  2976. package/dist/esm/post-purchase/product/components/product-offer/components/ProductOfferItem.js +2 -0
  2977. package/dist/esm/post-purchase/product/components/product-offer/hooks/useProductOfferData.js +1 -0
  2978. package/dist/esm/post-purchase/product/components/product-variant/common/classes.js +1 -0
  2979. package/dist/esm/post-purchase/product/components/product-variant/common/helpers.js +1 -0
  2980. package/dist/esm/post-purchase/product/components/product-variant/common/styles.js +1 -0
  2981. package/dist/esm/post-purchase/product/components/product-variant/components/ProductOption.js +1 -0
  2982. package/dist/esm/post-purchase/product/components/product-variant/components/ProductVariant.js +2 -0
  2983. package/dist/esm/post-purchase/product/components/product-variant/components/variants/Dropdown.js +2 -0
  2984. package/dist/esm/post-purchase/product/components/product-variant/components/variants/DropdownOption.js +2 -0
  2985. package/dist/esm/post-purchase/product/components/product-variant/components/variants/RectangleList.js +2 -0
  2986. package/dist/esm/post-purchase/product/components/product-variant/components/variants/VariantGroup.js +2 -0
  2987. package/dist/esm/post-purchase/product/components/product-variant/components/variants/VariantItem.js +2 -0
  2988. package/dist/esm/post-purchase/product/components/product-variant/components/variants/VariantOption.js +2 -0
  2989. package/dist/esm/post-purchase/product/components/product-variant/hooks/useTransition.js +1 -0
  2990. package/dist/esm/post-purchase/product/constants/ProductOfferPlaceholder.js +1 -125
  2991. package/dist/esm/post-purchase/product/constants/index.js +1 -0
  2992. package/dist/esm/post-purchase/product/helpers/index.js +1 -31
  2993. package/dist/esm/post-purchase/product/helpers/product-price-breakdown/getClasses.js +1 -0
  2994. package/dist/esm/post-purchase/product/helpers/product-price-breakdown/getStyles.js +1 -0
  2995. package/dist/esm/post-purchase/product/helpers/product-quantity/getClasses.js +1 -0
  2996. package/dist/esm/post-purchase/product/helpers/product-quantity/getStyles.js +1 -0
  2997. package/dist/esm/post-purchase/product/hooks/useCarousel.js +1 -0
  2998. package/dist/esm/post-purchase/product/hooks/useDynamicProduct.js +1 -26
  2999. package/dist/esm/post-purchase/product/hooks/useFeatureImagePostPurchase.js +1 -0
  3000. package/dist/esm/post-purchase/product/hooks/useGetItemGapPriceBreakdown.js +1 -0
  3001. package/dist/esm/post-purchase/product/hooks/useGetMoneyLines.js +1 -0
  3002. package/dist/esm/post-purchase/product/hooks/useGetTextSetting.js +1 -0
  3003. package/dist/esm/post-purchase/product/hooks/useHandleQuantity.js +1 -0
  3004. package/dist/esm/post-purchase/product/hooks/useListCarousel.js +1 -0
  3005. package/dist/esm/post-purchase/product/hooks/useNavigationCarouselPostPurchase.js +1 -0
  3006. package/dist/esm/post-purchase/product/hooks/useProductImagePostPurchase.js +1 -0
  3007. package/dist/esm/post-purchase/product/hooks/useSetCollapsePrice.js +1 -0
  3008. package/dist/esm/post-purchase/product/hooks/useSlideCarousel.js +1 -0
  3009. package/dist/esm/post-purchase/product/index.js +1 -0
  3010. package/dist/esm/post-purchase/product/next.js +1 -37
  3011. package/dist/esm/post-purchase/product/settings/accept-button/configs/presets.js +5 -0
  3012. package/dist/esm/post-purchase/product/settings/accept-button/configs/settings.js +1 -0
  3013. package/dist/esm/post-purchase/product/settings/accept-button/configs/ui-v1.js +1 -0
  3014. package/dist/esm/post-purchase/product/settings/accept-button/configs/ui-v2.js +1 -0
  3015. package/dist/esm/post-purchase/product/settings/accept-button/index.js +5 -0
  3016. package/dist/esm/post-purchase/product/settings/presets-config/product-presets/product-1-col.js +2 -212
  3017. package/dist/esm/post-purchase/product/settings/presets-config/product-presets/product-2-col.js +2 -211
  3018. package/dist/esm/post-purchase/product/settings/presets-config/product-presets/product-default.js +2 -212
  3019. package/dist/esm/post-purchase/product/settings/presets-config/product-presets/product-offer-1-col.js +2 -197
  3020. package/dist/esm/post-purchase/product/settings/presets-config/product-presets/product-offer-2-col.js +2 -210
  3021. package/dist/esm/post-purchase/product/settings/presets-config/product-presets/product-offer-default.js +2 -211
  3022. package/dist/esm/post-purchase/product/settings/product-description/ProductDescription.js +9 -0
  3023. package/dist/esm/post-purchase/product/settings/product-description/configs/settings-v2.js +1 -0
  3024. package/dist/esm/post-purchase/product/settings/product-description/configs/ui-v1.js +1 -0
  3025. package/dist/esm/post-purchase/product/settings/product-description/configs/ui-v2.js +1 -0
  3026. package/dist/esm/post-purchase/product/settings/product-discount-tag/ProductDiscountTag.js +4 -0
  3027. package/dist/esm/post-purchase/product/settings/product-discount-tag/configs/setting-v2.js +1 -0
  3028. package/dist/esm/post-purchase/product/settings/product-discount-tag/configs/ui-v1.js +1 -0
  3029. package/dist/esm/post-purchase/product/settings/product-discount-tag/configs/ui-v2.js +1 -0
  3030. package/dist/esm/post-purchase/product/settings/product-image/ProductFeatureImage.js +1 -98
  3031. package/dist/esm/post-purchase/product/settings/product-image/ProductGalleryImage.js +1 -219
  3032. package/dist/esm/post-purchase/product/settings/product-image/ProductImageLayoutSetting.js +1 -149
  3033. package/dist/esm/post-purchase/product/settings/product-image/ProductImages.js +5 -162
  3034. package/dist/esm/post-purchase/product/settings/product-image/configs/settings-v2.js +1 -0
  3035. package/dist/esm/post-purchase/product/settings/product-image/configs/ui-v1.js +1 -0
  3036. package/dist/esm/post-purchase/product/settings/product-image/configs/ui-v2.js +1 -0
  3037. package/dist/esm/post-purchase/product/settings/product-offer/configs/settings-v2.js +46 -0
  3038. package/dist/esm/post-purchase/product/settings/product-offer/configs/ui-v1.js +1 -0
  3039. package/dist/esm/post-purchase/product/settings/product-offer/configs/ui-v2.js +1 -0
  3040. package/dist/esm/post-purchase/product/settings/product-offer/index.js +8 -0
  3041. package/dist/esm/post-purchase/product/settings/product-price/ProductPrice.js +15 -0
  3042. package/dist/esm/post-purchase/product/settings/product-price/configs/settings-v2.js +1 -0
  3043. package/dist/esm/post-purchase/product/settings/product-price/configs/ui-v1.js +1 -0
  3044. package/dist/esm/post-purchase/product/settings/product-price/configs/ui-v2.js +1 -0
  3045. package/dist/esm/post-purchase/product/settings/product-price-breakdown/configs/presets.js +12 -0
  3046. package/dist/esm/post-purchase/product/settings/product-price-breakdown/configs/settings.js +1 -0
  3047. package/dist/esm/post-purchase/product/settings/product-price-breakdown/configs/ui-v1.js +1 -0
  3048. package/dist/esm/post-purchase/product/settings/product-price-breakdown/configs/ui-v2.js +1 -0
  3049. package/dist/esm/post-purchase/product/settings/product-price-breakdown/index.js +19 -0
  3050. package/dist/esm/post-purchase/product/settings/product-quantity/configs/presets.js +8 -0
  3051. package/dist/esm/post-purchase/product/settings/product-quantity/configs/settings.js +1 -0
  3052. package/dist/esm/post-purchase/product/settings/product-quantity/configs/ui-v1.js +1 -0
  3053. package/dist/esm/post-purchase/product/settings/product-quantity/configs/ui-v2.js +1 -0
  3054. package/dist/esm/post-purchase/product/settings/product-quantity/index.js +5 -0
  3055. package/dist/esm/post-purchase/product/settings/product-title/ProductTitle.js +9 -0
  3056. package/dist/esm/post-purchase/product/settings/product-title/configs/settings-v2.js +1 -0
  3057. package/dist/esm/post-purchase/product/settings/product-title/configs/ui-v1.js +1 -0
  3058. package/dist/esm/post-purchase/product/settings/product-title/configs/ui-v2.js +1 -0
  3059. package/dist/esm/post-purchase/product/settings/product-variants/ProductVariant.js +14 -0
  3060. package/dist/esm/post-purchase/product/settings/product-variants/configs/settings-v1.js +14 -0
  3061. package/dist/esm/post-purchase/product/settings/product-variants/configs/settings-v2.js +14 -0
  3062. package/dist/esm/post-purchase/product/settings/product-variants/configs/ui-v1.js +1 -0
  3063. package/dist/esm/post-purchase/product/settings/product-variants/configs/ui-v2.js +1 -0
  3064. package/dist/esm/post-purchase/text/common/attrs.js +1 -0
  3065. package/dist/esm/post-purchase/text/common/classes.js +1 -0
  3066. package/dist/esm/post-purchase/text/common/helpers.js +1 -0
  3067. package/dist/esm/post-purchase/text/common/styles.js +1 -0
  3068. package/dist/esm/post-purchase/text/components/Text.js +3 -0
  3069. package/dist/esm/post-purchase/text/index.js +1 -5
  3070. package/dist/esm/post-purchase/text/next.js +1 -12
  3071. package/dist/esm/post-purchase/text/settings/heading/Heading.js +1 -0
  3072. package/dist/esm/post-purchase/text/settings/heading/configs/presets-v2.js +3 -0
  3073. package/dist/esm/post-purchase/text/settings/text/Text.js +7 -0
  3074. package/dist/esm/post-purchase/text/settings/text/configs/setting-v2.js +1 -0
  3075. package/dist/esm/post-purchase/text/settings/text/configs/ui-v1.js +1 -0
  3076. package/dist/esm/post-purchase/text/settings/text/configs/ui-v2.js +1 -0
  3077. package/dist/esm/postPurchaseSetting.js +1 -0
  3078. package/dist/esm/product/components/ProductImages.js +2 -280
  3079. package/dist/esm/product/components/ProductImages.liquid.js +17 -85
  3080. package/dist/esm/product/components/ProductNotFound.js +2 -143
  3081. package/dist/esm/product/components/SalePageProductListWarning.js +2 -57
  3082. package/dist/esm/product/components/constants/product-bundle.js +1 -8
  3083. package/dist/esm/product/components/dynamic-checkout/Button.liquid.js +20 -0
  3084. package/dist/esm/product/components/dynamic-checkout/DynamicCheckout.js +2 -0
  3085. package/dist/esm/product/components/dynamic-checkout/DynamicCheckout.liquid.js +1 -0
  3086. package/dist/esm/product/components/dynamic-checkout/common/classes.js +1 -0
  3087. package/dist/esm/product/components/dynamic-checkout/common/styles.js +126 -0
  3088. package/dist/esm/product/components/file-upload/UploadFile.js +2 -0
  3089. package/dist/esm/product/components/file-upload/UploadFile.liquid.js +33 -0
  3090. package/dist/esm/product/components/file-upload/common/attr.js +1 -0
  3091. package/dist/esm/product/components/file-upload/common/classes.js +1 -0
  3092. package/dist/esm/product/components/file-upload/common/helpers.js +1 -0
  3093. package/dist/esm/product/components/file-upload/common/style.js +1 -0
  3094. package/dist/esm/product/components/file-upload/settings/configs/presets.js +8 -0
  3095. package/dist/esm/product/components/file-upload/settings/configs/settings.js +19 -0
  3096. package/dist/esm/product/components/file-upload/settings/configs/ui-v1.js +1 -0
  3097. package/dist/esm/product/components/file-upload/settings/configs/ui-v2.js +1 -0
  3098. package/dist/esm/product/components/file-upload/settings/index.js +8 -0
  3099. package/dist/esm/product/components/product-badge/ProductBadge.js +2 -0
  3100. package/dist/esm/product/components/product-badge/ProductBadge.liquid.js +39 -0
  3101. package/dist/esm/product/components/product-badge/common/attrs.js +1 -0
  3102. package/dist/esm/product/components/product-badge/common/classes.js +1 -0
  3103. package/dist/esm/product/components/product-badge/common/styles.js +1 -0
  3104. package/dist/esm/product/components/product-badge/constants.js +1 -0
  3105. package/dist/esm/product/components/product-badge/types.js +1 -0
  3106. package/dist/esm/product/components/product-badge/utils/common.js +1 -0
  3107. package/dist/esm/product/components/product-badge/utils/generateLiquidContent.js +24 -0
  3108. package/dist/esm/product/components/product-badge/utils/getRotateShape.js +1 -0
  3109. package/dist/esm/product/components/product-badge/utils/getShapePosition.js +1 -0
  3110. package/dist/esm/product/components/product-badge/utils/getStyleAdvanced.js +1 -0
  3111. package/dist/esm/product/components/product-badge/utils/getWhiteSpace.js +1 -0
  3112. package/dist/esm/product/components/product-badge/utils/renderBadgeILP.js +1 -0
  3113. package/dist/esm/product/components/product-badge/utils/renderBadgeLiquid.js +171 -0
  3114. package/dist/esm/product/components/product-badge/utils/shape.js +1 -0
  3115. package/dist/esm/product/components/product-badge/utils/stylesV2.js +18 -0
  3116. package/dist/esm/product/components/product-bundle/ProductBundleDiscount.js +2 -0
  3117. package/dist/esm/product/components/product-bundle/ProductBundleDiscount.liquid.js +33 -0
  3118. package/dist/esm/product/components/product-bundle/ProductBundleDiscountChildrenItem.js +2 -0
  3119. package/dist/esm/product/components/product-bundle/ProductBundleDiscountChildrenItem.liquid.js +22 -0
  3120. package/dist/esm/product/components/product-bundle/ProductBundleDiscountItem.js +2 -0
  3121. package/dist/esm/product/components/product-bundle/ProductBundleDiscountItem.liquid.js +1 -0
  3122. package/dist/esm/product/components/product-bundle/common/classes.js +1 -0
  3123. package/dist/esm/product/components/product-bundle/common/helpers.js +1 -0
  3124. package/dist/esm/product/components/product-bundle/common/styles.js +1 -0
  3125. package/dist/esm/product/components/product-bundle/hooks/useProductBundleDataState.js +25 -0
  3126. package/dist/esm/product/components/product-bundle/hooks/useProductBundleDiscountState.js +1 -0
  3127. package/dist/esm/product/components/product-bundle/setting/ProductBundleDiscount.js +28 -0
  3128. package/dist/esm/product/components/product-bundle/setting/ProductBundleDiscountItem.js +1 -0
  3129. package/dist/esm/product/components/product-bundle/setting/configs/settings.js +1 -0
  3130. package/dist/esm/product/components/product-bundle/setting/configs/ui-v1.js +1 -0
  3131. package/dist/esm/product/components/product-bundle/setting/configs/ui-v2.js +1 -0
  3132. package/dist/esm/product/components/product-button/AddToCartButton.js +1 -0
  3133. package/dist/esm/product/components/product-button/AddToCartButton.liquid.js +1 -0
  3134. package/dist/esm/product/components/product-button/BlankSpace.js +1 -0
  3135. package/dist/esm/product/components/product-button/BlankSpace.liquid.js +3 -0
  3136. package/dist/esm/product/components/product-button/CartMessage.js +1 -0
  3137. package/dist/esm/product/components/product-button/PriceComponent.js +1 -0
  3138. package/dist/esm/product/components/product-button/PriceComponent.liquid.js +1 -0
  3139. package/dist/esm/product/components/product-button/PriceLayout.js +1 -0
  3140. package/dist/esm/product/components/product-button/PriceLayout.liquid.js +7 -0
  3141. package/dist/esm/product/components/product-button/ProductButton.js +2 -0
  3142. package/dist/esm/product/components/product-button/ProductButton.liquid.js +20 -0
  3143. package/dist/esm/product/components/product-button/ProductButtonPrice.js +2 -0
  3144. package/dist/esm/product/components/product-button/ProductButtonPrice.liquid.js +2 -0
  3145. package/dist/esm/product/components/product-button/Separator.js +1 -0
  3146. package/dist/esm/product/components/product-button/Separator.liquid.js +8 -0
  3147. package/dist/esm/product/components/product-button/SoldOutButton.js +1 -0
  3148. package/dist/esm/product/components/product-button/SoldOutButton.liquid.js +1 -0
  3149. package/dist/esm/product/components/product-button/common/classes.js +1 -0
  3150. package/dist/esm/product/components/product-button/common/constants.js +23 -0
  3151. package/dist/esm/product/components/product-button/common/data.js +1 -0
  3152. package/dist/esm/product/components/product-button/common/helpers.js +1 -0
  3153. package/dist/esm/product/components/product-button/common/styles.js +1 -0
  3154. package/dist/esm/product/components/product-button/helpers/getButtonDynamicSourceLocales.js +1 -0
  3155. package/dist/esm/product/components/product-button/hooks/useAddToCart.js +1 -0
  3156. package/dist/esm/product/components/product-button/hooks/useCartMessage.js +1 -0
  3157. package/dist/esm/product/components/product-button/hooks/useCartOperations.js +1 -0
  3158. package/dist/esm/product/components/product-button/hooks/useDispatchAfterSubmitEvent.js +1 -0
  3159. package/dist/esm/product/components/product-button/types.js +1 -0
  3160. package/dist/esm/product/components/product-description/ProductDescription.js +2 -0
  3161. package/dist/esm/product/components/product-description/ProductDescription.liquid.js +23 -0
  3162. package/dist/esm/product/components/product-description/common/classes.js +1 -0
  3163. package/dist/esm/product/components/product-description/common/helpers.js +3 -0
  3164. package/dist/esm/product/components/product-description/common/styles.js +16 -0
  3165. package/dist/esm/product/components/product-description/hooks/useGpDescription.js +1 -0
  3166. package/dist/esm/product/components/product-discount-tag/ProductDiscountTag.js +2 -0
  3167. package/dist/esm/product/components/product-discount-tag/ProductDiscountTag.liquid.js +30 -0
  3168. package/dist/esm/product/components/product-discount-tag/common/classes.js +1 -0
  3169. package/dist/esm/product/components/product-discount-tag/common/styles.js +1 -0
  3170. package/dist/esm/product/components/product-discount-tag/hooks/useGpDiscountTag.js +1 -0
  3171. package/dist/esm/product/components/product-images/ProductFeaturedImage.js +2 -0
  3172. package/dist/esm/product/components/product-images/ProductFeaturedImage.liquid.js +93 -0
  3173. package/dist/esm/product/components/product-images/ProductGalleryCarousel.js +2 -0
  3174. package/dist/esm/product/components/product-images/ProductGalleryCarousel.liquid.js +72 -0
  3175. package/dist/esm/product/components/product-images/ProductGalleryGrid.js +2 -0
  3176. package/dist/esm/product/components/product-images/ProductGalleryGrid.liquid.js +86 -0
  3177. package/dist/esm/product/components/product-images/ProductImagesLightBox.js +2 -0
  3178. package/dist/esm/product/components/product-images/common/helpers.js +1 -0
  3179. package/dist/esm/product/components/product-images/common/productFeaturedImage.js +1 -0
  3180. package/dist/esm/product/components/product-images/common/productGallery.js +1 -0
  3181. package/dist/esm/product/components/product-images-v2/ProductImageV2.js +26 -0
  3182. package/dist/esm/product/components/product-images-v2/ProductImagesV2.liquid.js +44 -0
  3183. package/dist/esm/product/components/product-images-v2/common/attrs.js +1 -0
  3184. package/dist/esm/product/components/product-images-v2/common/classes.js +1 -0
  3185. package/dist/esm/product/components/product-images-v2/common/common.js +1 -0
  3186. package/dist/esm/product/components/product-images-v2/common/getBorderActiveCss.js +16 -0
  3187. package/dist/esm/product/components/product-images-v2/common/hoverAction.js +1 -0
  3188. package/dist/esm/product/components/product-images-v2/common/productFeaturedImage.js +1 -0
  3189. package/dist/esm/product/components/product-images-v2/common/productGallery.js +1 -0
  3190. package/dist/esm/product/components/product-images-v2/common/styles.js +1 -0
  3191. package/dist/esm/product/components/product-images-v2/components/child/MediaIcon.js +2 -0
  3192. package/dist/esm/product/components/product-images-v2/components/child/ProductFeatureVideo.js +1 -0
  3193. package/dist/esm/product/components/product-images-v2/components/child/ProductFeaturedImageCarousel.js +1 -0
  3194. package/dist/esm/product/components/product-images-v2/components/child/ProductFeaturedImageOnly.js +2 -0
  3195. package/dist/esm/product/components/product-images-v2/components/child/ProductGalleryGrid.js +2 -0
  3196. package/dist/esm/product/components/product-images-v2/components/feature-gallery/FeatureImageWithGallery.js +1 -0
  3197. package/dist/esm/product/components/product-images-v2/components/feature-gallery/FeatureImageWithGallery.liquid.js +118 -0
  3198. package/dist/esm/product/components/product-images-v2/components/feature-only/OnlyFeatureImage.js +2 -0
  3199. package/dist/esm/product/components/product-images-v2/components/gallery-carousel/GalleryCarousel.js +1 -0
  3200. package/dist/esm/product/components/product-images-v2/components/gallery-carousel/GalleryCarousel.liquid.js +46 -0
  3201. package/dist/esm/product/components/product-images-v2/components/gallery-grid/GalleryGrid.js +2 -0
  3202. package/dist/esm/product/components/product-images-v2/components/gallery-grid/GalleryGrid.liquid.js +89 -0
  3203. package/dist/esm/product/components/product-images-v2/components/lightbox/ButtonOpenLightBox.js +2 -0
  3204. package/dist/esm/product/components/product-images-v2/components/lightbox/ProductImagesLightBox.js +2 -0
  3205. package/dist/esm/product/components/product-images-v2/composables/getProductImagesAttr.js +1 -0
  3206. package/dist/esm/product/components/product-images-v2/composables/getProductImagesClassName.js +1 -0
  3207. package/dist/esm/product/components/product-images-v2/composables/getProductImagesStyles.js +1 -0
  3208. package/dist/esm/product/components/product-images-v2/hooks/useFeatureImageWithGallery.js +1 -0
  3209. package/dist/esm/product/components/product-images-v2/hooks/useFilterImagesByVariant.js +1 -0
  3210. package/dist/esm/product/components/product-images-v2/hooks/useGalleryCarousel.js +1 -0
  3211. package/dist/esm/product/components/product-images-v2/hooks/useProductFeaturedImageCarousel.js +1 -0
  3212. package/dist/esm/product/components/product-images-v2/hooks/useProductGalleryGrid.js +1 -0
  3213. package/dist/esm/product/components/product-list/ProductList.js +1 -0
  3214. package/dist/esm/product/components/product-list/ProductList.liquid.js +197 -0
  3215. package/dist/esm/product/components/product-list/ProductListCarouselItem.liquid.js +15 -0
  3216. package/dist/esm/product/components/product-list/ProductListCarouselLayout.js +1 -0
  3217. package/dist/esm/product/components/product-list/ProductListCarouselLayout.liquid.js +22 -0
  3218. package/dist/esm/product/components/product-list/ProductListGridItem.liquid.js +19 -0
  3219. package/dist/esm/product/components/product-list/ProductListGridLayout.js +1 -0
  3220. package/dist/esm/product/components/product-list/ProductListGridLayout.liquid.js +34 -0
  3221. package/dist/esm/product/components/product-list/common/attrs.js +1 -0
  3222. package/dist/esm/product/components/product-list/common/classes.js +1 -0
  3223. package/dist/esm/product/components/product-list/common/helpers.js +1 -0
  3224. package/dist/esm/product/components/product-list/common/styles.js +1 -0
  3225. package/dist/esm/product/components/product-price/ProductPrice.js +2 -0
  3226. package/dist/esm/product/components/product-price/ProductPrice.liquid.js +11 -0
  3227. package/dist/esm/product/components/product-price/common/attrs.js +1 -0
  3228. package/dist/esm/product/components/product-price/common/classes.js +1 -0
  3229. package/dist/esm/product/components/product-price/common/helpers.js +11 -0
  3230. package/dist/esm/product/components/product-price/hooks/useGpPrice.js +1 -0
  3231. package/dist/esm/product/components/product-properties/ProductProperties.js +1 -0
  3232. package/dist/esm/product/components/product-properties/ProductProperties.liquid.js +39 -0
  3233. package/dist/esm/product/components/product-properties/common/attrs.js +1 -0
  3234. package/dist/esm/product/components/product-properties/common/classes.js +1 -0
  3235. package/dist/esm/product/components/product-properties/common/helpers.js +1 -0
  3236. package/dist/esm/product/components/product-properties/common/styles.js +1 -0
  3237. package/dist/esm/product/components/product-properties/property-choice/ProductPropertyChoice.js +2 -0
  3238. package/dist/esm/product/components/product-properties/property-choice/ProductPropertyChoice.liquid.js +24 -0
  3239. package/dist/esm/product/components/product-properties/property-choice/common/getProductPropertiesChoiceAttrs.js +1 -0
  3240. package/dist/esm/product/components/product-properties/property-choice/common/getProductPropertiesChoiceClasses.js +1 -0
  3241. package/dist/esm/product/components/product-properties/property-choice/common/getProductPropertiesChoiceInlineCss.js +6 -0
  3242. package/dist/esm/product/components/product-properties/property-choice/common/getProductPropertiesChoiceStyles.js +1 -0
  3243. package/dist/esm/product/components/product-properties/property-input/ProductPropertyInput.js +2 -0
  3244. package/dist/esm/product/components/product-properties/property-input/ProductPropertyInput.liquid.js +15 -0
  3245. package/dist/esm/product/components/product-properties/property-input/common/attrs.js +1 -0
  3246. package/dist/esm/product/components/product-properties/property-input/common/classes.js +1 -0
  3247. package/dist/esm/product/components/product-properties/property-input/common/helpers.js +1 -0
  3248. package/dist/esm/product/components/product-properties/property-input/common/styles.js +1 -0
  3249. package/dist/esm/product/components/product-properties/property-select/ProductPropertySelect.js +2 -0
  3250. package/dist/esm/product/components/product-properties/property-select/ProductPropertySelect.liquid.js +17 -0
  3251. package/dist/esm/product/components/product-properties/property-select/common/attrs.js +1 -0
  3252. package/dist/esm/product/components/product-properties/property-select/common/classes.js +1 -0
  3253. package/dist/esm/product/components/product-properties/property-select/common/styles.js +1 -0
  3254. package/dist/esm/product/components/product-quantity/ProductQuantity.js +2 -0
  3255. package/dist/esm/product/components/product-quantity/ProductQuantity.liquid.js +48 -0
  3256. package/dist/esm/product/components/product-quantity/common/attrs.js +1 -0
  3257. package/dist/esm/product/components/product-quantity/common/classes.js +1 -0
  3258. package/dist/esm/product/components/product-quantity/common/helpers.js +17 -0
  3259. package/dist/esm/product/components/product-quantity/common/styles.js +1 -0
  3260. package/dist/esm/product/components/product-quantity/hooks/useProductQuantity.js +1 -0
  3261. package/dist/esm/product/components/product-quick-view/ProductQuickView.js +2 -0
  3262. package/dist/esm/product/components/product-quick-view/QuickView.js +2 -0
  3263. package/dist/esm/product/components/product-sku/Sku.js +2 -0
  3264. package/dist/esm/product/components/product-sku/Sku.liquid.js +6 -0
  3265. package/dist/esm/product/components/product-title/ProductTitle.js +2 -0
  3266. package/dist/esm/product/components/product-title/ProductTitle.liquid.js +3 -0
  3267. package/dist/esm/product/components/product-title/common/helpers.js +1 -0
  3268. package/dist/esm/product/components/product-variants/ProductVariants.js +2 -0
  3269. package/dist/esm/product/components/product-variants/ProductVariants.liquid.js +157 -0
  3270. package/dist/esm/product/components/product-variants/common/base/attrs.js +1 -0
  3271. package/dist/esm/product/components/product-variants/common/base/classes.js +2 -0
  3272. package/dist/esm/product/components/product-variants/common/base/styles.js +1 -0
  3273. package/dist/esm/product/components/product-variants/common/common.js +1 -0
  3274. package/dist/esm/product/components/product-variants/common/dropdown/attrs.js +1 -0
  3275. package/dist/esm/product/components/product-variants/common/dropdown/classes.js +1 -0
  3276. package/dist/esm/product/components/product-variants/common/dropdown/styles.js +1 -0
  3277. package/dist/esm/product/components/product-variants/common/main/classes.js +1 -0
  3278. package/dist/esm/product/components/product-variants/common/main/getAttr.js +1 -0
  3279. package/dist/esm/product/components/product-variants/common/main/getData.js +1 -0
  3280. package/dist/esm/product/components/product-variants/common/main/styles.js +1 -0
  3281. package/dist/esm/product/components/product-variants/common/variants/attrs.js +1 -0
  3282. package/dist/esm/product/components/product-variants/common/variants/classes.js +1 -0
  3283. package/dist/esm/product/components/product-variants/common/variants/styles.js +1 -0
  3284. package/dist/esm/product/components/product-variants/components/base/base.js +11 -0
  3285. package/dist/esm/product/components/product-variants/components/base/base.liquid.js +25 -0
  3286. package/dist/esm/product/components/product-variants/components/color/color.js +2 -0
  3287. package/dist/esm/product/components/product-variants/components/color/color.liquid.js +13 -0
  3288. package/dist/esm/product/components/product-variants/components/dropdown-group/DropdownGroup.js +2 -0
  3289. package/dist/esm/product/components/product-variants/components/dropdown-group/DropdownGroup.liquid.js +1 -0
  3290. package/dist/esm/product/components/product-variants/components/dropdown-option/DropdownOption.js +2 -0
  3291. package/dist/esm/product/components/product-variants/components/dropdown-option/VariantOption.js +2 -0
  3292. package/dist/esm/product/components/product-variants/components/dropdown-option/render-liquid/index.js +43 -0
  3293. package/dist/esm/product/components/product-variants/components/dropdown-swatches/Dropdown.js +2 -0
  3294. package/dist/esm/product/components/product-variants/components/dropdown-swatches/Dropdown.liquid.js +9 -0
  3295. package/dist/esm/product/components/product-variants/components/dropdown-swatches/hooks/useDropdownSwatches.js +1 -0
  3296. package/dist/esm/product/components/product-variants/components/image/Image.js +2 -0
  3297. package/dist/esm/product/components/product-variants/components/image/Image.liquid.js +9 -0
  3298. package/dist/esm/product/components/product-variants/components/image-shopify/ImageShopify.js +2 -0
  3299. package/dist/esm/product/components/product-variants/components/image-shopify/ImageShopify.liquid.js +21 -0
  3300. package/dist/esm/product/components/product-variants/components/rectangle-list/RectangleList.js +2 -0
  3301. package/dist/esm/product/components/product-variants/components/variants/index.js +2 -0
  3302. package/dist/esm/product/components/product-variants/components/variants/index.liquid.js +62 -0
  3303. package/dist/esm/product/components/product-variants/hooks/useGpVariants.js +1 -0
  3304. package/dist/esm/product/components/product-variants/hooks/useVariantInteraction.js +1 -0
  3305. package/dist/esm/product/components/product-variants/utils/mappingVariantStyles.js +1 -0
  3306. package/dist/esm/product/components/product-vendor/Vendor.js +2 -0
  3307. package/dist/esm/product/components/product-vendor/Vendor.liquid.js +14 -0
  3308. package/dist/esm/product/components/product-view-more/ProductViewMore.js +2 -0
  3309. package/dist/esm/product/components/product-view-more/ProductViewMore.liquid.js +6 -0
  3310. package/dist/esm/product/components/product-view-more/common/helpers.js +1 -0
  3311. package/dist/esm/product/components/product-view-more/common/styles.js +1 -0
  3312. package/dist/esm/product/components/product-wrap/Product.js +1 -0
  3313. package/dist/esm/product/components/product-wrap/Product.liquid.js +99 -0
  3314. package/dist/esm/product/components/product-wrap/common/helpers.js +1 -0
  3315. package/dist/esm/product/components/product-wrap/hook/useProductSetting.js +1 -0
  3316. package/dist/esm/product/helpers/function.js +1 -39
  3317. package/dist/esm/product/helpers/product-bundle.js +1 -51
  3318. package/dist/esm/product/helpers/product-image.js +1 -31
  3319. package/dist/esm/product/helpers/product.js +1 -51
  3320. package/dist/esm/product/helpers/tracking.js +1 -9
  3321. package/dist/esm/product/index.js +1 -0
  3322. package/dist/esm/product/next.js +1 -94
  3323. package/dist/esm/product/settings/DynamicCheckout.js +5 -0
  3324. package/dist/esm/product/settings/Product.js +8 -0
  3325. package/dist/esm/product/settings/ProductBadge.js +1 -0
  3326. package/dist/esm/product/settings/ProductButton.js +5 -0
  3327. package/dist/esm/product/settings/ProductDescription.js +1 -0
  3328. package/dist/esm/product/settings/ProductImages.js +25 -0
  3329. package/dist/esm/product/settings/ProductList.js +8 -0
  3330. package/dist/esm/product/settings/ProductPrice.js +5 -0
  3331. package/dist/esm/product/settings/ProductProperties.js +8 -0
  3332. package/dist/esm/product/settings/ProductQuantity.js +5 -0
  3333. package/dist/esm/product/settings/ProductTag.js +1 -0
  3334. package/dist/esm/product/settings/ProductTitle.js +6 -0
  3335. package/dist/esm/product/settings/ProductVariants.js +5 -0
  3336. package/dist/esm/product/settings/ProductViewMore.js +5 -0
  3337. package/dist/esm/product/settings/Sku.js +5 -0
  3338. package/dist/esm/product/settings/Vendor.js +5 -0
  3339. package/dist/esm/product/settings/bundle-layout/horizontal-one.js +1 -0
  3340. package/dist/esm/product/settings/bundle-layout/horizontal-three.js +1 -0
  3341. package/dist/esm/product/settings/bundle-layout/horizontal-two.js +1 -0
  3342. package/dist/esm/product/settings/bundle-layout/vertical-one.js +1 -0
  3343. package/dist/esm/product/settings/bundle-layout/vertical-three.js +1 -0
  3344. package/dist/esm/product/settings/bundle-layout/vertical-two.js +1 -0
  3345. package/dist/esm/product/settings/dynamic-checkout/configs/presets.js +6 -0
  3346. package/dist/esm/product/settings/dynamic-checkout/configs/settings.js +1 -0
  3347. package/dist/esm/product/settings/dynamic-checkout/configs/ui-v1.js +1 -0
  3348. package/dist/esm/product/settings/dynamic-checkout/configs/ui-v2.js +1 -0
  3349. package/dist/esm/product/settings/product/configs/presets.js +1 -0
  3350. package/dist/esm/product/settings/product/configs/product-presets/product-1-col.js +15 -0
  3351. package/dist/esm/product/settings/product/configs/product-presets/product-2-col.js +21 -0
  3352. package/dist/esm/product/settings/product/configs/product-presets/product-default.js +23 -0
  3353. package/dist/esm/product/settings/product/configs/settings.js +1 -0
  3354. package/dist/esm/product/settings/product/configs/ui-v1.js +1 -0
  3355. package/dist/esm/product/settings/product/configs/ui-v2.js +1 -0
  3356. package/dist/esm/product/settings/product-badge/configs/presets.js +11 -0
  3357. package/dist/esm/product/settings/product-badge/configs/settings.js +1 -0
  3358. package/dist/esm/product/settings/product-badge/configs/ui-v1.js +1 -0
  3359. package/dist/esm/product/settings/product-badge/configs/ui-v2.js +1 -0
  3360. package/dist/esm/product/settings/product-button/configs/presets.js +11 -0
  3361. package/dist/esm/product/settings/product-button/configs/settings.js +3 -0
  3362. package/dist/esm/product/settings/product-button/configs/ui-v1.js +1 -0
  3363. package/dist/esm/product/settings/product-button/configs/ui-v2.js +1 -0
  3364. package/dist/esm/product/settings/product-description/configs/presets.js +4 -0
  3365. package/dist/esm/product/settings/product-description/configs/settings.js +1 -0
  3366. package/dist/esm/product/settings/product-description/configs/ui-v1.js +1 -0
  3367. package/dist/esm/product/settings/product-description/configs/ui-v2.js +1 -0
  3368. package/dist/esm/product/settings/product-discount-tag/configs/settings.js +1 -0
  3369. package/dist/esm/product/settings/product-discount-tag/configs/ui-v2.js +1 -0
  3370. package/dist/esm/product/settings/product-image-v2/ProductFeatureImage.js +1 -0
  3371. package/dist/esm/product/settings/product-image-v2/ProductGalleryImage.js +1 -0
  3372. package/dist/esm/product/settings/product-image-v2/ProductImages.js +21 -0
  3373. package/dist/esm/product/settings/product-image-v2/configs/setting-v2/ProductFeatureImage.js +2 -0
  3374. package/dist/esm/product/settings/product-image-v2/configs/setting-v2/ProductGalleryImage.js +3 -0
  3375. package/dist/esm/product/settings/product-image-v2/configs/setting-v2/index.js +1 -0
  3376. package/dist/esm/product/settings/product-image-v2/configs/ui/FeatureDots.js +1 -0
  3377. package/dist/esm/product/settings/product-image-v2/configs/ui/FeatureNavigation.js +1 -0
  3378. package/dist/esm/product/settings/product-image-v2/configs/ui/ImageListNavigation.js +1 -0
  3379. package/dist/esm/product/settings/product-image-v2/configs/ui-v1.js +1 -0
  3380. package/dist/esm/product/settings/product-image-v2/configs/ui-v2.js +1 -0
  3381. package/dist/esm/product/settings/product-list/configs/presets.js +37 -0
  3382. package/dist/esm/product/settings/product-list/configs/settings-v2.js +1 -0
  3383. package/dist/esm/product/settings/product-list/configs/ui-v1.js +1 -0
  3384. package/dist/esm/product/settings/product-list/configs/ui-v2.js +1 -0
  3385. package/dist/esm/product/settings/product-price/configs/presets.js +11 -0
  3386. package/dist/esm/product/settings/product-price/configs/settings.js +1 -0
  3387. package/dist/esm/product/settings/product-price/configs/ui-v1.js +1 -0
  3388. package/dist/esm/product/settings/product-price/configs/ui-v2.js +1 -0
  3389. package/dist/esm/product/settings/product-properties/configs/presets.js +6 -0
  3390. package/dist/esm/product/settings/product-properties/configs/settings-v2.js +1 -0
  3391. package/dist/esm/product/settings/product-properties/configs/ui-v1.js +1 -0
  3392. package/dist/esm/product/settings/product-properties/configs/ui-v2.js +1 -0
  3393. package/dist/esm/product/settings/product-quantity/configs/presets.js +20 -0
  3394. package/dist/esm/product/settings/product-quantity/configs/settings.js +3 -0
  3395. package/dist/esm/product/settings/product-quantity/configs/ui-v1.js +1 -0
  3396. package/dist/esm/product/settings/product-quantity/configs/ui-v2.js +1 -0
  3397. package/dist/esm/product/settings/product-sku/configs/presets.js +4 -0
  3398. package/dist/esm/product/settings/product-sku/configs/settings.js +1 -0
  3399. package/dist/esm/product/settings/product-sku/configs/ui-v1.js +1 -0
  3400. package/dist/esm/product/settings/product-sku/configs/ui-v2.js +1 -0
  3401. package/dist/esm/product/settings/product-title/configs/presets.js +4 -0
  3402. package/dist/esm/product/settings/product-title/configs/settings.js +1 -0
  3403. package/dist/esm/product/settings/product-title/configs/ui-v1.js +1 -0
  3404. package/dist/esm/product/settings/product-title/configs/ui-v2.js +1 -0
  3405. package/dist/esm/product/settings/product-variant/configs/presets.js +24 -0
  3406. package/dist/esm/product/settings/product-variant/configs/settings.js +1 -0
  3407. package/dist/esm/product/settings/product-variant/configs/ui-v1.js +1 -0
  3408. package/dist/esm/product/settings/product-variant/configs/ui-v2.js +1 -0
  3409. package/dist/esm/product/settings/product-variant/swatches-style-config/color.js +1 -0
  3410. package/dist/esm/product/settings/product-variant/swatches-style-config/dropdown.js +1 -0
  3411. package/dist/esm/product/settings/product-variant/swatches-style-config/image-shopify.js +1 -0
  3412. package/dist/esm/product/settings/product-variant/swatches-style-config/image.js +1 -0
  3413. package/dist/esm/product/settings/product-variant/swatches-style-config/rectangle-list.js +1 -0
  3414. package/dist/esm/product/settings/product-vendor/configs/presets.js +3 -0
  3415. package/dist/esm/product/settings/product-vendor/configs/settings.js +1 -0
  3416. package/dist/esm/product/settings/product-vendor/configs/ui-v1.js +1 -0
  3417. package/dist/esm/product/settings/product-vendor/configs/ui-v2.js +1 -0
  3418. package/dist/esm/product/settings/product-view-more/configs/presets.js +5 -0
  3419. package/dist/esm/product/settings/product-view-more/configs/settings.js +8 -0
  3420. package/dist/esm/product/settings/product-view-more/configs/ui-v1.js +1 -0
  3421. package/dist/esm/product/settings/product-view-more/configs/ui-v2.js +1 -0
  3422. package/dist/esm/radio/components/Radio.js +2 -0
  3423. package/dist/esm/radio/index.js +1 -0
  3424. package/dist/esm/radio/next.js +1 -12
  3425. package/dist/esm/radio/settings/Radio.js +1 -0
  3426. package/dist/esm/radio/settings/configs/settings.js +1 -0
  3427. package/dist/esm/select/components/Select.js +4 -0
  3428. package/dist/esm/select/index.js +1 -0
  3429. package/dist/esm/select/next.js +1 -12
  3430. package/dist/esm/select/settings/Select.js +1 -0
  3431. package/dist/esm/select/settings/configs/settings.js +1 -0
  3432. package/dist/esm/setting.js +1 -0
  3433. package/dist/esm/shop-pay-installment/components/ShopPayInstallments.js +1 -0
  3434. package/dist/esm/shop-pay-installment/components/ShopPayInstallments.liquid.js +3 -0
  3435. package/dist/esm/shop-pay-installment/components/common/helpers.js +1 -0
  3436. package/dist/esm/shop-pay-installment/index.js +1 -0
  3437. package/dist/esm/shop-pay-installment/next.js +1 -0
  3438. package/dist/esm/shop-pay-installment/settings/ShopPayInstallments.js +12 -0
  3439. package/dist/esm/shop-pay-installment/settings/configs/settings.js +1 -0
  3440. package/dist/esm/sticky/common/classes.js +1 -0
  3441. package/dist/esm/sticky/common/styles.js +1 -0
  3442. package/dist/esm/sticky/components/Sticky.js +2 -179
  3443. package/dist/esm/sticky/components/Sticky.liquid.js +16 -82
  3444. package/dist/esm/sticky/hooks/useSticky.js +1 -0
  3445. package/dist/esm/sticky/index.js +1 -0
  3446. package/dist/esm/sticky/next.js +1 -12
  3447. package/dist/esm/sticky/settings/Sticky.js +1 -0
  3448. package/dist/esm/sticky/settings/configs/presets.js +31 -0
  3449. package/dist/esm/sticky/settings/configs/settings-v2.js +1 -0
  3450. package/dist/esm/sticky/settings/configs/settings.js +1 -0
  3451. package/dist/esm/sticky/settings/configs/ui-v1.js +1 -0
  3452. package/dist/esm/sticky/settings/configs/ui-v2.js +1 -0
  3453. package/dist/esm/stock-counter/common/attrs.js +1 -0
  3454. package/dist/esm/stock-counter/common/classes.js +1 -0
  3455. package/dist/esm/stock-counter/common/helpers.js +71 -0
  3456. package/dist/esm/stock-counter/common/styles.js +1 -0
  3457. package/dist/esm/stock-counter/components/StockCounter.js +2 -128
  3458. package/dist/esm/stock-counter/components/StockCounter.liquid.js +61 -181
  3459. package/dist/esm/stock-counter/hooks/useStockCounter.js +1 -0
  3460. package/dist/esm/stock-counter/hooks/useStockCounterInteraction.js +1 -66
  3461. package/dist/esm/stock-counter/index.js +1 -0
  3462. package/dist/esm/stock-counter/next.js +1 -12
  3463. package/dist/esm/stock-counter/settings/StockCounter.js +5 -0
  3464. package/dist/esm/stock-counter/settings/configs/presets.js +11 -0
  3465. package/dist/esm/stock-counter/settings/configs/settings-v2.js +2 -0
  3466. package/dist/esm/stock-counter/settings/configs/ui-v1.js +1 -0
  3467. package/dist/esm/stock-counter/settings/configs/ui-v2.js +1 -0
  3468. package/dist/esm/tab/common/attrs.js +1 -0
  3469. package/dist/esm/tab/common/classes.js +4 -0
  3470. package/dist/esm/tab/common/helpers.js +2 -0
  3471. package/dist/esm/tab/common/styles.js +1 -0
  3472. package/dist/esm/tab/components/TabItem.js +2 -20
  3473. package/dist/esm/tab/components/TabItem.liquid.js +6 -21
  3474. package/dist/esm/tab/components/Tabs.js +2 -153
  3475. package/dist/esm/tab/components/Tabs.liquid.js +26 -114
  3476. package/dist/esm/tab/hooks/useTab.js +1 -0
  3477. package/dist/esm/tab/hooks/useTabInteraction.js +1 -54
  3478. package/dist/esm/tab/index.js +1 -0
  3479. package/dist/esm/tab/next.js +1 -16
  3480. package/dist/esm/tab/settings/TabItem.js +5 -0
  3481. package/dist/esm/tab/settings/Tabs.js +11 -0
  3482. package/dist/esm/tab/settings/configs/settings.js +1 -0
  3483. package/dist/esm/tab/settings/configs/ui-v1.js +1 -0
  3484. package/dist/esm/tab/settings/configs/ui-v2.js +1 -0
  3485. package/dist/esm/text/common/attrs.js +1 -0
  3486. package/dist/esm/text/common/classes.js +1 -0
  3487. package/dist/esm/text/common/helpers.js +1 -0
  3488. package/dist/esm/text/common/styles.js +1 -0
  3489. package/dist/esm/text/components/Text.js +2 -98
  3490. package/dist/esm/text/components/Text.liquid.js +15 -102
  3491. package/dist/esm/text/components/TextInline.js +7 -29
  3492. package/dist/esm/text/index.js +1 -5
  3493. package/dist/esm/text/next.js +1 -12
  3494. package/dist/esm/text/settings/Text.js +5 -0
  3495. package/dist/esm/text/settings/configs/presets.js +3 -0
  3496. package/dist/esm/text/settings/configs/settings.js +1 -0
  3497. package/dist/esm/text/settings/configs/ui-v1.js +1 -0
  3498. package/dist/esm/text/settings/configs/ui-v2.js +1 -0
  3499. package/dist/esm/textarea/components/Textarea.js +2 -0
  3500. package/dist/esm/textarea/index.js +1 -0
  3501. package/dist/esm/textarea/next.js +1 -12
  3502. package/dist/esm/textarea/settings/Textarea.js +7 -0
  3503. package/dist/esm/textarea/settings/configs/settings.js +1 -0
  3504. package/dist/esm/third-party/common/helpers.js +13 -0
  3505. package/dist/esm/third-party/components/AftershipEmailMarketingsms.js +2 -28
  3506. package/dist/esm/third-party/components/AftershipEmailMarketingsms.liquid.js +1 -8
  3507. package/dist/esm/third-party/components/AirProductReviewsAppUgc.js +2 -33
  3508. package/dist/esm/third-party/components/AirProductReviewsAppUgc.liquid.js +5 -19
  3509. package/dist/esm/third-party/components/AliReviews/AliReviewsSampleContent.js +2 -24
  3510. package/dist/esm/third-party/components/AliReviews.js +2 -18
  3511. package/dist/esm/third-party/components/AliReviews.liquid.js +6 -15
  3512. package/dist/esm/third-party/components/AlsoBoughtCbb.js +2 -28
  3513. package/dist/esm/third-party/components/AlsoBoughtCbb.liquid.js +4 -13
  3514. package/dist/esm/third-party/components/AovFreeGiftBuyXGetYBogo.js +2 -0
  3515. package/dist/esm/third-party/components/AovFreeGiftBuyXGetYBogo.liquid.js +1 -0
  3516. package/dist/esm/third-party/components/AppointmentBookingCowlendar.js +2 -33
  3517. package/dist/esm/third-party/components/AppointmentBookingCowlendar.liquid.js +1 -8
  3518. package/dist/esm/third-party/components/AppstleBundlesDiscounts.js +2 -28
  3519. package/dist/esm/third-party/components/AppstleBundlesDiscounts.liquid.js +1 -8
  3520. package/dist/esm/third-party/components/AppstleSubscriptions/AppstleSubscriptionsSampleContent.js +2 -19
  3521. package/dist/esm/third-party/components/AppstleSubscriptions.js +2 -18
  3522. package/dist/esm/third-party/components/AppstleSubscriptions.liquid.js +4 -13
  3523. package/dist/esm/third-party/components/BestBuyFulfillment.js +1 -33
  3524. package/dist/esm/third-party/components/BestBuyFulfillment.liquid.js +1 -8
  3525. package/dist/esm/third-party/components/BfSizeChartSizeGuide.js +2 -28
  3526. package/dist/esm/third-party/components/BfSizeChartSizeGuide.liquid.js +1 -8
  3527. package/dist/esm/third-party/components/BirdChime/BirdChimeContent.js +2 -19
  3528. package/dist/esm/third-party/components/BirdChime.js +2 -18
  3529. package/dist/esm/third-party/components/BirdChime.liquid.js +4 -13
  3530. package/dist/esm/third-party/components/Bogos/BogosSampleContent.js +2 -34
  3531. package/dist/esm/third-party/components/Bogos.js +2 -18
  3532. package/dist/esm/third-party/components/Bogos.liquid.js +7 -14
  3533. package/dist/esm/third-party/components/BoldProductOptions/BoldProductOptionsSampleContent.js +2 -19
  3534. package/dist/esm/third-party/components/BoldProductOptions.js +2 -18
  3535. package/dist/esm/third-party/components/BoldProductOptions.liquid.js +4 -13
  3536. package/dist/esm/third-party/components/BoldSubscriptions/BoldSubscriptionsSampleContent.js +2 -30
  3537. package/dist/esm/third-party/components/BoldSubscriptions.js +2 -18
  3538. package/dist/esm/third-party/components/BoldSubscriptions.liquid.js +6 -15
  3539. package/dist/esm/third-party/components/BonLoyaltyRewardsReferrals.js +2 -33
  3540. package/dist/esm/third-party/components/BonLoyaltyRewardsReferrals.liquid.js +1 -8
  3541. package/dist/esm/third-party/components/BoostAISearchDiscovery/BoostAISearchDiscoverySampleContent.js +2 -19
  3542. package/dist/esm/third-party/components/BoostAISearchDiscovery.js +2 -18
  3543. package/dist/esm/third-party/components/BoostAISearchDiscovery.liquid.js +5 -16
  3544. package/dist/esm/third-party/components/Bundler/BundlerSampleContent.js +2 -19
  3545. package/dist/esm/third-party/components/Bundler.js +2 -20
  3546. package/dist/esm/third-party/components/Bundler.liquid.js +5 -18
  3547. package/dist/esm/third-party/components/CleanSizeCharts.js +2 -38
  3548. package/dist/esm/third-party/components/CleanSizeCharts.liquid.js +5 -14
  3549. package/dist/esm/third-party/components/CrossSellCartUpsell/CrossSellCartUpsellSampleContent.js +2 -19
  3550. package/dist/esm/third-party/components/CrossSellCartUpsell.js +2 -18
  3551. package/dist/esm/third-party/components/CrossSellCartUpsell.liquid.js +4 -12
  3552. package/dist/esm/third-party/components/CustomProductOptionsVariant.js +2 -33
  3553. package/dist/esm/third-party/components/CustomProductOptionsVariant.liquid.js +4 -13
  3554. package/dist/esm/third-party/components/DiscountyBulkDiscountSales.js +2 -28
  3555. package/dist/esm/third-party/components/DiscountyBulkDiscountSales.liquid.js +4 -13
  3556. package/dist/esm/third-party/components/EasifyProductOptions.js +2 -33
  3557. package/dist/esm/third-party/components/EasifyProductOptions.liquid.js +4 -13
  3558. package/dist/esm/third-party/components/EasyBundleBuilderSkailama.js +2 -33
  3559. package/dist/esm/third-party/components/EasyBundleBuilderSkailama.liquid.js +1 -8
  3560. package/dist/esm/third-party/components/EasySellCOD.js +2 -33
  3561. package/dist/esm/third-party/components/EasySellCOD.liquid.js +4 -13
  3562. package/dist/esm/third-party/components/EcoboostifyShoppableReelUgc.js +2 -28
  3563. package/dist/esm/third-party/components/EcoboostifyShoppableReelUgc.liquid.js +1 -8
  3564. package/dist/esm/third-party/components/EcomsendBackInStockAlert.js +2 -28
  3565. package/dist/esm/third-party/components/EcomsendBackInStockAlert.liquid.js +5 -14
  3566. package/dist/esm/third-party/components/EssentialAnnouncementBar.js +2 -28
  3567. package/dist/esm/third-party/components/EssentialAnnouncementBar.liquid.js +1 -8
  3568. package/dist/esm/third-party/components/EssentialCountdownTimerBar.js +2 -28
  3569. package/dist/esm/third-party/components/EssentialCountdownTimerBar.liquid.js +1 -8
  3570. package/dist/esm/third-party/components/EstimatedDeliveryDatePlus.js +2 -28
  3571. package/dist/esm/third-party/components/EstimatedDeliveryDatePlus.liquid.js +1 -8
  3572. package/dist/esm/third-party/components/FastBundleBundlesDiscounts.js +2 -33
  3573. package/dist/esm/third-party/components/FastBundleBundlesDiscounts.liquid.js +5 -21
  3574. package/dist/esm/third-party/components/FeraReviews/FeraReviewsSampleContent.js +2 -45
  3575. package/dist/esm/third-party/components/FeraReviews/LiquidTemplateByWidget.js +1 -50
  3576. package/dist/esm/third-party/components/FeraReviews.js +2 -22
  3577. package/dist/esm/third-party/components/FeraReviews.liquid.js +5 -16
  3578. package/dist/esm/third-party/components/FirePush/FirePushSampleContent.js +2 -17
  3579. package/dist/esm/third-party/components/FirePush.js +2 -18
  3580. package/dist/esm/third-party/components/FirePush.liquid.js +4 -13
  3581. package/dist/esm/third-party/components/FlyBundlesUpsellsFbt.js +2 -78
  3582. package/dist/esm/third-party/components/FlyBundlesUpsellsFbt.liquid.js +1 -8
  3583. package/dist/esm/third-party/components/FordeerProductLabels.js +2 -44
  3584. package/dist/esm/third-party/components/FordeerProductLabels.liquid.js +7 -16
  3585. package/dist/esm/third-party/components/FrequentlyBoughtTogether/FrequentlyBoughtTogetherSampleContent.js +2 -19
  3586. package/dist/esm/third-party/components/FrequentlyBoughtTogether.js +2 -20
  3587. package/dist/esm/third-party/components/FrequentlyBoughtTogether.liquid.js +5 -14
  3588. package/dist/esm/third-party/components/GloColorSwatchvariantImage.js +2 -28
  3589. package/dist/esm/third-party/components/GloColorSwatchvariantImage.liquid.js +1 -8
  3590. package/dist/esm/third-party/components/GloboProductOptionsVariant.js +1 -33
  3591. package/dist/esm/third-party/components/GloboProductOptionsVariant.liquid.js +1 -8
  3592. package/dist/esm/third-party/components/GoogleReviewsByReputon.js +2 -33
  3593. package/dist/esm/third-party/components/GoogleReviewsByReputon.liquid.js +7 -16
  3594. package/dist/esm/third-party/components/Growave/GrowaveSampleContent.js +2 -34
  3595. package/dist/esm/third-party/components/Growave.js +2 -18
  3596. package/dist/esm/third-party/components/Growave.liquid.js +5 -15
  3597. package/dist/esm/third-party/components/HextomCountdownTimerBar.js +2 -28
  3598. package/dist/esm/third-party/components/HextomCountdownTimerBar.liquid.js +1 -8
  3599. package/dist/esm/third-party/components/HextomFreeShippingBar.js +2 -28
  3600. package/dist/esm/third-party/components/HextomFreeShippingBar.liquid.js +1 -8
  3601. package/dist/esm/third-party/components/HulkFormBuilder.js +2 -33
  3602. package/dist/esm/third-party/components/HulkFormBuilder.liquid.js +5 -14
  3603. package/dist/esm/third-party/components/HulkProductOptions.js +2 -28
  3604. package/dist/esm/third-party/components/HulkProductOptions.liquid.js +1 -8
  3605. package/dist/esm/third-party/components/InfiniteOptions/InfiniteOptionsSampleContent.js +2 -19
  3606. package/dist/esm/third-party/components/InfiniteOptions.js +2 -18
  3607. package/dist/esm/third-party/components/InfiniteOptions.liquid.js +4 -12
  3608. package/dist/esm/third-party/components/Instafeed/InstafeedSampleContent.js +2 -19
  3609. package/dist/esm/third-party/components/Instafeed.js +2 -18
  3610. package/dist/esm/third-party/components/Instafeed.liquid.js +4 -13
  3611. package/dist/esm/third-party/components/InstasellShoppableInstagram.js +2 -33
  3612. package/dist/esm/third-party/components/InstasellShoppableInstagram.liquid.js +1 -8
  3613. package/dist/esm/third-party/components/Judgeme/JudgemeSampleContent.js +2 -35
  3614. package/dist/esm/third-party/components/JudgemeReviews.js +2 -19
  3615. package/dist/esm/third-party/components/JudgemeReviews.liquid.js +10 -19
  3616. package/dist/esm/third-party/components/JunipProductReviewsUgc.js +2 -33
  3617. package/dist/esm/third-party/components/JunipProductReviewsUgc.liquid.js +1 -8
  3618. package/dist/esm/third-party/components/KachingBundles/KachingBundlesSampleContent.js +2 -23
  3619. package/dist/esm/third-party/components/KachingBundles.js +2 -18
  3620. package/dist/esm/third-party/components/KachingBundles.liquid.js +5 -15
  3621. package/dist/esm/third-party/components/KingProductOptions/KingProductOptionsSampleContent.js +2 -19
  3622. package/dist/esm/third-party/components/KingProductOptions.js +2 -18
  3623. package/dist/esm/third-party/components/KingProductOptions.liquid.js +5 -14
  3624. package/dist/esm/third-party/components/KiteFreeGiftDiscount.js +2 -33
  3625. package/dist/esm/third-party/components/KiteFreeGiftDiscount.liquid.js +1 -8
  3626. package/dist/esm/third-party/components/KlarnaMessaging.js +2 -46
  3627. package/dist/esm/third-party/components/KlarnaMessaging.liquid.js +5 -32
  3628. package/dist/esm/third-party/components/Klaviyo/KlaviyoSampleContent.js +2 -19
  3629. package/dist/esm/third-party/components/Klaviyo.js +2 -26
  3630. package/dist/esm/third-party/components/Klaviyo.liquid.js +5 -15
  3631. package/dist/esm/third-party/components/KoalaBundleQuantityDiscount.js +2 -33
  3632. package/dist/esm/third-party/components/KoalaBundleQuantityDiscount.liquid.js +4 -13
  3633. package/dist/esm/third-party/components/LaiProductReviews/LaiProductReviewsSampleContent.js +2 -54
  3634. package/dist/esm/third-party/components/LaiProductReviews/LiquidTemplateByWiget.js +13 -44
  3635. package/dist/esm/third-party/components/LaiProductReviews.js +2 -20
  3636. package/dist/esm/third-party/components/LaiProductReviews.liquid.js +5 -17
  3637. package/dist/esm/third-party/components/LoloyalLoyaltyReferrals.js +2 -33
  3638. package/dist/esm/third-party/components/LoloyalLoyaltyReferrals.liquid.js +1 -8
  3639. package/dist/esm/third-party/components/LoopSubscriptions.js +2 -33
  3640. package/dist/esm/third-party/components/LoopSubscriptions.liquid.js +2 -13
  3641. package/dist/esm/third-party/components/LooxReviews/LooxReviewsSampleContent.js +2 -31
  3642. package/dist/esm/third-party/components/LooxReviews.js +2 -18
  3643. package/dist/esm/third-party/components/LooxReviews.liquid.js +10 -49
  3644. package/dist/esm/third-party/components/MaxbundleProductBundles.js +2 -33
  3645. package/dist/esm/third-party/components/MaxbundleProductBundles.liquid.js +5 -14
  3646. package/dist/esm/third-party/components/MbcBundleVolumeDiscount.js +2 -33
  3647. package/dist/esm/third-party/components/MbcBundleVolumeDiscount.liquid.js +4 -13
  3648. package/dist/esm/third-party/components/MyappgurusProductReviews.js +2 -28
  3649. package/dist/esm/third-party/components/MyappgurusProductReviews.liquid.js +1 -8
  3650. package/dist/esm/third-party/components/NotifyBackInStockPreOrder.js +2 -33
  3651. package/dist/esm/third-party/components/NotifyBackInStockPreOrder.liquid.js +4 -13
  3652. package/dist/esm/third-party/components/OkendoReviewsLoyalty.js +2 -28
  3653. package/dist/esm/third-party/components/OkendoReviewsLoyalty.liquid.js +1 -8
  3654. package/dist/esm/third-party/components/Omnisend/OmnisendSampleContent.js +2 -30
  3655. package/dist/esm/third-party/components/Omnisend.js +2 -18
  3656. package/dist/esm/third-party/components/Omnisend.liquid.js +9 -18
  3657. package/dist/esm/third-party/components/Opinew/OpinewSampleContent.js +2 -29
  3658. package/dist/esm/third-party/components/Opinew.js +2 -18
  3659. package/dist/esm/third-party/components/Opinew.liquid.js +6 -15
  3660. package/dist/esm/third-party/components/ParcelPanel/ParcelPanelSampleContent.js +2 -19
  3661. package/dist/esm/third-party/components/ParcelPanel.js +2 -18
  3662. package/dist/esm/third-party/components/ParcelPanel.liquid.js +5 -15
  3663. package/dist/esm/third-party/components/PickyStory/PickyStorySampleContent.js +2 -32
  3664. package/dist/esm/third-party/components/PickyStory.js +2 -18
  3665. package/dist/esm/third-party/components/PickyStory.liquid.js +5 -14
  3666. package/dist/esm/third-party/components/PowerfulContactFormBuilder.js +2 -33
  3667. package/dist/esm/third-party/components/PowerfulContactFormBuilder.liquid.js +1 -8
  3668. package/dist/esm/third-party/components/PreorderNowPreOrderPq.js +2 -33
  3669. package/dist/esm/third-party/components/PreorderNowPreOrderPq.liquid.js +1 -8
  3670. package/dist/esm/third-party/components/PreorderNowWodPresale.js +2 -46
  3671. package/dist/esm/third-party/components/PreorderNowWodPresale.liquid.js +1 -8
  3672. package/dist/esm/third-party/components/ProductOptionsCustomizer.js +2 -33
  3673. package/dist/esm/third-party/components/ProductOptionsCustomizer.liquid.js +1 -8
  3674. package/dist/esm/third-party/components/ProductOptionsVariantOption.js +1 -33
  3675. package/dist/esm/third-party/components/ProductOptionsVariantOption.liquid.js +4 -13
  3676. package/dist/esm/third-party/components/ProductReviews/ProductReviewsSampleContent.js +2 -25
  3677. package/dist/esm/third-party/components/ProductReviews.js +2 -18
  3678. package/dist/esm/third-party/components/ProductReviews.liquid.js +5 -14
  3679. package/dist/esm/third-party/components/PumperBundlesVolumeDiscount.js +2 -33
  3680. package/dist/esm/third-party/components/PumperBundlesVolumeDiscount.liquid.js +1 -8
  3681. package/dist/esm/third-party/components/PushOwl.js +2 -5
  3682. package/dist/esm/third-party/components/PushOwl.liquid.js +3 -33
  3683. package/dist/esm/third-party/components/QikifyUpsell.js +2 -73
  3684. package/dist/esm/third-party/components/QikifyUpsell.liquid.js +1 -8
  3685. package/dist/esm/third-party/components/RapiBundleQuantityBreaks.js +2 -33
  3686. package/dist/esm/third-party/components/RapiBundleQuantityBreaks.liquid.js +5 -14
  3687. package/dist/esm/third-party/components/RechargeSubscriptions.js +2 -33
  3688. package/dist/esm/third-party/components/RechargeSubscriptions.liquid.js +1 -8
  3689. package/dist/esm/third-party/components/RecurpaySubscriptionApp.js +2 -33
  3690. package/dist/esm/third-party/components/RecurpaySubscriptionApp.liquid.js +4 -13
  3691. package/dist/esm/third-party/components/Releasit/ReleasitSampleContent.js +2 -17
  3692. package/dist/esm/third-party/components/Releasit.js +1 -18
  3693. package/dist/esm/third-party/components/Releasit.liquid.js +4 -14
  3694. package/dist/esm/third-party/components/RequestQuoteHidePrice.js +2 -33
  3695. package/dist/esm/third-party/components/RequestQuoteHidePrice.liquid.js +4 -13
  3696. package/dist/esm/third-party/components/ReviewxpoProductReviewsApp.js +2 -31
  3697. package/dist/esm/third-party/components/ReviewxpoProductReviewsApp.liquid.js +1 -8
  3698. package/dist/esm/third-party/components/Rivyo/RivyoSampleContent.js +2 -32
  3699. package/dist/esm/third-party/components/Rivyo.js +2 -18
  3700. package/dist/esm/third-party/components/Rivyo.liquid.js +5 -14
  3701. package/dist/esm/third-party/components/Ryviu/RyviuSampleContent.js +2 -33
  3702. package/dist/esm/third-party/components/Ryviu.js +2 -18
  3703. package/dist/esm/third-party/components/Ryviu.liquid.js +6 -15
  3704. package/dist/esm/third-party/components/SealSubscriptions/SealSubscriptionsSampleContent.js +2 -19
  3705. package/dist/esm/third-party/components/SealSubscriptions.js +2 -18
  3706. package/dist/esm/third-party/components/SealSubscriptions.liquid.js +4 -13
  3707. package/dist/esm/third-party/components/SegunoEmailMarketing.js +2 -28
  3708. package/dist/esm/third-party/components/SegunoEmailMarketing.liquid.js +1 -8
  3709. package/dist/esm/third-party/components/Selleasy.js +2 -31
  3710. package/dist/esm/third-party/components/Selleasy.liquid.js +1 -8
  3711. package/dist/esm/third-party/components/SeoantTrustBadgesIcon.js +2 -28
  3712. package/dist/esm/third-party/components/SeoantTrustBadgesIcon.liquid.js +1 -8
  3713. package/dist/esm/third-party/components/ShopifyForms.js +2 -33
  3714. package/dist/esm/third-party/components/ShopifyForms.liquid.js +1 -8
  3715. package/dist/esm/third-party/components/ShopifySubscriptions.js +2 -33
  3716. package/dist/esm/third-party/components/ShopifySubscriptions.liquid.js +4 -14
  3717. package/dist/esm/third-party/components/SimpleBundlesKits.js +2 -33
  3718. package/dist/esm/third-party/components/SimpleBundlesKits.liquid.js +1 -8
  3719. package/dist/esm/third-party/components/SkioSubscriptionsYcS20.js +2 -33
  3720. package/dist/esm/third-party/components/SkioSubscriptionsYcS20.liquid.js +5 -14
  3721. package/dist/esm/third-party/components/SmartSearchBarAndFilters/SmartSearchBarAndFiltersSampleContent.js +2 -19
  3722. package/dist/esm/third-party/components/SmartSearchBarAndFilters.js +2 -20
  3723. package/dist/esm/third-party/components/SmartSearchBarAndFilters.liquid.js +6 -17
  3724. package/dist/esm/third-party/components/SproutPlantTreesGrowSales.js +2 -33
  3725. package/dist/esm/third-party/components/SproutPlantTreesGrowSales.liquid.js +1 -8
  3726. package/dist/esm/third-party/components/Stamped/LiquidTemplateByWidget.js +101 -172
  3727. package/dist/esm/third-party/components/Stamped/StampedSampleContent.js +2 -42
  3728. package/dist/esm/third-party/components/Stamped.js +2 -18
  3729. package/dist/esm/third-party/components/Stamped.liquid.js +5 -17
  3730. package/dist/esm/third-party/components/StellarDeliveryDatePickup.js +2 -28
  3731. package/dist/esm/third-party/components/StellarDeliveryDatePickup.liquid.js +4 -13
  3732. package/dist/esm/third-party/components/SubifySubscriptionsApp.js +2 -33
  3733. package/dist/esm/third-party/components/SubifySubscriptionsApp.liquid.js +1 -8
  3734. package/dist/esm/third-party/components/TagembedSocialPostReview.js +2 -33
  3735. package/dist/esm/third-party/components/TagembedSocialPostReview.liquid.js +5 -14
  3736. package/dist/esm/third-party/components/TagshopShoppableVideosUgc.js +2 -33
  3737. package/dist/esm/third-party/components/TagshopShoppableVideosUgc.liquid.js +5 -14
  3738. package/dist/esm/third-party/components/TeeinblueProductPersonalizer.js +1 -33
  3739. package/dist/esm/third-party/components/TeeinblueProductPersonalizer.liquid.js +4 -13
  3740. package/dist/esm/third-party/components/ThirdPartyPreview.js +2 -71
  3741. package/dist/esm/third-party/components/TrustBadgesBear.js +2 -28
  3742. package/dist/esm/third-party/components/TrustBadgesBear.liquid.js +1 -8
  3743. package/dist/esm/third-party/components/TrustMe/TrustMeSampleContent.js +2 -19
  3744. package/dist/esm/third-party/components/TrustMe.js +2 -18
  3745. package/dist/esm/third-party/components/TrustMe.liquid.js +4 -13
  3746. package/dist/esm/third-party/components/TrustedsiteTrustBadges.js +2 -28
  3747. package/dist/esm/third-party/components/TrustedsiteTrustBadges.liquid.js +1 -8
  3748. package/dist/esm/third-party/components/Trustoo/TrustooSampleContent.js +2 -31
  3749. package/dist/esm/third-party/components/Trustoo.js +2 -18
  3750. package/dist/esm/third-party/components/Trustoo.liquid.js +12 -34
  3751. package/dist/esm/third-party/components/TrustreviewsProductReviews.js +2 -28
  3752. package/dist/esm/third-party/components/TrustreviewsProductReviews.liquid.js +1 -8
  3753. package/dist/esm/third-party/components/TrustshopProductReviews.js +2 -42
  3754. package/dist/esm/third-party/components/TrustshopProductReviews.liquid.js +1 -8
  3755. package/dist/esm/third-party/components/UltimateSalesBoost/UltimateSalesBoostSampleContent.js +2 -29
  3756. package/dist/esm/third-party/components/UltimateSalesBoost.js +2 -18
  3757. package/dist/esm/third-party/components/UltimateSalesBoost.liquid.js +5 -14
  3758. package/dist/esm/third-party/components/UnlimitedBundlesDiscounts.js +2 -33
  3759. package/dist/esm/third-party/components/UnlimitedBundlesDiscounts.liquid.js +1 -8
  3760. package/dist/esm/third-party/components/Vitals/VitalsSampleContent.js +2 -47
  3761. package/dist/esm/third-party/components/Vitals.js +2 -18
  3762. package/dist/esm/third-party/components/Vitals.liquid.js +7 -16
  3763. package/dist/esm/third-party/components/WhatmoreShoppableVideosreel.js +2 -33
  3764. package/dist/esm/third-party/components/WhatmoreShoppableVideosreel.liquid.js +1 -8
  3765. package/dist/esm/third-party/components/WideBundle/WideBundleSampleContent.js +2 -19
  3766. package/dist/esm/third-party/components/WideBundle.js +2 -18
  3767. package/dist/esm/third-party/components/WideBundle.liquid.js +4 -13
  3768. package/dist/esm/third-party/components/Wiser/WiserSampleContent.js +2 -53
  3769. package/dist/esm/third-party/components/Wiser.js +2 -22
  3770. package/dist/esm/third-party/components/Wiser.liquid.js +5 -15
  3771. package/dist/esm/third-party/components/WishlistKing.js +2 -33
  3772. package/dist/esm/third-party/components/WishlistKing.liquid.js +1 -8
  3773. package/dist/esm/third-party/components/WishlistPlus.js +2 -33
  3774. package/dist/esm/third-party/components/WishlistPlus.liquid.js +6 -15
  3775. package/dist/esm/third-party/components/YotpoLoyalty/YotpoLoyaltySampleContent.js +2 -19
  3776. package/dist/esm/third-party/components/YotpoLoyalty.js +2 -39
  3777. package/dist/esm/third-party/components/YotpoReviews/YotpoReviewsSampleContent.js +2 -33
  3778. package/dist/esm/third-party/components/YotpoReviews.js +2 -18
  3779. package/dist/esm/third-party/components/YotpoReviews.liquid.js +6 -16
  3780. package/dist/esm/third-party/configs/AftershipEmailMarketingsms.js +1 -8
  3781. package/dist/esm/third-party/configs/AirProductReviewsAppUgc.js +1 -0
  3782. package/dist/esm/third-party/configs/AliReviews.js +1 -8
  3783. package/dist/esm/third-party/configs/AlsoBoughtCbb.js +1 -8
  3784. package/dist/esm/third-party/configs/AovFreeGiftBuyXGetYBogo.js +1 -0
  3785. package/dist/esm/third-party/configs/AppointmentBookingCowlendar.js +1 -0
  3786. package/dist/esm/third-party/configs/AppstleBundlesDiscounts.js +1 -8
  3787. package/dist/esm/third-party/configs/AppstleSubscriptions.js +1 -8
  3788. package/dist/esm/third-party/configs/BfSizeChartSizeGuide.js +1 -8
  3789. package/dist/esm/third-party/configs/BirdChime.js +1 -8
  3790. package/dist/esm/third-party/configs/Bogos.js +1 -8
  3791. package/dist/esm/third-party/configs/BoldProductOptions.js +1 -8
  3792. package/dist/esm/third-party/configs/BoldSubscription.js +1 -8
  3793. package/dist/esm/third-party/configs/BonLoyaltyRewardsReferrals.js +1 -0
  3794. package/dist/esm/third-party/configs/BoostAISearchDiscovery.js +1 -8
  3795. package/dist/esm/third-party/configs/Bundler.js +1 -8
  3796. package/dist/esm/third-party/configs/CleanSizeCharts.js +1 -0
  3797. package/dist/esm/third-party/configs/CrossSellCartUpsell.js +1 -8
  3798. package/dist/esm/third-party/configs/CustomProductOptionsVariant.js +1 -0
  3799. package/dist/esm/third-party/configs/DiscountyBulkDiscountSales.js +1 -8
  3800. package/dist/esm/third-party/configs/EasifyProductOptions.js +1 -0
  3801. package/dist/esm/third-party/configs/EasyBundleBuilderSkailama.js +1 -0
  3802. package/dist/esm/third-party/configs/EasySellCOD.js +1 -0
  3803. package/dist/esm/third-party/configs/EcoboostifyShoppableReelUgc.js +1 -8
  3804. package/dist/esm/third-party/configs/EcomsendBackInStockAlert.js +1 -8
  3805. package/dist/esm/third-party/configs/EssentialAnnouncementBar.js +1 -8
  3806. package/dist/esm/third-party/configs/EssentialCountdownTimerBar.js +1 -8
  3807. package/dist/esm/third-party/configs/EstimatedDeliveryDatePlus.js +1 -8
  3808. package/dist/esm/third-party/configs/FastBundleBundlesDiscount.js +1 -0
  3809. package/dist/esm/third-party/configs/FeraReviews.js +1 -8
  3810. package/dist/esm/third-party/configs/FirePush.js +1 -8
  3811. package/dist/esm/third-party/configs/FlyBundlesUpsellsFbt.js +1 -0
  3812. package/dist/esm/third-party/configs/FordeerProductLabels.js +1 -0
  3813. package/dist/esm/third-party/configs/FrequentlyBoughtTogether.js +1 -8
  3814. package/dist/esm/third-party/configs/GloColorSwatchvariantImage.js +1 -8
  3815. package/dist/esm/third-party/configs/GoogleReviewsByReputon.js +1 -0
  3816. package/dist/esm/third-party/configs/Growave.js +1 -8
  3817. package/dist/esm/third-party/configs/HextomCountdownTimerBar.js +1 -8
  3818. package/dist/esm/third-party/configs/HextomFreeShippingBar.js +1 -8
  3819. package/dist/esm/third-party/configs/HulkFormBuilder.js +1 -0
  3820. package/dist/esm/third-party/configs/HulkProductOptions.js +1 -8
  3821. package/dist/esm/third-party/configs/InfiniteOptions.js +1 -8
  3822. package/dist/esm/third-party/configs/Instafeed.js +1 -8
  3823. package/dist/esm/third-party/configs/InstasellShoppableInstagram.js +1 -0
  3824. package/dist/esm/third-party/configs/JudgemeReviews.js +1 -8
  3825. package/dist/esm/third-party/configs/JunipProductReviewsUgc.js +1 -0
  3826. package/dist/esm/third-party/configs/KachingBundles.js +1 -8
  3827. package/dist/esm/third-party/configs/KingProductOptions.js +1 -8
  3828. package/dist/esm/third-party/configs/KiteFreeGiftDiscount.js +1 -0
  3829. package/dist/esm/third-party/configs/KlarmaMessaging.js +1 -0
  3830. package/dist/esm/third-party/configs/Klaviyo.js +1 -8
  3831. package/dist/esm/third-party/configs/KoalaBundleQuantityDiscount.js +1 -0
  3832. package/dist/esm/third-party/configs/LaiProductReviews.js +1 -8
  3833. package/dist/esm/third-party/configs/LoloyalLoyaltyReferrals.js +1 -0
  3834. package/dist/esm/third-party/configs/LoopSubscriptions.js +1 -0
  3835. package/dist/esm/third-party/configs/LooxReviews.js +1 -8
  3836. package/dist/esm/third-party/configs/MaxbundleProductBundles.js +1 -0
  3837. package/dist/esm/third-party/configs/MbcBundleVolumeDiscount.js +1 -0
  3838. package/dist/esm/third-party/configs/MyappgurusProductReviews.js +1 -8
  3839. package/dist/esm/third-party/configs/NotifyBackInStockPreOrder.js +1 -0
  3840. package/dist/esm/third-party/configs/OkendoReviewsLoyalty.js +1 -8
  3841. package/dist/esm/third-party/configs/Omnisend.js +1 -8
  3842. package/dist/esm/third-party/configs/Opinew.js +1 -8
  3843. package/dist/esm/third-party/configs/ParcelPanel.js +1 -8
  3844. package/dist/esm/third-party/configs/PickyStory.js +1 -8
  3845. package/dist/esm/third-party/configs/PowerfulContactFormBuilder.js +1 -0
  3846. package/dist/esm/third-party/configs/PreorderNowPreOrderPq.js +1 -0
  3847. package/dist/esm/third-party/configs/PreorderNowWodPresale.js +1 -0
  3848. package/dist/esm/third-party/configs/ProductOptionsCustomizer.js +1 -0
  3849. package/dist/esm/third-party/configs/ProductReviews.js +1 -8
  3850. package/dist/esm/third-party/configs/PumperBundlesVolumeDiscount.js +1 -0
  3851. package/dist/esm/third-party/configs/PushOwl.js +1 -8
  3852. package/dist/esm/third-party/configs/QikifyUpsell.js +1 -0
  3853. package/dist/esm/third-party/configs/RapiBundleQuantityBreaks.js +1 -0
  3854. package/dist/esm/third-party/configs/RechargeSubscriptions.js +1 -0
  3855. package/dist/esm/third-party/configs/RecurpaySubscriptionApp.js +1 -0
  3856. package/dist/esm/third-party/configs/Releasit.js +1 -8
  3857. package/dist/esm/third-party/configs/RequestQuoteHidePrice.js +1 -0
  3858. package/dist/esm/third-party/configs/ReviewxpoProductReviewsApp.js +1 -0
  3859. package/dist/esm/third-party/configs/Rivyo.js +1 -8
  3860. package/dist/esm/third-party/configs/Ryviu.js +1 -8
  3861. package/dist/esm/third-party/configs/SealSubscriptions.js +1 -8
  3862. package/dist/esm/third-party/configs/SegunoEmailMarketing.js +1 -8
  3863. package/dist/esm/third-party/configs/Selleasy.js +1 -0
  3864. package/dist/esm/third-party/configs/SeoantTrustBadgesIcon.js +1 -8
  3865. package/dist/esm/third-party/configs/ShopifyForms.js +1 -0
  3866. package/dist/esm/third-party/configs/ShopifySubscriptions.js +1 -0
  3867. package/dist/esm/third-party/configs/SimpleBundlesKits.js +1 -0
  3868. package/dist/esm/third-party/configs/SkioSubscriptionsYcS20.js +1 -0
  3869. package/dist/esm/third-party/configs/SmartSearchBarAndFilters.js +1 -8
  3870. package/dist/esm/third-party/configs/SproutPlantTreesGrowSales.js +1 -0
  3871. package/dist/esm/third-party/configs/Stamped.js +1 -8
  3872. package/dist/esm/third-party/configs/StellarDeliveryDatePickup.js +1 -8
  3873. package/dist/esm/third-party/configs/SubifySubscriptionsApp.js +1 -0
  3874. package/dist/esm/third-party/configs/TagembedSocialPostReview.js +1 -0
  3875. package/dist/esm/third-party/configs/TagshopShoppableVideosUgc.js +1 -0
  3876. package/dist/esm/third-party/configs/TrustBadgesBear.js +1 -8
  3877. package/dist/esm/third-party/configs/TrustMe.js +1 -8
  3878. package/dist/esm/third-party/configs/TrustedsiteTrustBadges.js +1 -8
  3879. package/dist/esm/third-party/configs/Trustoo.js +1 -8
  3880. package/dist/esm/third-party/configs/TrustreviewsProductReviews.js +1 -8
  3881. package/dist/esm/third-party/configs/TrustshopProductReviews.js +1 -8
  3882. package/dist/esm/third-party/configs/UltimateSalesBoost.js +1 -8
  3883. package/dist/esm/third-party/configs/UnlimitedBundlesDiscounts.js +1 -0
  3884. package/dist/esm/third-party/configs/Vitals.js +1 -8
  3885. package/dist/esm/third-party/configs/WhatmoreShoppableVideosreel.js +1 -0
  3886. package/dist/esm/third-party/configs/WideBundle.js +1 -8
  3887. package/dist/esm/third-party/configs/Wiser.js +1 -8
  3888. package/dist/esm/third-party/configs/WishlistKing.js +1 -0
  3889. package/dist/esm/third-party/configs/WishlistPlus.js +1 -0
  3890. package/dist/esm/third-party/configs/YotpoLoyalty.js +1 -8
  3891. package/dist/esm/third-party/configs/YotpoReviews.js +1 -8
  3892. package/dist/esm/third-party/index.js +1 -0
  3893. package/dist/esm/third-party/next.js +1 -588
  3894. package/dist/esm/third-party/settings/AftershipEmailMarketingsms/index.js +4 -0
  3895. package/dist/esm/third-party/settings/AftershipEmailMarketingsms/uiV1.js +1 -0
  3896. package/dist/esm/third-party/settings/AftershipEmailMarketingsms/uiV2.js +1 -0
  3897. package/dist/esm/third-party/settings/AirProductReviewsAppUgc/index.js +4 -0
  3898. package/dist/esm/third-party/settings/AirProductReviewsAppUgc/uiV1.js +1 -0
  3899. package/dist/esm/third-party/settings/AirProductReviewsAppUgc/uiV2.js +1 -0
  3900. package/dist/esm/third-party/settings/AliReviews/index.js +6 -0
  3901. package/dist/esm/third-party/settings/AliReviews/uiV1.js +1 -0
  3902. package/dist/esm/third-party/settings/AliReviews/uiV2.js +1 -0
  3903. package/dist/esm/third-party/settings/AlsoBoughtCbb/index.js +4 -0
  3904. package/dist/esm/third-party/settings/AlsoBoughtCbb/uiV1.js +1 -0
  3905. package/dist/esm/third-party/settings/AlsoBoughtCbb/uiV2.js +1 -0
  3906. package/dist/esm/third-party/settings/AovFreeGiftBuyXGetYBogo/index.js +4 -0
  3907. package/dist/esm/third-party/settings/AovFreeGiftBuyXGetYBogo/uiV1.js +1 -0
  3908. package/dist/esm/third-party/settings/AovFreeGiftBuyXGetYBogo/uiV2.js +1 -0
  3909. package/dist/esm/third-party/settings/AppointmentBookingCowlendar/index.js +4 -0
  3910. package/dist/esm/third-party/settings/AppointmentBookingCowlendar/uiV1.js +1 -0
  3911. package/dist/esm/third-party/settings/AppointmentBookingCowlendar/uiV2.js +1 -0
  3912. package/dist/esm/third-party/settings/AppstleBundlesDiscounts/index.js +4 -0
  3913. package/dist/esm/third-party/settings/AppstleBundlesDiscounts/uiV1.js +1 -0
  3914. package/dist/esm/third-party/settings/AppstleBundlesDiscounts/uiV2.js +1 -0
  3915. package/dist/esm/third-party/settings/AppstleSubscriptions/index.js +6 -0
  3916. package/dist/esm/third-party/settings/AppstleSubscriptions/uiV1.js +1 -0
  3917. package/dist/esm/third-party/settings/AppstleSubscriptions/uiV2.js +1 -0
  3918. package/dist/esm/third-party/settings/BestBuyFulfillment/index.js +4 -0
  3919. package/dist/esm/third-party/settings/BestBuyFulfillment/uiV1.js +1 -0
  3920. package/dist/esm/third-party/settings/BestBuyFulfillment/uiV2.js +1 -0
  3921. package/dist/esm/third-party/settings/BfSizeChartSizeGuide/index.js +4 -0
  3922. package/dist/esm/third-party/settings/BfSizeChartSizeGuide/uiV1.js +1 -0
  3923. package/dist/esm/third-party/settings/BfSizeChartSizeGuide/uiV2.js +1 -0
  3924. package/dist/esm/third-party/settings/BirdChime/index.js +6 -0
  3925. package/dist/esm/third-party/settings/BirdChime/uiV1.js +1 -0
  3926. package/dist/esm/third-party/settings/BirdChime/uiV2.js +1 -0
  3927. package/dist/esm/third-party/settings/Bogos/index.js +6 -0
  3928. package/dist/esm/third-party/settings/Bogos/uiV1.js +1 -0
  3929. package/dist/esm/third-party/settings/Bogos/uiV2.js +1 -0
  3930. package/dist/esm/third-party/settings/BoldProductOptions/index.js +6 -0
  3931. package/dist/esm/third-party/settings/BoldProductOptions/uiV1.js +1 -0
  3932. package/dist/esm/third-party/settings/BoldProductOptions/uiV2.js +1 -0
  3933. package/dist/esm/third-party/settings/BoldSubscriptions/index.js +6 -0
  3934. package/dist/esm/third-party/settings/BoldSubscriptions/uiV1.js +1 -0
  3935. package/dist/esm/third-party/settings/BoldSubscriptions/uiV2.js +1 -0
  3936. package/dist/esm/third-party/settings/BonLoyaltyRewardsReferrals/index.js +4 -0
  3937. package/dist/esm/third-party/settings/BonLoyaltyRewardsReferrals/uiV1.js +1 -0
  3938. package/dist/esm/third-party/settings/BonLoyaltyRewardsReferrals/uiV2.js +1 -0
  3939. package/dist/esm/third-party/settings/BoostAISearchDiscovery/index.js +6 -0
  3940. package/dist/esm/third-party/settings/BoostAISearchDiscovery/uiV1.js +1 -0
  3941. package/dist/esm/third-party/settings/BoostAISearchDiscovery/uiV2.js +1 -0
  3942. package/dist/esm/third-party/settings/Bundler/index.js +6 -0
  3943. package/dist/esm/third-party/settings/Bundler/uiV1.js +1 -0
  3944. package/dist/esm/third-party/settings/Bundler/uiV2.js +1 -0
  3945. package/dist/esm/third-party/settings/CleanSizeCharts/index.js +6 -0
  3946. package/dist/esm/third-party/settings/CleanSizeCharts/uiV1.js +1 -0
  3947. package/dist/esm/third-party/settings/CleanSizeCharts/uiV2.js +1 -0
  3948. package/dist/esm/third-party/settings/CrossSellCartUpsell/index.js +6 -0
  3949. package/dist/esm/third-party/settings/CrossSellCartUpsell/uiV1.js +1 -0
  3950. package/dist/esm/third-party/settings/CrossSellCartUpsell/uiV2.js +1 -0
  3951. package/dist/esm/third-party/settings/CustomProductOptionsVariant/index.js +4 -0
  3952. package/dist/esm/third-party/settings/CustomProductOptionsVariant/uiV1.js +1 -0
  3953. package/dist/esm/third-party/settings/CustomProductOptionsVariant/uiV2.js +1 -0
  3954. package/dist/esm/third-party/settings/DiscountyBulkDiscountSales/index.js +4 -0
  3955. package/dist/esm/third-party/settings/DiscountyBulkDiscountSales/uiV1.js +1 -0
  3956. package/dist/esm/third-party/settings/DiscountyBulkDiscountSales/uiV2.js +1 -0
  3957. package/dist/esm/third-party/settings/EasifyProductOptions/index.js +4 -0
  3958. package/dist/esm/third-party/settings/EasifyProductOptions/uiV1.js +1 -0
  3959. package/dist/esm/third-party/settings/EasifyProductOptions/uiV2.js +1 -0
  3960. package/dist/esm/third-party/settings/EasyBundleBuilderSkailama/index.js +4 -0
  3961. package/dist/esm/third-party/settings/EasyBundleBuilderSkailama/uiV1.js +1 -0
  3962. package/dist/esm/third-party/settings/EasyBundleBuilderSkailama/uiV2.js +1 -0
  3963. package/dist/esm/third-party/settings/EasySellCOD/index.js +6 -0
  3964. package/dist/esm/third-party/settings/EasySellCOD/uiV1.js +1 -0
  3965. package/dist/esm/third-party/settings/EasySellCOD/uiV2.js +1 -0
  3966. package/dist/esm/third-party/settings/EcoboostifyShoppableReelUgc/index.js +4 -0
  3967. package/dist/esm/third-party/settings/EcoboostifyShoppableReelUgc/uiV1.js +1 -0
  3968. package/dist/esm/third-party/settings/EcoboostifyShoppableReelUgc/uiV2.js +1 -0
  3969. package/dist/esm/third-party/settings/EcomsendBackInStockAlert/index.js +4 -0
  3970. package/dist/esm/third-party/settings/EcomsendBackInStockAlert/uiV1.js +1 -0
  3971. package/dist/esm/third-party/settings/EcomsendBackInStockAlert/uiV2.js +1 -0
  3972. package/dist/esm/third-party/settings/EssentialAnnouncementBar/index.js +4 -0
  3973. package/dist/esm/third-party/settings/EssentialAnnouncementBar/uiV1.js +1 -0
  3974. package/dist/esm/third-party/settings/EssentialAnnouncementBar/uiV2.js +1 -0
  3975. package/dist/esm/third-party/settings/EssentialCountdownTimerBar/index.js +4 -0
  3976. package/dist/esm/third-party/settings/EssentialCountdownTimerBar/uiV1.js +1 -0
  3977. package/dist/esm/third-party/settings/EssentialCountdownTimerBar/uiV2.js +1 -0
  3978. package/dist/esm/third-party/settings/EstimatedDeliveryDatePlus/index.js +4 -0
  3979. package/dist/esm/third-party/settings/EstimatedDeliveryDatePlus/uiV1.js +1 -0
  3980. package/dist/esm/third-party/settings/EstimatedDeliveryDatePlus/uiV2.js +1 -0
  3981. package/dist/esm/third-party/settings/FastBundleBundlesDiscounts/index.js +4 -0
  3982. package/dist/esm/third-party/settings/FastBundleBundlesDiscounts/uiV1.js +1 -0
  3983. package/dist/esm/third-party/settings/FastBundleBundlesDiscounts/uiV2.js +1 -0
  3984. package/dist/esm/third-party/settings/FeraReviews/index.js +6 -0
  3985. package/dist/esm/third-party/settings/FeraReviews/uiV1.js +1 -0
  3986. package/dist/esm/third-party/settings/FeraReviews/uiV2.js +1 -0
  3987. package/dist/esm/third-party/settings/FirePush/index.js +6 -0
  3988. package/dist/esm/third-party/settings/FirePush/uiV1.js +1 -0
  3989. package/dist/esm/third-party/settings/FirePush/uiV2.js +1 -0
  3990. package/dist/esm/third-party/settings/FlyBundlesUpsellsFbt/index.js +4 -0
  3991. package/dist/esm/third-party/settings/FlyBundlesUpsellsFbt/uiV1.js +1 -0
  3992. package/dist/esm/third-party/settings/FlyBundlesUpsellsFbt/uiV2.js +1 -0
  3993. package/dist/esm/third-party/settings/FordeerProductLabels/index.js +4 -0
  3994. package/dist/esm/third-party/settings/FordeerProductLabels/uiV1.js +1 -0
  3995. package/dist/esm/third-party/settings/FordeerProductLabels/uiV2.js +1 -0
  3996. package/dist/esm/third-party/settings/FrequentlyBoughtTogether/index.js +8 -0
  3997. package/dist/esm/third-party/settings/FrequentlyBoughtTogether/uiV1.js +1 -0
  3998. package/dist/esm/third-party/settings/FrequentlyBoughtTogether/uiV2.js +1 -0
  3999. package/dist/esm/third-party/settings/GloColorSwatchvariantImage/index.js +4 -0
  4000. package/dist/esm/third-party/settings/GloColorSwatchvariantImage/uiV1.js +1 -0
  4001. package/dist/esm/third-party/settings/GloColorSwatchvariantImage/uiV2.js +1 -0
  4002. package/dist/esm/third-party/settings/GloboProductOptionsVariant/index.js +4 -0
  4003. package/dist/esm/third-party/settings/GloboProductOptionsVariant/uiV1.js +1 -0
  4004. package/dist/esm/third-party/settings/GloboProductOptionsVariant/uiV2.js +1 -0
  4005. package/dist/esm/third-party/settings/GoogleReviewsByReputon/index.js +4 -0
  4006. package/dist/esm/third-party/settings/GoogleReviewsByReputon/uiV1.js +1 -0
  4007. package/dist/esm/third-party/settings/GoogleReviewsByReputon/uiV2.js +1 -0
  4008. package/dist/esm/third-party/settings/Growave/index.js +6 -0
  4009. package/dist/esm/third-party/settings/Growave/uiV1.js +1 -0
  4010. package/dist/esm/third-party/settings/Growave/uiV2.js +1 -0
  4011. package/dist/esm/third-party/settings/HextomCountdownTimerBar/index.js +4 -0
  4012. package/dist/esm/third-party/settings/HextomCountdownTimerBar/uiV1.js +1 -0
  4013. package/dist/esm/third-party/settings/HextomCountdownTimerBar/uiV2.js +1 -0
  4014. package/dist/esm/third-party/settings/HextomFreeShippingBar/index.js +4 -0
  4015. package/dist/esm/third-party/settings/HextomFreeShippingBar/uiV1.js +1 -0
  4016. package/dist/esm/third-party/settings/HextomFreeShippingBar/uiV2.js +1 -0
  4017. package/dist/esm/third-party/settings/HulkFormBuilder/index.js +4 -0
  4018. package/dist/esm/third-party/settings/HulkFormBuilder/uiV1.js +1 -0
  4019. package/dist/esm/third-party/settings/HulkFormBuilder/uiV2.js +1 -0
  4020. package/dist/esm/third-party/settings/HulkProductOptions/index.js +4 -0
  4021. package/dist/esm/third-party/settings/HulkProductOptions/uiV1.js +1 -0
  4022. package/dist/esm/third-party/settings/HulkProductOptions/uiV2.js +1 -0
  4023. package/dist/esm/third-party/settings/InfiniteOptions/index.js +6 -0
  4024. package/dist/esm/third-party/settings/InfiniteOptions/uiV1.js +1 -0
  4025. package/dist/esm/third-party/settings/InfiniteOptions/uiV2.js +1 -0
  4026. package/dist/esm/third-party/settings/Instafeed/index.js +6 -0
  4027. package/dist/esm/third-party/settings/Instafeed/uiV1.js +1 -0
  4028. package/dist/esm/third-party/settings/Instafeed/uiV2.js +1 -0
  4029. package/dist/esm/third-party/settings/InstasellShoppableInstagram/index.js +4 -0
  4030. package/dist/esm/third-party/settings/InstasellShoppableInstagram/uiV1.js +1 -0
  4031. package/dist/esm/third-party/settings/InstasellShoppableInstagram/uiV2.js +1 -0
  4032. package/dist/esm/third-party/settings/JudgemeReviews/index.js +6 -0
  4033. package/dist/esm/third-party/settings/JudgemeReviews/uiV1.js +1 -0
  4034. package/dist/esm/third-party/settings/JudgemeReviews/uiV2.js +1 -0
  4035. package/dist/esm/third-party/settings/JunipProductReviewsUgc/index.js +4 -0
  4036. package/dist/esm/third-party/settings/JunipProductReviewsUgc/uiV1.js +1 -0
  4037. package/dist/esm/third-party/settings/JunipProductReviewsUgc/uiV2.js +1 -0
  4038. package/dist/esm/third-party/settings/KachingBundles/index.js +6 -0
  4039. package/dist/esm/third-party/settings/KachingBundles/uiV1.js +1 -0
  4040. package/dist/esm/third-party/settings/KachingBundles/uiV2.js +1 -0
  4041. package/dist/esm/third-party/settings/KingProductOptions/index.js +6 -0
  4042. package/dist/esm/third-party/settings/KingProductOptions/uiV1.js +1 -0
  4043. package/dist/esm/third-party/settings/KingProductOptions/uiV2.js +1 -0
  4044. package/dist/esm/third-party/settings/KiteFreeGiftDiscount/index.js +4 -0
  4045. package/dist/esm/third-party/settings/KiteFreeGiftDiscount/uiV1.js +1 -0
  4046. package/dist/esm/third-party/settings/KiteFreeGiftDiscount/uiV2.js +1 -0
  4047. package/dist/esm/third-party/settings/KlarnaMessaging/index.js +5 -0
  4048. package/dist/esm/third-party/settings/KlarnaMessaging/uiV1.js +1 -0
  4049. package/dist/esm/third-party/settings/KlarnaMessaging/uiV2.js +1 -0
  4050. package/dist/esm/third-party/settings/Klaviyo/index.js +6 -0
  4051. package/dist/esm/third-party/settings/Klaviyo/uiV1.js +1 -0
  4052. package/dist/esm/third-party/settings/Klaviyo/uiV2.js +1 -0
  4053. package/dist/esm/third-party/settings/KoalaBundleQuantityDiscount/index.js +4 -0
  4054. package/dist/esm/third-party/settings/KoalaBundleQuantityDiscount/uiV1.js +1 -0
  4055. package/dist/esm/third-party/settings/KoalaBundleQuantityDiscount/uiV2.js +1 -0
  4056. package/dist/esm/third-party/settings/LaiProductReviews/index.js +6 -0
  4057. package/dist/esm/third-party/settings/LaiProductReviews/uiV1.js +1 -0
  4058. package/dist/esm/third-party/settings/LaiProductReviews/uiV2.js +1 -0
  4059. package/dist/esm/third-party/settings/LoloyalLoyaltyReferrals/index.js +4 -0
  4060. package/dist/esm/third-party/settings/LoloyalLoyaltyReferrals/uiV1.js +1 -0
  4061. package/dist/esm/third-party/settings/LoloyalLoyaltyReferrals/uiV2.js +1 -0
  4062. package/dist/esm/third-party/settings/LoopSubscriptions/index.js +4 -0
  4063. package/dist/esm/third-party/settings/LoopSubscriptions/uiV1.js +1 -0
  4064. package/dist/esm/third-party/settings/LoopSubscriptions/uiV2.js +1 -0
  4065. package/dist/esm/third-party/settings/LooxReviews/index.js +6 -0
  4066. package/dist/esm/third-party/settings/LooxReviews/uiV1.js +1 -0
  4067. package/dist/esm/third-party/settings/LooxReviews/uiV2.js +1 -0
  4068. package/dist/esm/third-party/settings/MaxbundleProductBundles/index.js +4 -0
  4069. package/dist/esm/third-party/settings/MaxbundleProductBundles/uiV1.js +1 -0
  4070. package/dist/esm/third-party/settings/MaxbundleProductBundles/uiV2.js +1 -0
  4071. package/dist/esm/third-party/settings/MbcBundleVolumeDiscount/index.js +4 -0
  4072. package/dist/esm/third-party/settings/MbcBundleVolumeDiscount/uiV1.js +1 -0
  4073. package/dist/esm/third-party/settings/MbcBundleVolumeDiscount/uiV2.js +1 -0
  4074. package/dist/esm/third-party/settings/MyappgurusProductReviews/index.js +4 -0
  4075. package/dist/esm/third-party/settings/MyappgurusProductReviews/uiV1.js +1 -0
  4076. package/dist/esm/third-party/settings/MyappgurusProductReviews/uiV2.js +1 -0
  4077. package/dist/esm/third-party/settings/NotifyBackInStockPreOrder/index.js +4 -0
  4078. package/dist/esm/third-party/settings/NotifyBackInStockPreOrder/uiV1.js +1 -0
  4079. package/dist/esm/third-party/settings/NotifyBackInStockPreOrder/uiV2.js +1 -0
  4080. package/dist/esm/third-party/settings/OkendoReviewsLoyalty/index.js +4 -0
  4081. package/dist/esm/third-party/settings/OkendoReviewsLoyalty/uiV1.js +1 -0
  4082. package/dist/esm/third-party/settings/OkendoReviewsLoyalty/uiV2.js +1 -0
  4083. package/dist/esm/third-party/settings/Omnisend/index.js +6 -0
  4084. package/dist/esm/third-party/settings/Omnisend/uiV1.js +1 -0
  4085. package/dist/esm/third-party/settings/Omnisend/uiV2.js +1 -0
  4086. package/dist/esm/third-party/settings/Opinew/index.js +6 -0
  4087. package/dist/esm/third-party/settings/Opinew/uiV1.js +1 -0
  4088. package/dist/esm/third-party/settings/Opinew/uiV2.js +1 -0
  4089. package/dist/esm/third-party/settings/ParcelPanel/index.js +6 -0
  4090. package/dist/esm/third-party/settings/ParcelPanel/uiV1.js +1 -0
  4091. package/dist/esm/third-party/settings/ParcelPanel/uiV2.js +1 -0
  4092. package/dist/esm/third-party/settings/PickyStory/index.js +6 -0
  4093. package/dist/esm/third-party/settings/PickyStory/uiV1.js +1 -0
  4094. package/dist/esm/third-party/settings/PickyStory/uiV2.js +1 -0
  4095. package/dist/esm/third-party/settings/PowerfulContactFormBuilder/index.js +4 -0
  4096. package/dist/esm/third-party/settings/PowerfulContactFormBuilder/uiV1.js +1 -0
  4097. package/dist/esm/third-party/settings/PowerfulContactFormBuilder/uiV2.js +1 -0
  4098. package/dist/esm/third-party/settings/PreorderNowPreOrderPq/index.js +4 -0
  4099. package/dist/esm/third-party/settings/PreorderNowPreOrderPq/uiV1.js +1 -0
  4100. package/dist/esm/third-party/settings/PreorderNowPreOrderPq/uiV2.js +1 -0
  4101. package/dist/esm/third-party/settings/PreorderNowWodPresale/index.js +4 -0
  4102. package/dist/esm/third-party/settings/PreorderNowWodPresale/uiV1.js +1 -0
  4103. package/dist/esm/third-party/settings/PreorderNowWodPresale/uiV2.js +1 -0
  4104. package/dist/esm/third-party/settings/ProductOptionsCustomizer/index.js +4 -0
  4105. package/dist/esm/third-party/settings/ProductOptionsCustomizer/uiV1.js +1 -0
  4106. package/dist/esm/third-party/settings/ProductOptionsCustomizer/uiV2.js +1 -0
  4107. package/dist/esm/third-party/settings/ProductOptionsVariantOption/index.js +4 -0
  4108. package/dist/esm/third-party/settings/ProductOptionsVariantOption/uiV1.js +1 -0
  4109. package/dist/esm/third-party/settings/ProductOptionsVariantOption/uiV2.js +1 -0
  4110. package/dist/esm/third-party/settings/ProductReviews/index.js +6 -0
  4111. package/dist/esm/third-party/settings/ProductReviews/uiV1.js +1 -0
  4112. package/dist/esm/third-party/settings/ProductReviews/uiV2.js +1 -0
  4113. package/dist/esm/third-party/settings/PumperBundlesVolumeDiscount/index.js +4 -0
  4114. package/dist/esm/third-party/settings/PumperBundlesVolumeDiscount/uiV1.js +1 -0
  4115. package/dist/esm/third-party/settings/PumperBundlesVolumeDiscount/uiV2.js +1 -0
  4116. package/dist/esm/third-party/settings/PushOwl/index.js +6 -0
  4117. package/dist/esm/third-party/settings/PushOwl/uiV1.js +1 -0
  4118. package/dist/esm/third-party/settings/PushOwl/uiV2.js +1 -0
  4119. package/dist/esm/third-party/settings/QikifyUpsell/index.js +6 -0
  4120. package/dist/esm/third-party/settings/QikifyUpsell/uiV1.js +1 -0
  4121. package/dist/esm/third-party/settings/QikifyUpsell/uiV2.js +1 -0
  4122. package/dist/esm/third-party/settings/RapiBundleQuantityBreaks/index.js +4 -0
  4123. package/dist/esm/third-party/settings/RapiBundleQuantityBreaks/uiV1.js +1 -0
  4124. package/dist/esm/third-party/settings/RapiBundleQuantityBreaks/uiV2.js +1 -0
  4125. package/dist/esm/third-party/settings/RechargeSubscriptions/index.js +4 -0
  4126. package/dist/esm/third-party/settings/RechargeSubscriptions/uiV1.js +1 -0
  4127. package/dist/esm/third-party/settings/RechargeSubscriptions/uiV2.js +1 -0
  4128. package/dist/esm/third-party/settings/RecurpaySubscriptionApp/index.js +4 -0
  4129. package/dist/esm/third-party/settings/RecurpaySubscriptionApp/uiV1.js +1 -0
  4130. package/dist/esm/third-party/settings/RecurpaySubscriptionApp/uiV2.js +1 -0
  4131. package/dist/esm/third-party/settings/Releasit/index.js +6 -0
  4132. package/dist/esm/third-party/settings/Releasit/uiV1.js +1 -0
  4133. package/dist/esm/third-party/settings/Releasit/uiV2.js +1 -0
  4134. package/dist/esm/third-party/settings/RequestQuoteHidePrice/index.js +4 -0
  4135. package/dist/esm/third-party/settings/RequestQuoteHidePrice/uiV1.js +1 -0
  4136. package/dist/esm/third-party/settings/RequestQuoteHidePrice/uiV2.js +1 -0
  4137. package/dist/esm/third-party/settings/ReviewxpoProductReviewsApp/index.js +4 -0
  4138. package/dist/esm/third-party/settings/ReviewxpoProductReviewsApp/uiV1.js +1 -0
  4139. package/dist/esm/third-party/settings/ReviewxpoProductReviewsApp/uiV2.js +1 -0
  4140. package/dist/esm/third-party/settings/Rivyo/index.js +6 -0
  4141. package/dist/esm/third-party/settings/Rivyo/uiV1.js +1 -0
  4142. package/dist/esm/third-party/settings/Rivyo/uiV2.js +1 -0
  4143. package/dist/esm/third-party/settings/Ryviu/index.js +6 -0
  4144. package/dist/esm/third-party/settings/Ryviu/uiV1.js +1 -0
  4145. package/dist/esm/third-party/settings/Ryviu/uiV2.js +1 -0
  4146. package/dist/esm/third-party/settings/SealSubscriptions/index.js +6 -0
  4147. package/dist/esm/third-party/settings/SealSubscriptions/uiV1.js +1 -0
  4148. package/dist/esm/third-party/settings/SealSubscriptions/uiV2.js +1 -0
  4149. package/dist/esm/third-party/settings/SegunoEmailMarketing/index.js +4 -0
  4150. package/dist/esm/third-party/settings/SegunoEmailMarketing/uiV1.js +1 -0
  4151. package/dist/esm/third-party/settings/SegunoEmailMarketing/uiV2.js +1 -0
  4152. package/dist/esm/third-party/settings/Selleasy/index.js +4 -0
  4153. package/dist/esm/third-party/settings/Selleasy/uiV1.js +1 -0
  4154. package/dist/esm/third-party/settings/Selleasy/uiV2.js +1 -0
  4155. package/dist/esm/third-party/settings/SeoantTrustBadgesIcon/index.js +4 -0
  4156. package/dist/esm/third-party/settings/SeoantTrustBadgesIcon/uiV1.js +1 -0
  4157. package/dist/esm/third-party/settings/SeoantTrustBadgesIcon/uiV2.js +1 -0
  4158. package/dist/esm/third-party/settings/ShopifyForms/index.js +4 -0
  4159. package/dist/esm/third-party/settings/ShopifyForms/uiV1.js +1 -0
  4160. package/dist/esm/third-party/settings/ShopifyForms/uiV2.js +1 -0
  4161. package/dist/esm/third-party/settings/ShopifySubscriptions/index.js +4 -0
  4162. package/dist/esm/third-party/settings/ShopifySubscriptions/uiV1.js +1 -0
  4163. package/dist/esm/third-party/settings/ShopifySubscriptions/uiV2.js +1 -0
  4164. package/dist/esm/third-party/settings/SimpleBundlesKits/index.js +4 -0
  4165. package/dist/esm/third-party/settings/SimpleBundlesKits/uiV1.js +1 -0
  4166. package/dist/esm/third-party/settings/SimpleBundlesKits/uiV2.js +1 -0
  4167. package/dist/esm/third-party/settings/SkioSubscriptionsYcS20/index.js +4 -0
  4168. package/dist/esm/third-party/settings/SkioSubscriptionsYcS20/uiV1.js +1 -0
  4169. package/dist/esm/third-party/settings/SkioSubscriptionsYcS20/uiV2.js +1 -0
  4170. package/dist/esm/third-party/settings/SmartSearchBarAndFilters/index.js +6 -0
  4171. package/dist/esm/third-party/settings/SmartSearchBarAndFilters/uiV1.js +1 -0
  4172. package/dist/esm/third-party/settings/SmartSearchBarAndFilters/uiV2.js +1 -0
  4173. package/dist/esm/third-party/settings/SproutPlantTreesGrowSales/index.js +4 -0
  4174. package/dist/esm/third-party/settings/SproutPlantTreesGrowSales/uiV1.js +1 -0
  4175. package/dist/esm/third-party/settings/SproutPlantTreesGrowSales/uiV2.js +1 -0
  4176. package/dist/esm/third-party/settings/Stamped/Badge.js +1 -0
  4177. package/dist/esm/third-party/settings/Stamped/BadgeDouble.js +1 -0
  4178. package/dist/esm/third-party/settings/Stamped/BadgeRibbon.js +1 -0
  4179. package/dist/esm/third-party/settings/Stamped/BadgeSingle.js +1 -0
  4180. package/dist/esm/third-party/settings/Stamped/Carousel.js +1 -0
  4181. package/dist/esm/third-party/settings/Stamped/CheckoutReviews.js +1 -0
  4182. package/dist/esm/third-party/settings/Stamped/Colors.js +1 -0
  4183. package/dist/esm/third-party/settings/Stamped/Filters.js +1 -0
  4184. package/dist/esm/third-party/settings/Stamped/FullPage.js +1 -0
  4185. package/dist/esm/third-party/settings/Stamped/InstagramFeed.js +1 -0
  4186. package/dist/esm/third-party/settings/Stamped/MainWidget.js +1 -0
  4187. package/dist/esm/third-party/settings/Stamped/ProductRating.js +1 -0
  4188. package/dist/esm/third-party/settings/Stamped/SingleHighlight.js +1 -0
  4189. package/dist/esm/third-party/settings/Stamped/SiteBadge.js +1 -0
  4190. package/dist/esm/third-party/settings/Stamped/TopRated.js +1 -0
  4191. package/dist/esm/third-party/settings/Stamped/VisualGallery.js +1 -0
  4192. package/dist/esm/third-party/settings/Stamped/WallPhotos.js +1 -0
  4193. package/dist/esm/third-party/settings/Stamped/index.js +1 -0
  4194. package/dist/esm/third-party/settings/Stamped.js +6 -0
  4195. package/dist/esm/third-party/settings/StellarDeliveryDatePickup/index.js +4 -0
  4196. package/dist/esm/third-party/settings/StellarDeliveryDatePickup/uiV1.js +1 -0
  4197. package/dist/esm/third-party/settings/StellarDeliveryDatePickup/uiV2.js +1 -0
  4198. package/dist/esm/third-party/settings/SubifySubscriptionsApp/index.js +4 -0
  4199. package/dist/esm/third-party/settings/SubifySubscriptionsApp/uiV1.js +1 -0
  4200. package/dist/esm/third-party/settings/SubifySubscriptionsApp/uiV2.js +1 -0
  4201. package/dist/esm/third-party/settings/TagembedSocialPostReview/index.js +4 -0
  4202. package/dist/esm/third-party/settings/TagembedSocialPostReview/uiV1.js +1 -0
  4203. package/dist/esm/third-party/settings/TagembedSocialPostReview/uiV2.js +1 -0
  4204. package/dist/esm/third-party/settings/TagshopShoppableVideosUgc/index.js +4 -0
  4205. package/dist/esm/third-party/settings/TagshopShoppableVideosUgc/uiV1.js +1 -0
  4206. package/dist/esm/third-party/settings/TagshopShoppableVideosUgc/uiV2.js +1 -0
  4207. package/dist/esm/third-party/settings/TeeinblueProductPersonalizer/index.js +4 -0
  4208. package/dist/esm/third-party/settings/TeeinblueProductPersonalizer/uiV1.js +1 -0
  4209. package/dist/esm/third-party/settings/TeeinblueProductPersonalizer/uiV2.js +1 -0
  4210. package/dist/esm/third-party/settings/TrustBadgesBear/index.js +4 -0
  4211. package/dist/esm/third-party/settings/TrustBadgesBear/uiV1.js +1 -0
  4212. package/dist/esm/third-party/settings/TrustBadgesBear/uiV2.js +1 -0
  4213. package/dist/esm/third-party/settings/TrustMe/index.js +6 -0
  4214. package/dist/esm/third-party/settings/TrustMe/uiV1.js +1 -0
  4215. package/dist/esm/third-party/settings/TrustMe/uiV2.js +1 -0
  4216. package/dist/esm/third-party/settings/TrustedsiteTrustBadges/index.js +4 -0
  4217. package/dist/esm/third-party/settings/TrustedsiteTrustBadges/uiV1.js +1 -0
  4218. package/dist/esm/third-party/settings/TrustedsiteTrustBadges/uiV2.js +1 -0
  4219. package/dist/esm/third-party/settings/Trustoo/index.js +6 -0
  4220. package/dist/esm/third-party/settings/Trustoo/uiV1.js +1 -0
  4221. package/dist/esm/third-party/settings/Trustoo/uiV2.js +1 -0
  4222. package/dist/esm/third-party/settings/TrustreviewsProductReviews/index.js +4 -0
  4223. package/dist/esm/third-party/settings/TrustreviewsProductReviews/uiV1.js +1 -0
  4224. package/dist/esm/third-party/settings/TrustreviewsProductReviews/uiV2.js +1 -0
  4225. package/dist/esm/third-party/settings/TrustshopProductReviews/index.js +4 -0
  4226. package/dist/esm/third-party/settings/TrustshopProductReviews/uiV1.js +1 -0
  4227. package/dist/esm/third-party/settings/TrustshopProductReviews/uiV2.js +1 -0
  4228. package/dist/esm/third-party/settings/UltimateSalesBoost/index.js +6 -0
  4229. package/dist/esm/third-party/settings/UltimateSalesBoost/uiV1.js +1 -0
  4230. package/dist/esm/third-party/settings/UltimateSalesBoost/uiV2.js +1 -0
  4231. package/dist/esm/third-party/settings/UnlimitedBundlesDiscounts/index.js +4 -0
  4232. package/dist/esm/third-party/settings/UnlimitedBundlesDiscounts/uiV1.js +1 -0
  4233. package/dist/esm/third-party/settings/UnlimitedBundlesDiscounts/uiV2.js +1 -0
  4234. package/dist/esm/third-party/settings/Vitals/index.js +6 -0
  4235. package/dist/esm/third-party/settings/Vitals/uiV1.js +1 -0
  4236. package/dist/esm/third-party/settings/Vitals/uiV2.js +1 -0
  4237. package/dist/esm/third-party/settings/WhatmoreShoppableVideosreel/index.js +4 -0
  4238. package/dist/esm/third-party/settings/WhatmoreShoppableVideosreel/uiV1.js +1 -0
  4239. package/dist/esm/third-party/settings/WhatmoreShoppableVideosreel/uiV2.js +1 -0
  4240. package/dist/esm/third-party/settings/WideBundle/index.js +6 -0
  4241. package/dist/esm/third-party/settings/WideBundle/uiV1.js +1 -0
  4242. package/dist/esm/third-party/settings/WideBundle/uiV2.js +1 -0
  4243. package/dist/esm/third-party/settings/Wiser/index.js +6 -0
  4244. package/dist/esm/third-party/settings/Wiser/uiV1.js +1 -0
  4245. package/dist/esm/third-party/settings/Wiser/uiV2.js +1 -0
  4246. package/dist/esm/third-party/settings/WishlistKing/index.js +4 -0
  4247. package/dist/esm/third-party/settings/WishlistKing/uiV1.js +1 -0
  4248. package/dist/esm/third-party/settings/WishlistKing/uiV2.js +1 -0
  4249. package/dist/esm/third-party/settings/WishlistPlus/index.js +6 -0
  4250. package/dist/esm/third-party/settings/WishlistPlus/uiV1.js +1 -0
  4251. package/dist/esm/third-party/settings/WishlistPlus/uiV2.js +1 -0
  4252. package/dist/esm/third-party/settings/YotpoLoyalty/index.js +6 -0
  4253. package/dist/esm/third-party/settings/YotpoLoyalty/uiV1.js +1 -0
  4254. package/dist/esm/third-party/settings/YotpoLoyalty/uiV2.js +1 -0
  4255. package/dist/esm/third-party/settings/YotpoReviews/index.js +6 -0
  4256. package/dist/esm/third-party/settings/YotpoReviews/uiV1.js +1 -0
  4257. package/dist/esm/third-party/settings/YotpoReviews/uiV2.js +1 -0
  4258. package/dist/esm/third-party/types.js +1 -0
  4259. package/dist/esm/third-party-instant/common/helpers.js +1 -0
  4260. package/dist/esm/third-party-instant/components/InstantJudgemeReviews.js +2 -71
  4261. package/dist/esm/third-party-instant/components/InstantKlaviyo.js +2 -43
  4262. package/dist/esm/third-party-instant/components/InstantLooxReviews.js +2 -32
  4263. package/dist/esm/third-party-instant/components/InstantThirdPartyPreview.js +2 -68
  4264. package/dist/esm/third-party-instant/components/InstantYotpoLoyalty.js +2 -39
  4265. package/dist/esm/third-party-instant/components/Judgeme/JudgemeSampleContent.js +2 -19
  4266. package/dist/esm/third-party-instant/components/Judgeme/SingleProduct.js +2 -44
  4267. package/dist/esm/third-party-instant/components/Judgeme/WithoutProduct.js +2 -89
  4268. package/dist/esm/third-party-instant/components/Klaviyo/KlaviyoSampleContent.js +2 -19
  4269. package/dist/esm/third-party-instant/components/LooxReviews/LooxReviewsSampleContent.js +3 -20
  4270. package/dist/esm/third-party-instant/components/LooxReviews/SingleProduct.js +2 -47
  4271. package/dist/esm/third-party-instant/components/LooxReviews/WithoutProduct.js +2 -51
  4272. package/dist/esm/third-party-instant/components/YotpoLoyalty/YotpoLoyaltySampleContent.js +2 -19
  4273. package/dist/esm/third-party-instant/configs/JudgemeReviews.js +1 -8
  4274. package/dist/esm/third-party-instant/configs/Klaviyo.js +1 -8
  4275. package/dist/esm/third-party-instant/configs/LooxReviews.js +1 -8
  4276. package/dist/esm/third-party-instant/configs/YotpoLoyalty.js +1 -8
  4277. package/dist/esm/third-party-instant/index.js +1 -0
  4278. package/dist/esm/third-party-instant/next.js +1 -29
  4279. package/dist/esm/third-party-instant/settings/InstantJudgemeReviews/configs/settings.js +1 -0
  4280. package/dist/esm/third-party-instant/settings/InstantJudgemeReviews/configs/ui-v1.js +1 -0
  4281. package/dist/esm/third-party-instant/settings/InstantJudgemeReviews/configs/ui-v2.js +1 -0
  4282. package/dist/esm/third-party-instant/settings/InstantJudgemeReviews/index.js +6 -0
  4283. package/dist/esm/third-party-instant/settings/InstantKlaviyo/configs/settings.js +1 -0
  4284. package/dist/esm/third-party-instant/settings/InstantKlaviyo/configs/ui-v1.js +1 -0
  4285. package/dist/esm/third-party-instant/settings/InstantKlaviyo/configs/ui-v2.js +1 -0
  4286. package/dist/esm/third-party-instant/settings/InstantKlaviyo/index.js +6 -0
  4287. package/dist/esm/third-party-instant/settings/InstantLooxReviews/configs/settings.js +1 -0
  4288. package/dist/esm/third-party-instant/settings/InstantLooxReviews/index.js +6 -0
  4289. package/dist/esm/third-party-instant/settings/InstantYotpoLoyalty/configs/settings.js +1 -0
  4290. package/dist/esm/third-party-instant/settings/InstantYotpoLoyalty/index.js +6 -0
  4291. package/dist/esm/third-party-instant/types.js +1 -0
  4292. package/dist/esm/third-party-slot/common/classes.js +1 -0
  4293. package/dist/esm/third-party-slot/common/helpers.js +40 -0
  4294. package/dist/esm/third-party-slot/common/styles.js +1 -0
  4295. package/dist/esm/third-party-slot/components/ThirdPartySlot.js +2 -43
  4296. package/dist/esm/third-party-slot/components/ThirdPartySlot.liquid.js +8 -52
  4297. package/dist/esm/third-party-slot/index.js +1 -0
  4298. package/dist/esm/third-party-slot/next.js +1 -12
  4299. package/dist/esm/third-party-slot/settings/ThirdPartySlot.js +10 -0
  4300. package/dist/esm/third-party-slot/settings/configs/settings.js +1 -0
  4301. package/dist/esm/third-party-slot/settings/configs/ui-v1.js +1 -0
  4302. package/dist/esm/third-party-slot/settings/configs/ui-v2.js +1 -0
  4303. package/dist/esm/validates/background.js +1 -0
  4304. package/dist/esm/video/common/attrs.js +1 -0
  4305. package/dist/esm/video/common/classes.js +1 -0
  4306. package/dist/esm/video/common/helpers.js +1 -0
  4307. package/dist/esm/video/common/styles.js +1 -0
  4308. package/dist/esm/video/components/HTML5Embed.js +2 -79
  4309. package/dist/esm/video/components/HTML5Embed.liquid.js +38 -83
  4310. package/dist/esm/video/components/LiteVimeoEmbed.js +2 -113
  4311. package/dist/esm/video/components/LiteVimeoEmbed.liquid.js +18 -52
  4312. package/dist/esm/video/components/LiteYouTubeEmbed.js +2 -191
  4313. package/dist/esm/video/components/LiteYouTubeEmbed.liquid.js +21 -79
  4314. package/dist/esm/video/components/Video.js +2 -108
  4315. package/dist/esm/video/components/Video.liquid.js +4 -103
  4316. package/dist/esm/video/hooks/useLiteHtml5Embed.js +1 -0
  4317. package/dist/esm/video/hooks/useLiteVimeoEmbed.js +1 -0
  4318. package/dist/esm/video/hooks/useLiteYoutubeEmbed.js +1 -0
  4319. package/dist/esm/video/index.js +1 -0
  4320. package/dist/esm/video/next.js +1 -12
  4321. package/dist/esm/video/settings/Video.js +12 -0
  4322. package/dist/esm/video/settings/configs/settings.js +1 -0
  4323. package/dist/esm/video/settings/configs/ui-v1.js +1 -0
  4324. package/dist/esm/video/settings/configs/ui-v2.js +1 -0
  4325. package/dist/types/index.d.ts +5866 -6366
  4326. package/package.json +15 -7
  4327. package/dist/cjs/accordion/setting/Accordion.js +0 -1458
  4328. package/dist/cjs/accordion/setting/AccordionItem.js +0 -34
  4329. package/dist/cjs/accordion/setting/ItemTemplate.js +0 -49
  4330. package/dist/cjs/accordion/setting/index.js +0 -13
  4331. package/dist/cjs/article/setting/ArticleAuthor.js +0 -315
  4332. package/dist/cjs/article/setting/ArticleCategory.js +0 -296
  4333. package/dist/cjs/article/setting/ArticleContent.js +0 -295
  4334. package/dist/cjs/article/setting/ArticleDate.js +0 -340
  4335. package/dist/cjs/article/setting/ArticleExcerpt.js +0 -344
  4336. package/dist/cjs/article/setting/ArticleImage.js +0 -337
  4337. package/dist/cjs/article/setting/ArticleList.js +0 -877
  4338. package/dist/cjs/article/setting/ArticlePagination.js +0 -334
  4339. package/dist/cjs/article/setting/ArticleReadMore.js +0 -1096
  4340. package/dist/cjs/article/setting/ArticleTag.js +0 -296
  4341. package/dist/cjs/article/setting/ArticleTitle.js +0 -380
  4342. package/dist/cjs/article/setting/index.js +0 -31
  4343. package/dist/cjs/article/utils/string.js +0 -7
  4344. package/dist/cjs/banner/components/hero-banner/hooks/useAspectRatioSettings.js +0 -28
  4345. package/dist/cjs/banner/components/hero-banner/hooks/useIntersectionObserver.js +0 -42
  4346. package/dist/cjs/banner/components/hero-banner/hooks/useTranslateValue.js +0 -38
  4347. package/dist/cjs/banner/components/hero-banner/hooks/useWindowSize.js +0 -28
  4348. package/dist/cjs/banner/components/hero-banner/index.js +0 -380
  4349. package/dist/cjs/banner/components/hero-banner/index.liquid.js +0 -340
  4350. package/dist/cjs/banner/components/hero-banner/parallax/AnimationManager.js +0 -47
  4351. package/dist/cjs/banner/components/hero-banner/utils/index.js +0 -142
  4352. package/dist/cjs/banner/helpers/common.js +0 -342
  4353. package/dist/cjs/banner/next.js +0 -16
  4354. package/dist/cjs/banner/setting/HeroBanner.js +0 -1422
  4355. package/dist/cjs/banner/setting/index.js +0 -11
  4356. package/dist/cjs/banner/setting/presets/heroBanner1Col.js +0 -128
  4357. package/dist/cjs/banner/setting/presets/heroBanner1ColPreSalesPage.js +0 -134
  4358. package/dist/cjs/banner/setting/presets/heroBannerContentLeft.js +0 -148
  4359. package/dist/cjs/banner/setting/presets/heroBannerContentLeftPreSalesPage.js +0 -154
  4360. package/dist/cjs/banner/setting/presets/heroBannerContentRight.js +0 -157
  4361. package/dist/cjs/banner/setting/presets/heroBannerContentRightPreSalesPage.js +0 -162
  4362. package/dist/cjs/banner/setting/presets/heroBannerParallax.js +0 -128
  4363. package/dist/cjs/banner/setting/presets/heroBannerParallaxPreSalesPage.js +0 -134
  4364. package/dist/cjs/banner/setting/presets/heroBannerVideo.js +0 -123
  4365. package/dist/cjs/banner/setting/presets/heroBannerVideoPreSalesPage.js +0 -130
  4366. package/dist/cjs/breadcrumb/helpers/common.js +0 -23
  4367. package/dist/cjs/breadcrumb/setting/Breadcrumb.js +0 -449
  4368. package/dist/cjs/breadcrumb/setting/index.js +0 -11
  4369. package/dist/cjs/button/setting/Button.js +0 -917
  4370. package/dist/cjs/button/setting/index.js +0 -11
  4371. package/dist/cjs/carousel/components/Arrow.js +0 -106
  4372. package/dist/cjs/carousel/components/Arrow.liquid.js +0 -103
  4373. package/dist/cjs/carousel/components/Carousel.js +0 -620
  4374. package/dist/cjs/carousel/components/Carousel.liquid.js +0 -232
  4375. package/dist/cjs/carousel/components/CarouselItem.js +0 -83
  4376. package/dist/cjs/carousel/components/CarouselItem.liquid.js +0 -96
  4377. package/dist/cjs/carousel/components/Dots.js +0 -68
  4378. package/dist/cjs/carousel/components/Dots.liquid.js +0 -23
  4379. package/dist/cjs/carousel/components/common/arrow.js +0 -130
  4380. package/dist/cjs/carousel/components/common/carousel.js +0 -98
  4381. package/dist/cjs/carousel/components/common/dots.js +0 -56
  4382. package/dist/cjs/carousel/components/hooks/useTrackPreviewPause.js +0 -34
  4383. package/dist/cjs/carousel/components/plugins/AnimationPlugin.js +0 -42
  4384. package/dist/cjs/carousel/components/plugins/AutoPlayPlugin.js +0 -105
  4385. package/dist/cjs/carousel/components/plugins/FixSliderMoveBackwards.js +0 -15
  4386. package/dist/cjs/carousel/components/plugins/MutationPlugin.js +0 -45
  4387. package/dist/cjs/carousel/setting/Carousel.js +0 -1590
  4388. package/dist/cjs/carousel/setting/CarouselItem.js +0 -40
  4389. package/dist/cjs/carousel/setting/index.js +0 -13
  4390. package/dist/cjs/cart/components/ShopPayButton/ShopPayButtonCommon.js +0 -20
  4391. package/dist/cjs/cart/components/ShopPayButton/icons/BaseIcon.js +0 -16
  4392. package/dist/cjs/cart/components/ShopPayButton/icons/BaseIcon.liquid.js +0 -17
  4393. package/dist/cjs/cart/components/ShopPayButton/icons/DynamicCheckoutBlack.js +0 -50
  4394. package/dist/cjs/cart/components/ShopPayButton/icons/DynamicCheckoutBlack.liquid.js +0 -46
  4395. package/dist/cjs/cart/components/ShopPayButton/icons/DynamicCheckoutPurple.js +0 -50
  4396. package/dist/cjs/cart/components/ShopPayButton/icons/DynamicCheckoutPurple.liquid.js +0 -46
  4397. package/dist/cjs/cart/components/ShopPayButton/icons/DynamicCheckoutWhite.js +0 -48
  4398. package/dist/cjs/cart/components/ShopPayButton/icons/DynamicCheckoutWhite.liquid.js +0 -32
  4399. package/dist/cjs/cart/components/ShopPayButton/icons/ExpressCheckoutBlack.js +0 -46
  4400. package/dist/cjs/cart/components/ShopPayButton/icons/ExpressCheckoutBlack.liquid.js +0 -42
  4401. package/dist/cjs/cart/components/ShopPayButton/icons/ExpressCheckoutPurple.js +0 -46
  4402. package/dist/cjs/cart/components/ShopPayButton/icons/ExpressCheckoutPurple.liquid.js +0 -42
  4403. package/dist/cjs/cart/components/ShopPayButton/icons/ExpressCheckoutWhite.js +0 -46
  4404. package/dist/cjs/cart/components/ShopPayButton/icons/ExpressCheckoutWhite.liquid.js +0 -42
  4405. package/dist/cjs/cart/components/ShopPayButton/index.js +0 -112
  4406. package/dist/cjs/cart/components/ShopPayButton/index.liquid.js +0 -51
  4407. package/dist/cjs/cart/setting/Cart.js +0 -71
  4408. package/dist/cjs/cart/setting/CartCheckout.js +0 -20
  4409. package/dist/cjs/cart/setting/CartDiscount.js +0 -20
  4410. package/dist/cjs/cart/setting/CartLineAttribute.js +0 -29
  4411. package/dist/cjs/cart/setting/CartLineImage.js +0 -165
  4412. package/dist/cjs/cart/setting/CartLinePrice.js +0 -29
  4413. package/dist/cjs/cart/setting/CartLineVariant.js +0 -29
  4414. package/dist/cjs/cart/setting/CartList.js +0 -139
  4415. package/dist/cjs/cart/setting/CartOrderNote.js +0 -44
  4416. package/dist/cjs/cart/setting/CartTotalItem.js +0 -29
  4417. package/dist/cjs/cart/setting/CartTotalPrice.js +0 -58
  4418. package/dist/cjs/cart/setting/CouponList.js +0 -20
  4419. package/dist/cjs/cart/setting/DiscountInput.js +0 -33
  4420. package/dist/cjs/cart/setting/ShopPayButton.js +0 -171
  4421. package/dist/cjs/cart/setting/index.js +0 -37
  4422. package/dist/cjs/code/setting/CSSCode.js +0 -179
  4423. package/dist/cjs/code/setting/index.js +0 -11
  4424. package/dist/cjs/collection/components/CollectionBanner.js +0 -97
  4425. package/dist/cjs/collection/components/CollectionBanner.liquid.js +0 -94
  4426. package/dist/cjs/collection/components/CollectionDescription.js +0 -114
  4427. package/dist/cjs/collection/components/CollectionDescription.liquid.js +0 -114
  4428. package/dist/cjs/collection/components/CollectionPaginator.js +0 -150
  4429. package/dist/cjs/collection/components/CollectionPaginator.liquid.js +0 -72
  4430. package/dist/cjs/collection/components/CollectionTitle.js +0 -22
  4431. package/dist/cjs/collection/components/CollectionTitle.liquid.js +0 -21
  4432. package/dist/cjs/collection/components/CollectionToolbar.js +0 -111
  4433. package/dist/cjs/collection/components/CollectionToolbar.liquid.js +0 -108
  4434. package/dist/cjs/collection/setting/CollectionBanner.js +0 -570
  4435. package/dist/cjs/collection/setting/CollectionDescription.js +0 -266
  4436. package/dist/cjs/collection/setting/CollectionPaginator.js +0 -340
  4437. package/dist/cjs/collection/setting/CollectionTitle.js +0 -191
  4438. package/dist/cjs/collection/setting/CollectionToolbar.js +0 -287
  4439. package/dist/cjs/collection/setting/index.js +0 -19
  4440. package/dist/cjs/constants.js +0 -5
  4441. package/dist/cjs/countdown-timer/helpers.js +0 -99
  4442. package/dist/cjs/countdown-timer/setting/Countdown.js +0 -893
  4443. package/dist/cjs/countdown-timer/setting/index.js +0 -11
  4444. package/dist/cjs/coupon/setting/Coupon.js +0 -1207
  4445. package/dist/cjs/coupon/setting/index.js +0 -11
  4446. package/dist/cjs/dialog/helpers/common.js +0 -85
  4447. package/dist/cjs/dialog/hooks/use-scroll-percentage.js +0 -34
  4448. package/dist/cjs/dialog/setting/Dialog.js +0 -628
  4449. package/dist/cjs/dialog/setting/index.js +0 -11
  4450. package/dist/cjs/estimate-delivery/const.js +0 -162
  4451. package/dist/cjs/estimate-delivery/setting/EstimateDate.js +0 -581
  4452. package/dist/cjs/estimate-delivery/setting/index.js +0 -11
  4453. package/dist/cjs/form/setting/Contact.js +0 -62
  4454. package/dist/cjs/form/setting/ContactInitConfig.js +0 -264
  4455. package/dist/cjs/form/setting/FormCheckbox.js +0 -238
  4456. package/dist/cjs/form/setting/FormCheckboxInitConfig.js +0 -18
  4457. package/dist/cjs/form/setting/FormDropdown.js +0 -275
  4458. package/dist/cjs/form/setting/FormDropdownInitConfig.js +0 -41
  4459. package/dist/cjs/form/setting/FormEmail.js +0 -287
  4460. package/dist/cjs/form/setting/FormEmailInitConfig.js +0 -41
  4461. package/dist/cjs/form/setting/Newsletter.js +0 -177
  4462. package/dist/cjs/form/setting/NewsletterInitConfig.js +0 -145
  4463. package/dist/cjs/form/setting/SubmitButton.js +0 -677
  4464. package/dist/cjs/form/setting/SubmitButtonInitConfig.js +0 -30
  4465. package/dist/cjs/form/setting/TextField.js +0 -333
  4466. package/dist/cjs/form/setting/Textarea.js +0 -337
  4467. package/dist/cjs/form/setting/index.js +0 -25
  4468. package/dist/cjs/grid/components/Col.js +0 -42
  4469. package/dist/cjs/grid/components/Col.liquid.js +0 -40
  4470. package/dist/cjs/grid/components/Root.js +0 -13
  4471. package/dist/cjs/grid/components/Root.liquid.js +0 -9
  4472. package/dist/cjs/grid/components/Row.js +0 -181
  4473. package/dist/cjs/grid/components/Row.liquid.js +0 -75
  4474. package/dist/cjs/grid/components/Section.js +0 -27
  4475. package/dist/cjs/grid/components/Section.liquid.js +0 -17
  4476. package/dist/cjs/grid/components/helpers.js +0 -71
  4477. package/dist/cjs/grid/setting/Col.js +0 -34
  4478. package/dist/cjs/grid/setting/Root.js +0 -19
  4479. package/dist/cjs/grid/setting/Row.js +0 -1005
  4480. package/dist/cjs/grid/setting/Section.js +0 -525
  4481. package/dist/cjs/grid/setting/index.js +0 -17
  4482. package/dist/cjs/header/hooks/use-body-overlay.js +0 -21
  4483. package/dist/cjs/header/setting/Header.js +0 -727
  4484. package/dist/cjs/header/setting/index.js +0 -11
  4485. package/dist/cjs/heading/Heading.js +0 -46
  4486. package/dist/cjs/heading/Heading.liquid.js +0 -47
  4487. package/dist/cjs/heading/setting/Heading.js +0 -411
  4488. package/dist/cjs/heading/setting/index.js +0 -11
  4489. package/dist/cjs/icon/setting/Icon.js +0 -442
  4490. package/dist/cjs/icon/setting/index.js +0 -11
  4491. package/dist/cjs/icon-list/setting/IconList.js +0 -339
  4492. package/dist/cjs/icon-list/setting/IconListItem.js +0 -40
  4493. package/dist/cjs/icon-list/setting/ItemTemplate.js +0 -340
  4494. package/dist/cjs/icon-list/setting/index.js +0 -13
  4495. package/dist/cjs/icon-list-hoz/components/IconListItemHoz.liquid.js +0 -23
  4496. package/dist/cjs/icon-list-hoz/setting/IconListHoz.js +0 -362
  4497. package/dist/cjs/icon-list-hoz/setting/IconListItem.js +0 -40
  4498. package/dist/cjs/icon-list-hoz/setting/ItemTemplate.js +0 -121
  4499. package/dist/cjs/icon-list-hoz/setting/index.js +0 -13
  4500. package/dist/cjs/icon-list-v2/setting/IconList.js +0 -577
  4501. package/dist/cjs/icon-list-v2/setting/index.js +0 -11
  4502. package/dist/cjs/icon-list-v2/setting/template.js +0 -112
  4503. package/dist/cjs/image/components/BackgroundImage.js +0 -101
  4504. package/dist/cjs/image/components/Img.js +0 -27
  4505. package/dist/cjs/image/components/helpers.js +0 -29
  4506. package/dist/cjs/image/helpers/getSrcSet.js +0 -264
  4507. package/dist/cjs/image/setting/BackgroundImage.js +0 -364
  4508. package/dist/cjs/image/setting/Image.js +0 -864
  4509. package/dist/cjs/image/setting/index.js +0 -13
  4510. package/dist/cjs/image-comparison/components/common/helpers.js +0 -13
  4511. package/dist/cjs/image-comparison/constants/commonStyles.js +0 -62
  4512. package/dist/cjs/image-comparison/setting/ImageComparison.js +0 -914
  4513. package/dist/cjs/image-comparison/setting/index.js +0 -11
  4514. package/dist/cjs/image-detection/ImageDetection.js +0 -236
  4515. package/dist/cjs/image-detection/setting/ImageDetection.js +0 -76
  4516. package/dist/cjs/image-detection/setting/index.js +0 -11
  4517. package/dist/cjs/input/Input.js +0 -117
  4518. package/dist/cjs/input/setting/Input.js +0 -126
  4519. package/dist/cjs/input/setting/index.js +0 -11
  4520. package/dist/cjs/intersection-observer/useInView.js +0 -88
  4521. package/dist/cjs/line/Divider.js +0 -34
  4522. package/dist/cjs/line/Divider.liquid.js +0 -35
  4523. package/dist/cjs/line/Line.js +0 -166
  4524. package/dist/cjs/line/Line.liquid.js +0 -163
  4525. package/dist/cjs/line/setting/Line.js +0 -590
  4526. package/dist/cjs/line/setting/index.js +0 -11
  4527. package/dist/cjs/link/helpers/url-join.js +0 -56
  4528. package/dist/cjs/link/setting/Link.js +0 -68
  4529. package/dist/cjs/link/setting/index.js +0 -11
  4530. package/dist/cjs/marquee/setting/Marquee.js +0 -761
  4531. package/dist/cjs/marquee/setting/MarqueeItem.js +0 -41
  4532. package/dist/cjs/marquee/setting/childImageTemplate.js +0 -80
  4533. package/dist/cjs/marquee/setting/childTemplate.js +0 -39
  4534. package/dist/cjs/marquee/setting/childTextTemplate.js +0 -65
  4535. package/dist/cjs/marquee/setting/index.js +0 -13
  4536. package/dist/cjs/menu/setting/Menu.js +0 -216
  4537. package/dist/cjs/menu/setting/index.js +0 -11
  4538. package/dist/cjs/modal/setting/Modal.js +0 -27
  4539. package/dist/cjs/modal/setting/index.js +0 -11
  4540. package/dist/cjs/notification/hooks/use-notification.js +0 -120
  4541. package/dist/cjs/pagination/Pagination.js +0 -186
  4542. package/dist/cjs/pagination/setting/Pagination.js +0 -75
  4543. package/dist/cjs/pagination/setting/index.js +0 -11
  4544. package/dist/cjs/post-purchase/advanced-list/setting/AdvancedListPostPurchase.js +0 -186
  4545. package/dist/cjs/post-purchase/advanced-list/setting/PostPurchaseAdvancedListItem.js +0 -41
  4546. package/dist/cjs/post-purchase/advanced-list/setting/index.js +0 -13
  4547. package/dist/cjs/post-purchase/advanced-list/setting/template.js +0 -80
  4548. package/dist/cjs/post-purchase/button/Button.js +0 -87
  4549. package/dist/cjs/post-purchase/button/setting/Button.js +0 -228
  4550. package/dist/cjs/post-purchase/button/setting/index.js +0 -11
  4551. package/dist/cjs/post-purchase/callout-banner/setting/CalloutBox.js +0 -443
  4552. package/dist/cjs/post-purchase/callout-banner/setting/CalloutText.js +0 -296
  4553. package/dist/cjs/post-purchase/callout-banner/setting/index.js +0 -13
  4554. package/dist/cjs/post-purchase/countdown-timer/settings/index.js +0 -11
  4555. package/dist/cjs/post-purchase/image/setting/Image.js +0 -297
  4556. package/dist/cjs/post-purchase/image/setting/index.js +0 -11
  4557. package/dist/cjs/post-purchase/line/setting/PostPurchaseLine.js +0 -259
  4558. package/dist/cjs/post-purchase/line/setting/index.js +0 -11
  4559. package/dist/cjs/post-purchase/next.js +0 -37
  4560. package/dist/cjs/post-purchase/product/components/ProductOffer.js +0 -134
  4561. package/dist/cjs/post-purchase/product/components/ProductVariant.js +0 -244
  4562. package/dist/cjs/post-purchase/product/components/priceBreakdown/MoneyLine.js +0 -45
  4563. package/dist/cjs/post-purchase/product/components/product-image/Arrow.js +0 -59
  4564. package/dist/cjs/post-purchase/product/components/product-image/CarouselPostPurchase.js +0 -77
  4565. package/dist/cjs/post-purchase/product/components/variants/Dropdown.js +0 -126
  4566. package/dist/cjs/post-purchase/product/components/variants/DropdownOption.js +0 -22
  4567. package/dist/cjs/post-purchase/product/components/variants/RectangleList.js +0 -44
  4568. package/dist/cjs/post-purchase/product/components/variants/VariantGroup.js +0 -38
  4569. package/dist/cjs/post-purchase/product/components/variants/VariantItem.js +0 -105
  4570. package/dist/cjs/post-purchase/product/components/variants/VariantOption.js +0 -20
  4571. package/dist/cjs/post-purchase/product/settings/AcceptButton.js +0 -241
  4572. package/dist/cjs/post-purchase/product/settings/ProductDescription.js +0 -138
  4573. package/dist/cjs/post-purchase/product/settings/ProductDiscountTag.js +0 -130
  4574. package/dist/cjs/post-purchase/product/settings/ProductOffer.js +0 -536
  4575. package/dist/cjs/post-purchase/product/settings/ProductPrice.js +0 -191
  4576. package/dist/cjs/post-purchase/product/settings/ProductPriceBreakdown.js +0 -429
  4577. package/dist/cjs/post-purchase/product/settings/ProductQuantity.js +0 -215
  4578. package/dist/cjs/post-purchase/product/settings/ProductTitle.js +0 -176
  4579. package/dist/cjs/post-purchase/product/settings/ProductVariant.js +0 -601
  4580. package/dist/cjs/post-purchase/product/settings/index.js +0 -29
  4581. package/dist/cjs/post-purchase/text/Text.js +0 -76
  4582. package/dist/cjs/post-purchase/text/setting/Heading.js +0 -46
  4583. package/dist/cjs/post-purchase/text/setting/Text.js +0 -231
  4584. package/dist/cjs/post-purchase/text/setting/index.js +0 -13
  4585. package/dist/cjs/post-purchase/utils/constants.js +0 -49
  4586. package/dist/cjs/post-purchase/utils/helper.js +0 -87
  4587. package/dist/cjs/product/components/DynamicCheckout.js +0 -27
  4588. package/dist/cjs/product/components/DynamicCheckout.liquid.js +0 -189
  4589. package/dist/cjs/product/components/FileUpload.js +0 -116
  4590. package/dist/cjs/product/components/FileUpload.liquid.js +0 -131
  4591. package/dist/cjs/product/components/Product.js +0 -111
  4592. package/dist/cjs/product/components/Product.liquid.js +0 -134
  4593. package/dist/cjs/product/components/ProductBadge/constants.js +0 -22
  4594. package/dist/cjs/product/components/ProductBadge/index.js +0 -182
  4595. package/dist/cjs/product/components/ProductBadge/index.liquid.js +0 -135
  4596. package/dist/cjs/product/components/ProductBadge/types.js +0 -35
  4597. package/dist/cjs/product/components/ProductBadge/utils/common.js +0 -291
  4598. package/dist/cjs/product/components/ProductBadge/utils/generateLiquidContent.js +0 -30
  4599. package/dist/cjs/product/components/ProductBadge/utils/getRotateShape.js +0 -93
  4600. package/dist/cjs/product/components/ProductBadge/utils/getShapePosition.js +0 -190
  4601. package/dist/cjs/product/components/ProductBadge/utils/getStyleAdvanced.js +0 -40
  4602. package/dist/cjs/product/components/ProductBadge/utils/getWhiteSpace.js +0 -19
  4603. package/dist/cjs/product/components/ProductBadge/utils/renderBadgeILP.js +0 -130
  4604. package/dist/cjs/product/components/ProductBadge/utils/renderBadgeLiquid.js +0 -243
  4605. package/dist/cjs/product/components/ProductBadge/utils/shape.js +0 -98
  4606. package/dist/cjs/product/components/ProductBundleDiscount.js +0 -196
  4607. package/dist/cjs/product/components/ProductBundleDiscount.liquid.js +0 -81
  4608. package/dist/cjs/product/components/ProductBundleDiscountItem.js +0 -41
  4609. package/dist/cjs/product/components/ProductBundleDiscountItem.liquid.js +0 -103
  4610. package/dist/cjs/product/components/ProductButton.js +0 -486
  4611. package/dist/cjs/product/components/ProductButton.liquid.js +0 -320
  4612. package/dist/cjs/product/components/ProductDescription/common.js +0 -28
  4613. package/dist/cjs/product/components/ProductDescription/const.js +0 -5
  4614. package/dist/cjs/product/components/ProductDescription.js +0 -149
  4615. package/dist/cjs/product/components/ProductDescription.liquid.js +0 -137
  4616. package/dist/cjs/product/components/ProductImages/ProductFeaturedImage.js +0 -267
  4617. package/dist/cjs/product/components/ProductImages/ProductGalleryCarousel.js +0 -203
  4618. package/dist/cjs/product/components/ProductImages/ProductGalleryGrid.js +0 -163
  4619. package/dist/cjs/product/components/ProductImages/ProductImagesLightBox.js +0 -118
  4620. package/dist/cjs/product/components/ProductImages/common/common.js +0 -112
  4621. package/dist/cjs/product/components/ProductImages/common/productFeaturedImage.js +0 -98
  4622. package/dist/cjs/product/components/ProductImages/common/productGallery.js +0 -199
  4623. package/dist/cjs/product/components/ProductImages/liquid/ProductFeaturedImage.liquid.js +0 -176
  4624. package/dist/cjs/product/components/ProductImages/liquid/ProductGalleryCarousel.liquid.js +0 -171
  4625. package/dist/cjs/product/components/ProductImages/liquid/ProductGalleryGrid.liquid.js +0 -137
  4626. package/dist/cjs/product/components/ProductImagesV2/common/common.js +0 -309
  4627. package/dist/cjs/product/components/ProductImagesV2/common/hoverAction.js +0 -95
  4628. package/dist/cjs/product/components/ProductImagesV2/common/productFeaturedImage.js +0 -63
  4629. package/dist/cjs/product/components/ProductImagesV2/common/productGallery.js +0 -266
  4630. package/dist/cjs/product/components/ProductImagesV2/jsx/ProductImages.js +0 -255
  4631. package/dist/cjs/product/components/ProductImagesV2/jsx/components/ButtonOpenLightBox.js +0 -27
  4632. package/dist/cjs/product/components/ProductImagesV2/jsx/components/MediaIcon.js +0 -62
  4633. package/dist/cjs/product/components/ProductImagesV2/jsx/components/ProductFeatureVideo.js +0 -34
  4634. package/dist/cjs/product/components/ProductImagesV2/jsx/components/ProductFeaturedImageCarousel.js +0 -391
  4635. package/dist/cjs/product/components/ProductImagesV2/jsx/components/ProductFeaturedImageOnly.js +0 -138
  4636. package/dist/cjs/product/components/ProductImagesV2/jsx/components/ProductGalleryCarousel.js +0 -303
  4637. package/dist/cjs/product/components/ProductImagesV2/jsx/components/ProductGalleryGrid.js +0 -202
  4638. package/dist/cjs/product/components/ProductImagesV2/jsx/components/ProductImagesLightBox.js +0 -143
  4639. package/dist/cjs/product/components/ProductImagesV2/jsx/layouts/FeatureImageWithGallery.js +0 -256
  4640. package/dist/cjs/product/components/ProductImagesV2/jsx/layouts/GalleryOneCol.js +0 -24
  4641. package/dist/cjs/product/components/ProductImagesV2/jsx/layouts/GalleryTwoCol.js +0 -24
  4642. package/dist/cjs/product/components/ProductImagesV2/jsx/layouts/OnlyFeatureImage.js +0 -35
  4643. package/dist/cjs/product/components/ProductImagesV2/liquid/ProductFeaturedImageCarousel.liquid.js +0 -524
  4644. package/dist/cjs/product/components/ProductImagesV2/liquid/ProductGalleryCarousel.liquid.js +0 -305
  4645. package/dist/cjs/product/components/ProductImagesV2/liquid/ProductGalleryGrid.liquid.js +0 -341
  4646. package/dist/cjs/product/components/ProductImagesV2/liquid/ProductImages.liquid.js +0 -154
  4647. package/dist/cjs/product/components/ProductList.js +0 -423
  4648. package/dist/cjs/product/components/ProductList.liquid.js +0 -398
  4649. package/dist/cjs/product/components/ProductNotFoundRelated.js +0 -65
  4650. package/dist/cjs/product/components/ProductPrice.js +0 -168
  4651. package/dist/cjs/product/components/ProductPrice.liquid.js +0 -88
  4652. package/dist/cjs/product/components/ProductProperties/ProductPropertyChoice.js +0 -56
  4653. package/dist/cjs/product/components/ProductProperties/ProductPropertyChoice.liquid.js +0 -64
  4654. package/dist/cjs/product/components/ProductProperties/ProductPropertyInput.js +0 -73
  4655. package/dist/cjs/product/components/ProductProperties/ProductPropertyInput.liquid.js +0 -115
  4656. package/dist/cjs/product/components/ProductProperties/ProductPropertySelect.js +0 -41
  4657. package/dist/cjs/product/components/ProductProperties/ProductPropertySelect.liquid.js +0 -57
  4658. package/dist/cjs/product/components/ProductProperties.js +0 -269
  4659. package/dist/cjs/product/components/ProductProperties.liquid.js +0 -158
  4660. package/dist/cjs/product/components/ProductQuantity.js +0 -220
  4661. package/dist/cjs/product/components/ProductQuantity.liquid.js +0 -170
  4662. package/dist/cjs/product/components/ProductQuickView/ProductQuickView.js +0 -158
  4663. package/dist/cjs/product/components/ProductQuickView/index.js +0 -20
  4664. package/dist/cjs/product/components/ProductTag.js +0 -174
  4665. package/dist/cjs/product/components/ProductTag.liquid.js +0 -107
  4666. package/dist/cjs/product/components/ProductTitle.js +0 -42
  4667. package/dist/cjs/product/components/ProductTitle.liquid.js +0 -44
  4668. package/dist/cjs/product/components/ProductVariants/common.js +0 -68
  4669. package/dist/cjs/product/components/ProductVariants/hooks/useVariantInteraction.js +0 -43
  4670. package/dist/cjs/product/components/ProductVariants/index.js +0 -351
  4671. package/dist/cjs/product/components/ProductVariants/index.liquid.js +0 -367
  4672. package/dist/cjs/product/components/ProductVariants/utils/mappingVariantStyles.js +0 -120
  4673. package/dist/cjs/product/components/ProductVariants/variants/Base.js +0 -292
  4674. package/dist/cjs/product/components/ProductVariants/variants/Base.liquid.js +0 -168
  4675. package/dist/cjs/product/components/ProductVariants/variants/Color.js +0 -22
  4676. package/dist/cjs/product/components/ProductVariants/variants/Color.liquid.js +0 -29
  4677. package/dist/cjs/product/components/ProductVariants/variants/Dropdown.js +0 -153
  4678. package/dist/cjs/product/components/ProductVariants/variants/Dropdown.liquid.js +0 -130
  4679. package/dist/cjs/product/components/ProductVariants/variants/DropdownGroup.liquid.js +0 -57
  4680. package/dist/cjs/product/components/ProductVariants/variants/DropdownOption.js +0 -21
  4681. package/dist/cjs/product/components/ProductVariants/variants/Image.js +0 -22
  4682. package/dist/cjs/product/components/ProductVariants/variants/Image.liquid.js +0 -23
  4683. package/dist/cjs/product/components/ProductVariants/variants/ImageShopify.js +0 -39
  4684. package/dist/cjs/product/components/ProductVariants/variants/ImageShopify.liquid.js +0 -35
  4685. package/dist/cjs/product/components/ProductVariants/variants/RadioButtons.js +0 -62
  4686. package/dist/cjs/product/components/ProductVariants/variants/RectangleList.js +0 -68
  4687. package/dist/cjs/product/components/ProductVariants/variants/VariantGroup.js +0 -38
  4688. package/dist/cjs/product/components/ProductVariants/variants/VariantOption/index.js +0 -20
  4689. package/dist/cjs/product/components/ProductVariants/variants/combine/index.js +0 -47
  4690. package/dist/cjs/product/components/ProductVariants/variants/index.js +0 -137
  4691. package/dist/cjs/product/components/ProductVariants/variants/index.liquid.js +0 -148
  4692. package/dist/cjs/product/components/ProductViewMore.js +0 -31
  4693. package/dist/cjs/product/components/ProductViewMore.liquid.js +0 -37
  4694. package/dist/cjs/product/components/Sku.js +0 -35
  4695. package/dist/cjs/product/components/Sku.liquid.js +0 -36
  4696. package/dist/cjs/product/components/Vendor.js +0 -47
  4697. package/dist/cjs/product/components/Vendor.liquid.js +0 -43
  4698. package/dist/cjs/product/setting/DynamicCheckout.js +0 -566
  4699. package/dist/cjs/product/setting/FileUpload.js +0 -964
  4700. package/dist/cjs/product/setting/Product.js +0 -600
  4701. package/dist/cjs/product/setting/ProductBadge.js +0 -533
  4702. package/dist/cjs/product/setting/ProductBundleDiscount.js +0 -861
  4703. package/dist/cjs/product/setting/ProductBundleDiscountItem.js +0 -35
  4704. package/dist/cjs/product/setting/ProductButton.js +0 -1446
  4705. package/dist/cjs/product/setting/ProductDescription.js +0 -310
  4706. package/dist/cjs/product/setting/ProductImages.js +0 -1224
  4707. package/dist/cjs/product/setting/ProductList.js +0 -1660
  4708. package/dist/cjs/product/setting/ProductPrice.js +0 -371
  4709. package/dist/cjs/product/setting/ProductProperties.js +0 -1105
  4710. package/dist/cjs/product/setting/ProductQuantity.js +0 -673
  4711. package/dist/cjs/product/setting/ProductTag.js +0 -347
  4712. package/dist/cjs/product/setting/ProductTitle.js +0 -366
  4713. package/dist/cjs/product/setting/ProductVariants.js +0 -1404
  4714. package/dist/cjs/product/setting/ProductViewMore.js +0 -710
  4715. package/dist/cjs/product/setting/Sku.js +0 -290
  4716. package/dist/cjs/product/setting/Vendor.js +0 -346
  4717. package/dist/cjs/product/setting/constant/bundle-layout/horizontalOne.js +0 -494
  4718. package/dist/cjs/product/setting/constant/bundle-layout/horizontalThree.js +0 -641
  4719. package/dist/cjs/product/setting/constant/bundle-layout/horizontalTwo.js +0 -637
  4720. package/dist/cjs/product/setting/constant/bundle-layout/verticalOne.js +0 -365
  4721. package/dist/cjs/product/setting/constant/bundle-layout/verticalThree.js +0 -519
  4722. package/dist/cjs/product/setting/constant/bundle-layout/verticalTwo.js +0 -519
  4723. package/dist/cjs/product/setting/index.js +0 -49
  4724. package/dist/cjs/product/setting/presets-config/product-presets/product-1-col.js +0 -513
  4725. package/dist/cjs/product/setting/presets-config/product-presets/product-2-col.js +0 -515
  4726. package/dist/cjs/product/setting/presets-config/product-presets/product-default.js +0 -517
  4727. package/dist/cjs/product/setting/product-image-v2/ProductFeatureImage.js +0 -620
  4728. package/dist/cjs/product/setting/product-image-v2/ProductGalleryImage.js +0 -744
  4729. package/dist/cjs/product/setting/product-image-v2/ProductImages.js +0 -614
  4730. package/dist/cjs/product/setting/swatches-style-config/color.js +0 -75
  4731. package/dist/cjs/product/setting/swatches-style-config/dropdown.js +0 -66
  4732. package/dist/cjs/product/setting/swatches-style-config/image-shopify.js +0 -62
  4733. package/dist/cjs/product/setting/swatches-style-config/image.js +0 -62
  4734. package/dist/cjs/product/setting/swatches-style-config/rectangle-list.js +0 -99
  4735. package/dist/cjs/radio/Radio.js +0 -38
  4736. package/dist/cjs/radio/setting/Radio.js +0 -70
  4737. package/dist/cjs/radio/setting/index.js +0 -11
  4738. package/dist/cjs/select/Select.js +0 -62
  4739. package/dist/cjs/select/setting/index.js +0 -11
  4740. package/dist/cjs/sticky/setting/Sticky.js +0 -241
  4741. package/dist/cjs/sticky/setting/index.js +0 -11
  4742. package/dist/cjs/sticky/setting/preset-config.js +0 -2006
  4743. package/dist/cjs/stock-counter/const.js +0 -27
  4744. package/dist/cjs/stock-counter/helpers.js +0 -57
  4745. package/dist/cjs/stock-counter/setting/StockCounter.js +0 -618
  4746. package/dist/cjs/stock-counter/setting/index.js +0 -11
  4747. package/dist/cjs/tab/components/common.js +0 -65
  4748. package/dist/cjs/tab/setting/TabItem.js +0 -36
  4749. package/dist/cjs/tab/setting/Tabs.js +0 -633
  4750. package/dist/cjs/tab/setting/index.js +0 -13
  4751. package/dist/cjs/text/components/common.js +0 -14
  4752. package/dist/cjs/text/setting/Text.js +0 -471
  4753. package/dist/cjs/text/setting/index.js +0 -11
  4754. package/dist/cjs/textarea/Textarea.js +0 -39
  4755. package/dist/cjs/textarea/setting/Textarea.js +0 -115
  4756. package/dist/cjs/textarea/setting/index.js +0 -11
  4757. package/dist/cjs/third-party/components/PowrContactFormBuilder.js +0 -32
  4758. package/dist/cjs/third-party/components/PowrContactFormBuilder.liquid.js +0 -12
  4759. package/dist/cjs/third-party/configs/PowrContactFormBuilder.js +0 -12
  4760. package/dist/cjs/third-party/helpers/thirdParty.js +0 -56
  4761. package/dist/cjs/third-party/setting/AftershipEmailMarketingsms.js +0 -160
  4762. package/dist/cjs/third-party/setting/AirProductReviewsAppUgc.js +0 -140
  4763. package/dist/cjs/third-party/setting/AliReviews.js +0 -140
  4764. package/dist/cjs/third-party/setting/AlsoBoughtCbb.js +0 -127
  4765. package/dist/cjs/third-party/setting/AppointmentBookingCowlendar.js +0 -128
  4766. package/dist/cjs/third-party/setting/AppstleBundlesDiscounts.js +0 -146
  4767. package/dist/cjs/third-party/setting/AppstleSubscriptions.js +0 -127
  4768. package/dist/cjs/third-party/setting/BestBuyFulfillment.js +0 -133
  4769. package/dist/cjs/third-party/setting/BfSizeChartSizeGuide.js +0 -131
  4770. package/dist/cjs/third-party/setting/BirdChime.js +0 -118
  4771. package/dist/cjs/third-party/setting/Bogos.js +0 -163
  4772. package/dist/cjs/third-party/setting/BoldProductOptions.js +0 -113
  4773. package/dist/cjs/third-party/setting/BoldSubscriptions.js +0 -129
  4774. package/dist/cjs/third-party/setting/BonLoyaltyRewardsReferrals.js +0 -165
  4775. package/dist/cjs/third-party/setting/BoostAISearchDiscovery.js +0 -169
  4776. package/dist/cjs/third-party/setting/Bundler.js +0 -131
  4777. package/dist/cjs/third-party/setting/CleanSizeCharts.js +0 -136
  4778. package/dist/cjs/third-party/setting/CrossSellCartUpsell.js +0 -113
  4779. package/dist/cjs/third-party/setting/CustomProductOptionsVariant.js +0 -116
  4780. package/dist/cjs/third-party/setting/DiscountyBulkDiscountSales.js +0 -114
  4781. package/dist/cjs/third-party/setting/EasifyProductOptions.js +0 -125
  4782. package/dist/cjs/third-party/setting/EasyBundleBuilderSkailama.js +0 -128
  4783. package/dist/cjs/third-party/setting/EasySellCOD.js +0 -127
  4784. package/dist/cjs/third-party/setting/EcoboostifyShoppableReelUgc.js +0 -142
  4785. package/dist/cjs/third-party/setting/EcomsendBackInStockAlert.js +0 -147
  4786. package/dist/cjs/third-party/setting/EssentialAnnouncementBar.js +0 -142
  4787. package/dist/cjs/third-party/setting/EssentialCountdownTimerBar.js +0 -142
  4788. package/dist/cjs/third-party/setting/EstimatedDeliveryDatePlus.js +0 -128
  4789. package/dist/cjs/third-party/setting/FastBundleBundlesDiscounts.js +0 -170
  4790. package/dist/cjs/third-party/setting/FeraReviews.js +0 -424
  4791. package/dist/cjs/third-party/setting/FirePush.js +0 -113
  4792. package/dist/cjs/third-party/setting/FlyBundlesUpsellsFbt.js +0 -151
  4793. package/dist/cjs/third-party/setting/FordeerProductLabels.js +0 -211
  4794. package/dist/cjs/third-party/setting/FrequentlyBoughtTogether.js +0 -133
  4795. package/dist/cjs/third-party/setting/GloColorSwatchvariantImage.js +0 -152
  4796. package/dist/cjs/third-party/setting/GloboProductOptionsVariant.js +0 -133
  4797. package/dist/cjs/third-party/setting/GoogleReviewsByReputon.js +0 -160
  4798. package/dist/cjs/third-party/setting/Growave.js +0 -235
  4799. package/dist/cjs/third-party/setting/HextomCountdownTimerBar.js +0 -128
  4800. package/dist/cjs/third-party/setting/HextomFreeShippingBar.js +0 -128
  4801. package/dist/cjs/third-party/setting/HulkFormBuilder.js +0 -125
  4802. package/dist/cjs/third-party/setting/HulkProductOptions.js +0 -131
  4803. package/dist/cjs/third-party/setting/InfiniteOptions.js +0 -113
  4804. package/dist/cjs/third-party/setting/Instafeed.js +0 -119
  4805. package/dist/cjs/third-party/setting/InstasellShoppableInstagram.js +0 -128
  4806. package/dist/cjs/third-party/setting/JudgemeReviews.js +0 -183
  4807. package/dist/cjs/third-party/setting/JunipProductReviewsUgc.js +0 -167
  4808. package/dist/cjs/third-party/setting/KachingBundles.js +0 -140
  4809. package/dist/cjs/third-party/setting/KingProductOptions.js +0 -127
  4810. package/dist/cjs/third-party/setting/KiteFreeGiftDiscount.js +0 -128
  4811. package/dist/cjs/third-party/setting/KlarnaMessaging.js +0 -175
  4812. package/dist/cjs/third-party/setting/Klaviyo.js +0 -128
  4813. package/dist/cjs/third-party/setting/KoalaBundleQuantityDiscount.js +0 -116
  4814. package/dist/cjs/third-party/setting/LaiProductReviews.js +0 -234
  4815. package/dist/cjs/third-party/setting/LoloyalLoyaltyReferrals.js +0 -149
  4816. package/dist/cjs/third-party/setting/LoopSubscriptions.js +0 -160
  4817. package/dist/cjs/third-party/setting/LooxReviews.js +0 -284
  4818. package/dist/cjs/third-party/setting/MaxbundleProductBundles.js +0 -154
  4819. package/dist/cjs/third-party/setting/MbcBundleVolumeDiscount.js +0 -116
  4820. package/dist/cjs/third-party/setting/MyappgurusProductReviews.js +0 -171
  4821. package/dist/cjs/third-party/setting/NotifyBackInStockPreOrder.js +0 -116
  4822. package/dist/cjs/third-party/setting/OkendoReviewsLoyalty.js +0 -171
  4823. package/dist/cjs/third-party/setting/Omnisend.js +0 -178
  4824. package/dist/cjs/third-party/setting/Opinew.js +0 -222
  4825. package/dist/cjs/third-party/setting/ParcelPanel.js +0 -122
  4826. package/dist/cjs/third-party/setting/PickyStory.js +0 -146
  4827. package/dist/cjs/third-party/setting/PowerfulContactFormBuilder.js +0 -160
  4828. package/dist/cjs/third-party/setting/PowrContactFormBuilder.js +0 -142
  4829. package/dist/cjs/third-party/setting/PreorderNowPreOrderPq.js +0 -152
  4830. package/dist/cjs/third-party/setting/PreorderNowWodPresale.js +0 -146
  4831. package/dist/cjs/third-party/setting/ProductOptionsCustomizer.js +0 -134
  4832. package/dist/cjs/third-party/setting/ProductOptionsVariantOption.js +0 -122
  4833. package/dist/cjs/third-party/setting/ProductReviews.js +0 -110
  4834. package/dist/cjs/third-party/setting/PumperBundlesVolumeDiscount.js +0 -138
  4835. package/dist/cjs/third-party/setting/PushOwl.js +0 -771
  4836. package/dist/cjs/third-party/setting/QikifyUpsell.js +0 -144
  4837. package/dist/cjs/third-party/setting/RapiBundleQuantityBreaks.js +0 -131
  4838. package/dist/cjs/third-party/setting/RechargeSubscriptions.js +0 -137
  4839. package/dist/cjs/third-party/setting/RecurpaySubscriptionApp.js +0 -116
  4840. package/dist/cjs/third-party/setting/Releasit.js +0 -179
  4841. package/dist/cjs/third-party/setting/RequestQuoteHidePrice.js +0 -117
  4842. package/dist/cjs/third-party/setting/ReviewxpoProductReviewsApp.js +0 -180
  4843. package/dist/cjs/third-party/setting/Rivyo.js +0 -146
  4844. package/dist/cjs/third-party/setting/Ryviu.js +0 -150
  4845. package/dist/cjs/third-party/setting/SealSubscriptions.js +0 -127
  4846. package/dist/cjs/third-party/setting/SegunoEmailMarketing.js +0 -152
  4847. package/dist/cjs/third-party/setting/Selleasy.js +0 -149
  4848. package/dist/cjs/third-party/setting/SeoantTrustBadgesIcon.js +0 -142
  4849. package/dist/cjs/third-party/setting/ShopifyForms.js +0 -142
  4850. package/dist/cjs/third-party/setting/ShopifySubscriptions.js +0 -138
  4851. package/dist/cjs/third-party/setting/SimpleBundlesKits.js +0 -133
  4852. package/dist/cjs/third-party/setting/SkioSubscriptionsYcS20.js +0 -124
  4853. package/dist/cjs/third-party/setting/SmartSearchBarAndFilters.js +0 -128
  4854. package/dist/cjs/third-party/setting/SproutPlantTreesGrowSales.js +0 -141
  4855. package/dist/cjs/third-party/setting/Stamped/Badge.js +0 -117
  4856. package/dist/cjs/third-party/setting/Stamped/BadgeDouble.js +0 -22
  4857. package/dist/cjs/third-party/setting/Stamped/BadgeRibbon.js +0 -61
  4858. package/dist/cjs/third-party/setting/Stamped/BadgeSingle.js +0 -22
  4859. package/dist/cjs/third-party/setting/Stamped/Carousel.js +0 -126
  4860. package/dist/cjs/third-party/setting/Stamped/CheckoutReviews.js +0 -107
  4861. package/dist/cjs/third-party/setting/Stamped/Colors.js +0 -58
  4862. package/dist/cjs/third-party/setting/Stamped/Filters.js +0 -250
  4863. package/dist/cjs/third-party/setting/Stamped/FullPage.js +0 -90
  4864. package/dist/cjs/third-party/setting/Stamped/InstagramFeed.js +0 -111
  4865. package/dist/cjs/third-party/setting/Stamped/MainWidget.js +0 -145
  4866. package/dist/cjs/third-party/setting/Stamped/ProductRating.js +0 -73
  4867. package/dist/cjs/third-party/setting/Stamped/SingleHighlight.js +0 -22
  4868. package/dist/cjs/third-party/setting/Stamped/SiteBadge.js +0 -146
  4869. package/dist/cjs/third-party/setting/Stamped/TopRated.js +0 -37
  4870. package/dist/cjs/third-party/setting/Stamped/VisualGallery.js +0 -129
  4871. package/dist/cjs/third-party/setting/Stamped/WallPhotos.js +0 -91
  4872. package/dist/cjs/third-party/setting/Stamped/index.js +0 -51
  4873. package/dist/cjs/third-party/setting/Stamped.js +0 -241
  4874. package/dist/cjs/third-party/setting/StellarDeliveryDatePickup.js +0 -127
  4875. package/dist/cjs/third-party/setting/SubifySubscriptionsApp.js +0 -142
  4876. package/dist/cjs/third-party/setting/TagembedSocialPostReview.js +0 -126
  4877. package/dist/cjs/third-party/setting/TagshopShoppableVideosUgc.js +0 -171
  4878. package/dist/cjs/third-party/setting/TeeinblueProductPersonalizer.js +0 -116
  4879. package/dist/cjs/third-party/setting/TrustBadgesBear.js +0 -128
  4880. package/dist/cjs/third-party/setting/TrustMe.js +0 -113
  4881. package/dist/cjs/third-party/setting/TrustedsiteTrustBadges.js +0 -177
  4882. package/dist/cjs/third-party/setting/Trustoo.js +0 -179
  4883. package/dist/cjs/third-party/setting/TrustreviewsProductReviews.js +0 -210
  4884. package/dist/cjs/third-party/setting/TrustshopProductReviews.js +0 -159
  4885. package/dist/cjs/third-party/setting/UltimateSalesBoost.js +0 -203
  4886. package/dist/cjs/third-party/setting/UnlimitedBundlesDiscounts.js +0 -146
  4887. package/dist/cjs/third-party/setting/Vitals.js +0 -344
  4888. package/dist/cjs/third-party/setting/WhatmoreShoppableVideosreel.js +0 -355
  4889. package/dist/cjs/third-party/setting/WideBundle.js +0 -113
  4890. package/dist/cjs/third-party/setting/Wiser.js +0 -255
  4891. package/dist/cjs/third-party/setting/WishlistKing.js +0 -131
  4892. package/dist/cjs/third-party/setting/WishlistPlus.js +0 -149
  4893. package/dist/cjs/third-party/setting/YotpoLoyalty.js +0 -83
  4894. package/dist/cjs/third-party/setting/YotpoReviews.js +0 -197
  4895. package/dist/cjs/third-party/setting/index.js +0 -241
  4896. package/dist/cjs/third-party-instant/helpers/thirdParty.js +0 -74
  4897. package/dist/cjs/third-party-instant/setting/InstantJudgemeReviews.js +0 -161
  4898. package/dist/cjs/third-party-instant/setting/InstantKlaviyo.js +0 -99
  4899. package/dist/cjs/third-party-instant/setting/InstantLooxReviews.js +0 -122
  4900. package/dist/cjs/third-party-instant/setting/InstantYotpoLoyalty.js +0 -99
  4901. package/dist/cjs/third-party-instant/setting/index.js +0 -17
  4902. package/dist/cjs/third-party-instant/types/JudgemeReviews.js +0 -13
  4903. package/dist/cjs/third-party-slot/setting/ThirdPartySlot.js +0 -113
  4904. package/dist/cjs/third-party-slot/setting/index.js +0 -11
  4905. package/dist/cjs/video/helpers/common.js +0 -45
  4906. package/dist/cjs/video/setting/Video.js +0 -500
  4907. package/dist/cjs/video/setting/index.js +0 -11
  4908. package/dist/esm/accordion/setting/Accordion.js +0 -1454
  4909. package/dist/esm/accordion/setting/AccordionItem.js +0 -30
  4910. package/dist/esm/accordion/setting/ItemTemplate.js +0 -46
  4911. package/dist/esm/accordion/setting/index.js +0 -9
  4912. package/dist/esm/article/setting/ArticleAuthor.js +0 -311
  4913. package/dist/esm/article/setting/ArticleCategory.js +0 -292
  4914. package/dist/esm/article/setting/ArticleContent.js +0 -291
  4915. package/dist/esm/article/setting/ArticleDate.js +0 -336
  4916. package/dist/esm/article/setting/ArticleExcerpt.js +0 -340
  4917. package/dist/esm/article/setting/ArticleImage.js +0 -333
  4918. package/dist/esm/article/setting/ArticleList.js +0 -873
  4919. package/dist/esm/article/setting/ArticlePagination.js +0 -330
  4920. package/dist/esm/article/setting/ArticleReadMore.js +0 -1092
  4921. package/dist/esm/article/setting/ArticleTag.js +0 -292
  4922. package/dist/esm/article/setting/ArticleTitle.js +0 -376
  4923. package/dist/esm/article/setting/index.js +0 -27
  4924. package/dist/esm/article/utils/string.js +0 -5
  4925. package/dist/esm/banner/components/hero-banner/hooks/useAspectRatioSettings.js +0 -24
  4926. package/dist/esm/banner/components/hero-banner/hooks/useIntersectionObserver.js +0 -38
  4927. package/dist/esm/banner/components/hero-banner/hooks/useTranslateValue.js +0 -33
  4928. package/dist/esm/banner/components/hero-banner/hooks/useWindowSize.js +0 -24
  4929. package/dist/esm/banner/components/hero-banner/index.js +0 -376
  4930. package/dist/esm/banner/components/hero-banner/index.liquid.js +0 -336
  4931. package/dist/esm/banner/components/hero-banner/parallax/AnimationManager.js +0 -43
  4932. package/dist/esm/banner/components/hero-banner/utils/index.js +0 -136
  4933. package/dist/esm/banner/helpers/common.js +0 -322
  4934. package/dist/esm/banner/next.js +0 -12
  4935. package/dist/esm/banner/setting/HeroBanner.js +0 -1418
  4936. package/dist/esm/banner/setting/index.js +0 -7
  4937. package/dist/esm/banner/setting/presets/heroBanner1Col.js +0 -126
  4938. package/dist/esm/banner/setting/presets/heroBanner1ColPreSalesPage.js +0 -132
  4939. package/dist/esm/banner/setting/presets/heroBannerContentLeft.js +0 -146
  4940. package/dist/esm/banner/setting/presets/heroBannerContentLeftPreSalesPage.js +0 -152
  4941. package/dist/esm/banner/setting/presets/heroBannerContentRight.js +0 -155
  4942. package/dist/esm/banner/setting/presets/heroBannerContentRightPreSalesPage.js +0 -160
  4943. package/dist/esm/banner/setting/presets/heroBannerParallax.js +0 -126
  4944. package/dist/esm/banner/setting/presets/heroBannerParallaxPreSalesPage.js +0 -132
  4945. package/dist/esm/banner/setting/presets/heroBannerVideo.js +0 -121
  4946. package/dist/esm/banner/setting/presets/heroBannerVideoPreSalesPage.js +0 -128
  4947. package/dist/esm/breadcrumb/helpers/common.js +0 -20
  4948. package/dist/esm/breadcrumb/setting/Breadcrumb.js +0 -445
  4949. package/dist/esm/breadcrumb/setting/index.js +0 -7
  4950. package/dist/esm/button/setting/Button.js +0 -913
  4951. package/dist/esm/button/setting/index.js +0 -7
  4952. package/dist/esm/carousel/components/Arrow.js +0 -102
  4953. package/dist/esm/carousel/components/Arrow.liquid.js +0 -99
  4954. package/dist/esm/carousel/components/Carousel.js +0 -616
  4955. package/dist/esm/carousel/components/Carousel.liquid.js +0 -228
  4956. package/dist/esm/carousel/components/CarouselItem.js +0 -79
  4957. package/dist/esm/carousel/components/CarouselItem.liquid.js +0 -92
  4958. package/dist/esm/carousel/components/Dots.js +0 -64
  4959. package/dist/esm/carousel/components/Dots.liquid.js +0 -19
  4960. package/dist/esm/carousel/components/common/arrow.js +0 -121
  4961. package/dist/esm/carousel/components/common/carousel.js +0 -93
  4962. package/dist/esm/carousel/components/common/dots.js +0 -52
  4963. package/dist/esm/carousel/components/hooks/useTrackPreviewPause.js +0 -30
  4964. package/dist/esm/carousel/components/plugins/AnimationPlugin.js +0 -35
  4965. package/dist/esm/carousel/components/plugins/AutoPlayPlugin.js +0 -103
  4966. package/dist/esm/carousel/components/plugins/FixSliderMoveBackwards.js +0 -13
  4967. package/dist/esm/carousel/components/plugins/MutationPlugin.js +0 -43
  4968. package/dist/esm/carousel/setting/Carousel.js +0 -1586
  4969. package/dist/esm/carousel/setting/CarouselItem.js +0 -36
  4970. package/dist/esm/carousel/setting/index.js +0 -9
  4971. package/dist/esm/cart/components/ShopPayButton/ShopPayButtonCommon.js +0 -17
  4972. package/dist/esm/cart/components/ShopPayButton/icons/BaseIcon.js +0 -12
  4973. package/dist/esm/cart/components/ShopPayButton/icons/BaseIcon.liquid.js +0 -13
  4974. package/dist/esm/cart/components/ShopPayButton/icons/DynamicCheckoutBlack.js +0 -46
  4975. package/dist/esm/cart/components/ShopPayButton/icons/DynamicCheckoutBlack.liquid.js +0 -42
  4976. package/dist/esm/cart/components/ShopPayButton/icons/DynamicCheckoutPurple.js +0 -46
  4977. package/dist/esm/cart/components/ShopPayButton/icons/DynamicCheckoutPurple.liquid.js +0 -42
  4978. package/dist/esm/cart/components/ShopPayButton/icons/DynamicCheckoutWhite.js +0 -44
  4979. package/dist/esm/cart/components/ShopPayButton/icons/DynamicCheckoutWhite.liquid.js +0 -28
  4980. package/dist/esm/cart/components/ShopPayButton/icons/ExpressCheckoutBlack.js +0 -42
  4981. package/dist/esm/cart/components/ShopPayButton/icons/ExpressCheckoutBlack.liquid.js +0 -38
  4982. package/dist/esm/cart/components/ShopPayButton/icons/ExpressCheckoutPurple.js +0 -42
  4983. package/dist/esm/cart/components/ShopPayButton/icons/ExpressCheckoutPurple.liquid.js +0 -38
  4984. package/dist/esm/cart/components/ShopPayButton/icons/ExpressCheckoutWhite.js +0 -42
  4985. package/dist/esm/cart/components/ShopPayButton/icons/ExpressCheckoutWhite.liquid.js +0 -38
  4986. package/dist/esm/cart/components/ShopPayButton/index.js +0 -108
  4987. package/dist/esm/cart/components/ShopPayButton/index.liquid.js +0 -47
  4988. package/dist/esm/cart/setting/Cart.js +0 -67
  4989. package/dist/esm/cart/setting/CartCheckout.js +0 -16
  4990. package/dist/esm/cart/setting/CartDiscount.js +0 -16
  4991. package/dist/esm/cart/setting/CartLineAttribute.js +0 -25
  4992. package/dist/esm/cart/setting/CartLineImage.js +0 -161
  4993. package/dist/esm/cart/setting/CartLinePrice.js +0 -25
  4994. package/dist/esm/cart/setting/CartLineVariant.js +0 -25
  4995. package/dist/esm/cart/setting/CartList.js +0 -135
  4996. package/dist/esm/cart/setting/CartOrderNote.js +0 -40
  4997. package/dist/esm/cart/setting/CartTotalItem.js +0 -25
  4998. package/dist/esm/cart/setting/CartTotalPrice.js +0 -54
  4999. package/dist/esm/cart/setting/CouponList.js +0 -16
  5000. package/dist/esm/cart/setting/DiscountInput.js +0 -29
  5001. package/dist/esm/cart/setting/ShopPayButton.js +0 -167
  5002. package/dist/esm/cart/setting/index.js +0 -33
  5003. package/dist/esm/code/setting/CSSCode.js +0 -175
  5004. package/dist/esm/code/setting/index.js +0 -7
  5005. package/dist/esm/collection/components/CollectionBanner.js +0 -93
  5006. package/dist/esm/collection/components/CollectionBanner.liquid.js +0 -90
  5007. package/dist/esm/collection/components/CollectionDescription.js +0 -110
  5008. package/dist/esm/collection/components/CollectionDescription.liquid.js +0 -110
  5009. package/dist/esm/collection/components/CollectionPaginator.js +0 -146
  5010. package/dist/esm/collection/components/CollectionPaginator.liquid.js +0 -68
  5011. package/dist/esm/collection/components/CollectionTitle.js +0 -18
  5012. package/dist/esm/collection/components/CollectionTitle.liquid.js +0 -17
  5013. package/dist/esm/collection/components/CollectionToolbar.js +0 -106
  5014. package/dist/esm/collection/components/CollectionToolbar.liquid.js +0 -104
  5015. package/dist/esm/collection/setting/CollectionBanner.js +0 -566
  5016. package/dist/esm/collection/setting/CollectionDescription.js +0 -262
  5017. package/dist/esm/collection/setting/CollectionPaginator.js +0 -336
  5018. package/dist/esm/collection/setting/CollectionTitle.js +0 -187
  5019. package/dist/esm/collection/setting/CollectionToolbar.js +0 -283
  5020. package/dist/esm/collection/setting/index.js +0 -15
  5021. package/dist/esm/constants.js +0 -3
  5022. package/dist/esm/countdown-timer/helpers.js +0 -90
  5023. package/dist/esm/countdown-timer/setting/Countdown.js +0 -889
  5024. package/dist/esm/countdown-timer/setting/index.js +0 -7
  5025. package/dist/esm/coupon/setting/Coupon.js +0 -1203
  5026. package/dist/esm/coupon/setting/index.js +0 -7
  5027. package/dist/esm/dialog/helpers/common.js +0 -76
  5028. package/dist/esm/dialog/hooks/use-scroll-percentage.js +0 -32
  5029. package/dist/esm/dialog/setting/Dialog.js +0 -624
  5030. package/dist/esm/dialog/setting/index.js +0 -7
  5031. package/dist/esm/estimate-delivery/const.js +0 -156
  5032. package/dist/esm/estimate-delivery/setting/EstimateDate.js +0 -577
  5033. package/dist/esm/estimate-delivery/setting/index.js +0 -7
  5034. package/dist/esm/form/setting/Contact.js +0 -58
  5035. package/dist/esm/form/setting/ContactInitConfig.js +0 -262
  5036. package/dist/esm/form/setting/FormCheckbox.js +0 -234
  5037. package/dist/esm/form/setting/FormCheckboxInitConfig.js +0 -16
  5038. package/dist/esm/form/setting/FormDropdown.js +0 -271
  5039. package/dist/esm/form/setting/FormDropdownInitConfig.js +0 -39
  5040. package/dist/esm/form/setting/FormEmail.js +0 -283
  5041. package/dist/esm/form/setting/FormEmailInitConfig.js +0 -39
  5042. package/dist/esm/form/setting/Newsletter.js +0 -173
  5043. package/dist/esm/form/setting/NewsletterInitConfig.js +0 -143
  5044. package/dist/esm/form/setting/SubmitButton.js +0 -673
  5045. package/dist/esm/form/setting/SubmitButtonInitConfig.js +0 -28
  5046. package/dist/esm/form/setting/TextField.js +0 -329
  5047. package/dist/esm/form/setting/Textarea.js +0 -333
  5048. package/dist/esm/form/setting/index.js +0 -21
  5049. package/dist/esm/grid/components/Col.js +0 -38
  5050. package/dist/esm/grid/components/Col.liquid.js +0 -36
  5051. package/dist/esm/grid/components/Root.js +0 -9
  5052. package/dist/esm/grid/components/Root.liquid.js +0 -5
  5053. package/dist/esm/grid/components/Row.js +0 -177
  5054. package/dist/esm/grid/components/Row.liquid.js +0 -71
  5055. package/dist/esm/grid/components/Section.js +0 -23
  5056. package/dist/esm/grid/components/Section.liquid.js +0 -13
  5057. package/dist/esm/grid/components/helpers.js +0 -69
  5058. package/dist/esm/grid/setting/Col.js +0 -30
  5059. package/dist/esm/grid/setting/Root.js +0 -15
  5060. package/dist/esm/grid/setting/Row.js +0 -1001
  5061. package/dist/esm/grid/setting/Section.js +0 -521
  5062. package/dist/esm/grid/setting/index.js +0 -13
  5063. package/dist/esm/header/hooks/use-body-overlay.js +0 -19
  5064. package/dist/esm/header/setting/Header.js +0 -723
  5065. package/dist/esm/header/setting/index.js +0 -7
  5066. package/dist/esm/heading/Heading.js +0 -42
  5067. package/dist/esm/heading/Heading.liquid.js +0 -43
  5068. package/dist/esm/heading/setting/Heading.js +0 -407
  5069. package/dist/esm/heading/setting/index.js +0 -7
  5070. package/dist/esm/icon/setting/Icon.js +0 -438
  5071. package/dist/esm/icon/setting/index.js +0 -7
  5072. package/dist/esm/icon-list/setting/IconList.js +0 -335
  5073. package/dist/esm/icon-list/setting/IconListItem.js +0 -36
  5074. package/dist/esm/icon-list/setting/ItemTemplate.js +0 -334
  5075. package/dist/esm/icon-list/setting/index.js +0 -9
  5076. package/dist/esm/icon-list-hoz/components/IconListItemHoz.liquid.js +0 -19
  5077. package/dist/esm/icon-list-hoz/setting/IconListHoz.js +0 -358
  5078. package/dist/esm/icon-list-hoz/setting/IconListItem.js +0 -36
  5079. package/dist/esm/icon-list-hoz/setting/ItemTemplate.js +0 -116
  5080. package/dist/esm/icon-list-hoz/setting/index.js +0 -9
  5081. package/dist/esm/icon-list-v2/setting/IconList.js +0 -573
  5082. package/dist/esm/icon-list-v2/setting/index.js +0 -7
  5083. package/dist/esm/icon-list-v2/setting/template.js +0 -110
  5084. package/dist/esm/image/components/BackgroundImage.js +0 -97
  5085. package/dist/esm/image/components/Img.js +0 -23
  5086. package/dist/esm/image/components/helpers.js +0 -24
  5087. package/dist/esm/image/helpers/getSrcSet.js +0 -251
  5088. package/dist/esm/image/setting/BackgroundImage.js +0 -360
  5089. package/dist/esm/image/setting/Image.js +0 -860
  5090. package/dist/esm/image/setting/index.js +0 -9
  5091. package/dist/esm/image-comparison/components/common/helpers.js +0 -11
  5092. package/dist/esm/image-comparison/constants/commonStyles.js +0 -58
  5093. package/dist/esm/image-comparison/setting/ImageComparison.js +0 -910
  5094. package/dist/esm/image-comparison/setting/index.js +0 -7
  5095. package/dist/esm/image-detection/ImageDetection.js +0 -232
  5096. package/dist/esm/image-detection/setting/ImageDetection.js +0 -72
  5097. package/dist/esm/image-detection/setting/index.js +0 -7
  5098. package/dist/esm/input/Input.js +0 -113
  5099. package/dist/esm/input/setting/Input.js +0 -122
  5100. package/dist/esm/input/setting/index.js +0 -7
  5101. package/dist/esm/intersection-observer/useInView.js +0 -86
  5102. package/dist/esm/line/Divider.js +0 -30
  5103. package/dist/esm/line/Divider.liquid.js +0 -31
  5104. package/dist/esm/line/Line.js +0 -162
  5105. package/dist/esm/line/Line.liquid.js +0 -159
  5106. package/dist/esm/line/setting/Line.js +0 -586
  5107. package/dist/esm/line/setting/index.js +0 -7
  5108. package/dist/esm/link/helpers/url-join.js +0 -54
  5109. package/dist/esm/link/setting/Link.js +0 -64
  5110. package/dist/esm/link/setting/index.js +0 -7
  5111. package/dist/esm/marquee/setting/Marquee.js +0 -757
  5112. package/dist/esm/marquee/setting/MarqueeItem.js +0 -37
  5113. package/dist/esm/marquee/setting/childImageTemplate.js +0 -78
  5114. package/dist/esm/marquee/setting/childTemplate.js +0 -37
  5115. package/dist/esm/marquee/setting/childTextTemplate.js +0 -63
  5116. package/dist/esm/marquee/setting/index.js +0 -9
  5117. package/dist/esm/menu/setting/Menu.js +0 -212
  5118. package/dist/esm/menu/setting/index.js +0 -7
  5119. package/dist/esm/modal/setting/Modal.js +0 -23
  5120. package/dist/esm/modal/setting/index.js +0 -7
  5121. package/dist/esm/notification/hooks/use-notification.js +0 -116
  5122. package/dist/esm/pagination/Pagination.js +0 -182
  5123. package/dist/esm/pagination/setting/Pagination.js +0 -71
  5124. package/dist/esm/pagination/setting/index.js +0 -7
  5125. package/dist/esm/post-purchase/advanced-list/setting/AdvancedListPostPurchase.js +0 -182
  5126. package/dist/esm/post-purchase/advanced-list/setting/PostPurchaseAdvancedListItem.js +0 -37
  5127. package/dist/esm/post-purchase/advanced-list/setting/index.js +0 -9
  5128. package/dist/esm/post-purchase/advanced-list/setting/template.js +0 -78
  5129. package/dist/esm/post-purchase/button/Button.js +0 -83
  5130. package/dist/esm/post-purchase/button/setting/Button.js +0 -224
  5131. package/dist/esm/post-purchase/button/setting/index.js +0 -7
  5132. package/dist/esm/post-purchase/callout-banner/setting/CalloutBox.js +0 -439
  5133. package/dist/esm/post-purchase/callout-banner/setting/CalloutText.js +0 -292
  5134. package/dist/esm/post-purchase/callout-banner/setting/index.js +0 -9
  5135. package/dist/esm/post-purchase/countdown-timer/settings/index.js +0 -7
  5136. package/dist/esm/post-purchase/image/setting/Image.js +0 -293
  5137. package/dist/esm/post-purchase/image/setting/index.js +0 -7
  5138. package/dist/esm/post-purchase/line/setting/PostPurchaseLine.js +0 -255
  5139. package/dist/esm/post-purchase/line/setting/index.js +0 -7
  5140. package/dist/esm/post-purchase/next.js +0 -33
  5141. package/dist/esm/post-purchase/product/components/ProductOffer.js +0 -130
  5142. package/dist/esm/post-purchase/product/components/ProductVariant.js +0 -239
  5143. package/dist/esm/post-purchase/product/components/priceBreakdown/MoneyLine.js +0 -41
  5144. package/dist/esm/post-purchase/product/components/product-image/Arrow.js +0 -57
  5145. package/dist/esm/post-purchase/product/components/product-image/CarouselPostPurchase.js +0 -75
  5146. package/dist/esm/post-purchase/product/components/variants/Dropdown.js +0 -122
  5147. package/dist/esm/post-purchase/product/components/variants/DropdownOption.js +0 -18
  5148. package/dist/esm/post-purchase/product/components/variants/RectangleList.js +0 -40
  5149. package/dist/esm/post-purchase/product/components/variants/VariantGroup.js +0 -34
  5150. package/dist/esm/post-purchase/product/components/variants/VariantItem.js +0 -101
  5151. package/dist/esm/post-purchase/product/components/variants/VariantOption.js +0 -16
  5152. package/dist/esm/post-purchase/product/settings/AcceptButton.js +0 -237
  5153. package/dist/esm/post-purchase/product/settings/ProductDescription.js +0 -134
  5154. package/dist/esm/post-purchase/product/settings/ProductDiscountTag.js +0 -126
  5155. package/dist/esm/post-purchase/product/settings/ProductOffer.js +0 -532
  5156. package/dist/esm/post-purchase/product/settings/ProductPrice.js +0 -187
  5157. package/dist/esm/post-purchase/product/settings/ProductPriceBreakdown.js +0 -425
  5158. package/dist/esm/post-purchase/product/settings/ProductQuantity.js +0 -211
  5159. package/dist/esm/post-purchase/product/settings/ProductTitle.js +0 -172
  5160. package/dist/esm/post-purchase/product/settings/ProductVariant.js +0 -597
  5161. package/dist/esm/post-purchase/product/settings/index.js +0 -25
  5162. package/dist/esm/post-purchase/text/Text.js +0 -72
  5163. package/dist/esm/post-purchase/text/setting/Heading.js +0 -42
  5164. package/dist/esm/post-purchase/text/setting/Text.js +0 -227
  5165. package/dist/esm/post-purchase/text/setting/index.js +0 -9
  5166. package/dist/esm/post-purchase/utils/constants.js +0 -46
  5167. package/dist/esm/post-purchase/utils/helper.js +0 -73
  5168. package/dist/esm/product/components/DynamicCheckout.js +0 -23
  5169. package/dist/esm/product/components/DynamicCheckout.liquid.js +0 -185
  5170. package/dist/esm/product/components/FileUpload.js +0 -112
  5171. package/dist/esm/product/components/FileUpload.liquid.js +0 -127
  5172. package/dist/esm/product/components/Product.js +0 -107
  5173. package/dist/esm/product/components/Product.liquid.js +0 -130
  5174. package/dist/esm/product/components/ProductBadge/constants.js +0 -17
  5175. package/dist/esm/product/components/ProductBadge/index.js +0 -178
  5176. package/dist/esm/product/components/ProductBadge/index.liquid.js +0 -131
  5177. package/dist/esm/product/components/ProductBadge/types.js +0 -35
  5178. package/dist/esm/product/components/ProductBadge/utils/common.js +0 -274
  5179. package/dist/esm/product/components/ProductBadge/utils/generateLiquidContent.js +0 -28
  5180. package/dist/esm/product/components/ProductBadge/utils/getRotateShape.js +0 -90
  5181. package/dist/esm/product/components/ProductBadge/utils/getShapePosition.js +0 -186
  5182. package/dist/esm/product/components/ProductBadge/utils/getStyleAdvanced.js +0 -38
  5183. package/dist/esm/product/components/ProductBadge/utils/getWhiteSpace.js +0 -17
  5184. package/dist/esm/product/components/ProductBadge/utils/renderBadgeILP.js +0 -128
  5185. package/dist/esm/product/components/ProductBadge/utils/renderBadgeLiquid.js +0 -241
  5186. package/dist/esm/product/components/ProductBadge/utils/shape.js +0 -96
  5187. package/dist/esm/product/components/ProductBundleDiscount.js +0 -192
  5188. package/dist/esm/product/components/ProductBundleDiscount.liquid.js +0 -77
  5189. package/dist/esm/product/components/ProductBundleDiscountItem.js +0 -35
  5190. package/dist/esm/product/components/ProductBundleDiscountItem.liquid.js +0 -99
  5191. package/dist/esm/product/components/ProductButton.js +0 -482
  5192. package/dist/esm/product/components/ProductButton.liquid.js +0 -316
  5193. package/dist/esm/product/components/ProductDescription/common.js +0 -26
  5194. package/dist/esm/product/components/ProductDescription/const.js +0 -3
  5195. package/dist/esm/product/components/ProductDescription.js +0 -145
  5196. package/dist/esm/product/components/ProductDescription.liquid.js +0 -133
  5197. package/dist/esm/product/components/ProductImages/ProductFeaturedImage.js +0 -263
  5198. package/dist/esm/product/components/ProductImages/ProductGalleryCarousel.js +0 -199
  5199. package/dist/esm/product/components/ProductImages/ProductGalleryGrid.js +0 -159
  5200. package/dist/esm/product/components/ProductImages/ProductImagesLightBox.js +0 -114
  5201. package/dist/esm/product/components/ProductImages/common/common.js +0 -103
  5202. package/dist/esm/product/components/ProductImages/common/productFeaturedImage.js +0 -90
  5203. package/dist/esm/product/components/ProductImages/common/productGallery.js +0 -188
  5204. package/dist/esm/product/components/ProductImages/liquid/ProductFeaturedImage.liquid.js +0 -172
  5205. package/dist/esm/product/components/ProductImages/liquid/ProductGalleryCarousel.liquid.js +0 -167
  5206. package/dist/esm/product/components/ProductImages/liquid/ProductGalleryGrid.liquid.js +0 -133
  5207. package/dist/esm/product/components/ProductImagesV2/common/common.js +0 -295
  5208. package/dist/esm/product/components/ProductImagesV2/common/hoverAction.js +0 -92
  5209. package/dist/esm/product/components/ProductImagesV2/common/productFeaturedImage.js +0 -56
  5210. package/dist/esm/product/components/ProductImagesV2/common/productGallery.js +0 -251
  5211. package/dist/esm/product/components/ProductImagesV2/jsx/ProductImages.js +0 -251
  5212. package/dist/esm/product/components/ProductImagesV2/jsx/components/ButtonOpenLightBox.js +0 -23
  5213. package/dist/esm/product/components/ProductImagesV2/jsx/components/MediaIcon.js +0 -58
  5214. package/dist/esm/product/components/ProductImagesV2/jsx/components/ProductFeatureVideo.js +0 -30
  5215. package/dist/esm/product/components/ProductImagesV2/jsx/components/ProductFeaturedImageCarousel.js +0 -387
  5216. package/dist/esm/product/components/ProductImagesV2/jsx/components/ProductFeaturedImageOnly.js +0 -134
  5217. package/dist/esm/product/components/ProductImagesV2/jsx/components/ProductGalleryCarousel.js +0 -299
  5218. package/dist/esm/product/components/ProductImagesV2/jsx/components/ProductGalleryGrid.js +0 -198
  5219. package/dist/esm/product/components/ProductImagesV2/jsx/components/ProductImagesLightBox.js +0 -139
  5220. package/dist/esm/product/components/ProductImagesV2/jsx/layouts/FeatureImageWithGallery.js +0 -252
  5221. package/dist/esm/product/components/ProductImagesV2/jsx/layouts/GalleryOneCol.js +0 -20
  5222. package/dist/esm/product/components/ProductImagesV2/jsx/layouts/GalleryTwoCol.js +0 -20
  5223. package/dist/esm/product/components/ProductImagesV2/jsx/layouts/OnlyFeatureImage.js +0 -31
  5224. package/dist/esm/product/components/ProductImagesV2/liquid/ProductFeaturedImageCarousel.liquid.js +0 -520
  5225. package/dist/esm/product/components/ProductImagesV2/liquid/ProductGalleryCarousel.liquid.js +0 -301
  5226. package/dist/esm/product/components/ProductImagesV2/liquid/ProductGalleryGrid.liquid.js +0 -337
  5227. package/dist/esm/product/components/ProductImagesV2/liquid/ProductImages.liquid.js +0 -150
  5228. package/dist/esm/product/components/ProductList.js +0 -419
  5229. package/dist/esm/product/components/ProductList.liquid.js +0 -394
  5230. package/dist/esm/product/components/ProductNotFoundRelated.js +0 -61
  5231. package/dist/esm/product/components/ProductPrice.js +0 -164
  5232. package/dist/esm/product/components/ProductPrice.liquid.js +0 -83
  5233. package/dist/esm/product/components/ProductProperties/ProductPropertyChoice.js +0 -52
  5234. package/dist/esm/product/components/ProductProperties/ProductPropertyChoice.liquid.js +0 -60
  5235. package/dist/esm/product/components/ProductProperties/ProductPropertyInput.js +0 -69
  5236. package/dist/esm/product/components/ProductProperties/ProductPropertyInput.liquid.js +0 -111
  5237. package/dist/esm/product/components/ProductProperties/ProductPropertySelect.js +0 -37
  5238. package/dist/esm/product/components/ProductProperties/ProductPropertySelect.liquid.js +0 -53
  5239. package/dist/esm/product/components/ProductProperties.js +0 -265
  5240. package/dist/esm/product/components/ProductProperties.liquid.js +0 -154
  5241. package/dist/esm/product/components/ProductQuantity.js +0 -216
  5242. package/dist/esm/product/components/ProductQuantity.liquid.js +0 -166
  5243. package/dist/esm/product/components/ProductQuickView/ProductQuickView.js +0 -154
  5244. package/dist/esm/product/components/ProductQuickView/index.js +0 -16
  5245. package/dist/esm/product/components/ProductTag.js +0 -170
  5246. package/dist/esm/product/components/ProductTag.liquid.js +0 -103
  5247. package/dist/esm/product/components/ProductTitle.js +0 -38
  5248. package/dist/esm/product/components/ProductTitle.liquid.js +0 -40
  5249. package/dist/esm/product/components/ProductVariants/common.js +0 -64
  5250. package/dist/esm/product/components/ProductVariants/hooks/useVariantInteraction.js +0 -41
  5251. package/dist/esm/product/components/ProductVariants/index.js +0 -346
  5252. package/dist/esm/product/components/ProductVariants/index.liquid.js +0 -362
  5253. package/dist/esm/product/components/ProductVariants/utils/mappingVariantStyles.js +0 -116
  5254. package/dist/esm/product/components/ProductVariants/variants/Base.js +0 -288
  5255. package/dist/esm/product/components/ProductVariants/variants/Base.liquid.js +0 -164
  5256. package/dist/esm/product/components/ProductVariants/variants/Color.js +0 -18
  5257. package/dist/esm/product/components/ProductVariants/variants/Color.liquid.js +0 -25
  5258. package/dist/esm/product/components/ProductVariants/variants/Dropdown.js +0 -149
  5259. package/dist/esm/product/components/ProductVariants/variants/Dropdown.liquid.js +0 -126
  5260. package/dist/esm/product/components/ProductVariants/variants/DropdownGroup.liquid.js +0 -53
  5261. package/dist/esm/product/components/ProductVariants/variants/DropdownOption.js +0 -17
  5262. package/dist/esm/product/components/ProductVariants/variants/Image.js +0 -18
  5263. package/dist/esm/product/components/ProductVariants/variants/Image.liquid.js +0 -19
  5264. package/dist/esm/product/components/ProductVariants/variants/ImageShopify.js +0 -35
  5265. package/dist/esm/product/components/ProductVariants/variants/ImageShopify.liquid.js +0 -31
  5266. package/dist/esm/product/components/ProductVariants/variants/RadioButtons.js +0 -58
  5267. package/dist/esm/product/components/ProductVariants/variants/RectangleList.js +0 -64
  5268. package/dist/esm/product/components/ProductVariants/variants/VariantGroup.js +0 -34
  5269. package/dist/esm/product/components/ProductVariants/variants/VariantOption/index.js +0 -16
  5270. package/dist/esm/product/components/ProductVariants/variants/combine/index.js +0 -44
  5271. package/dist/esm/product/components/ProductVariants/variants/index.js +0 -133
  5272. package/dist/esm/product/components/ProductVariants/variants/index.liquid.js +0 -144
  5273. package/dist/esm/product/components/ProductViewMore.js +0 -27
  5274. package/dist/esm/product/components/ProductViewMore.liquid.js +0 -33
  5275. package/dist/esm/product/components/Sku.js +0 -31
  5276. package/dist/esm/product/components/Sku.liquid.js +0 -32
  5277. package/dist/esm/product/components/Vendor.js +0 -43
  5278. package/dist/esm/product/components/Vendor.liquid.js +0 -39
  5279. package/dist/esm/product/setting/DynamicCheckout.js +0 -562
  5280. package/dist/esm/product/setting/FileUpload.js +0 -960
  5281. package/dist/esm/product/setting/Product.js +0 -596
  5282. package/dist/esm/product/setting/ProductBadge.js +0 -529
  5283. package/dist/esm/product/setting/ProductBundleDiscount.js +0 -857
  5284. package/dist/esm/product/setting/ProductBundleDiscountItem.js +0 -31
  5285. package/dist/esm/product/setting/ProductButton.js +0 -1442
  5286. package/dist/esm/product/setting/ProductDescription.js +0 -306
  5287. package/dist/esm/product/setting/ProductImages.js +0 -1220
  5288. package/dist/esm/product/setting/ProductList.js +0 -1656
  5289. package/dist/esm/product/setting/ProductPrice.js +0 -367
  5290. package/dist/esm/product/setting/ProductProperties.js +0 -1101
  5291. package/dist/esm/product/setting/ProductQuantity.js +0 -669
  5292. package/dist/esm/product/setting/ProductTag.js +0 -343
  5293. package/dist/esm/product/setting/ProductTitle.js +0 -362
  5294. package/dist/esm/product/setting/ProductVariants.js +0 -1400
  5295. package/dist/esm/product/setting/ProductViewMore.js +0 -706
  5296. package/dist/esm/product/setting/Sku.js +0 -286
  5297. package/dist/esm/product/setting/Vendor.js +0 -342
  5298. package/dist/esm/product/setting/constant/bundle-layout/horizontalOne.js +0 -492
  5299. package/dist/esm/product/setting/constant/bundle-layout/horizontalThree.js +0 -639
  5300. package/dist/esm/product/setting/constant/bundle-layout/horizontalTwo.js +0 -635
  5301. package/dist/esm/product/setting/constant/bundle-layout/verticalOne.js +0 -363
  5302. package/dist/esm/product/setting/constant/bundle-layout/verticalThree.js +0 -517
  5303. package/dist/esm/product/setting/constant/bundle-layout/verticalTwo.js +0 -517
  5304. package/dist/esm/product/setting/index.js +0 -45
  5305. package/dist/esm/product/setting/presets-config/product-presets/product-1-col.js +0 -510
  5306. package/dist/esm/product/setting/presets-config/product-presets/product-2-col.js +0 -512
  5307. package/dist/esm/product/setting/presets-config/product-presets/product-default.js +0 -514
  5308. package/dist/esm/product/setting/product-image-v2/ProductFeatureImage.js +0 -613
  5309. package/dist/esm/product/setting/product-image-v2/ProductGalleryImage.js +0 -739
  5310. package/dist/esm/product/setting/product-image-v2/ProductImages.js +0 -610
  5311. package/dist/esm/product/setting/swatches-style-config/color.js +0 -73
  5312. package/dist/esm/product/setting/swatches-style-config/dropdown.js +0 -64
  5313. package/dist/esm/product/setting/swatches-style-config/image-shopify.js +0 -60
  5314. package/dist/esm/product/setting/swatches-style-config/image.js +0 -60
  5315. package/dist/esm/product/setting/swatches-style-config/rectangle-list.js +0 -97
  5316. package/dist/esm/radio/Radio.js +0 -34
  5317. package/dist/esm/radio/setting/Radio.js +0 -66
  5318. package/dist/esm/radio/setting/index.js +0 -7
  5319. package/dist/esm/select/Select.js +0 -58
  5320. package/dist/esm/select/setting/index.js +0 -7
  5321. package/dist/esm/sticky/setting/Sticky.js +0 -237
  5322. package/dist/esm/sticky/setting/index.js +0 -7
  5323. package/dist/esm/sticky/setting/preset-config.js +0 -2002
  5324. package/dist/esm/stock-counter/const.js +0 -14
  5325. package/dist/esm/stock-counter/helpers.js +0 -53
  5326. package/dist/esm/stock-counter/setting/StockCounter.js +0 -614
  5327. package/dist/esm/stock-counter/setting/index.js +0 -7
  5328. package/dist/esm/tab/components/common.js +0 -60
  5329. package/dist/esm/tab/setting/TabItem.js +0 -32
  5330. package/dist/esm/tab/setting/Tabs.js +0 -629
  5331. package/dist/esm/tab/setting/index.js +0 -9
  5332. package/dist/esm/text/components/common.js +0 -12
  5333. package/dist/esm/text/setting/Text.js +0 -467
  5334. package/dist/esm/text/setting/index.js +0 -7
  5335. package/dist/esm/textarea/Textarea.js +0 -35
  5336. package/dist/esm/textarea/setting/Textarea.js +0 -111
  5337. package/dist/esm/textarea/setting/index.js +0 -7
  5338. package/dist/esm/third-party/components/PowrContactFormBuilder.js +0 -28
  5339. package/dist/esm/third-party/components/PowrContactFormBuilder.liquid.js +0 -8
  5340. package/dist/esm/third-party/configs/PowrContactFormBuilder.js +0 -8
  5341. package/dist/esm/third-party/helpers/thirdParty.js +0 -52
  5342. package/dist/esm/third-party/setting/AftershipEmailMarketingsms.js +0 -156
  5343. package/dist/esm/third-party/setting/AirProductReviewsAppUgc.js +0 -136
  5344. package/dist/esm/third-party/setting/AliReviews.js +0 -135
  5345. package/dist/esm/third-party/setting/AlsoBoughtCbb.js +0 -123
  5346. package/dist/esm/third-party/setting/AppointmentBookingCowlendar.js +0 -124
  5347. package/dist/esm/third-party/setting/AppstleBundlesDiscounts.js +0 -142
  5348. package/dist/esm/third-party/setting/AppstleSubscriptions.js +0 -123
  5349. package/dist/esm/third-party/setting/BestBuyFulfillment.js +0 -129
  5350. package/dist/esm/third-party/setting/BfSizeChartSizeGuide.js +0 -127
  5351. package/dist/esm/third-party/setting/BirdChime.js +0 -114
  5352. package/dist/esm/third-party/setting/Bogos.js +0 -159
  5353. package/dist/esm/third-party/setting/BoldProductOptions.js +0 -109
  5354. package/dist/esm/third-party/setting/BoldSubscriptions.js +0 -125
  5355. package/dist/esm/third-party/setting/BonLoyaltyRewardsReferrals.js +0 -161
  5356. package/dist/esm/third-party/setting/BoostAISearchDiscovery.js +0 -165
  5357. package/dist/esm/third-party/setting/Bundler.js +0 -127
  5358. package/dist/esm/third-party/setting/CleanSizeCharts.js +0 -132
  5359. package/dist/esm/third-party/setting/CrossSellCartUpsell.js +0 -109
  5360. package/dist/esm/third-party/setting/CustomProductOptionsVariant.js +0 -112
  5361. package/dist/esm/third-party/setting/DiscountyBulkDiscountSales.js +0 -110
  5362. package/dist/esm/third-party/setting/EasifyProductOptions.js +0 -121
  5363. package/dist/esm/third-party/setting/EasyBundleBuilderSkailama.js +0 -124
  5364. package/dist/esm/third-party/setting/EasySellCOD.js +0 -123
  5365. package/dist/esm/third-party/setting/EcoboostifyShoppableReelUgc.js +0 -138
  5366. package/dist/esm/third-party/setting/EcomsendBackInStockAlert.js +0 -143
  5367. package/dist/esm/third-party/setting/EssentialAnnouncementBar.js +0 -138
  5368. package/dist/esm/third-party/setting/EssentialCountdownTimerBar.js +0 -138
  5369. package/dist/esm/third-party/setting/EstimatedDeliveryDatePlus.js +0 -124
  5370. package/dist/esm/third-party/setting/FastBundleBundlesDiscounts.js +0 -166
  5371. package/dist/esm/third-party/setting/FeraReviews.js +0 -420
  5372. package/dist/esm/third-party/setting/FirePush.js +0 -109
  5373. package/dist/esm/third-party/setting/FlyBundlesUpsellsFbt.js +0 -147
  5374. package/dist/esm/third-party/setting/FordeerProductLabels.js +0 -207
  5375. package/dist/esm/third-party/setting/FrequentlyBoughtTogether.js +0 -129
  5376. package/dist/esm/third-party/setting/GloColorSwatchvariantImage.js +0 -148
  5377. package/dist/esm/third-party/setting/GloboProductOptionsVariant.js +0 -129
  5378. package/dist/esm/third-party/setting/GoogleReviewsByReputon.js +0 -156
  5379. package/dist/esm/third-party/setting/Growave.js +0 -231
  5380. package/dist/esm/third-party/setting/HextomCountdownTimerBar.js +0 -124
  5381. package/dist/esm/third-party/setting/HextomFreeShippingBar.js +0 -124
  5382. package/dist/esm/third-party/setting/HulkFormBuilder.js +0 -121
  5383. package/dist/esm/third-party/setting/HulkProductOptions.js +0 -127
  5384. package/dist/esm/third-party/setting/InfiniteOptions.js +0 -109
  5385. package/dist/esm/third-party/setting/Instafeed.js +0 -115
  5386. package/dist/esm/third-party/setting/InstasellShoppableInstagram.js +0 -124
  5387. package/dist/esm/third-party/setting/JudgemeReviews.js +0 -179
  5388. package/dist/esm/third-party/setting/JunipProductReviewsUgc.js +0 -163
  5389. package/dist/esm/third-party/setting/KachingBundles.js +0 -136
  5390. package/dist/esm/third-party/setting/KingProductOptions.js +0 -123
  5391. package/dist/esm/third-party/setting/KiteFreeGiftDiscount.js +0 -124
  5392. package/dist/esm/third-party/setting/KlarnaMessaging.js +0 -171
  5393. package/dist/esm/third-party/setting/Klaviyo.js +0 -124
  5394. package/dist/esm/third-party/setting/KoalaBundleQuantityDiscount.js +0 -112
  5395. package/dist/esm/third-party/setting/LaiProductReviews.js +0 -230
  5396. package/dist/esm/third-party/setting/LoloyalLoyaltyReferrals.js +0 -145
  5397. package/dist/esm/third-party/setting/LoopSubscriptions.js +0 -156
  5398. package/dist/esm/third-party/setting/LooxReviews.js +0 -280
  5399. package/dist/esm/third-party/setting/MaxbundleProductBundles.js +0 -150
  5400. package/dist/esm/third-party/setting/MbcBundleVolumeDiscount.js +0 -112
  5401. package/dist/esm/third-party/setting/MyappgurusProductReviews.js +0 -167
  5402. package/dist/esm/third-party/setting/NotifyBackInStockPreOrder.js +0 -112
  5403. package/dist/esm/third-party/setting/OkendoReviewsLoyalty.js +0 -167
  5404. package/dist/esm/third-party/setting/Omnisend.js +0 -174
  5405. package/dist/esm/third-party/setting/Opinew.js +0 -217
  5406. package/dist/esm/third-party/setting/ParcelPanel.js +0 -118
  5407. package/dist/esm/third-party/setting/PickyStory.js +0 -142
  5408. package/dist/esm/third-party/setting/PowerfulContactFormBuilder.js +0 -156
  5409. package/dist/esm/third-party/setting/PowrContactFormBuilder.js +0 -138
  5410. package/dist/esm/third-party/setting/PreorderNowPreOrderPq.js +0 -148
  5411. package/dist/esm/third-party/setting/PreorderNowWodPresale.js +0 -142
  5412. package/dist/esm/third-party/setting/ProductOptionsCustomizer.js +0 -130
  5413. package/dist/esm/third-party/setting/ProductOptionsVariantOption.js +0 -118
  5414. package/dist/esm/third-party/setting/ProductReviews.js +0 -106
  5415. package/dist/esm/third-party/setting/PumperBundlesVolumeDiscount.js +0 -134
  5416. package/dist/esm/third-party/setting/PushOwl.js +0 -767
  5417. package/dist/esm/third-party/setting/QikifyUpsell.js +0 -140
  5418. package/dist/esm/third-party/setting/RapiBundleQuantityBreaks.js +0 -127
  5419. package/dist/esm/third-party/setting/RechargeSubscriptions.js +0 -133
  5420. package/dist/esm/third-party/setting/RecurpaySubscriptionApp.js +0 -112
  5421. package/dist/esm/third-party/setting/Releasit.js +0 -175
  5422. package/dist/esm/third-party/setting/RequestQuoteHidePrice.js +0 -113
  5423. package/dist/esm/third-party/setting/ReviewxpoProductReviewsApp.js +0 -176
  5424. package/dist/esm/third-party/setting/Rivyo.js +0 -142
  5425. package/dist/esm/third-party/setting/Ryviu.js +0 -146
  5426. package/dist/esm/third-party/setting/SealSubscriptions.js +0 -123
  5427. package/dist/esm/third-party/setting/SegunoEmailMarketing.js +0 -148
  5428. package/dist/esm/third-party/setting/Selleasy.js +0 -145
  5429. package/dist/esm/third-party/setting/SeoantTrustBadgesIcon.js +0 -138
  5430. package/dist/esm/third-party/setting/ShopifyForms.js +0 -138
  5431. package/dist/esm/third-party/setting/ShopifySubscriptions.js +0 -134
  5432. package/dist/esm/third-party/setting/SimpleBundlesKits.js +0 -129
  5433. package/dist/esm/third-party/setting/SkioSubscriptionsYcS20.js +0 -120
  5434. package/dist/esm/third-party/setting/SmartSearchBarAndFilters.js +0 -124
  5435. package/dist/esm/third-party/setting/SproutPlantTreesGrowSales.js +0 -137
  5436. package/dist/esm/third-party/setting/Stamped/Badge.js +0 -115
  5437. package/dist/esm/third-party/setting/Stamped/BadgeDouble.js +0 -20
  5438. package/dist/esm/third-party/setting/Stamped/BadgeRibbon.js +0 -59
  5439. package/dist/esm/third-party/setting/Stamped/BadgeSingle.js +0 -20
  5440. package/dist/esm/third-party/setting/Stamped/Carousel.js +0 -124
  5441. package/dist/esm/third-party/setting/Stamped/CheckoutReviews.js +0 -105
  5442. package/dist/esm/third-party/setting/Stamped/Colors.js +0 -56
  5443. package/dist/esm/third-party/setting/Stamped/Filters.js +0 -248
  5444. package/dist/esm/third-party/setting/Stamped/FullPage.js +0 -88
  5445. package/dist/esm/third-party/setting/Stamped/InstagramFeed.js +0 -109
  5446. package/dist/esm/third-party/setting/Stamped/MainWidget.js +0 -143
  5447. package/dist/esm/third-party/setting/Stamped/ProductRating.js +0 -71
  5448. package/dist/esm/third-party/setting/Stamped/SingleHighlight.js +0 -20
  5449. package/dist/esm/third-party/setting/Stamped/SiteBadge.js +0 -144
  5450. package/dist/esm/third-party/setting/Stamped/TopRated.js +0 -35
  5451. package/dist/esm/third-party/setting/Stamped/VisualGallery.js +0 -127
  5452. package/dist/esm/third-party/setting/Stamped/WallPhotos.js +0 -89
  5453. package/dist/esm/third-party/setting/Stamped/index.js +0 -48
  5454. package/dist/esm/third-party/setting/Stamped.js +0 -237
  5455. package/dist/esm/third-party/setting/StellarDeliveryDatePickup.js +0 -123
  5456. package/dist/esm/third-party/setting/SubifySubscriptionsApp.js +0 -138
  5457. package/dist/esm/third-party/setting/TagembedSocialPostReview.js +0 -122
  5458. package/dist/esm/third-party/setting/TagshopShoppableVideosUgc.js +0 -167
  5459. package/dist/esm/third-party/setting/TeeinblueProductPersonalizer.js +0 -112
  5460. package/dist/esm/third-party/setting/TrustBadgesBear.js +0 -124
  5461. package/dist/esm/third-party/setting/TrustMe.js +0 -109
  5462. package/dist/esm/third-party/setting/TrustedsiteTrustBadges.js +0 -173
  5463. package/dist/esm/third-party/setting/Trustoo.js +0 -175
  5464. package/dist/esm/third-party/setting/TrustreviewsProductReviews.js +0 -206
  5465. package/dist/esm/third-party/setting/TrustshopProductReviews.js +0 -155
  5466. package/dist/esm/third-party/setting/UltimateSalesBoost.js +0 -198
  5467. package/dist/esm/third-party/setting/UnlimitedBundlesDiscounts.js +0 -142
  5468. package/dist/esm/third-party/setting/Vitals.js +0 -340
  5469. package/dist/esm/third-party/setting/WhatmoreShoppableVideosreel.js +0 -351
  5470. package/dist/esm/third-party/setting/WideBundle.js +0 -109
  5471. package/dist/esm/third-party/setting/Wiser.js +0 -251
  5472. package/dist/esm/third-party/setting/WishlistKing.js +0 -127
  5473. package/dist/esm/third-party/setting/WishlistPlus.js +0 -145
  5474. package/dist/esm/third-party/setting/YotpoLoyalty.js +0 -79
  5475. package/dist/esm/third-party/setting/YotpoReviews.js +0 -193
  5476. package/dist/esm/third-party/setting/index.js +0 -237
  5477. package/dist/esm/third-party-instant/helpers/thirdParty.js +0 -68
  5478. package/dist/esm/third-party-instant/setting/InstantJudgemeReviews.js +0 -157
  5479. package/dist/esm/third-party-instant/setting/InstantKlaviyo.js +0 -95
  5480. package/dist/esm/third-party-instant/setting/InstantLooxReviews.js +0 -118
  5481. package/dist/esm/third-party-instant/setting/InstantYotpoLoyalty.js +0 -95
  5482. package/dist/esm/third-party-instant/setting/index.js +0 -13
  5483. package/dist/esm/third-party-instant/types/JudgemeReviews.js +0 -7
  5484. package/dist/esm/third-party-slot/setting/ThirdPartySlot.js +0 -109
  5485. package/dist/esm/third-party-slot/setting/index.js +0 -7
  5486. package/dist/esm/video/helpers/common.js +0 -37
  5487. package/dist/esm/video/setting/Video.js +0 -496
  5488. package/dist/esm/video/setting/index.js +0 -7
@@ -0,0 +1,46 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var core=require("@gem-sdk/core"),NextImage_liquid=require("../../../../../image/components/NextImage.liquid.js"),common=require("../../common/common.js"),productGallery=require("../../common/productGallery.js"),_function=require("../../../../helpers/function.js"),getProductImagesStyles=require("../../composables/getProductImagesStyles.js"),getProductImagesClassName=require("../../composables/getProductImagesClassName.js"),getProductImagesAttr=require("../../composables/getProductImagesAttr.js"),system=require("@gem-sdk/system"),Carousel_liquid=require("../../../../../carousel/components/root/Carousel.liquid.js"),CarouselItem_liquid=require("../../../../../carousel/components/item/CarouselItem.liquid.js");const ProductGalleryCarousel=({builderPropUID:e,children:t,enableLazyLoadImage:i,...o})=>{let{featuredImageGalleryClasses:s,galleryItemClasses:r}=getProductImagesClassName.getProductImagesClassName(o),{galleryCarouselSettingAttrs:a}=getProductImagesAttr.getProductImagesAttr(o),{galleryCarouselStyle:l,galleryCarouselItemStyle:d}=getProductImagesStyles.getProductImagesStyles(o),p=()=>{let e=(e,t,i)=>{let o=core.getResponsiveValueByScreen(t,i),s=core.getResponsiveValueByScreen(e,i),r="slider"===s&&("bottom-center"===o||"inside-bottom"===o),a=["left","right","inside-left","inside-right"].includes(o??"");return a||r},t=productGallery.checkDisplayGalleryByWidth({shapeByLayout:m}),i={desktop:t.desktop&&e(o.type,o.position,"desktop"),tablet:t.tablet&&e(o.type,o.position,"tablet"),mobile:t.mobile&&e(o.type,o.position,"mobile")};return common.getDisplayStyle(e=>!i[e],"flex")},m=productGallery.getShapeByLayout({shape:o.shape,shapeForBottom:o.shapeForBottom,shapeFor1Col:o.shapeFor1Col,shapeFor2Col:o.shapeFor2Col,shapeForFtOnly:o.shapeForFtOnly,shapeForInsideBottom:o.shapeForInsideBottom,shapeForInside:o.shapeForInside},o.position),g=(e,t)=>core.template`${NextImage_liquid.default({srcIsLiquidCode:!0,src:`${common.getSrcImage("media.preview_image")}`,width:"{{media.width}}",height:"{{media.height}}",alt:"{{media.alt}}",setting:e,baseSrc:"{{media.preview_image | image_url}}",customLazyload:!0,style:t,className:"!gp-rounded-none gp-w-full gp-h-full gp-absolute gp-top-0 gp-left-0 gp-cursor-pointer",enableLazyLoadImage:i})}`,u=common.getPaddingBottomByShapeSetting(m),c=t=>`
2
+ ${system.LiquidIf("media.media_type == 'video'","{% assign mediaSourceUrl = media.sources.last.url %}")}
3
+ ${system.LiquidIf("media.media_type == 'external_video'","{% assign mediaSourceUrl = media | external_video_url %}")}
4
+ ${system.LiquidIf("media.media_type == 'image'","{% assign mediaSourceUrl = media.src %}")}
5
+ ${CarouselItem_liquid.default({id:"{{imageID}}",contentType:"productImage",className:`${r(`gp-gallery-image-item ${t}`)}`,parentId:`${e}-{{product.id}}`,builderAttrs:{"data-outline":t?"active":"deactive"},style:d,children:`
6
+ <div class="gp-w-full gp-relative"
7
+ style="${_function.getStyleOfObject(core.makeStyleResponsive("pb",u))};"
8
+ >
9
+ ${g({aspectRatio:common.getAspectRatio(m),layout:o?.layout,qualityPercent:o?.qualityPercent,qualityType:o?.qualityType},{width:"100%",height:"100%",cursor:"pointer"})}
10
+
11
+ ${system.LiquidIf("media.media_type == 'video' or media.media_type == 'external_video'",`<div class="gp-absolute gp-pb-1 gp-pr-1 gp-right-0 gp-bottom-0" >
12
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
13
+ <rect opacity="0.9" width="24" height="24" rx="3" fill="#212121"/>
14
+ <path d="M17.6869 12.2646L17.6868 12.2646L6.78379 18.4464C6.78378 18.4464 6.78376 18.4464 6.78374 18.4464C6.52931 18.5903 6.1665 18.4179 6.1665 18.0416V5.95844C6.1665 5.58218 6.52917 5.40981 6.7836 5.55354C6.78366 5.55357 6.78373 5.55361 6.78379 5.55365L17.6868 11.7354L17.6869 11.7354C17.8819 11.846 17.8819 12.154 17.6869 12.2646Z" stroke="#F9F9F9" stroke-miterlimit="10"/>
15
+ </svg>
16
+ </div>`)}
17
+ ${system.LiquidIf("media.media_type == 'model'",`<div class="gp-absolute gp-pb-1 gp-pr-1 gp-right-0 gp-bottom-0">
18
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
19
+ <rect opacity="0.9" width="24" height="24" rx="3" fill="#212121"/>
20
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.7441 4.57034C11.9017 4.47655 12.098 4.47655 12.2555 4.57034L18.5889 8.33957C18.7404 8.42971 18.8332 8.59296 18.8332 8.76923V15.2308C18.8332 15.407 18.7404 15.5703 18.5889 15.6604L12.2555 19.4297C12.098 19.5234 11.9017 19.5234 11.7441 19.4297L5.41079 15.6604C5.25932 15.5703 5.1665 15.407 5.1665 15.2308V8.76923C5.1665 8.59296 5.25932 8.42971 5.41079 8.33957L11.7441 4.57034ZM6.1665 9.64865V14.9465L11.4998 18.1206V12.8227L6.1665 9.64865ZM12.4998 12.8227V18.1206L17.8332 14.9465V9.64865L12.4998 12.8227ZM17.3555 8.76923L11.9998 11.9566L6.64417 8.76923L11.9998 5.58185L17.3555 8.76923Z" fill="#F9F9F9"/>
21
+ </svg>
22
+ </div>`)}
23
+
24
+ <div class="gp-absolute gp-inset-0 gp-flex gp-cursor-pointer gp-items-center gp-justify-center gp-bg-black/50 gp-opacity-0 gp-transition-opacity gp-duration-100 group-hover:gp-opacity-100"
25
+ style="${_function.getStyleOfObject(productGallery.getZoomDisplay(o?.clickOpenLightBox))}"
26
+ >
27
+ <svg
28
+ height="100%"
29
+ width="100%"
30
+ xmlns="http://www.w3.org/2000/svg"
31
+ class="gp-h-6 gp-w-6"
32
+ viewBox="0 0 512 512"
33
+ color="#fff"
34
+ ><path
35
+ fill="currentColor"
36
+ stroke-linecap="round"
37
+ stroke-linejoin="round"
38
+ d="M62.2467 345.253C43.7072 326.714 29.1474 305.116 18.9714 281.057C8.42839 256.13 3.08301 229.671 3.08301 202.418C3.08301 175.165 8.43012 148.707 18.974 123.78C29.15 99.7213 43.7098 78.123 62.2485 59.5834C80.788 41.0439 102.386 26.4841 126.445 16.3081C151.372 5.76422 177.831 0.417969 205.084 0.417969C232.337 0.417969 258.794 5.76421 283.722 16.3064C307.78 26.4823 329.379 41.0422 347.918 59.5817C366.458 78.1212 381.017 99.7196 391.194 123.778C401.737 148.706 407.083 175.163 407.083 202.417C407.083 229.671 401.737 256.129 391.194 281.056C388.406 287.648 385.277 294.048 381.839 300.257L493.397 411.815C514.091 432.511 514.091 466.187 493.395 486.883L484.272 496.006C474.245 506.032 460.915 511.553 446.738 511.553C432.559 511.553 419.228 506.032 409.202 496.006L296.022 382.824C291.996 384.854 287.898 386.762 283.721 388.528C258.794 399.073 232.336 404.419 205.082 404.419C177.828 404.419 151.371 399.071 126.443 388.528C102.385 378.352 80.7863 363.793 62.2467 345.253ZM301.699 336.166C313.928 327.317 324.896 316.835 334.282 305.034C342.149 295.142 348.9 284.325 354.355 272.775C364.433 251.432 370.076 227.586 370.076 202.419C370.076 111.296 296.206 37.4253 205.083 37.4253C113.96 37.4253 40.0895 111.294 40.0895 202.418C40.0895 293.541 113.96 367.411 205.084 367.411C227.413 367.411 248.701 362.967 268.126 354.928C280.091 349.976 291.347 343.658 301.699 336.166ZM467.229 460.716C473.507 454.439 473.507 444.26 467.229 437.982L360.595 331.348C356.601 336.153 352.378 340.794 347.919 345.253C341.671 351.502 335.068 357.286 328.147 362.615L435.371 469.839C438.511 472.977 442.624 474.547 446.739 474.547C450.853 474.547 454.967 472.978 458.106 469.839L467.229 460.716ZM223.582 183.91H281.071C291.292 183.91 299.574 192.194 299.575 202.414C299.575 206.778 298.062 210.786 295.533 213.951C292.143 218.195 286.926 220.916 281.072 220.916H228.303H223.583V225.63V278.406C223.583 287.081 217.613 294.358 209.559 296.361C208.124 296.717 206.625 296.909 205.08 296.909C194.861 296.909 186.577 288.625 186.577 278.406V220.917H129.087C118.868 220.917 110.584 212.633 110.584 202.414C110.584 192.195 118.868 183.911 129.087 183.911H186.576V126.421C186.576 116.202 194.86 107.918 205.079 107.918C215.298 107.918 223.582 116.202 223.582 126.421V183.91Z"
39
+ />
40
+ </svg>
41
+ </div>
42
+ </div>
43
+ `})}`,n=()=>{let e=productGallery.getCarouselVerticalConfigByPosition(o.position),t=[e.desktop?"gp-px-0":"gp-py-0",e.tablet?"tablet:gp-px-0":"tablet:gp-py-0",e.mobile?"mobile:gp-px-0":"mobile:gp-py-0"];return` ${t.join(" ")}`},y=system.LiquidIf("product.media.size > 1",system.LiquidFor("media in product.media",`${system.LiquidIf("media.media_type == 'image'",system.LiquidFor("image in product.images",system.LiquidIf("image.src == media.src","{% assign imageID = image.id %}{% break %}")),"{% assign imageID = '' %}")}
44
+ ${system.LiquidIf("media.id == product.featured_media.id ",c(o?.borderActive?.border!=="none"?"active":""),c())}`));return core.template`
45
+ ${Carousel_liquid.default({builderProps:{uid:e},rootId:`${e}-{{product.id}}`,rootClass:`${s}`,rootAttrs:{type:"grid-carousel","product-media":"{{product.media.size}}"},wrapperClass:n(),slidesClass:productGallery.getMinHeightByPosition(o.position,o.navigationPosition),isHiddenArrowWhenDisabled:!0,setting:a,rootStyles:{...p()},styles:l,disableMarginAuto:!0,children:y})}
46
+ `};exports.default=ProductGalleryCarousel;
@@ -0,0 +1,2 @@
1
+ 'use client';
2
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var jsxRuntime=require("react/jsx-runtime"),ProductGalleryGrid=require("../child/ProductGalleryGrid.js");const GalleryGrid=e=>{let{setting:r,styles:t,gallery:i,builderProps:l,noDataChildren:d,onHandleClickImage:u,children:n}=e,a={...r,...t};return i?.[0]?.id==="noImageError"?jsxRuntime.jsx(jsxRuntime.Fragment,{children:d}):jsxRuntime.jsx(ProductGalleryGrid.default,{productImages:i,enableHoverAction:!0,...a,builderPropUID:l?.uid,onHandleClick:(e,r)=>u(e||"",r),children:n})};exports.default=GalleryGrid;
@@ -0,0 +1,89 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var core=require("@gem-sdk/core"),system=require("@gem-sdk/system"),Modal3d_liquid=require("../../../../../image/components/Modal3d.liquid.js"),NextImage_liquid=require("../../../../../image/components/NextImage.liquid.js"),Video_liquid=require("../../../../../image/components/Video.liquid.js"),HTML5Embed_liquid=require("../../../../../video/components/HTML5Embed.liquid.js"),_function=require("../../../../helpers/function.js"),common=require("../../common/common.js"),productFeaturedImage=require("../../common/productFeaturedImage.js"),productGallery=require("../../common/productGallery.js"),getProductImagesClassName=require("../../composables/getProductImagesClassName.js"),getProductImagesStyles=require("../../composables/getProductImagesStyles.js");const ProductGalleryGrid=({builderPropUID:e,wrapperStyle:i,children:t,enableLazyLoadImage:a,...s})=>{let{galleryItemClasses:o,galleryGridWrapperClasses:d}=getProductImagesClassName.getProductImagesClassName(s),{galleryGridStyles:r,galleryGridItemStyles:l}=getProductImagesStyles.getProductImagesStyles(s),m=productGallery.getShapeByLayout({shape:s.shape,shapeForBottom:s.shapeForBottom,shapeFor1Col:s.shapeFor1Col,shapeFor2Col:s.shapeFor2Col,shapeForFtOnly:s.shapeForFtOnly,shapeForInsideBottom:s.shapeForInsideBottom,shapeForInside:s.shapeForInside},s.position),c=()=>{let e=["desktop","mobile","tablet"],i={desktop:"none",tablet:"none",mobile:"none"};return e.forEach(e=>{let t=core.getResponsiveValueByScreen(s?.position,e);i={...i,[e]:"one-col"===t||"two-col"==t?"block":"none"}}),core.makeStyleResponsive("d",i)},u=(e,i)=>core.template`
2
+ ${NextImage_liquid.default({srcIsLiquidCode:!0,src:`${common.getSrcImage("media.preview_image")}`,width:"{{media.width}}",height:"{{media.height}}",alt:"{{media.alt}}",baseSrc:"{{media.preview_image | image_url}}",setting:e,style:i,className:"!gp-rounded-none",customLazyload:!1,enableLazyLoadImage:a})}
3
+ ${system.If(s?.galleryHoverEffect!=="none",`<div class="${core.cls("zoom-element !gp-max-w-none gp-w-full gp-h-full",productFeaturedImage.getZoomImageClass())}">
4
+ ${NextImage_liquid.default({srcIsLiquidCode:!0,src:`${common.getSrcImage("media.preview_image")}`,width:"{{media.width}}",height:"{{media.height}}",baseSrc:"{{media.preview_image | image_url}}",alt:"{{media.alt}}",setting:e,style:i,className:"!gp-rounded-none gp-w-full gp-h-full",customLazyload:!1,enableLazyLoadImage:a})}
5
+ </div>`," ")}
6
+ ${system.If(s?.galleryHoverEffect=="zoom"&&s?.galleryZoomType=="glasses",`<div class="${core.cls("zoom-lens-element",productFeaturedImage.getZoomLenClass())}" style="opacity: 0; background-image: url('{{media.preview_image | product_img_url: '1024x1024'}}')">
7
+ </div>
8
+ `," ")}
9
+ `,g=()=>Modal3d_liquid.default({src:system.LiquidIf("media.sources.first.url contains '.glb'","{{ media.sources.first.url }}","{{media.sources.last.url}}"),alt:"{{media.preview_image.alt}}",poster:"{{media.preview_image.src | product_img_url: '1024x1024'}}",cameraControls:!0,arStatus:"not-presenting",style:{width:"100%",height:"100%"},aspectRatio:common.getAspectRatio(m)}),p=()=>Video_liquid.default({src:"{{mediaSourceVideo}}",alt:"{{media.alt}}",autoplay:!1,allowfullscreen:!0,controls:!0,style:{width:"100%",height:"100%"}}),n=()=>HTML5Embed_liquid.default({src:"{{mediaSourceVideo}}",title:"{{media.alt}}",autoplay:!1,controls:!0,style:{width:"100%","max-height":"100%"}}),y=()=>core.template`
10
+ ${system.LiquidIf("media.media_type == 'video' or media.media_type == 'external_video'",`<div class="gp-absolute gp-pb-1 gp-pr-1 gp-right-0 gp-bottom-0" >
11
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
12
+ <rect opacity="0.9" width="24" height="24" rx="3" fill="#212121"/>
13
+ <path d="M17.6869 12.2646L17.6868 12.2646L6.78379 18.4464C6.78378 18.4464 6.78376 18.4464 6.78374 18.4464C6.52931 18.5903 6.1665 18.4179 6.1665 18.0416V5.95844C6.1665 5.58218 6.52917 5.40981 6.7836 5.55354C6.78366 5.55357 6.78373 5.55361 6.78379 5.55365L17.6868 11.7354L17.6869 11.7354C17.8819 11.846 17.8819 12.154 17.6869 12.2646Z" stroke="#F9F9F9" stroke-miterlimit="10"/>
14
+ </svg>
15
+ </div>`)}
16
+ ${system.LiquidIf("media.media_type == 'model'",`<div class="gp-absolute gp-pb-1 gp-pr-1 gp-right-0 gp-bottom-0">
17
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
18
+ <rect opacity="0.9" width="24" height="24" rx="3" fill="#212121"/>
19
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.7441 4.57034C11.9017 4.47655 12.098 4.47655 12.2555 4.57034L18.5889 8.33957C18.7404 8.42971 18.8332 8.59296 18.8332 8.76923V15.2308C18.8332 15.407 18.7404 15.5703 18.5889 15.6604L12.2555 19.4297C12.098 19.5234 11.9017 19.5234 11.7441 19.4297L5.41079 15.6604C5.25932 15.5703 5.1665 15.407 5.1665 15.2308V8.76923C5.1665 8.59296 5.25932 8.42971 5.41079 8.33957L11.7441 4.57034ZM6.1665 9.64865V14.9465L11.4998 18.1206V12.8227L6.1665 9.64865ZM12.4998 12.8227V18.1206L17.8332 14.9465V9.64865L12.4998 12.8227ZM17.3555 8.76923L11.9998 11.9566L6.64417 8.76923L11.9998 5.58185L17.3555 8.76923Z" fill="#F9F9F9"/>
20
+ </svg>
21
+ </div>`)}
22
+ ${u({aspectRatio:common.getAspectRatio(m),layout:s?.layout,qualityType:s?.qualityType,qualityPercent:s?.qualityPercent},{width:"100%",height:"100%"})}
23
+
24
+ <div class="gp-absolute gp-inset-0 gp-flex gp-cursor-pointer gp-items-center gp-justify-center gp-bg-black/50 gp-opacity-0 gp-transition-opacity gp-duration-100 group-hover:gp-opacity-100"
25
+ style="${_function.getStyleOfObject(productGallery.getZoomDisplay(s?.clickOpenLightBox))}" >
26
+ <svg
27
+ height="100%"
28
+ width="100%"
29
+ xmlns="http://www.w3.org/2000/svg"
30
+ class="gp-h-6 gp-w-6"
31
+ viewBox="0 0 512 512"
32
+ color="#fff"
33
+ >
34
+ <path
35
+ fill="currentColor"
36
+ stroke-linecap="round"
37
+ stroke-linejoin="round"
38
+ d="M62.2467 345.253C43.7072 326.714 29.1474 305.116 18.9714 281.057C8.42839 256.13 3.08301 229.671 3.08301 202.418C3.08301 175.165 8.43012 148.707 18.974 123.78C29.15 99.7213 43.7098 78.123 62.2485 59.5834C80.788 41.0439 102.386 26.4841 126.445 16.3081C151.372 5.76422 177.831 0.417969 205.084 0.417969C232.337 0.417969 258.794 5.76421 283.722 16.3064C307.78 26.4823 329.379 41.0422 347.918 59.5817C366.458 78.1212 381.017 99.7196 391.194 123.778C401.737 148.706 407.083 175.163 407.083 202.417C407.083 229.671 401.737 256.129 391.194 281.056C388.406 287.648 385.277 294.048 381.839 300.257L493.397 411.815C514.091 432.511 514.091 466.187 493.395 486.883L484.272 496.006C474.245 506.032 460.915 511.553 446.738 511.553C432.559 511.553 419.228 506.032 409.202 496.006L296.022 382.824C291.996 384.854 287.898 386.762 283.721 388.528C258.794 399.073 232.336 404.419 205.082 404.419C177.828 404.419 151.371 399.071 126.443 388.528C102.385 378.352 80.7863 363.793 62.2467 345.253ZM301.699 336.166C313.928 327.317 324.896 316.835 334.282 305.034C342.149 295.142 348.9 284.325 354.355 272.775C364.433 251.432 370.076 227.586 370.076 202.419C370.076 111.296 296.206 37.4253 205.083 37.4253C113.96 37.4253 40.0895 111.294 40.0895 202.418C40.0895 293.541 113.96 367.411 205.084 367.411C227.413 367.411 248.701 362.967 268.126 354.928C280.091 349.976 291.347 343.658 301.699 336.166ZM467.229 460.716C473.507 454.439 473.507 444.26 467.229 437.982L360.595 331.348C356.601 336.153 352.378 340.794 347.919 345.253C341.671 351.502 335.068 357.286 328.147 362.615L435.371 469.839C438.511 472.977 442.624 474.547 446.739 474.547C450.853 474.547 454.967 472.978 458.106 469.839L467.229 460.716ZM223.582 183.91H281.071C291.292 183.91 299.574 192.194 299.575 202.414C299.575 206.778 298.062 210.786 295.533 213.951C292.143 218.195 286.926 220.916 281.072 220.916H228.303H223.583V225.63V278.406C223.583 287.081 217.613 294.358 209.559 296.361C208.124 296.717 206.625 296.909 205.08 296.909C194.861 296.909 186.577 288.625 186.577 278.406V220.917H129.087C118.868 220.917 110.584 212.633 110.584 202.414C110.584 192.195 118.868 183.911 129.087 183.911H186.576V126.421C186.576 116.202 194.86 107.918 205.079 107.918C215.298 107.918 223.582 116.202 223.582 126.421V183.91Z"
39
+ />
40
+ </svg>
41
+ </div>
42
+ `,f=i=>`
43
+ ${system.LiquidIf("media.media_type == 'video'","{% assign mediaSourceUrl = media.sources.last.url %}")}
44
+ ${system.LiquidIf("media.media_type == 'external_video'","{% assign mediaSourceUrl = media | external_video_url %}{% assign mediaSource = media | json %}")}
45
+ ${system.LiquidIf("media.media_type == 'image'","{% assign mediaSourceUrl = media.src %}")}
46
+ <div
47
+ aria-hidden
48
+ id="{{imageID}}"
49
+ media-type="{{media.media_type}}"
50
+ media-poster="{{media.preview_image.src}}"
51
+ media-source-url="{{media.sources.first.url}}"
52
+ media-last-source-url="{{mediaSourceUrl}}"
53
+ external-id="{{media.external_id}}"
54
+ grid-index="{{forloop.index}}"
55
+ data-outline="${i?"active":"deactive"}"
56
+ class="${o(`gem-slider-item-${e}-{{product.id}} gp-gallery-image-item ${i}`)}"
57
+ style="${_function.getStyleOfObject(l)}"
58
+ >
59
+ <div class="gp-h-full gp-w-full" style="${system.LiquidIf("media == null or media.media_type == 'image'","display: block !important;")}">
60
+ ${system.LiquidIf("media != null",y(),h())}
61
+ </div>
62
+
63
+ {% assign isMedia= false %}
64
+ ${system.LiquidIf("media.media_type == 'external_video' or media.media_type == 'video' or media.media_type == 'model'","{% assign isMedia = true %}")}
65
+ <div class="${system.LiquidIf("isMedia","gp-flex gp-justify-center gp-items-center")}"
66
+ style="${system.LiquidIf("isMedia",_function.getStyleOfObject({...core.makeStyleResponsive("aspect",common.getAspectRatio(m))}))} ${_function.getStyleOfObject({...c()})}"
67
+ >
68
+ {% case media.media_type %}
69
+ {% when 'external_video' %}
70
+ {% assign mediaSourceVideo = media | external_video_url %}
71
+ ${p()}
72
+ {% when 'video' %}
73
+ {% assign mediaSourceVideo = media.sources.last.url %}
74
+ ${n()}
75
+ {% when 'model' %}
76
+ ${g()}
77
+ {% endcase %}
78
+ </div>
79
+ </div>`,h=()=>core.template`
80
+ ${NextImage_liquid.default({srcIsLiquidCode:!0,src:"https://cdn.shopify.com/s/assets/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c_large.gif",alt:"No Image",sizes:"(max-width: 768px) 50vw, 100vw",setting:{aspectRatio:common.getAspectRatio(m),layout:s?.layout,qualityType:s?.qualityType,qualityPercent:s?.qualityPercent},className:"!gp-rounded-none",customLazyload:!1,enableLazyLoadImage:a})}`;return system.Liquid(`
81
+ <div type="grid-gallery"
82
+ class="${d}"
83
+ style="${_function.getStyleOfObject(r)}}"
84
+ >
85
+ ${system.LiquidFor("media in product.media",`${system.LiquidIf("media.media_type == 'image'",system.LiquidFor("image in product.images",system.LiquidIf("image.src == media.src","{% assign imageID = image.id %}{% break %}")),"{% assign imageID = '' %}")}
86
+ ${system.LiquidIf("media.id == product.featured_media.id ",f(s?.borderActive?.border!=="none"?"active":""),f())}`)}
87
+ ${system.LiquidIf("product.media.size > 0",t)}
88
+ ${system.LiquidIf("product.media.size < 1",f())}
89
+ </div>`)};exports.default=ProductGalleryGrid;
@@ -0,0 +1,2 @@
1
+ 'use client';
2
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var jsxRuntime=require("react/jsx-runtime");const ButtonOpenLightBox=()=>jsxRuntime.jsx("div",{className:"gp-absolute gp-inset-0 gp-flex gp-cursor-pointer gp-items-center gp-justify-center gp-bg-black/50 gp-opacity-0 gp-transition-all gp-duration-100 group-hover:gp-opacity-100",children:jsxRuntime.jsx("svg",{height:"100%",width:"100%",xmlns:"http://www.w3.org/2000/svg",className:"gp-h-6 gp-w-6",viewBox:"0 0 512 512",color:"#fff",children:jsxRuntime.jsx("path",{fill:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M62.2467 345.253C43.7072 326.714 29.1474 305.116 18.9714 281.057C8.42839 256.13 3.08301 229.671 3.08301 202.418C3.08301 175.165 8.43012 148.707 18.974 123.78C29.15 99.7213 43.7098 78.123 62.2485 59.5834C80.788 41.0439 102.386 26.4841 126.445 16.3081C151.372 5.76422 177.831 0.417969 205.084 0.417969C232.337 0.417969 258.794 5.76421 283.722 16.3064C307.78 26.4823 329.379 41.0422 347.918 59.5817C366.458 78.1212 381.017 99.7196 391.194 123.778C401.737 148.706 407.083 175.163 407.083 202.417C407.083 229.671 401.737 256.129 391.194 281.056C388.406 287.648 385.277 294.048 381.839 300.257L493.397 411.815C514.091 432.511 514.091 466.187 493.395 486.883L484.272 496.006C474.245 506.032 460.915 511.553 446.738 511.553C432.559 511.553 419.228 506.032 409.202 496.006L296.022 382.824C291.996 384.854 287.898 386.762 283.721 388.528C258.794 399.073 232.336 404.419 205.082 404.419C177.828 404.419 151.371 399.071 126.443 388.528C102.385 378.352 80.7863 363.793 62.2467 345.253ZM301.699 336.166C313.928 327.317 324.896 316.835 334.282 305.034C342.149 295.142 348.9 284.325 354.355 272.775C364.433 251.432 370.076 227.586 370.076 202.419C370.076 111.296 296.206 37.4253 205.083 37.4253C113.96 37.4253 40.0895 111.294 40.0895 202.418C40.0895 293.541 113.96 367.411 205.084 367.411C227.413 367.411 248.701 362.967 268.126 354.928C280.091 349.976 291.347 343.658 301.699 336.166ZM467.229 460.716C473.507 454.439 473.507 444.26 467.229 437.982L360.595 331.348C356.601 336.153 352.378 340.794 347.919 345.253C341.671 351.502 335.068 357.286 328.147 362.615L435.371 469.839C438.511 472.977 442.624 474.547 446.739 474.547C450.853 474.547 454.967 472.978 458.106 469.839L467.229 460.716ZM223.582 183.91H281.071C291.292 183.91 299.574 192.194 299.575 202.414C299.575 206.778 298.062 210.786 295.533 213.951C292.143 218.195 286.926 220.916 281.072 220.916H228.303H223.583V225.63V278.406C223.583 287.081 217.613 294.358 209.559 296.361C208.124 296.717 206.625 296.909 205.08 296.909C194.861 296.909 186.577 288.625 186.577 278.406V220.917H129.087C118.868 220.917 110.584 212.633 110.584 202.414C110.584 192.195 118.868 183.911 129.087 183.911H186.576V126.421C186.576 116.202 194.86 107.918 205.079 107.918C215.298 107.918 223.582 116.202 223.582 126.421V183.91Z"})})});exports.default=ButtonOpenLightBox;
@@ -0,0 +1,2 @@
1
+ 'use client';
2
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var jsxRuntime=require("react/jsx-runtime"),core=require("@gem-sdk/core"),Carousel=require("../../../../../carousel/components/root/Carousel.js"),CarouselItem=require("../../../../../carousel/components/item/CarouselItem.js"),NextImage=require("../../../../../image/components/NextImage.js");require("../../../../../modal/components/confirm.js");var Modal=require("../../../../../modal/components/Modal.js"),React=require("react"),productFeaturedImage=require("../../common/productFeaturedImage.js"),ProductFeatureVideo=require("../child/ProductFeatureVideo.js"),MediaIcon=require("../child/MediaIcon.js");const ProductImagesLightBox=({builderPropUID:e,productImages:t,open:o,imageRatio:s,onHandleClose:i})=>{let r=core.useFeaturedImageGlobal(),l=React.useMemo(()=>{let e=t?.findIndex(e=>e.id===r?.id);return e&&e>0?e:0},[t,r]),d={desktop:t&&t.length>1,mobile:t&&t?.length>1,tablet:t&&t?.length>1},a={desktop:!1,mobile:!1,tablet:!1},n=core.useEditorMode(),u=e=>"edit"!==n&&["VIDEO","EXTERNAL_VIDEO"].includes(e?.contentType||"");return jsxRuntime.jsx(Modal.default,{setting:{open:o},styles:{width:"80%"},closeOnClickOutside:!0,onClose:()=>{i(),console.log("onHandleClose")},disableIframeClickEvent:!0,contentClass:"mobile:!gp-w-[100%] gp-px-2 gp-pb-10",children:jsxRuntime.jsx(Carousel.default,{setting:{loop:a,slidesToShow:{desktop:1,tablet:1,mobile:1},defaultCurrentSlider:l,dot:{desktop:!0,mobile:!0,tablet:!0},dotStyle:{desktop:"outside",mobile:"outside",tablet:"outside"},dotColor:{desktop:"#E2E2E2",mobile:"#E2E2E2",tablet:"#E2E2E2"},dotActiveColor:{desktop:"#121212",mobile:"#121212",tablet:"#121212"},dotSize:{desktop:12},dotGapToCarousel:{desktop:12},navigationEnable:d,navigationStyle:{desktop:"outside"},arrowIconSize:{desktop:24}},styles:{sizeSetting:{desktop:{height:"80vh"},tablet:{height:"80vh"},mobile:{height:"60vh"}}},moveToIdx:l,hiddenDotWhenOnlyOne:!0,isHiddenArrowWhenDisabled:!0,builderProps:{uid:e},fullHeight:!0,children:t?.map(t=>jsxRuntime.jsx(CarouselItem.default,{className:`gem-slider-item gem-slider-item-${e} gp-flex gp-items-center gp-justify-center gp-px-4`,children:u(t)?jsxRuntime.jsx(ProductFeatureVideo.default,{type:t?.contentType,url:t.src??"",aspectRatio:s}):jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx(NextImage.default,{src:productFeaturedImage.isFeatureMedia(t?.contentType)?t?.previewImage:t?.src,width:t?.width,height:t?.height,alt:t?.alt,"content-type":t?.contentType,setting:{aspectRatio:s},className:core.cls("gp-h-full gp-w-full gp-object-contain")},t?.id),jsxRuntime.jsx(MediaIcon.default,{contentType:t?.contentType??""})]})},t?.id))})})};exports.default=ProductImagesLightBox;
@@ -0,0 +1 @@
1
+ "use strict";var attrs=require("../common/attrs.js");const getProductImagesAttr=t=>{let r=attrs.getGalleryCarouselSettingAttr(t),e=attrs.getFeaturedCarouselSettingAttr(t);return{galleryCarouselSettingAttrs:r,featuredImageCarouselSettingAttrs:e}};exports.getProductImagesAttr=getProductImagesAttr;
@@ -0,0 +1 @@
1
+ "use strict";var system=require("@gem-sdk/system"),classes=require("../common/classes.js"),common=require("../common/common.js");const getProductImagesClassName=s=>{let{setting:e,style:a}=s,l=common.setDefaultWhenUndefineSetting(s),{builderProps:t,advanced:r}=l,m=r?.cssClass,c=system.createClass(classes.getWrapperClasses({extraClass:`${t?.uid} ${m??""} `,isAddOverFlowClass:common.checkAddOverFlowClass(a)})),g=system.createClass(classes.getGalleryWrapperClasses({})),C=system.createClass(classes.getGalleryGridWrapperClasses({})),o=s=>system.createClass(classes.getGalleryItemClasses({extraClass:`${s??""}`})),u=system.createClass(classes.getFtImageWithGalleryClasses({extraClass:`gp-product-images-feature--${t?.uid}`})),d=system.createClass(classes.getImageGalleryWrapperClasses({extraClass:`gp-product-images-gallery-${t?.uid}`})),p=system.createClass(classes.getFeaturedImageCarouselClasses({extraClass:`gp-product-images-gallery-${t?.uid}`})),i=system.createClass(classes.getFeaturedImageGalleryClasses({settings:e})),y=system.createClass(classes.getFeaturedImageClasses({setting:e,extraClass:`gp-flex gp-relative gp-product-images-gallery-${t?.uid} gp-overflow-hidden gp-flex gp-w-full gp-items-center gp-justify-center `})),n=s=>system.createClass(classes.getFeaturedCarouselItemClasses({extraClass:`${s??""}`}));return{wrapperClasses:c,productImagesGalleryClasses:g,galleryGridWrapperClasses:C,galleryItemClasses:o,ftImageGalleryClasses:u,imageGalleryWrapperClasses:d,featuredImageCarouselClasses:p,featuredImageGalleryClasses:i,featureImageOnlyOneImageClasses:y,featuredCarouselItemClasses:n}};exports.getProductImagesClassName=getProductImagesClassName;
@@ -0,0 +1 @@
1
+ "use strict";var system=require("@gem-sdk/system"),styles=require("../common/styles.js");const getProductImagesStyles=(e,t)=>{let s=system.createStyle(styles.getWrapContainerStyle(e)),l=system.createStyle(styles.getWrapContainerStyle(e,!0)),y=system.createStyle(styles.getWrapContainerStyle(e,t?.gallery&&t?.gallery?.length<2)),a=system.createStyle(styles.getFeatureImageStyle(e,{enableOrder:!0,enableDisplay:!0})),r=system.createStyle(styles.getFeaturedImageOnlyOneImageStyle({setting:e,options:{enableRadius:!0,enableHeight:!0}})),g=system.createStyle(styles.getGalleryImageStyle(e,t?.featureImageHeight)),m=system.createStyle(styles.getFeaturedImageCarouselStyle(e)),S=system.createStyle({...styles.getFeatureImageCarouselItemStyle(e)}),c=system.createStyle({...styles.getFeatureImageCarouselItemStyle(e),width:"{{productImageWidth}}px"}),u=system.createStyle(styles.getGalleryGridStyle(e)),n=system.createStyle(styles.getGalleryGridItemStyle(e)),o=system.createStyle(styles.getGalleryCarouselStyle(e)),i=system.createStyle(styles.getGalleryCarouselItemStyle(e));return{wrapContainerStyle:s,wrapContainerStyleOnlyOneImage:l,wrapperFeaturedImageStyle:y,featureImageStyle:a,featureImageOnlyOneImageStyle:r,galleryImageStyle:g,featuredImageCarouselStyle:m,featureImageCarouselItemStyle:S,featureImageCarouselOnlyOneImageStyle:c,galleryGridStyles:u,galleryGridItemStyles:n,galleryCarouselStyle:o,galleryCarouselItemStyle:i}};exports.getProductImagesStyles=getProductImagesStyles;
@@ -0,0 +1 @@
1
+ "use strict";var core=require("@gem-sdk/core"),React=require("react"),common=require("../common/common.js");const useFeatureImageWithGallery=e=>{let{setting:t,styles:r}=e,u={...t,...r},c=core.useCurrentDevice(),s=React.useRef(null),i=React.useRef(null),[n,a]=React.useState(""),[o,l]=React.useState(100),[m,f]=React.useState(),R=core.getResponsiveValueByScreen(u?.position,c),g="slider"===common.getTypeWidthDevice(u?.type)[c]||["left","right","inside-left","inside-right"].includes(R),h=(e,t=200)=>{e&&(s.current&&clearTimeout(s.current),s.current=setTimeout(()=>l(i?.current?.offsetHeight||200),t))};return React.useEffect(()=>{let e=i?.current;if(!e)return;let t=new ResizeObserver(()=>{l(e.offsetHeight||200)});return t.observe(e),()=>{t.disconnect()}}),{isShowCarousel:g,featureImageHeight:o,featureWrapperImage:i,onClickFeatureArrow:n,activeIndexFromFeatureImage:m,setOnClickFeatureArrow:a,onHandleLoadedFeatureImage:h,setActiveIndexFromFeatureImage:f}};exports.useFeatureImageWithGallery=useFeatureImageWithGallery;
@@ -0,0 +1 @@
1
+ "use strict";var core=require("@gem-sdk/core"),React=require("react");const useFilterImagesByVariant=({productImages:e,displayByVariant:t,variantSelect:r})=>{let a=core.useCurrentVariant(),s=React.useCallback(()=>{let e=a?.selectedOptions??[],t=e.find(e=>e.name===r);return t?.value?.toLowerCase()??""},[a?.selectedOptions,r]),l=React.useMemo(()=>{if(!t||!r||!e)return e;let a=s();if(!a)return e;let l=e.filter(e=>{let t=(e.alt||"").toLowerCase();return t.includes(a)});return l.length>0?l:e},[t,r,e,s]);return{filteredProductImages:l,selectedVariantValue:s()}};exports.useFilterImagesByVariant=useFilterImagesByVariant;
@@ -0,0 +1 @@
1
+ "use strict";var core=require("@gem-sdk/core"),React=require("react"),useFilterImagesByVariant=require("./useFilterImagesByVariant.js"),helpers=require("../../../../image/common/helpers.js"),productGallery=require("../common/productGallery.js");const useGalleryCarousel=e=>{let{builderPropUID:t,productImages:r,onHandleClick:a,activeIndexFormFeatureImage:s,onClickFeatureArrow:o,builderPropsClass:i,arrow:l,priorityFeatureImage:c,...u}=e,n=core.useCurrentDevice(),p=core.useFeaturedImageGlobal(),[d,y]=React.useState(o||""),h=core.useEditorMode(),[m,F]=React.useState(0),R=React.useRef(),[B,f]=React.useState(m),[g,I]=React.useState(!1),{filteredProductImages:S}=useFilterImagesByVariant.useFilterImagesByVariant({productImages:r,displayByVariant:u?.displayByVariant,variantSelect:u?.variantSelect});React.useEffect(()=>{y(o||"")},[o]),React.useEffect(()=>{R.current&&clearTimeout(R.current),d&&(R.current=setTimeout(()=>{F(s||0),y("")}))},[s]),React.useEffect(()=>{if(c){let e=S?.findIndex(e=>e.id===c.id)||0;F(e),y("")}},[c,S]),React.useEffect(()=>{let e=S?.findIndex(e=>e.id===p?.id);F(e||0),y("")},[p,S]);let q=React.useMemo(()=>productGallery.getShapeByLayout({shape:u.shape,shapeForBottom:u.shapeForBottom,shapeFor1Col:u.shapeFor1Col,shapeFor2Col:u.shapeFor2Col,shapeForFtOnly:u.shapeForFtOnly,shapeForInsideBottom:u.shapeForInsideBottom,shapeForInside:u.shapeForInside},u.position),[u.shape,u.shapeForBottom,u.shapeFor1Col,u.shapeFor2Col,u.shapeForFtOnly,u.position,u.shapeForInsideBottom,u.shapeForInside]),v=React.useCallback(()=>{helpers.handleSetSrcForProductImageList({builderPropUID:t,shapeByLayout:q,qualityType:u.qualityType,qualityPercent:u.qualityPercent})},[q,u.qualityPercent,u.qualityType,t]);React.useEffect(()=>{if("edit"===h)return;let e=document?.querySelector(`.gem-slider-item-${t} .product-list-image`);if(!e)return;v();let r=new ResizeObserver(()=>{v()});return r?.observe(e,{}),()=>{r?.disconnect()}},[v,t,h]);let C=core.getResponsiveValueByScreen(u.clickOpenLightBox,n),G=React.useMemo(()=>{let e=productGallery.checkDisplayGalleryByWidth({shapeByLayout:q});return core.getResponsiveValueByScreen(e,n)},[q,n]),V=React.useMemo(()=>u?.borderActive?.border!=="none",[u?.borderActive?.border]),b=core.getResponsiveValueByScreen(u?.clickOpenLightBox,n),E=e=>{a&&a(e||"",C)};return React.useEffect(()=>{let e;return S&&S.length>0&&g&&(e=setTimeout(()=>{f(m)},80)),()=>{e&&clearTimeout(e)}},[m,S,g]),{moveToIdx:m,isDisplay:G,shapeByLayout:q,isEnableBorderActive:V,isShowButtonLightbox:b,filteredProductImages:S,handleClickCarouselItem:E,setSliderReady:I,safeMoveToIdx:B}};exports.useGalleryCarousel=useGalleryCarousel;
@@ -0,0 +1 @@
1
+ "use strict";var core=require("@gem-sdk/core"),React=require("react"),common=require("../common/common.js"),productFeaturedImage=require("../common/productFeaturedImage.js"),useFilterImagesByVariant=require("./useFilterImagesByVariant.js"),helpers=require("../../../../image/common/helpers.js");const useProductFeaturedImageCarousel=e=>{let t;let{productImages:r,imgRef:a,onHandleClick:u,onClickArrow:o,onHandleLoaded:i,onHandleUpdateActiveIndex:c,builderPropUID:n,builderPropsClass:s,children:l,parentUid:d,...m}=e,h=core.useFeaturedImageGlobal(),g=core.useCurrentDevice(),p=React.createRef(),{onListener:f,ref:y}=core.useInteraction(),I=core.useEditorMode(),{filteredProductImages:R}=useFilterImagesByVariant.useFilterImagesByVariant({productImages:r,displayByVariant:m?.displayByVariant,variantSelect:m?.variantSelect}),S=React.useMemo(()=>{let e=R?.findIndex(e=>e.id===h?.id);return e},[R,h]),q=React.useMemo(()=>productFeaturedImage.checkRenderFeaturedCarousel(m),[m]),v=React.useMemo(()=>{if(R?.length)return h||R?.[0]},[R,h]),F=React.useMemo(()=>"popup"===core.getResponsiveValueByScreen(m.ftClickOpenLightBox,g),[m.ftClickOpenLightBox,g]),k=React.useMemo(()=>m?.otherImage?R&&m.otherImage>=R.length-1||R&&-1===m.otherImage?R.length-1:m.otherImage:0,[m?.otherImage,R]),b=React.useMemo(()=>m?.hoverEffect==="other"?R?.[k]:R?.find(e=>e.id===h?.id)||R?.[0],[h?.id,k,R,m?.hoverEffect]),B=function(){return Math.random().toString(36).substr(2,5)},C=e=>{t&&clearTimeout(t),t=setTimeout(()=>c&&c(e),500)},M=e=>{let t="1/1",r=0;return e?e.width&&e.height&&(t=`${e.width}/${e.height}`):R?.forEach(e=>{if(e.width&&e.height){let a=e.height/e.width;a>r&&(r=a,t=`${e.width}/${e.height}`)}}),t},E=e=>{let t=common.getAspectRatio(m.ftShape),r=M(e);return{desktop:t.desktop??r,tablet:t.tablet??r,mobile:t.mobile??r}},P=React.useCallback(()=>{helpers.handleSetSrcForFeatureProductImage({builderPropUID:n,ftShape:m.ftShape,qualityType:m.qualityType,qualityPercent:m.qualityPercent})},[m.ftShape,m.qualityPercent,m.qualityType,n]),V=()=>{let e=`[data-id="${n}"]`;f({event:"gp:change-image-step",selector:e},t=>{let r=(y.current||document).querySelector(e),{data:a,isRollback:u,uniqueStorageKey:o}=t||{};p?.current?.moveToSlideInteraction({element:r,data:a,isRollback:u,key:o})}),f({event:"gp:change-next-slide",selector:e},t=>{let r=(y.current||document).querySelector(e),{data:a,isRollback:u,uniqueStorageKey:o}=t||{};p?.current?.nextSlideInteraction({element:r,data:a,isRollback:u,key:o})}),f({event:"gp:change-previous-slide",selector:e},t=>{let r=(y.current||document).querySelector(e),{data:a,isRollback:u,uniqueStorageKey:o}=t||{};p?.current?.previousSlideInteraction({element:r,data:a,isRollback:u,key:o})})};return React.useEffect(()=>{if("edit"===I)return;let e=document?.querySelector(`.gem-slider-item-${n} .featured-image-only`);if(!e)return;P();let t=new ResizeObserver(()=>{P()});return t?.observe(e,{}),()=>{t?.disconnect()}},[P,n,I]),React.useEffect(()=>{V()},[]),React.useEffect(()=>{!q&&i&&i(!0,0)},[q,i]),{ref:y,imageActive:v,imageActiveIndex:S,imageShowWhenHover:b,enableOpenLightBox:F,filteredProductImages:R,isRenderFeatureCarousel:q,genRandomKey:B,getAspectRatioFinal:E,emitUpdateActiveIndex:C}};exports.useProductFeaturedImageCarousel=useProductFeaturedImageCarousel;
@@ -0,0 +1 @@
1
+ "use strict";var core=require("@gem-sdk/core"),React=require("react"),productGallery=require("../common/productGallery.js"),useFilterImagesByVariant=require("./useFilterImagesByVariant.js"),helpers=require("../../../../image/common/helpers.js");const useProductGalleryGrid=e=>{let{builderPropUID:r,productImages:t,activeIndexFormFeatureImage:a,children:o,isHiddenInteraction:s,...i}=e,l=core.useCurrentDevice(),c=core.useFeaturedImageGlobal(),[u,n]=React.useState(0),y=core.useEditorMode(),{filteredProductImages:d}=useFilterImagesByVariant.useFilterImagesByVariant({productImages:t,displayByVariant:i?.displayByVariant,variantSelect:i?.variantSelect}),p=productGallery.getShapeByLayout({shape:i.shape,shapeForBottom:i.shapeForBottom,shapeFor1Col:i.shapeFor1Col,shapeFor2Col:i.shapeFor2Col,shapeForFtOnly:i.shapeForFtOnly,shapeForInsideBottom:i.shapeForInsideBottom,shapeForInside:i.shapeForInside},i.position),h=core.getResponsiveValueByScreen(i.clickOpenLightBox,l),F=productGallery.checkDisplayGalleryByWidth({shapeByLayout:p}),m=core.getResponsiveValueByScreen(F,l),B=i?.borderActive?.border!=="none",g=React.useCallback(()=>{helpers.handleSetSrcForProductImageList({builderPropUID:r,shapeByLayout:p,qualityType:i.qualityType,qualityPercent:i.qualityPercent})},[p,i.qualityPercent,i.qualityType,r]);return React.useEffect(()=>{n(a||0)},[a]),React.useEffect(()=>{let e=d?.findIndex(e=>e.id===c?.id);n(e&&e>0?e:0)},[c,d]),React.useEffect(()=>{if("edit"===y)return;let e=document?.querySelector(".grid-gallery");if(!e)return;g();let r=new ResizeObserver(()=>{g()});return r?.observe(e,{}),()=>{r?.disconnect()}},[g,r,y]),{isDisplay:m,shapeByLayout:p,imageActiveIndex:u,enableOpenLightBox:h,isEnableBorderActive:B,filteredProductImages:d}};exports.useProductGalleryGrid=useProductGalleryGrid;
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var jsxRuntime=require("react/jsx-runtime"),dynamic=require("next/dynamic"),Loading=require("../../../common/components/Loading.js"),React=require("react"),core=require("@gem-sdk/core"),SalePageProductListWarning=require("../SalePageProductListWarning.js"),Head=require("next/head"),ProductListGridLayout=require("./ProductListGridLayout.js"),ProductListCarouselLayout=require("./ProductListCarouselLayout.js"),styles=require("./common/styles.js"),system=require("@gem-sdk/system"),classes=require("./common/classes.js"),helpers=require("./common/helpers.js"),helpers$1=require("../../../dialog/common/helpers.js");const ProductNotFound=dynamic(()=>Promise.resolve().then(function(){return require("../ProductNotFound.js")}),{loading:Loading.default}),ProductList=e=>{let{children:t,styles:r,builderProps:o,setting:s,builderAttrs:d}=e,{isRelatedProduct:i,productSetting:a}=helpers.getData(e),l=a.relatedTag&&a.relatedTag[0],c=core.useEditorMode(),u=core.useCurrentDevice(),n=core.usePageType(),m=core.usePageStore(e=>e.dynamicProduct),g=core.usePageStore(e=>e.dynamicCollection),[h,P]=React.useState(1),[j,x]=React.useState(!0),[p,f]=React.useState(),[y,R]=React.useState(!1),v="GP_FUNNEL_PAGE"===n,b="GP_COLLECTION"==n;b&&(a.productSrc="DynamicCollection",a.collectionId=g?.collectionId??"latest");let T=a?.productSrc??"Collection",I=m?.productId&&m?.productId!==a.relatedProductId?m?.productId:a.relatedProductId,{data:k}=core.useProductQuery(i&&I?I:void 0),L=a.relatedTag&&"tags"===a.relatedTag[0]&&(!k?.tags||k?.tags.length===0),S=a.relatedTag&&"collection"===a.relatedTag[0]&&(!k?.collections?.edges||k?.collections.edges.length===0),C=a.relatedTag&&"vendor"===a.relatedTag[0]&&!k?.vendor,E=L||S||C,O=core.useProductsQueryAll(p,{revalidateOnMount:"edit"===c}),N=core.useProductsQuery("PickProduct"===T?a?.productIds:void 0,{revalidateOnMount:"edit"===c},{defaultSelectedProductCount:a?.numOfSelectedProducts}),q=React.useMemo(()=>({id:a?.collectionId??"latest",numberOfProducts:s?.numberOfProducts??4,orderBy:s?.orderBy}),[a?.collectionId,Number(s?.numberOfProducts),s?.orderBy]),w=core.useCollectionQuery("PickProduct"!==T?q:void 0);React.useEffect(()=>{if(i&&k&&a.relatedTag&&"recommended-product"!==a.relatedType){let e;switch(R(!1),a.hasRelatedExclude&&(e=a?.relatedExclude&&a.relatedExclude.split(",").map(e=>e.trim())),a.relatedTag[0]){case"vendor":f({vendor:a.relatedTag&&"vendor"===a.relatedTag[0]?k?.vendor:"",limit:s?.numberOfProducts,idNEQ:k.id});break;case"collection":{let t;let r=k?.collections?.edges.map(e=>e.node?.id);if(!r||r?.length===0){R(!0);break}f(t=e&&e.length>0?{idNEQ:k.id,hasCollectionProductsWith:[{hasCollectionWith:[{idIn:r},{titleNotIn:e}]}],limit:s?.numberOfProducts}:{idNEQ:k.id,hasCollectionProductsWith:[{hasCollectionWith:[{idIn:r}]}],limit:s?.numberOfProducts});break}case"tags":{let t;if(!k.tags||0===k.tags.length){R(!0);break}f(t=e&&e.length>0?{idNEQ:k.id,hasProductTagsWith:[{hasTagsWith:[{nameIn:k.tags},{nameNotIn:e}]}],limit:s?.numberOfProducts}:{idNEQ:k.id,hasProductTagsWith:[{hasTagsWith:[{nameIn:k.tags}]}],limit:s?.numberOfProducts})}}}},[k,a.relatedType,a.relatedTag,s?.numberOfProducts,a.relatedExclude,a.hasRelatedExclude,i]);let M="PickProduct"===T?N.isValidating:w.isValidating,W="PickProduct"===T?N.isLoading:w.isLoading,G="PickProduct"===T?N.error:w.error,Q=w.data?.collections?.edges?.[0]?.node,B="PickProduct"===T?core.flattenConnection(N.data?.products):core.flattenConnection(Q?.products),F=O?.data?.products?core.flattenConnection(O?.data?.products):void 0,A=i&&F?F:"PickProduct"===T&&a?.productIds?.length?a?.productIds?.map(e=>B?.find(t=>t?.baseID===e)).filter(Boolean)??B:"PickProduct"!==T?B:B.filter((e,t)=>t<(a?.numOfSelectedProducts??4)),D=React.useMemo(()=>y&&i&&"edit"==c||!A.length&&!W&&j&&"edit"==c,[j,W,y,i,c,A.length]),H=React.useMemo(()=>!A||y&&i,[y,i,A]),$=React.useMemo(()=>{if(!s?.sameHeight)return[];let e=0,t=Math.ceil((A?.length??0)/+(s?.slidesToShow?.[u]??1));return Array.from(Array(A?.length??0)).map((o,d)=>(d>=+(s?.slidesToShow?.[u]??1)*(e+1)&&++e,{gridRow:`${1+h*e}/${h+1+h*e}`,marginBottom:e+1<t?helpers$1.getPropertyByDevice(r?.horizontalGutter,u):void 0}))},[s?.sameHeight,s?.slidesToShow,h,A?.length,u,r?.horizontalGutter]),_=React.useMemo(()=>M||W||G||!A||y&&i,[G,W,y,i,M,A]);React.useEffect(()=>{_||setTimeout(()=>{let{builderData:e}=o??{},t=e?.childrens?.[0];if(!t)return;let r=document.querySelector(`[data-id=${t}] div`);r&&P(r.childElementCount||1)},"edit"===c?0:500)},[o,_,c]);let z=React.useMemo(()=>({collection:Q,products:A,settings:{loop:s?.loop??{desktop:!1},scrollMode:s?.scrollMode??{desktop:"snap"},slidesToShow:s?.slidesToShow??{desktop:4,tablet:3,mobile:1},layout:r?.layout,dot:s?.dot,dotStyle:s?.dotStyle,arrow:s?.arrow,controlOverContent:s?.controlOverContent},styles:{horizontalGutter:r?.horizontalGutter,verticalGutter:r?.verticalGutter,fullWidth:r?.fullWidth,spacing:r?.spacing,width:r?.width,height:r?.height}}),[Q,A,s,r]);if(o?.isPreview&&v)return jsxRuntime.jsx(jsxRuntime.Fragment,{});if(D)return jsxRuntime.jsx(jsxRuntime.Fragment,{children:system.If(j,jsxRuntime.jsx(ProductNotFound,{builderAttrs:d,collectionHandle:Q?.handle,productSrc:T,onClose:()=>x(!1),children:t,relatedTagString:l,assignProductNoTags:E,noAssignedProduct:!I}))});let{productListWrapStyle:V,productListContentStyle:U,productListWrapAlignStyle:J}=styles.getStyle(e),{productListWrapClass:K}=classes.getClass(e),X=()=>jsxRuntime.jsx(jsxRuntime.Fragment,{children:system.If(r?.layout==="grid",jsxRuntime.jsx(ProductListGridLayout.default,{...e,productSortedById:A,generateGridRowArray:$}),jsxRuntime.jsx(ProductListCarouselLayout.default,{...e,productSortedById:A}))});return jsxRuntime.jsxs("div",{...d,className:K,style:V,children:[!!r?.preloadBgImage&&jsxRuntime.jsxs(Head,{children:[!!r.backgroundImage?.desktop?.image?.src&&jsxRuntime.jsx("link",{rel:"preload",href:r.backgroundImage.desktop.image.src,as:"image"}),!!r.backgroundImage?.tablet?.image?.src&&jsxRuntime.jsx("link",{rel:"preload",href:r.backgroundImage?.tablet?.image?.src,as:"image"}),!!r.backgroundImage?.mobile?.image?.src&&jsxRuntime.jsx("link",{rel:"preload",href:r.backgroundImage?.mobile?.image?.src,as:"image"})]}),M||W?jsxRuntime.jsx(Loading.default,{}):G?jsxRuntime.jsxs("div",{children:["Error: ",G?.message]}):H?jsxRuntime.jsx("div",{children:"Products not found"}):jsxRuntime.jsx(core.ProductListProvider,{...z,children:jsxRuntime.jsx("div",{className:"gp-flex gp-w-full",style:J,children:jsxRuntime.jsxs("div",{style:U,children:[v&&jsxRuntime.jsx(SalePageProductListWarning.default,{}),X()]})})}),core.filterToolbarPreview(t,!0)]})};exports.default=ProductList;
@@ -0,0 +1,197 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var core=require("@gem-sdk/core"),helpers$1=require("../../../helpers.js"),system=require("@gem-sdk/system"),ProductListCarouselLayout_liquid=require("./ProductListCarouselLayout.liquid.js"),ProductListGridLayout_liquid=require("./ProductListGridLayout.liquid.js"),styles=require("./common/styles.js"),classes=require("./common/classes.js"),helpers=require("./common/helpers.js");const ProductList=e=>{let{setting:s,styles:t,pageContext:i}=e,r=i?.pageType==="GP_FUNNEL_PAGE";if(r)return"";let{hasRelatedExclude:d,relatedExcludeTrim:a,collectionID:o,isLatestProducts:c,isGrid:l,numberOfProducts:n,productListId:u,productListHandles:g,sortedBy:p,isReverse:f,productSrc:m,productNumber:P,isSorted:$,relatedTag:h}=helpers.getDataLiquid(e),y=()=>core.template`
2
+ ${core.RenderIf("RelatedProduct"===m,`
3
+ assign relatedTag = '${h}'
4
+ assign assignProduct = product
5
+ assign idAssignProduct = assignProduct.id
6
+ paginate collections.all.products by 10000
7
+ assign allProductsPaginated = collections.all.products
8
+ endpaginate
9
+ assign handleAssignProduct = assignProduct.handle
10
+ case relatedTag
11
+ when 'collection'
12
+ assign hasRelatedExclude = ${d}
13
+ if hasRelatedExclude
14
+ assign relatedExclude = '${a}'
15
+ else
16
+ assign relatedExclude = ''
17
+ endif
18
+ assign arrayRelatedExclude = relatedExclude | split: ","
19
+ assign idSelectedList = ''
20
+ assign relatedListProduct = null
21
+ for collection in collections
22
+ assign collectionId = collection.id
23
+ assign isInCollection = false
24
+ assign collectionsAssignProduct = assignProduct.collections
25
+ for item in collectionsAssignProduct
26
+ unless arrayRelatedExclude contains item.handle
27
+ if item.id == collectionId
28
+ for product in collection.products
29
+ assign product_ids_array = idSelectedList | split: ","
30
+ if product_ids_array contains product.id or product.id == idAssignProduct
31
+ elsif product_ids_array.size > limit
32
+ break
33
+ else
34
+ assign idSelectedList = idSelectedList | append: "," | append: product.id
35
+ assign productSelected = product | sort
36
+ assign relatedListProduct = relatedListProduct | concat: productSelected
37
+ endif
38
+ endfor
39
+ endif
40
+ endunless
41
+ endfor
42
+ endfor
43
+ assign products = relatedListProduct | uniq
44
+ when 'vendor'
45
+ assign vendorAssignProduct = assignProduct.vendor
46
+ assign productFilter = allProductsPaginated | where: 'vendor', vendorAssignProduct
47
+ for item in productFilter
48
+ assign itemHandle = item.handle
49
+ assign productF = item | sort
50
+ if itemHandle != handleAssignProduct
51
+ assign products = products | concat: productF
52
+ endif
53
+ endfor
54
+ when 'production-type'
55
+ assign typeAssignProduct = assignProduct.type
56
+ assign productFilter = allProductsPaginated | where: 'type', typeAssignProduct
57
+ for item in productFilter
58
+ assign itemHandle = item.handle
59
+ assign productF = item | sort
60
+ if itemHandle != handleAssignProduct
61
+ assign products = products | concat: productF
62
+ endif
63
+ endfor
64
+ when 'tags'
65
+ assign tagsAssignProduct = assignProduct.tags
66
+ assign hasRelatedExclude = ${d}
67
+ if hasRelatedExclude
68
+ assign relatedExclude = '${a}'
69
+ else
70
+ assign relatedExclude = ''
71
+ endif
72
+ assign arrayRelatedExclude = relatedExclude | split: ","
73
+ for item in allProductsPaginated
74
+ unless unique_products contains item.handle
75
+ assign isExcludedProduct = false
76
+ for tagExclude in arrayRelatedExclude
77
+ if item.tags contains tagExclude
78
+ assign isExcludedProduct = true
79
+ endif
80
+ endfor
81
+ unless isExcludedProduct
82
+ for tag in tagsAssignProduct
83
+ if item.tags contains tag and assignProduct.handle != item.handle
84
+ assign productF = item | sort
85
+ assign products = products | concat: productF
86
+ break
87
+ endif
88
+ endfor
89
+ endunless
90
+ endunless
91
+ endfor
92
+ assign products = products | uniq
93
+ endcase
94
+ paginate products by ${n||4}
95
+ assign products = products
96
+ endpaginate
97
+ `)}
98
+ `,_=()=>core.template`
99
+ {%- liquid
100
+ assign productHandles = '${g.toString()}'| split: ','
101
+ assign products = null
102
+ assign target_collection = null
103
+ assign productSrc = '${m}'
104
+ assign c = 0
105
+ assign limit = ${P??4}
106
+ if request.page_type == 'collection' or preview_page_type == 'collection'
107
+ assign target_collection = collection
108
+ if target_collection == empty or target_collection == null
109
+ if '${o.toLowerCase()}' == 'latest'
110
+ assign target_collection = collections | sort: 'updated_at' ${f?"| reverse":""} | first
111
+ else
112
+ for collection in collections
113
+ if collection.id == ${o}
114
+ assign target_collection = collection
115
+ break
116
+ endif
117
+ endfor
118
+ endif
119
+ endif
120
+ paginate target_collection.products by ${n||4}
121
+ assign products = target_collection.products ${$?p:""} ${f?"| reverse":""}
122
+ endpaginate
123
+ else
124
+ if productSrc == 'RelatedProduct'
125
+ ${y()}
126
+ elsif productSrc == 'PickProduct'
127
+ unless ${c}
128
+ assign products = null | sort
129
+ for handle in productHandles
130
+ assign productH = all_products[handle] | sort
131
+ assign products = products | concat: productH
132
+ endfor
133
+ assign limit = products.length
134
+ else
135
+ if ${u.length} == 0
136
+ paginate collections.all.products by 100000
137
+ assign products = collections.all.products | sort : "created_at" | reverse
138
+ endpaginate
139
+ endif
140
+ endunless
141
+ else
142
+ if '${o.toLowerCase()}' == 'latest'
143
+ assign target_collection = collections | sort: 'updated_at' ${f?"| reverse":""} | first
144
+ else
145
+ for collection in collections
146
+ if collection.id == ${o}
147
+ assign target_collection = collection
148
+ break
149
+ endif
150
+ endfor
151
+ endif
152
+ paginate target_collection.products by ${n||4}
153
+ assign products = target_collection.products ${$?p:""} ${f?"| reverse":""}
154
+ endpaginate
155
+ endif
156
+ endif
157
+ -%}
158
+ `,{productListWrapStyle:L,productListContentStyle:v,productListWrapAlignStyle:E}=styles.getStyle(e),{productListWrapClass:S}=classes.getClass(e),k=()=>core.template`
159
+ {%- if products == null -%}
160
+ {%- if count == 0 and ${u.length} == 0 -%}
161
+ {% if '${m}' == 'RelatedProduct' -%}
162
+ <div>${helpers$1.getStaticLocale("ProductList","no_related_products")}</div>
163
+ {% else %}
164
+ <div>${helpers$1.getStaticLocale("ProductList","no_products_found")}</div>
165
+ {%- endif -%}
166
+ {%- endif -%}
167
+ {%-else-%}
168
+ ${system.If(l,core.template`${ProductListGridLayout_liquid.default({...e,productListId:u,productSrc:m})}`,core.template`${ProductListCarouselLayout_liquid.default({...e,productListId:u,productSrc:m})}`)}
169
+ {%- endif -%}
170
+ `;return core.template`
171
+ ${core.RenderIf(core.isLocalEnv,`
172
+ <script ${helpers$1.getSettingPreloadData('class="gps-link" delay',"src")}="{{ 'gp-product-v7-5.js' | asset_url }}" defer="defer"></script>
173
+ ${s?.sameHeight?`<script ${helpers$1.getSettingPreloadData('class="gps-link" delay',"src")}="{{ 'gp-same-height-v7-5.js' | asset_url }}" defer="defer"></script>`:""}
174
+ `,`
175
+ <script ${helpers$1.getSettingPreloadData('class="gps-link" delay',"src")}="${core.baseAssetURL}/assets-v2/gp-product-v7-5.js?v={{ shop.metafields.GEMPAGES.ASSETS_VERSION }}" defer="defer"></script>
176
+ ${s?.sameHeight?`<script ${helpers$1.getSettingPreloadData('class="gps-link" delay',"src")}="${core.baseAssetURL}/assets-v2/gp-same-height-v7-5.js?v={{ shop.metafields.GEMPAGES.ASSETS_VERSION }}" defer="defer"></script>`:""}
177
+ `)}
178
+
179
+ ${core.RenderIf(!!t?.preloadBgImage,`${core.RenderIf(!!t?.backgroundImage?.desktop?.image?.src,`<link rel="preload" href="${t?.backgroundImage?.desktop?.image?.src}" as="image" />`)}${core.RenderIf(!!t?.backgroundImage?.tablet?.image?.src,`<link rel="preload" href="${t?.backgroundImage?.tablet?.image?.src}" as="image" />`)}${core.RenderIf(!!t?.backgroundImage?.mobile?.image?.src,`<link rel="preload" href="${t?.backgroundImage?.mobile?.image?.src}" as="image" />`)}`)}
180
+ <div
181
+ class="${S}"
182
+ style="${L}"
183
+ >
184
+ <div class='gp-flex gp-w-full' style="${E}">
185
+ <div
186
+ style="${v}"
187
+ >
188
+ {%- assign gpBkProduct = product -%}
189
+ {%- assign gpBkProducts = products -%}
190
+ ${_()}
191
+ ${k()}
192
+ {%- assign product = gpBkProduct -%}
193
+ {%- assign products = gpBkProducts -%}
194
+ </div>
195
+ </div>
196
+ </div>
197
+ `};exports.default=ProductList;
@@ -0,0 +1,15 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var core=require("@gem-sdk/core"),classes=require("./common/classes.js");const ProductListItem=e=>{let{pageContext:t,children:o}=e,{productItemClass:a,gpProductClass:r}=classes.getClass(e);return core.template`
2
+ <gp-product
3
+ gp-context='{"variantSelected": {{ variant | json | escape }}, "quantity": 1 , "formId": "{{ product_form_id }}"}'
4
+ gp-data='{"variantSelected": {{ variant | json | escape }}, "quantity": 1, "productUrl":{{ product.url | json | escape }}, "productHandle":{{ product.handle | json | escape }}, "collectionUrl": {{ collection.url | json | escape }}, "collectionHandle": {{ collection.handle | json | escape }},"pageContext" : ${JSON.stringify(t)}}'
5
+ class="${r}"
6
+
7
+ >
8
+ {%- form 'product', product, id: product_form_id, class: 'form contents ${a}', data-type: 'add-to-cart-form', autocomplete: 'off' -%}
9
+ <input type="hidden" name="id" value="{{ variant.id }}" />
10
+ <input type="hidden" min="1" name="quantity" value="{{ quantity }}" />
11
+ <button type="submit" onclick="return false;" style="display:none;"></button>
12
+ ${o}
13
+ {%- endform -%}
14
+ </gp-product>
15
+ `};exports.default=ProductListItem;
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var jsxRuntime=require("react/jsx-runtime"),core=require("@gem-sdk/core"),Carousel=require("../../../carousel/components/root/Carousel.js"),CarouselItem=require("../../../carousel/components/item/CarouselItem.js"),ChildrenDroppable=require("../../../grid/components/ChildrenDroppable.js"),helpers=require("./common/helpers.js"),attrs=require("./common/attrs.js"),styles=require("./common/styles.js"),classes=require("./common/classes.js");const ProductListCarouselLayout=e=>{let{children:s,builderProps:r,productSortedById:t,advanced:o}=e,l=core.useEditorMode(),{carouselConfigSetting:u,carouselConfigStyle:a}=helpers.getData(e),{productListAttr:i,getAttrProductItemEditor:c}=attrs.getAttr(e),{carouselItemStyle:d}=styles.getStyle(e),{carouselClass:n,productItemClass:m}=classes.getClass(e);return jsxRuntime.jsx(Carousel.default,{advanced:o,builderProps:{uid:r?.uid},rootAttrs:{...i},rootClass:n,setting:u,styles:a,children:t?.map(e=>jsxRuntime.jsx(CarouselItem.default,{style:d,children:jsxRuntime.jsx(core.ProductProvider,{product:e,readOnly:!0,children:jsxRuntime.jsx("div",{..."edit"===l?c(e?.baseID):{},className:m,children:core.isEmptyChildren(s)?jsxRuntime.jsx(ChildrenDroppable.default,{}):s})})},e?.baseID))})};exports.default=ProductListCarouselLayout;
@@ -0,0 +1,22 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var core=require("@gem-sdk/core"),CarouselItem_liquid=require("../../../carousel/components/item/CarouselItem.liquid.js"),Carousel_liquid=require("../../../carousel/components/root/Carousel.liquid.js"),helpers=require("./common/helpers.js"),classes=require("./common/classes.js"),styles=require("./common/styles.js"),helpers$1=require("../../../helpers.js"),ProductListCarouselItem_liquid=require("./ProductListCarouselItem.liquid.js");const ProductListCarouselLayout=e=>{let{builderProps:t,advanced:r,productSrc:s,productListId:o}=e,{carouselConfigSetting:i,carouselConfigStyle:u}=helpers.getData(e),{carouselItemStyle:l}=styles.getStyle(e),{carouselClass:d}=classes.getClass(e);return core.template`
2
+ ${Carousel_liquid.default({advanced:r,builderProps:{...t},rootAttrs:{"items-repeat":"true"},rootId:`product-list-carousel-${t?.uid}`,rootClass:d,setting:i,styles:u,children:`
3
+ {%- assign count = 0 -%}
4
+ {%- for product in products limit: limit -%}
5
+ {%- if product.id != empty -%}
6
+ {%- assign count = count | plus: 1 -%}
7
+ {%- assign variant = product.selected_or_first_available_variant -%}
8
+ {%- assign product_form_id = 'product-form-' | append: "${t?.uid}" | append: product.id -%}
9
+ ${CarouselItem_liquid.default({builderProps:{...t},style:l,parentId:`product-list-carousel-${t?.uid} gp-child-item-${t?.uid}`,parentStyle:u,background:i?.background,children:`
10
+ ${ProductListCarouselItem_liquid.default({...e})}
11
+ `})}
12
+ {%- endif -%}
13
+ {% endfor %}
14
+ {%- if count == 0 and ${o.length} == 0 -%}
15
+ {% if '${s}' == 'RelatedProduct' -%}
16
+ <div>${helpers$1.getStaticLocale("ProductList","no_related_products")}</div>
17
+ {% else %}
18
+ <div>${helpers$1.getStaticLocale("ProductList","no_products_found")}</div>
19
+ {%- endif -%}
20
+ {%- endif -%}
21
+ `})}
22
+ `};exports.default=ProductListCarouselLayout;
@@ -0,0 +1,19 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var core=require("@gem-sdk/core"),classes=require("./common/classes.js"),styles=require("./common/styles.js");const ProductListItem=e=>{let{pageContext:t,rawChildren:o}=e,{productItemStyle:r}=styles.getStyle(e),{productItemClass:s,gpProductClass:a}=classes.getClass(e),n=()=>core.template`
2
+ ${o?.map((e,t)=>{if(e)return core.template`
3
+ ${core.RenderChildren({...e,index:t,style:{...e.style,...r}})}
4
+ `})}
5
+ `;return core.template`
6
+ <gp-product
7
+ gp-context='{"variantSelected": {{ variant | json | escape }}, "quantity": 1 , "formId": "{{ product_form_id }}"}'
8
+ gp-data='{"variantSelected": {{ variant | json | escape }}, "quantity": 1, "productUrl":{{ product.url | json | escape }}, "productHandle":{{ product.handle | json | escape }}, "collectionUrl": {{ collection.url | json | escape }}, "collectionHandle": {{ collection.handle | json | escape }},"pageContext" : ${JSON.stringify(t)}}'
9
+ class="${a}"
10
+
11
+ >
12
+ {%- form 'product', product, id: product_form_id, class: 'form contents ${s}', data-type: 'add-to-cart-form', autocomplete: 'off' -%}
13
+ <input type="hidden" name="id" value="{{ variant.id }}" />
14
+ <input type="hidden" min="1" name="quantity" value="{{ quantity }}" />
15
+ <button type="submit" onclick="return false;" style="display:none;"></button>
16
+ ${n()}
17
+ {%- endform -%}
18
+ </gp-product>
19
+ `};exports.default=ProductListItem;
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var jsxRuntime=require("react/jsx-runtime"),React=require("react"),core=require("@gem-sdk/core"),ChildrenDroppable=require("../../../grid/components/ChildrenDroppable.js"),styles=require("./common/styles.js"),classes=require("./common/classes.js"),attrs=require("./common/attrs.js");const ProductListGridLayout=e=>{let{children:r,productSortedById:t,generateGridRowArray:s,setting:i}=e,l=core.useEditorMode(),{gridLayoutStyle:a,productItemStyle:o}=styles.getStyle(e),{gridLayoutClass:c,productItemClass:d}=classes.getClass(e),{productListAttr:n,getAttrProductItemEditor:u}=attrs.getAttr(e);return jsxRuntime.jsx("div",{...n,style:a,className:c,children:t?.length?t?.map((e,t)=>jsxRuntime.jsx(core.ProductProvider,{product:e,readOnly:!0,children:jsxRuntime.jsx("div",{..."edit"===l?u(e?.baseID):{},className:d,style:{"--grchild":i?.sameHeight?s?.[t]?.gridRow:void 0,"--mbchild":s?.[t]?.marginBottom},children:core.isEmptyChildren(r)?jsxRuntime.jsx(ChildrenDroppable.default,{}):React.Children.map(r,e=>React.isValidElement(e)?React.createElement(e.type,{...e.props,parentStyle:o,key:e.key}):null)})},e?.baseID)):null})};exports.default=ProductListGridLayout;
@@ -0,0 +1,34 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var core=require("@gem-sdk/core"),styles=require("./common/styles.js"),classes=require("./common/classes.js"),attrs=require("./common/attrs.js"),ProductListGridItem_liquid=require("./ProductListGridItem.liquid.js"),helpers=require("../../../helpers.js");const ProductListGridLayout=e=>{let{setting:t,builderProps:s,styles:r,productListId:i,productSrc:d}=e,{gridLayoutStyle:o}=styles.getStyle(e),{gridLayoutClass:a}=classes.getClass(e),{productListAttr:c}=attrs.getAttr(e),l=e=>core.template`
2
+ <gp-same-height
3
+ class="gp-contents"
4
+ style="visibility: hidden"
5
+ gp-data='${JSON.stringify({targetUid:s?.builderData?.childrens?.[0],slidesToShow:t?.slidesToShow,rowGap:r?.horizontalGutter})}'>
6
+ ${e}
7
+ </gp-same-height>
8
+ `,u=()=>core.template`
9
+ {%- assign count = 0 -%}
10
+ {%- for product in products limit: limit -%}
11
+ {%- if product.id != empty -%}
12
+ {%- assign count = count | plus: 1 -%}
13
+ {%- assign variant = product.selected_or_first_available_variant -%}
14
+ {%- assign product_form_id = 'product-form-' | append: "${s?.uid}" | append: product.id -%}
15
+ ${ProductListGridItem_liquid.default({...e})}
16
+ {%- endif -%}
17
+ {% endfor %}
18
+ {%- if count == 0 and ${i?.length} == 0 -%}
19
+ {% if '${d}' == 'RelatedProduct' -%}
20
+ <div>${helpers.getStaticLocale("ProductList","no_related_products")}</div>
21
+ {% else %}
22
+ <div>${helpers.getStaticLocale("ProductList","no_products_found")}</div>
23
+ {%- endif -%}
24
+ {%- endif -%}
25
+ `;return core.template`
26
+ <div
27
+ ${c}
28
+ style="${o}"
29
+ class="${a}"
30
+ >
31
+ ${core.RenderIf(t?.sameHeight,l(`${u()}`))}
32
+ ${core.RenderIf(!t?.sameHeight,core.template`${u()}`)}
33
+ </div>
34
+ `};exports.default=ProductListGridLayout;
@@ -0,0 +1 @@
1
+ "use strict";var system=require("@gem-sdk/system");const getAttr=t=>{let{builderProps:e}=t,r=system.createAttr({"items-repeat":!0,"data-id":e?.uid??""}),a=t=>system.createAttr({"data-component-type":"component","data-component-tag":"Product","data-component-label":"Product","data-component-no-setting":!0,"data-product-id":t?.replace("gid://shopify/Product/","")??""});return{productListAttr:r,getAttrProductItemEditor:a}};exports.getAttr=getAttr;
@@ -0,0 +1 @@
1
+ "use strict";var system=require("@gem-sdk/system");const getClass=s=>{let{setting:e,className:t,builderProps:g,advanced:a,styles:r}=s,i=system.createClass({...t&&{[t]:!0},...a?.cssClass&&{[a.cssClass]:!0},"!gp-m-auto gp-grid gp-w-full":!0,"gp-grid-flow-row":e?.sameHeight}),l=system.createClass({"gp-relative gp-flex":!0,[`${g?.builderData?.uid}`]:!0}),p=system.createClass({"gp-contents":e?.sameHeight&&r?.layout==="grid"}),c=system.createClass({"gp-justify-center":!0,"gp-overflow-hidden":!e?.sameHeight}),m=system.createClass({"gp-contents [&>*>div]:gp-contents [&>*]:gp-grid-rows-[subgrid] [&>*]:gp-gap-y-0":e?.sameHeight,[`gp-child-item-${g?.uid}`]:!0});return{gridLayoutClass:i,productItemClass:m,carouselClass:c,productListWrapClass:l,gpProductClass:p}};exports.getClass=getClass;
@@ -0,0 +1 @@
1
+ "use strict";var product=require("../../../helpers/product.js"),productFeaturedImage=require("../../product-images/common/productFeaturedImage.js"),helpers=require("../../../../carousel/components/dot/common/helpers.js");const getData=e=>{let{setting:t,styles:o}=e,r=t?.productSetting??{},d="RelatedProduct"===r.productSrc,c=helpers.getUpdatedDotStyle(t?.dot,t?.dotStyle),l={dotSize:{desktop:12},dotGapToCarousel:{desktop:16},arrowIconSize:{desktop:24},showWhenHover:!1,rtl:!1,...t};delete l.childItem;let u={...o,sizeSetting:{...product.getSizeSetting({adaptiveHeight:o?.adaptiveHeight,height:o?.height,fullWidth:{desktop:!0}})},spacing:o?.spacing};return delete u.backgroundColor,delete u.backgroundImage,{isRelatedProduct:d,productSetting:r,dotStyle:c,carouselConfigSetting:l,carouselConfigStyle:u}},getDataLiquid=e=>{let{setting:t,styles:o}=e,r=t?.productSetting,d=r?.relatedTag,c=r?.hasRelatedExclude,l=(d&&"collection"===d[0]?r?.relatedCollectionExclude:r?.relatedTagsExclude)??"",u=l?.split(",").map(e=>e.trim()).toString(),a=r?.productSrc??"Collection",i=r?.collectionId?.replace(PREFIX_COLLECTION_ID,"")??"latest",p=r?.productSrc==="PickProduct"&&r?.productIds?.length===0,s=o?.layout==="grid",n=productFeaturedImage.convertUnitToNumber(t?.numberOfProducts,4),g="PickProduct"===a&&r?.productIds?.length?r?.productIds.map(e=>e.replace(PREFIX_PRODUCT_ID,"")):[],I="PickProduct"===a&&r?.productHandles?.length?r?.productHandles:[],P=t?.orderBy&&t?.orderBy!=="none",h=(r?.productSrc==="Collection"||r?.productSrc==="DynamicCollection")&&P?t?.orderBy?.split("_"):"none",D=P&&h?.[0]==="TITLE"?"| sort: 'title'":"| sort: 'updated_at'",C=h?.[h.length-1]==="DESC",m=()=>"PickProduct"===a?p?4:r?.numOfSelectedProducts??4:n;return{hasRelatedExclude:c,relatedExcludeTrim:u,collectionID:i,isLatestProducts:p,isGrid:s,numberOfProducts:n,productListId:g,productListHandles:I,sortedBy:D,isReverse:C,productSrc:a,productSetting:r,isSorted:P,relatedTag:d,productNumber:m()}},PREFIX_COLLECTION_ID="gid://shopify/Collection/",PREFIX_PRODUCT_ID="gid://shopify/Product/";exports.PREFIX_COLLECTION_ID=PREFIX_COLLECTION_ID,exports.PREFIX_PRODUCT_ID=PREFIX_PRODUCT_ID,exports.getData=getData,exports.getDataLiquid=getDataLiquid;
@@ -0,0 +1 @@
1
+ "use strict";var core=require("@gem-sdk/core"),system=require("@gem-sdk/system"),helpers=require("../../../../grid/components/row/common/helpers.js"),helpers$1=require("../../../../carousel/common/helpers.js");const getStyle=e=>{let{setting:t,styles:o,style:r}=e,{background:s}=t??{},[l,a]=core.splitStyle(["pos","top","left","bottom","right","z","mb","mt","mb","ml","d"],r),c=core.makeGlobalSize(o?.itemPadding),i=system.createStyle({...l}),n=system.createStyle({...core.makeStyleResponsive("jc",o?.align||{desktop:"center"})}),d=system.createStyle({...a,...core.makeStyleResponsive("w",helpers.createStyleObject(o?.width).content),...core.getBgByDevice({backgroundColor:o?.backgroundColor,backgroundImage:o?.backgroundImage})}),m=system.createStyle({...!t?.sameHeight&&core.makeStyleResponsive("rg",o?.horizontalGutter),...core.makeStyleResponsive("cg",o?.verticalGutter),...core.makeStyleResponsive("gtc",{desktop:`repeat(${core.getResponsiveValueByScreen(t?.slidesToShow,"desktop")}, minmax(0, 1fr))`,tablet:t?.slidesToShow?.tablet&&`repeat(${core.getResponsiveValueByScreen(t?.slidesToShow,"tablet")}, minmax(0, 1fr))`,mobile:t?.slidesToShow?.mobile&&`repeat(${core.getResponsiveValueByScreen(t?.slidesToShow,"mobile")}, minmax(0, 1fr))`})}),S=system.createStyle({...helpers$1.getInitialWidthForCarouselItem({spacing:o?.spacing,slidesToShow:t?.slidesToShow})}),y={...c&&c.padding,...core.makeStyle({bs:o?.borderContent?.border,bw:o?.borderContent?.width,bc:core.getSingleColorVariable(o?.borderContent?.color)}),...core.getRadiusStyleActiveState({...o?.roundedContent,active:{...o?.roundedContent||{},radiusType:"custom"}}),...core.getStyleShadow({value:o?.carouselShadow,styleAppliedFor:"box-shadow",isEnableShadow:o?.hasActiveShadow}),...core.getStyleBackgroundByDevice(s),...core.getGradientBgrStyleByDevice(s,{desktop:!0,tablet:!0,mobile:!0})},g=system.createStyle({...y});return{gridLayoutStyle:m,carouselItemStyle:S,productListWrapStyle:i,productListContentStyle:d,productListWrapAlignStyle:n,productItemStyle:g}};exports.getStyle=getStyle;
@@ -0,0 +1,2 @@
1
+ 'use client';
2
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var jsxRuntime=require("react/jsx-runtime"),Text=require("../../../text/components/Text.js"),system=require("@gem-sdk/system"),classes=require("./common/classes.js"),attrs=require("./common/attrs.js"),helpers=require("./common/helpers.js"),useGpPrice=require("./hooks/useGpPrice.js"),core=require("@gem-sdk/core");const ProductPrice=e=>{let{style:s,children:r}=e,t=core.useEditorMode(),i="edit"===t,{elementRef:c,moneyFormatted:u,currentProductId:a,isNoComparePrice:m,isNoComparePriceILP:o,emitNoDataSignal:l}=useGpPrice.useGpPrice(e),n=system.createClass(classes.getWrapperClasses(e)),x=system.createAttr(attrs.getAttrs(e,a)),p=helpers.getTextProps(e,u),d={visibility:"hidden",opacity:0,maxWidth:0,maxHeight:0},j=o?d:s;return jsxRuntime.jsxs("div",{ref:c,...x,className:n,style:j,"aria-hidden":"true",onClick:l,children:[m&&i?jsxRuntime.jsx(jsxRuntime.Fragment,{children:jsxRuntime.jsx("div",{className:"gp-flex-col gp-flex gp-justify-between gp-p-2",children:jsxRuntime.jsx("p",{className:"gp-text-[#212121] gp-text-[12px] gp-leading-3 ",children:"No compare price"})})}):jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx(Text.default,{...p}),r]}),core.filterToolbarPreview(r,!0)]})};exports.default=ProductPrice;