vviinn-widgets 2.5.0 → 2.5.2

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 (330) hide show
  1. package/dist/cjs/Handler-176539c8.js +331 -0
  2. package/dist/{vviinn-widgets/app-globals-4fe0376b.js → cjs/app-globals-d15b4c2c.js} +15 -925
  3. package/{www/build/cropper-handler.entry.js → dist/cjs/cropper-handler.cjs.entry.js} +11 -7
  4. package/dist/{vviinn-widgets/customized-slots-5dbf778c.js → cjs/customized-slots-0c0d0665.js} +6 -3
  5. package/dist/cjs/highlight-box_22.cjs.entry.js +747 -0
  6. package/{www/build/imageSearch.store-3204bc99.js → dist/cjs/imageSearch.store-865c23f4.js} +11902 -11653
  7. package/{www/build/index-89e62050.js → dist/cjs/index-0eb3036a.js} +76 -698
  8. package/dist/cjs/index-0f5516a6.js +1354 -0
  9. package/dist/cjs/index-31b9cb7a.js +39 -0
  10. package/dist/cjs/index.cjs.js +2 -0
  11. package/dist/cjs/loader.cjs.js +23 -0
  12. package/dist/cjs/vviinn-carousel_3.cjs.entry.js +1174 -0
  13. package/dist/{vviinn-widgets/vviinn-error.entry.js → cjs/vviinn-error.cjs.entry.js} +8 -4
  14. package/{www/build/vviinn-preloader.entry.js → dist/cjs/vviinn-preloader.cjs.entry.js} +11 -10
  15. package/{www/build/vviinn-recommendations-sidebar.entry.js → dist/cjs/vviinn-recommendations-sidebar.cjs.entry.js} +12 -8
  16. package/dist/{vviinn-widgets/vviinn-vpr-button.entry.js → cjs/vviinn-vpr-button.cjs.entry.js} +9 -5
  17. package/dist/cjs/vviinn-vps-button.cjs.entry.js +43 -0
  18. package/{www/build/vviinn-vps-widget.entry.js → dist/cjs/vviinn-vps-widget.cjs.entry.js} +51 -49
  19. package/dist/cjs/vviinn-widgets.cjs.js +21 -0
  20. package/dist/collection/Image/error.js +14 -0
  21. package/dist/collection/Image/form.js +5 -0
  22. package/dist/collection/Image/fromFile.js +18 -0
  23. package/dist/collection/Image/imageToB64.js +9 -0
  24. package/dist/collection/Image/index.js +0 -0
  25. package/dist/collection/Image/renderPromise.js +6 -0
  26. package/dist/collection/Image/resizeImage.js +28 -0
  27. package/dist/collection/Image/sizing.js +39 -0
  28. package/dist/collection/Image/toFile.js +17 -0
  29. package/dist/collection/analytics/GAnalytics.js +32 -0
  30. package/dist/collection/analytics/GeneralAnalytics.js +9 -0
  31. package/dist/collection/analytics/GtagAnalytics.js +35 -0
  32. package/dist/collection/analytics/ProductAnalytics.js +1 -0
  33. package/dist/collection/campaign/Campaign.js +8 -0
  34. package/dist/collection/campaign/CampaignService.js +5 -0
  35. package/dist/collection/campaign/VCSCampaign.js +1 -0
  36. package/dist/collection/campaign/VCSCampaignResponse.js +1 -0
  37. package/dist/collection/campaign/VCSCampaignService.js +5 -0
  38. package/dist/collection/campaign/VPRCampaignResponse.js +1 -0
  39. package/dist/collection/campaign/VPRCampaignService.js +5 -0
  40. package/dist/collection/collection-manifest.json +43 -0
  41. package/dist/collection/components/customized-slots.js +47 -0
  42. package/dist/collection/components/image-search/image-view/highlight-box/highlight-box.css +71 -0
  43. package/dist/collection/components/image-search/image-view/highlight-box/highlight-box.js +25 -0
  44. package/dist/collection/components/image-search/image-view/image-cropper/cropper-handler/cropper-handler.css +49 -0
  45. package/dist/collection/components/image-search/image-view/image-cropper/cropper-handler/cropper-handler.js +64 -0
  46. package/dist/collection/components/image-search/image-view/image-cropper/image-cropper.css +33 -0
  47. package/{www/build/image-cropper.entry.js → dist/collection/components/image-search/image-view/image-cropper/image-cropper.js} +70 -33
  48. package/dist/collection/components/image-search/search-filters/search-filters.css +120 -0
  49. package/dist/collection/components/image-search/search-filters/search-filters.js +125 -0
  50. package/dist/collection/components/vviinn-carousel/vviinn-carousel.css +142 -0
  51. package/{www/build/vviinn-carousel.entry.js → dist/collection/components/vviinn-carousel/vviinn-carousel.js} +113 -18
  52. package/dist/collection/components/vviinn-error/vviinn-empty-results/vviinn-empty-results.css +7 -0
  53. package/dist/collection/components/vviinn-error/vviinn-empty-results/vviinn-empty-results.js +36 -0
  54. package/dist/collection/components/vviinn-error/vviinn-error.css +38 -0
  55. package/dist/collection/components/vviinn-error/vviinn-error.js +18 -0
  56. package/dist/collection/components/vviinn-error/vviinn-server-error/vviinn-server-error.css +3 -0
  57. package/dist/collection/components/vviinn-error/vviinn-server-error/vviinn-server-error.js +34 -0
  58. package/dist/collection/components/vviinn-error/vviinn-wrong-format/vviinn-wrong-format.css +3 -0
  59. package/dist/collection/components/vviinn-error/vviinn-wrong-format/vviinn-wrong-format.js +34 -0
  60. package/dist/collection/components/vviinn-example-images/vviinn-example-image/vviinn-example-image.css +34 -0
  61. package/dist/collection/components/vviinn-example-images/vviinn-example-image/vviinn-example-image.js +129 -0
  62. package/dist/collection/components/vviinn-example-images/vviinn-example-images.css +19 -0
  63. package/dist/collection/components/vviinn-example-images/vviinn-example-images.js +80 -0
  64. package/dist/{vviinn-widgets/index-bbcd6be9.js → collection/components/vviinn-icons/index.js} +11 -14
  65. package/dist/collection/components/vviinn-image-selector/vviinn-image-selector.css +25 -0
  66. package/dist/collection/components/vviinn-image-selector/vviinn-image-selector.js +64 -0
  67. package/dist/collection/components/vviinn-image-view/vviinn-detected-object/vviinn-detected-object.css +47 -0
  68. package/dist/collection/components/vviinn-image-view/vviinn-detected-object/vviinn-detected-object.js +100 -0
  69. package/dist/collection/components/vviinn-image-view/vviinn-image-view.css +31 -0
  70. package/dist/collection/components/vviinn-image-view/vviinn-image-view.js +61 -0
  71. package/dist/collection/components/vviinn-modal/vviinn-modal.css +105 -0
  72. package/dist/collection/components/vviinn-modal/vviinn-modal.js +98 -0
  73. package/dist/collection/components/vviinn-onboarding/onboarding-cards/onboarding-card.css +41 -0
  74. package/dist/collection/components/vviinn-onboarding/onboarding-cards/vviinn-onboarding-card-1/vviinn-onboarding-card-1.js +26 -0
  75. package/dist/collection/components/vviinn-onboarding/onboarding-cards/vviinn-onboarding-card-2/vviinn-onboarding-card-2.js +26 -0
  76. package/dist/collection/components/vviinn-onboarding/onboarding-cards/vviinn-onboarding-card-3/vviinn-onboarding-card-3.js +26 -0
  77. package/dist/collection/components/vviinn-onboarding/vviinn-onboarding.css +58 -0
  78. package/dist/collection/components/vviinn-onboarding/vviinn-onboarding.js +28 -0
  79. package/dist/collection/components/vviinn-overlay/vviinn-overlay.css +33 -0
  80. package/dist/collection/components/vviinn-overlay/vviinn-overlay.js +15 -0
  81. package/dist/collection/components/vviinn-overlayed-modal/vviinn-overlayed-modal.css +29 -0
  82. package/dist/collection/components/vviinn-overlayed-modal/vviinn-overlayed-modal.js +71 -0
  83. package/dist/collection/components/vviinn-preloader/vviinn-preloader.css +37 -0
  84. package/dist/collection/components/vviinn-preloader/vviinn-preloader.js +20 -0
  85. package/dist/collection/components/vviinn-privacy-badge/vviinn-privacy-badge.css +19 -0
  86. package/dist/collection/components/vviinn-privacy-badge/vviinn-privacy-badge.js +27 -0
  87. package/dist/collection/components/vviinn-product-card/render-helpers.js +32 -0
  88. package/dist/collection/components/vviinn-product-card/stories/args.js +73 -0
  89. package/dist/collection/components/vviinn-product-card/stories/decorators.js +51 -0
  90. package/dist/collection/components/vviinn-product-card/stories/vviinn-product-card.stories.js +105 -0
  91. package/dist/collection/components/vviinn-product-card/vviinn-product-card.css +95 -0
  92. package/dist/collection/components/vviinn-product-card/vviinn-product-card.js +462 -0
  93. package/dist/collection/components/vviinn-slider/arrow.js +11 -0
  94. package/dist/collection/components/vviinn-slider/vviinn-slide/vviinn-slide.css +4 -0
  95. package/dist/collection/components/vviinn-slider/vviinn-slide/vviinn-slide.js +15 -0
  96. package/dist/collection/components/vviinn-slider/vviinn-slider.css +109 -0
  97. package/dist/collection/components/vviinn-slider/vviinn-slider.js +181 -0
  98. package/dist/collection/components/vviinn-teaser/vviinn-teaser.css +14 -0
  99. package/dist/collection/components/vviinn-teaser/vviinn-teaser.js +29 -0
  100. package/dist/collection/components/vviinn-vpr-button/recommendations-sidebar/recommendations-sidebar.css +238 -0
  101. package/dist/collection/components/vviinn-vpr-button/recommendations-sidebar/recommendations-sidebar.js +200 -0
  102. package/dist/collection/components/vviinn-vpr-button/stories/args.js +207 -0
  103. package/dist/collection/components/vviinn-vpr-button/stories/vviinn-vpr-button.stories.js +89 -0
  104. package/dist/collection/components/vviinn-vpr-button/vviinn-vpr-button.css +35 -0
  105. package/dist/collection/components/vviinn-vpr-button/vviinn-vpr-button.js +156 -0
  106. package/dist/collection/components/vviinn-vpr-widget/stories/args.js +190 -0
  107. package/dist/collection/components/vviinn-vpr-widget/stories/decorators.js +29 -0
  108. package/dist/collection/components/vviinn-vpr-widget/stories/vviinn-vpr-widget.stories.js +212 -0
  109. package/dist/collection/components/vviinn-vpr-widget/token-helpers.js +11 -0
  110. package/dist/collection/components/vviinn-vpr-widget/vviinn-vpr-vidget.js +483 -0
  111. package/dist/collection/components/vviinn-vpr-widget/vviinn-vpr-widget.css +79 -0
  112. package/dist/collection/components/vviinn-vps-button/stories/vviinn-vps-button.stories.js +31 -0
  113. package/dist/collection/components/vviinn-vps-button/vviinn-vps-button.css +3 -0
  114. package/dist/collection/components/vviinn-vps-button/vviinn-vps-button.js +178 -0
  115. package/dist/collection/components/vviinn-vps-widget/stories/vviinn-vps-widget.stories.js +33 -0
  116. package/dist/collection/components/vviinn-vps-widget/vviinn-vps-widget.css +350 -0
  117. package/dist/collection/components/vviinn-vps-widget/vviinn-vps-widget.js +352 -0
  118. package/dist/collection/cropper/Cropper.js +1 -0
  119. package/dist/collection/cropper/Handler.js +61 -0
  120. package/dist/collection/dom/index.js +3 -0
  121. package/dist/collection/error.js +14 -0
  122. package/dist/collection/file/index.js +4 -0
  123. package/dist/collection/geometry/Clip.js +14 -0
  124. package/dist/collection/geometry/Point.js +32 -0
  125. package/dist/collection/geometry/Rectangle.js +95 -0
  126. package/dist/collection/geometry/RectangleAlt.js +1 -0
  127. package/dist/collection/geometry/Sized.js +8 -0
  128. package/dist/collection/global.js +19 -0
  129. package/dist/collection/index.js +1 -0
  130. package/dist/collection/interfaces/generated.js +5 -0
  131. package/dist/collection/interfaces/recommendation.js +1 -0
  132. package/dist/collection/network/apiClient.js +9 -0
  133. package/dist/collection/network/ion/File.js +14 -0
  134. package/dist/collection/network/ion/Form.js +64 -0
  135. package/dist/collection/network/ion/Link.js +8 -0
  136. package/dist/collection/network/ion/ValueObject.js +23 -0
  137. package/dist/collection/network/request.js +19 -0
  138. package/dist/collection/network/utils.js +37 -0
  139. package/dist/collection/openApi/index.js +27 -0
  140. package/dist/collection/recommendation/events.js +1 -0
  141. package/dist/collection/recommendation/recommendation.js +1 -0
  142. package/dist/collection/searchSession/searchSession.js +26 -0
  143. package/dist/collection/sentry.js +14 -0
  144. package/dist/collection/slider/GridMode.js +1 -0
  145. package/dist/collection/store/file-processing.js +13 -0
  146. package/dist/collection/store/imageSearch.store.js +138 -0
  147. package/dist/collection/store/store.js +3 -0
  148. package/dist/collection/store/tracking.store.js +3 -0
  149. package/dist/collection/stories/Button.js +21 -0
  150. package/dist/collection/stories/Button.stories.js +42 -0
  151. package/dist/collection/stories/Header.js +45 -0
  152. package/dist/collection/stories/Header.stories.js +15 -0
  153. package/dist/collection/stories/Page.js +61 -0
  154. package/dist/collection/stories/Page.stories.js +19 -0
  155. package/dist/collection/stories/assets/code-brackets.svg +1 -0
  156. package/dist/collection/stories/assets/colors.svg +1 -0
  157. package/dist/collection/stories/assets/comments.svg +1 -0
  158. package/dist/collection/stories/assets/direction.svg +1 -0
  159. package/dist/collection/stories/assets/flow.svg +1 -0
  160. package/dist/collection/stories/assets/plugin.svg +1 -0
  161. package/dist/collection/stories/assets/repo.svg +1 -0
  162. package/dist/collection/stories/assets/stackalt.svg +1 -0
  163. package/dist/collection/stories/image-selector.stories.js +6 -0
  164. package/dist/collection/stories/image-view.stories.js +6 -0
  165. package/dist/collection/stories/modal.stories.js +12 -0
  166. package/dist/collection/stories/onboarding.stories.js +11 -0
  167. package/dist/collection/stories/overlay.stories.js +5 -0
  168. package/dist/collection/stories/overlayedModal.stories.js +8 -0
  169. package/dist/collection/stories/privacy-badge.stories.js +11 -0
  170. package/dist/collection/stories/slider.stories.js +17 -0
  171. package/dist/collection/stories/teaser.stories.js +5 -0
  172. package/dist/collection/stories/vps-widget.stories.js +47 -0
  173. package/dist/collection/stories/vviinn-product.stories.js +19 -0
  174. package/dist/collection/tracking/event.js +3 -0
  175. package/dist/collection/tracking/filter.js +5 -0
  176. package/dist/collection/tracking/index.js +13 -0
  177. package/dist/collection/tracking/models.js +6 -0
  178. package/dist/collection/tracking/product.js +18 -0
  179. package/dist/collection/tracking/search.js +5 -0
  180. package/dist/collection/tracking/widget.js +10 -0
  181. package/dist/collection/utils/collections/collectionsUtils.js +5 -0
  182. package/dist/collection/utils/either.js +3 -0
  183. package/dist/collection/utils/enum/enumUtils.js +3 -0
  184. package/dist/collection/utils/event/Events.js +1 -0
  185. package/dist/collection/utils/number/index.js +4 -0
  186. package/dist/collection/utils/option/option.js +4 -0
  187. package/dist/collection/utils/semigroup/semigroupDiff.js +6 -0
  188. package/dist/collection/utils/token/tokenUtils.js +9 -0
  189. package/dist/esm/Handler-f9b8735c.js +309 -0
  190. package/{www/build/app-globals-4fe0376b.js → dist/esm/app-globals-6f6aa89e.js} +10 -922
  191. package/dist/{vviinn-widgets → esm}/cropper-handler.entry.js +2 -2
  192. package/{www/build/customized-slots-5dbf778c.js → dist/esm/customized-slots-6b427dda.js} +1 -1
  193. package/dist/esm/highlight-box_22.entry.js +722 -0
  194. package/dist/{vviinn-widgets/imageSearch.store-3204bc99.js → esm/imageSearch.store-0ae87235.js} +12070 -11855
  195. package/dist/{vviinn-widgets/index-89e62050.js → esm/index-2e296af4.js} +6 -639
  196. package/dist/esm/index-59f44eaa.js +1323 -0
  197. package/{www/build/index-bbcd6be9.js → dist/esm/index-ac05c460.js} +2 -4
  198. package/dist/esm/index.js +1 -0
  199. package/dist/esm/loader.js +19 -0
  200. package/dist/esm/polyfills/core-js.js +11 -0
  201. package/dist/esm/polyfills/css-shim.js +1 -0
  202. package/dist/esm/polyfills/dom.js +79 -0
  203. package/dist/esm/polyfills/es5-html-element.js +1 -0
  204. package/dist/esm/polyfills/index.js +34 -0
  205. package/dist/esm/polyfills/system.js +6 -0
  206. package/dist/esm/vviinn-carousel_3.entry.js +1168 -0
  207. package/{www/build → dist/esm}/vviinn-error.entry.js +1 -1
  208. package/dist/{vviinn-widgets → esm}/vviinn-preloader.entry.js +3 -6
  209. package/dist/{vviinn-widgets → esm}/vviinn-recommendations-sidebar.entry.js +2 -2
  210. package/{www/build → dist/esm}/vviinn-vpr-button.entry.js +2 -2
  211. package/dist/{vviinn-widgets → esm}/vviinn-vps-button.entry.js +3 -3
  212. package/dist/{vviinn-widgets → esm}/vviinn-vps-widget.entry.js +12 -14
  213. package/dist/esm/vviinn-widgets.js +19 -0
  214. package/dist/index.cjs.js +1 -0
  215. package/dist/index.js +1 -0
  216. package/dist/loader/cdn.js +3 -0
  217. package/dist/loader/index.cjs.js +3 -0
  218. package/dist/loader/index.d.ts +12 -0
  219. package/dist/loader/index.es2017.js +3 -0
  220. package/dist/loader/index.js +4 -0
  221. package/dist/loader/package.json +10 -0
  222. package/dist/types/components/vviinn-vpr-widget/vviinn-vpr-vidget.d.ts +1 -1
  223. package/dist/types/components/vviinn-vps-widget/vviinn-vps-widget.d.ts +1 -1
  224. package/dist/vviinn-widgets/index.esm.js +0 -1
  225. package/dist/vviinn-widgets/p-118ac907.js +1 -0
  226. package/dist/vviinn-widgets/p-11f61564.js +1 -0
  227. package/dist/vviinn-widgets/p-39fdc5c9.entry.js +1 -0
  228. package/dist/vviinn-widgets/p-762dc067.entry.js +1 -0
  229. package/dist/vviinn-widgets/p-7e2f542c.js +1 -0
  230. package/dist/vviinn-widgets/p-8d56e795.entry.js +1 -0
  231. package/dist/vviinn-widgets/p-8f955b15.entry.js +1 -0
  232. package/dist/vviinn-widgets/p-9654fe35.entry.js +1 -0
  233. package/dist/vviinn-widgets/p-9e5adc42.js +1 -0
  234. package/dist/vviinn-widgets/p-b3731705.entry.js +1 -0
  235. package/dist/vviinn-widgets/p-bad1809f.js +1 -0
  236. package/dist/vviinn-widgets/p-c36546fa.js +15 -0
  237. package/dist/vviinn-widgets/p-d991330b.entry.js +1 -0
  238. package/dist/vviinn-widgets/p-da9c933b.entry.js +1 -0
  239. package/dist/vviinn-widgets/p-ee46fc83.js +1 -0
  240. package/dist/vviinn-widgets/p-f41e25f0.entry.js +1 -0
  241. package/dist/vviinn-widgets/vviinn-widgets.css +1 -6
  242. package/dist/vviinn-widgets/vviinn-widgets.esm.js +1 -125
  243. package/package.json +1 -1
  244. package/www/build/index.esm.js +0 -1
  245. package/www/build/p-118ac907.js +1 -0
  246. package/www/build/p-11f61564.js +1 -0
  247. package/www/build/p-39fdc5c9.entry.js +1 -0
  248. package/www/build/p-762dc067.entry.js +1 -0
  249. package/www/build/p-7e2f542c.js +1 -0
  250. package/www/build/p-8d56e795.entry.js +1 -0
  251. package/www/build/p-8f955b15.entry.js +1 -0
  252. package/www/build/p-9654fe35.entry.js +1 -0
  253. package/www/build/p-9e5adc42.js +1 -0
  254. package/www/build/p-a67898be.css +1 -0
  255. package/www/build/p-b3731705.entry.js +1 -0
  256. package/www/build/p-bad1809f.js +1 -0
  257. package/www/build/p-c36546fa.js +15 -0
  258. package/www/build/p-cfd998c1.js +1 -0
  259. package/www/build/p-d991330b.entry.js +1 -0
  260. package/www/build/p-da9c933b.entry.js +1 -0
  261. package/www/build/p-ee46fc83.js +1 -0
  262. package/www/build/p-f41e25f0.entry.js +1 -0
  263. package/www/build/vviinn-widgets.css +1 -6
  264. package/www/build/vviinn-widgets.esm.js +1 -125
  265. package/www/index.html +1 -12
  266. package/dist/vviinn-widgets/Array-c4dc02db.js +0 -4295
  267. package/dist/vviinn-widgets/Handler-47db9890.js +0 -1428
  268. package/dist/vviinn-widgets/NonEmptyArray-65395d97.js +0 -4370
  269. package/dist/vviinn-widgets/css-shim-f0027935.js +0 -4
  270. package/dist/vviinn-widgets/dom-db0073f0.js +0 -73
  271. package/dist/vviinn-widgets/highlight-box.entry.js +0 -41
  272. package/dist/vviinn-widgets/image-cropper.entry.js +0 -118
  273. package/dist/vviinn-widgets/index-c8128606.js +0 -3010
  274. package/dist/vviinn-widgets/number-a80a4b3c.js +0 -1533
  275. package/dist/vviinn-widgets/search-filters.entry.js +0 -76
  276. package/dist/vviinn-widgets/shadow-css-c1fdfa9f.js +0 -389
  277. package/dist/vviinn-widgets/vviinn-carousel.entry.js +0 -210
  278. package/dist/vviinn-widgets/vviinn-detected-object.entry.js +0 -54
  279. package/dist/vviinn-widgets/vviinn-empty-results.entry.js +0 -16
  280. package/dist/vviinn-widgets/vviinn-example-image.entry.js +0 -38
  281. package/dist/vviinn-widgets/vviinn-example-images.entry.js +0 -28
  282. package/dist/vviinn-widgets/vviinn-image-selector.entry.js +0 -31
  283. package/dist/vviinn-widgets/vviinn-image-view.entry.js +0 -55
  284. package/dist/vviinn-widgets/vviinn-modal.entry.js +0 -30
  285. package/dist/vviinn-widgets/vviinn-onboarding-card-1.entry.js +0 -21
  286. package/dist/vviinn-widgets/vviinn-onboarding-card-2.entry.js +0 -21
  287. package/dist/vviinn-widgets/vviinn-onboarding-card-3.entry.js +0 -21
  288. package/dist/vviinn-widgets/vviinn-onboarding.entry.js +0 -20
  289. package/dist/vviinn-widgets/vviinn-overlay.entry.js +0 -15
  290. package/dist/vviinn-widgets/vviinn-overlayed-modal.entry.js +0 -18
  291. package/dist/vviinn-widgets/vviinn-privacy-badge.entry.js +0 -20
  292. package/dist/vviinn-widgets/vviinn-product-card.entry.js +0 -184
  293. package/dist/vviinn-widgets/vviinn-server-error.entry.js +0 -16
  294. package/dist/vviinn-widgets/vviinn-slide.entry.js +0 -15
  295. package/dist/vviinn-widgets/vviinn-slider.entry.js +0 -120
  296. package/dist/vviinn-widgets/vviinn-teaser.entry.js +0 -20
  297. package/dist/vviinn-widgets/vviinn-vpr-widget.entry.js +0 -4581
  298. package/dist/vviinn-widgets/vviinn-wrong-format.entry.js +0 -16
  299. package/www/build/Array-c4dc02db.js +0 -4295
  300. package/www/build/Handler-47db9890.js +0 -1428
  301. package/www/build/NonEmptyArray-65395d97.js +0 -4370
  302. package/www/build/css-shim-f0027935.js +0 -4
  303. package/www/build/dom-db0073f0.js +0 -73
  304. package/www/build/highlight-box.entry.js +0 -41
  305. package/www/build/index-c8128606.js +0 -3010
  306. package/www/build/number-a80a4b3c.js +0 -1533
  307. package/www/build/search-filters.entry.js +0 -76
  308. package/www/build/shadow-css-c1fdfa9f.js +0 -389
  309. package/www/build/vviinn-detected-object.entry.js +0 -54
  310. package/www/build/vviinn-empty-results.entry.js +0 -16
  311. package/www/build/vviinn-example-image.entry.js +0 -38
  312. package/www/build/vviinn-example-images.entry.js +0 -28
  313. package/www/build/vviinn-image-selector.entry.js +0 -31
  314. package/www/build/vviinn-image-view.entry.js +0 -55
  315. package/www/build/vviinn-modal.entry.js +0 -30
  316. package/www/build/vviinn-onboarding-card-1.entry.js +0 -21
  317. package/www/build/vviinn-onboarding-card-2.entry.js +0 -21
  318. package/www/build/vviinn-onboarding-card-3.entry.js +0 -21
  319. package/www/build/vviinn-onboarding.entry.js +0 -20
  320. package/www/build/vviinn-overlay.entry.js +0 -15
  321. package/www/build/vviinn-overlayed-modal.entry.js +0 -18
  322. package/www/build/vviinn-privacy-badge.entry.js +0 -20
  323. package/www/build/vviinn-product-card.entry.js +0 -184
  324. package/www/build/vviinn-server-error.entry.js +0 -16
  325. package/www/build/vviinn-slide.entry.js +0 -15
  326. package/www/build/vviinn-slider.entry.js +0 -120
  327. package/www/build/vviinn-teaser.entry.js +0 -20
  328. package/www/build/vviinn-vpr-widget.entry.js +0 -4581
  329. package/www/build/vviinn-vps-button.entry.js +0 -39
  330. package/www/build/vviinn-wrong-format.entry.js +0 -16
@@ -1,4 +1,6 @@
1
- import { a as commonjsGlobal, c as createCommonjsModule, g as getDefaultExportFromCjs, e as getAugmentedNamespace } from './NonEmptyArray-65395d97.js';
1
+ 'use strict';
2
+
3
+ const imageSearch_store = require('./imageSearch.store-865c23f4.js');
2
4
 
3
5
  // Unique ID creation requires a high quality random # generator. In the browser we therefore
4
6
  // require the crypto API and do not support built-in fallback to lower quality random number
@@ -54,408 +56,6 @@ function stringify$1(arr) {
54
56
  return uuid;
55
57
  }
56
58
 
57
- //
58
- // Inspired by https://github.com/LiosK/UUID.js
59
- // and http://docs.python.org/library/uuid.html
60
-
61
- var _nodeId;
62
-
63
- var _clockseq; // Previous uuid creation time
64
-
65
-
66
- var _lastMSecs = 0;
67
- var _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details
68
-
69
- function v1(options, buf, offset) {
70
- var i = buf && offset || 0;
71
- var b = buf || new Array(16);
72
- options = options || {};
73
- var node = options.node || _nodeId;
74
- var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not
75
- // specified. We do this lazily to minimize issues related to insufficient
76
- // system entropy. See #189
77
-
78
- if (node == null || clockseq == null) {
79
- var seedBytes = options.random || (options.rng || rng)();
80
-
81
- if (node == null) {
82
- // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)
83
- node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]];
84
- }
85
-
86
- if (clockseq == null) {
87
- // Per 4.2.2, randomize (14 bit) clockseq
88
- clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;
89
- }
90
- } // UUID timestamps are 100 nano-second units since the Gregorian epoch,
91
- // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so
92
- // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'
93
- // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.
94
-
95
-
96
- var msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock
97
- // cycle to simulate higher resolution clock
98
-
99
- var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs)
100
-
101
- var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression
102
-
103
- if (dt < 0 && options.clockseq === undefined) {
104
- clockseq = clockseq + 1 & 0x3fff;
105
- } // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new
106
- // time interval
107
-
108
-
109
- if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {
110
- nsecs = 0;
111
- } // Per 4.2.1.2 Throw error if too many uuids are requested
112
-
113
-
114
- if (nsecs >= 10000) {
115
- throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");
116
- }
117
-
118
- _lastMSecs = msecs;
119
- _lastNSecs = nsecs;
120
- _clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch
121
-
122
- msecs += 12219292800000; // `time_low`
123
-
124
- var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;
125
- b[i++] = tl >>> 24 & 0xff;
126
- b[i++] = tl >>> 16 & 0xff;
127
- b[i++] = tl >>> 8 & 0xff;
128
- b[i++] = tl & 0xff; // `time_mid`
129
-
130
- var tmh = msecs / 0x100000000 * 10000 & 0xfffffff;
131
- b[i++] = tmh >>> 8 & 0xff;
132
- b[i++] = tmh & 0xff; // `time_high_and_version`
133
-
134
- b[i++] = tmh >>> 24 & 0xf | 0x10; // include version
135
-
136
- b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)
137
-
138
- b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low`
139
-
140
- b[i++] = clockseq & 0xff; // `node`
141
-
142
- for (var n = 0; n < 6; ++n) {
143
- b[i + n] = node[n];
144
- }
145
-
146
- return buf || stringify$1(b);
147
- }
148
-
149
- function parse$1(uuid) {
150
- if (!validate(uuid)) {
151
- throw TypeError('Invalid UUID');
152
- }
153
-
154
- var v;
155
- var arr = new Uint8Array(16); // Parse ########-....-....-....-............
156
-
157
- arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24;
158
- arr[1] = v >>> 16 & 0xff;
159
- arr[2] = v >>> 8 & 0xff;
160
- arr[3] = v & 0xff; // Parse ........-####-....-....-............
161
-
162
- arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8;
163
- arr[5] = v & 0xff; // Parse ........-....-####-....-............
164
-
165
- arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8;
166
- arr[7] = v & 0xff; // Parse ........-....-....-####-............
167
-
168
- arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8;
169
- arr[9] = v & 0xff; // Parse ........-....-....-....-############
170
- // (Use "/" to avoid 32-bit truncation when bit-shifting high-order bytes)
171
-
172
- arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff;
173
- arr[11] = v / 0x100000000 & 0xff;
174
- arr[12] = v >>> 24 & 0xff;
175
- arr[13] = v >>> 16 & 0xff;
176
- arr[14] = v >>> 8 & 0xff;
177
- arr[15] = v & 0xff;
178
- return arr;
179
- }
180
-
181
- function stringToBytes(str) {
182
- str = unescape(encodeURIComponent(str)); // UTF8 escape
183
-
184
- var bytes = [];
185
-
186
- for (var i = 0; i < str.length; ++i) {
187
- bytes.push(str.charCodeAt(i));
188
- }
189
-
190
- return bytes;
191
- }
192
-
193
- var DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';
194
- var URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';
195
- function v35 (name, version, hashfunc) {
196
- function generateUUID(value, namespace, buf, offset) {
197
- if (typeof value === 'string') {
198
- value = stringToBytes(value);
199
- }
200
-
201
- if (typeof namespace === 'string') {
202
- namespace = parse$1(namespace);
203
- }
204
-
205
- if (namespace.length !== 16) {
206
- throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)');
207
- } // Compute hash of namespace and value, Per 4.3
208
- // Future: Use spread syntax when supported on all platforms, e.g. `bytes =
209
- // hashfunc([...namespace, ... value])`
210
-
211
-
212
- var bytes = new Uint8Array(16 + value.length);
213
- bytes.set(namespace);
214
- bytes.set(value, namespace.length);
215
- bytes = hashfunc(bytes);
216
- bytes[6] = bytes[6] & 0x0f | version;
217
- bytes[8] = bytes[8] & 0x3f | 0x80;
218
-
219
- if (buf) {
220
- offset = offset || 0;
221
-
222
- for (var i = 0; i < 16; ++i) {
223
- buf[offset + i] = bytes[i];
224
- }
225
-
226
- return buf;
227
- }
228
-
229
- return stringify$1(bytes);
230
- } // Function#name is not settable on some platforms (#270)
231
-
232
-
233
- try {
234
- generateUUID.name = name; // eslint-disable-next-line no-empty
235
- } catch (err) {} // For CommonJS default export support
236
-
237
-
238
- generateUUID.DNS = DNS;
239
- generateUUID.URL = URL;
240
- return generateUUID;
241
- }
242
-
243
- /*
244
- * Browser-compatible JavaScript MD5
245
- *
246
- * Modification of JavaScript MD5
247
- * https://github.com/blueimp/JavaScript-MD5
248
- *
249
- * Copyright 2011, Sebastian Tschan
250
- * https://blueimp.net
251
- *
252
- * Licensed under the MIT license:
253
- * https://opensource.org/licenses/MIT
254
- *
255
- * Based on
256
- * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message
257
- * Digest Algorithm, as defined in RFC 1321.
258
- * Version 2.2 Copyright (C) Paul Johnston 1999 - 2009
259
- * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
260
- * Distributed under the BSD License
261
- * See http://pajhome.org.uk/crypt/md5 for more info.
262
- */
263
- function md5(bytes) {
264
- if (typeof bytes === 'string') {
265
- var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape
266
-
267
- bytes = new Uint8Array(msg.length);
268
-
269
- for (var i = 0; i < msg.length; ++i) {
270
- bytes[i] = msg.charCodeAt(i);
271
- }
272
- }
273
-
274
- return md5ToHexEncodedArray(wordsToMd5(bytesToWords(bytes), bytes.length * 8));
275
- }
276
- /*
277
- * Convert an array of little-endian words to an array of bytes
278
- */
279
-
280
-
281
- function md5ToHexEncodedArray(input) {
282
- var output = [];
283
- var length32 = input.length * 32;
284
- var hexTab = '0123456789abcdef';
285
-
286
- for (var i = 0; i < length32; i += 8) {
287
- var x = input[i >> 5] >>> i % 32 & 0xff;
288
- var hex = parseInt(hexTab.charAt(x >>> 4 & 0x0f) + hexTab.charAt(x & 0x0f), 16);
289
- output.push(hex);
290
- }
291
-
292
- return output;
293
- }
294
- /**
295
- * Calculate output length with padding and bit length
296
- */
297
-
298
-
299
- function getOutputLength(inputLength8) {
300
- return (inputLength8 + 64 >>> 9 << 4) + 14 + 1;
301
- }
302
- /*
303
- * Calculate the MD5 of an array of little-endian words, and a bit length.
304
- */
305
-
306
-
307
- function wordsToMd5(x, len) {
308
- /* append padding */
309
- x[len >> 5] |= 0x80 << len % 32;
310
- x[getOutputLength(len) - 1] = len;
311
- var a = 1732584193;
312
- var b = -271733879;
313
- var c = -1732584194;
314
- var d = 271733878;
315
-
316
- for (var i = 0; i < x.length; i += 16) {
317
- var olda = a;
318
- var oldb = b;
319
- var oldc = c;
320
- var oldd = d;
321
- a = md5ff(a, b, c, d, x[i], 7, -680876936);
322
- d = md5ff(d, a, b, c, x[i + 1], 12, -389564586);
323
- c = md5ff(c, d, a, b, x[i + 2], 17, 606105819);
324
- b = md5ff(b, c, d, a, x[i + 3], 22, -1044525330);
325
- a = md5ff(a, b, c, d, x[i + 4], 7, -176418897);
326
- d = md5ff(d, a, b, c, x[i + 5], 12, 1200080426);
327
- c = md5ff(c, d, a, b, x[i + 6], 17, -1473231341);
328
- b = md5ff(b, c, d, a, x[i + 7], 22, -45705983);
329
- a = md5ff(a, b, c, d, x[i + 8], 7, 1770035416);
330
- d = md5ff(d, a, b, c, x[i + 9], 12, -1958414417);
331
- c = md5ff(c, d, a, b, x[i + 10], 17, -42063);
332
- b = md5ff(b, c, d, a, x[i + 11], 22, -1990404162);
333
- a = md5ff(a, b, c, d, x[i + 12], 7, 1804603682);
334
- d = md5ff(d, a, b, c, x[i + 13], 12, -40341101);
335
- c = md5ff(c, d, a, b, x[i + 14], 17, -1502002290);
336
- b = md5ff(b, c, d, a, x[i + 15], 22, 1236535329);
337
- a = md5gg(a, b, c, d, x[i + 1], 5, -165796510);
338
- d = md5gg(d, a, b, c, x[i + 6], 9, -1069501632);
339
- c = md5gg(c, d, a, b, x[i + 11], 14, 643717713);
340
- b = md5gg(b, c, d, a, x[i], 20, -373897302);
341
- a = md5gg(a, b, c, d, x[i + 5], 5, -701558691);
342
- d = md5gg(d, a, b, c, x[i + 10], 9, 38016083);
343
- c = md5gg(c, d, a, b, x[i + 15], 14, -660478335);
344
- b = md5gg(b, c, d, a, x[i + 4], 20, -405537848);
345
- a = md5gg(a, b, c, d, x[i + 9], 5, 568446438);
346
- d = md5gg(d, a, b, c, x[i + 14], 9, -1019803690);
347
- c = md5gg(c, d, a, b, x[i + 3], 14, -187363961);
348
- b = md5gg(b, c, d, a, x[i + 8], 20, 1163531501);
349
- a = md5gg(a, b, c, d, x[i + 13], 5, -1444681467);
350
- d = md5gg(d, a, b, c, x[i + 2], 9, -51403784);
351
- c = md5gg(c, d, a, b, x[i + 7], 14, 1735328473);
352
- b = md5gg(b, c, d, a, x[i + 12], 20, -1926607734);
353
- a = md5hh(a, b, c, d, x[i + 5], 4, -378558);
354
- d = md5hh(d, a, b, c, x[i + 8], 11, -2022574463);
355
- c = md5hh(c, d, a, b, x[i + 11], 16, 1839030562);
356
- b = md5hh(b, c, d, a, x[i + 14], 23, -35309556);
357
- a = md5hh(a, b, c, d, x[i + 1], 4, -1530992060);
358
- d = md5hh(d, a, b, c, x[i + 4], 11, 1272893353);
359
- c = md5hh(c, d, a, b, x[i + 7], 16, -155497632);
360
- b = md5hh(b, c, d, a, x[i + 10], 23, -1094730640);
361
- a = md5hh(a, b, c, d, x[i + 13], 4, 681279174);
362
- d = md5hh(d, a, b, c, x[i], 11, -358537222);
363
- c = md5hh(c, d, a, b, x[i + 3], 16, -722521979);
364
- b = md5hh(b, c, d, a, x[i + 6], 23, 76029189);
365
- a = md5hh(a, b, c, d, x[i + 9], 4, -640364487);
366
- d = md5hh(d, a, b, c, x[i + 12], 11, -421815835);
367
- c = md5hh(c, d, a, b, x[i + 15], 16, 530742520);
368
- b = md5hh(b, c, d, a, x[i + 2], 23, -995338651);
369
- a = md5ii(a, b, c, d, x[i], 6, -198630844);
370
- d = md5ii(d, a, b, c, x[i + 7], 10, 1126891415);
371
- c = md5ii(c, d, a, b, x[i + 14], 15, -1416354905);
372
- b = md5ii(b, c, d, a, x[i + 5], 21, -57434055);
373
- a = md5ii(a, b, c, d, x[i + 12], 6, 1700485571);
374
- d = md5ii(d, a, b, c, x[i + 3], 10, -1894986606);
375
- c = md5ii(c, d, a, b, x[i + 10], 15, -1051523);
376
- b = md5ii(b, c, d, a, x[i + 1], 21, -2054922799);
377
- a = md5ii(a, b, c, d, x[i + 8], 6, 1873313359);
378
- d = md5ii(d, a, b, c, x[i + 15], 10, -30611744);
379
- c = md5ii(c, d, a, b, x[i + 6], 15, -1560198380);
380
- b = md5ii(b, c, d, a, x[i + 13], 21, 1309151649);
381
- a = md5ii(a, b, c, d, x[i + 4], 6, -145523070);
382
- d = md5ii(d, a, b, c, x[i + 11], 10, -1120210379);
383
- c = md5ii(c, d, a, b, x[i + 2], 15, 718787259);
384
- b = md5ii(b, c, d, a, x[i + 9], 21, -343485551);
385
- a = safeAdd(a, olda);
386
- b = safeAdd(b, oldb);
387
- c = safeAdd(c, oldc);
388
- d = safeAdd(d, oldd);
389
- }
390
-
391
- return [a, b, c, d];
392
- }
393
- /*
394
- * Convert an array bytes to an array of little-endian words
395
- * Characters >255 have their high-byte silently ignored.
396
- */
397
-
398
-
399
- function bytesToWords(input) {
400
- if (input.length === 0) {
401
- return [];
402
- }
403
-
404
- var length8 = input.length * 8;
405
- var output = new Uint32Array(getOutputLength(length8));
406
-
407
- for (var i = 0; i < length8; i += 8) {
408
- output[i >> 5] |= (input[i / 8] & 0xff) << i % 32;
409
- }
410
-
411
- return output;
412
- }
413
- /*
414
- * Add integers, wrapping at 2^32. This uses 16-bit operations internally
415
- * to work around bugs in some JS interpreters.
416
- */
417
-
418
-
419
- function safeAdd(x, y) {
420
- var lsw = (x & 0xffff) + (y & 0xffff);
421
- var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
422
- return msw << 16 | lsw & 0xffff;
423
- }
424
- /*
425
- * Bitwise rotate a 32-bit number to the left.
426
- */
427
-
428
-
429
- function bitRotateLeft(num, cnt) {
430
- return num << cnt | num >>> 32 - cnt;
431
- }
432
- /*
433
- * These functions implement the four basic operations the algorithm uses.
434
- */
435
-
436
-
437
- function md5cmn(q, a, b, x, s, t) {
438
- return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b);
439
- }
440
-
441
- function md5ff(a, b, c, d, x, s, t) {
442
- return md5cmn(b & c | ~b & d, a, b, x, s, t);
443
- }
444
-
445
- function md5gg(a, b, c, d, x, s, t) {
446
- return md5cmn(b & d | c & ~d, a, b, x, s, t);
447
- }
448
-
449
- function md5hh(a, b, c, d, x, s, t) {
450
- return md5cmn(b ^ c ^ d, a, b, x, s, t);
451
- }
452
-
453
- function md5ii(a, b, c, d, x, s, t) {
454
- return md5cmn(c ^ (b | ~d), a, b, x, s, t);
455
- }
456
-
457
- var v3 = v35('v3', 0x30, md5);
458
-
459
59
  function v4(options, buf, offset) {
460
60
  options = options || {};
461
61
  var rnds = options.random || (options.rng || rng)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
@@ -476,115 +76,6 @@ function v4(options, buf, offset) {
476
76
  return stringify$1(rnds);
477
77
  }
478
78
 
479
- // Adapted from Chris Veness' SHA1 code at
480
- // http://www.movable-type.co.uk/scripts/sha1.html
481
- function f(s, x, y, z) {
482
- switch (s) {
483
- case 0:
484
- return x & y ^ ~x & z;
485
-
486
- case 1:
487
- return x ^ y ^ z;
488
-
489
- case 2:
490
- return x & y ^ x & z ^ y & z;
491
-
492
- case 3:
493
- return x ^ y ^ z;
494
- }
495
- }
496
-
497
- function ROTL(x, n) {
498
- return x << n | x >>> 32 - n;
499
- }
500
-
501
- function sha1(bytes) {
502
- var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6];
503
- var H = [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0];
504
-
505
- if (typeof bytes === 'string') {
506
- var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape
507
-
508
- bytes = [];
509
-
510
- for (var i = 0; i < msg.length; ++i) {
511
- bytes.push(msg.charCodeAt(i));
512
- }
513
- } else if (!Array.isArray(bytes)) {
514
- // Convert Array-like to Array
515
- bytes = Array.prototype.slice.call(bytes);
516
- }
517
-
518
- bytes.push(0x80);
519
- var l = bytes.length / 4 + 2;
520
- var N = Math.ceil(l / 16);
521
- var M = new Array(N);
522
-
523
- for (var _i = 0; _i < N; ++_i) {
524
- var arr = new Uint32Array(16);
525
-
526
- for (var j = 0; j < 16; ++j) {
527
- arr[j] = bytes[_i * 64 + j * 4] << 24 | bytes[_i * 64 + j * 4 + 1] << 16 | bytes[_i * 64 + j * 4 + 2] << 8 | bytes[_i * 64 + j * 4 + 3];
528
- }
529
-
530
- M[_i] = arr;
531
- }
532
-
533
- M[N - 1][14] = (bytes.length - 1) * 8 / Math.pow(2, 32);
534
- M[N - 1][14] = Math.floor(M[N - 1][14]);
535
- M[N - 1][15] = (bytes.length - 1) * 8 & 0xffffffff;
536
-
537
- for (var _i2 = 0; _i2 < N; ++_i2) {
538
- var W = new Uint32Array(80);
539
-
540
- for (var t = 0; t < 16; ++t) {
541
- W[t] = M[_i2][t];
542
- }
543
-
544
- for (var _t = 16; _t < 80; ++_t) {
545
- W[_t] = ROTL(W[_t - 3] ^ W[_t - 8] ^ W[_t - 14] ^ W[_t - 16], 1);
546
- }
547
-
548
- var a = H[0];
549
- var b = H[1];
550
- var c = H[2];
551
- var d = H[3];
552
- var e = H[4];
553
-
554
- for (var _t2 = 0; _t2 < 80; ++_t2) {
555
- var s = Math.floor(_t2 / 20);
556
- var T = ROTL(a, 5) + f(s, b, c, d) + e + K[s] + W[_t2] >>> 0;
557
- e = d;
558
- d = c;
559
- c = ROTL(b, 30) >>> 0;
560
- b = a;
561
- a = T;
562
- }
563
-
564
- H[0] = H[0] + a >>> 0;
565
- H[1] = H[1] + b >>> 0;
566
- H[2] = H[2] + c >>> 0;
567
- H[3] = H[3] + d >>> 0;
568
- H[4] = H[4] + e >>> 0;
569
- }
570
-
571
- return [H[0] >> 24 & 0xff, H[0] >> 16 & 0xff, H[0] >> 8 & 0xff, H[0] & 0xff, H[1] >> 24 & 0xff, H[1] >> 16 & 0xff, H[1] >> 8 & 0xff, H[1] & 0xff, H[2] >> 24 & 0xff, H[2] >> 16 & 0xff, H[2] >> 8 & 0xff, H[2] & 0xff, H[3] >> 24 & 0xff, H[3] >> 16 & 0xff, H[3] >> 8 & 0xff, H[3] & 0xff, H[4] >> 24 & 0xff, H[4] >> 16 & 0xff, H[4] >> 8 & 0xff, H[4] & 0xff];
572
- }
573
-
574
- var v5 = v35('v5', 0x50, sha1);
575
-
576
- const nil = '00000000-0000-0000-0000-000000000000';
577
-
578
- function version(uuid) {
579
- if (!validate(uuid)) {
580
- throw TypeError('Invalid UUID');
581
- }
582
-
583
- return parseInt(uuid.substr(14, 1), 16);
584
- }
585
-
586
- 'use strict';
587
-
588
79
  /**
589
80
  * Check if we're required to add a port number.
590
81
  *
@@ -622,8 +113,6 @@ var requiresPort = function required(port, protocol) {
622
113
  return port !== 0;
623
114
  };
624
115
 
625
- 'use strict';
626
-
627
116
  var has = Object.prototype.hasOwnProperty
628
117
  , undef;
629
118
 
@@ -746,8 +235,6 @@ var querystringify_1 = {
746
235
  parse: parse
747
236
  };
748
237
 
749
- 'use strict';
750
-
751
238
  var controlOrWhitespace = /^[\x00-\x20\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]+/
752
239
  , CRHTLF = /[\n\r\t]/g
753
240
  , slashes = /^[A-Za-z][A-Za-z0-9+-.]*:\/\//
@@ -818,7 +305,7 @@ function lolcation(loc) {
818
305
  var globalVar;
819
306
 
820
307
  if (typeof window !== 'undefined') globalVar = window;
821
- else if (typeof commonjsGlobal !== 'undefined') globalVar = commonjsGlobal;
308
+ else if (typeof imageSearch_store.commonjsGlobal !== 'undefined') globalVar = imageSearch_store.commonjsGlobal;
822
309
  else if (typeof self !== 'undefined') globalVar = self;
823
310
  else globalVar = {};
824
311
 
@@ -1334,8 +821,7 @@ Url.qs = querystringify_1;
1334
821
 
1335
822
  var urlParse = Url;
1336
823
 
1337
- var rxjsStub = createCommonjsModule(function (module, exports) {
1338
- "use strict";
824
+ var rxjsStub = imageSearch_store.createCommonjsModule(function (module, exports) {
1339
825
  Object.defineProperty(exports, "__esModule", { value: true });
1340
826
  exports.map = exports.mergeMap = exports.of = exports.from = exports.Observable = void 0;
1341
827
  var Observable = (function () {
@@ -1370,8 +856,6 @@ exports.map = map;
1370
856
  //# sourceMappingURL=rxjsStub.js.map
1371
857
  });
1372
858
 
1373
- const rxjsStub$1 = /*@__PURE__*/getDefaultExportFromCjs(rxjsStub);
1374
-
1375
859
  var global =
1376
860
  (typeof globalThis !== 'undefined' && globalThis) ||
1377
861
  (typeof self !== 'undefined' && self) ||
@@ -1871,7 +1355,7 @@ try {
1871
1355
  DOMException.prototype.constructor = DOMException;
1872
1356
  }
1873
1357
 
1874
- function fetch$2(input, init) {
1358
+ function fetch$1(input, init) {
1875
1359
  return new Promise(function(resolve, reject) {
1876
1360
  var request = new Request(input, init);
1877
1361
 
@@ -1969,28 +1453,16 @@ function fetch$2(input, init) {
1969
1453
  })
1970
1454
  }
1971
1455
 
1972
- fetch$2.polyfill = true;
1456
+ fetch$1.polyfill = true;
1973
1457
 
1974
1458
  if (!global.fetch) {
1975
- global.fetch = fetch$2;
1459
+ global.fetch = fetch$1;
1976
1460
  global.Headers = Headers;
1977
1461
  global.Request = Request;
1978
1462
  global.Response = Response;
1979
1463
  }
1980
1464
 
1981
- const fetch$3 = /*#__PURE__*/Object.freeze({
1982
- __proto__: null,
1983
- Headers: Headers,
1984
- Request: Request,
1985
- Response: Response,
1986
- get DOMException () { return DOMException; },
1987
- fetch: fetch$2
1988
- });
1989
-
1990
- const fetch$1 = /*@__PURE__*/getAugmentedNamespace(fetch$3);
1991
-
1992
- var isomorphicFetch = createCommonjsModule(function (module, exports) {
1993
- "use strict";
1465
+ var isomorphicFetch = imageSearch_store.createCommonjsModule(function (module, exports) {
1994
1466
  Object.defineProperty(exports, "__esModule", { value: true });
1995
1467
  exports.IsomorphicFetchHttpLibrary = void 0;
1996
1468
 
@@ -2026,11 +1498,8 @@ exports.IsomorphicFetchHttpLibrary = IsomorphicFetchHttpLibrary;
2026
1498
  //# sourceMappingURL=isomorphic-fetch.js.map
2027
1499
  });
2028
1500
 
2029
- const isomorphicFetch$1 = /*@__PURE__*/getDefaultExportFromCjs(isomorphicFetch);
2030
-
2031
- var http = createCommonjsModule(function (module, exports) {
2032
- "use strict";
2033
- var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
1501
+ var http = imageSearch_store.createCommonjsModule(function (module, exports) {
1502
+ var __extends = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__extends) || (function () {
2034
1503
  var extendStatics = function (d, b) {
2035
1504
  extendStatics = Object.setPrototypeOf ||
2036
1505
  ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
@@ -2045,7 +1514,7 @@ var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2045
1514
  d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2046
1515
  };
2047
1516
  })();
2048
- var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) {
1517
+ var __createBinding = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) {
2049
1518
  if (k2 === undefined) k2 = k;
2050
1519
  var desc = Object.getOwnPropertyDescriptor(m, k);
2051
1520
  if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
@@ -2056,10 +1525,10 @@ var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Obj
2056
1525
  if (k2 === undefined) k2 = k;
2057
1526
  o[k2] = m[k];
2058
1527
  }));
2059
- var __exportStar = (commonjsGlobal && commonjsGlobal.__exportStar) || function(m, exports) {
1528
+ var __exportStar = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__exportStar) || function(m, exports) {
2060
1529
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
2061
1530
  };
2062
- var __awaiter = (commonjsGlobal && commonjsGlobal.__awaiter) || function (thisArg, _arguments, P, generator) {
1531
+ var __awaiter = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__awaiter) || function (thisArg, _arguments, P, generator) {
2063
1532
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
2064
1533
  return new (P || (P = Promise))(function (resolve, reject) {
2065
1534
  function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
@@ -2068,7 +1537,7 @@ var __awaiter = (commonjsGlobal && commonjsGlobal.__awaiter) || function (thisAr
2068
1537
  step((generator = generator.apply(thisArg, _arguments || [])).next());
2069
1538
  });
2070
1539
  };
2071
- var __generator = (commonjsGlobal && commonjsGlobal.__generator) || function (thisArg, body) {
1540
+ var __generator = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__generator) || function (thisArg, body) {
2072
1541
  var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
2073
1542
  return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
2074
1543
  function verb(n) { return function (v) { return step([n, v]); }; }
@@ -2100,7 +1569,6 @@ exports.wrapHttpLibrary = exports.ResponseContext = exports.SelfDecodingBody = e
2100
1569
 
2101
1570
 
2102
1571
  __exportStar(isomorphicFetch, exports);
2103
- var HttpMethod;
2104
1572
  (function (HttpMethod) {
2105
1573
  HttpMethod["GET"] = "GET";
2106
1574
  HttpMethod["HEAD"] = "HEAD";
@@ -2111,7 +1579,7 @@ var HttpMethod;
2111
1579
  HttpMethod["OPTIONS"] = "OPTIONS";
2112
1580
  HttpMethod["TRACE"] = "TRACE";
2113
1581
  HttpMethod["PATCH"] = "PATCH";
2114
- })(HttpMethod = exports.HttpMethod || (exports.HttpMethod = {}));
1582
+ })(exports.HttpMethod || (exports.HttpMethod = {}));
2115
1583
  var HttpException = (function (_super) {
2116
1584
  __extends(HttpException, _super);
2117
1585
  function HttpException(msg) {
@@ -2271,11 +1739,8 @@ exports.wrapHttpLibrary = wrapHttpLibrary;
2271
1739
  //# sourceMappingURL=http.js.map
2272
1740
  });
2273
1741
 
2274
- const http$1 = /*@__PURE__*/getDefaultExportFromCjs(http);
2275
-
2276
- var auth = createCommonjsModule(function (module, exports) {
2277
- "use strict";
2278
- var __awaiter = (commonjsGlobal && commonjsGlobal.__awaiter) || function (thisArg, _arguments, P, generator) {
1742
+ var auth = imageSearch_store.createCommonjsModule(function (module, exports) {
1743
+ var __awaiter = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__awaiter) || function (thisArg, _arguments, P, generator) {
2279
1744
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
2280
1745
  return new (P || (P = Promise))(function (resolve, reject) {
2281
1746
  function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
@@ -2284,7 +1749,7 @@ var __awaiter = (commonjsGlobal && commonjsGlobal.__awaiter) || function (thisAr
2284
1749
  step((generator = generator.apply(thisArg, _arguments || [])).next());
2285
1750
  });
2286
1751
  };
2287
- var __generator = (commonjsGlobal && commonjsGlobal.__generator) || function (thisArg, body) {
1752
+ var __generator = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__generator) || function (thisArg, body) {
2288
1753
  var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
2289
1754
  return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
2290
1755
  function verb(n) { return function (v) { return step([n, v]); }; }
@@ -2355,10 +1820,7 @@ exports.configureAuthMethods = configureAuthMethods;
2355
1820
  //# sourceMappingURL=auth.js.map
2356
1821
  });
2357
1822
 
2358
- const auth$1 = /*@__PURE__*/getDefaultExportFromCjs(auth);
2359
-
2360
- var ErrorObject_1 = createCommonjsModule(function (module, exports) {
2361
- "use strict";
1823
+ var ErrorObject_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2362
1824
  Object.defineProperty(exports, "__esModule", { value: true });
2363
1825
  exports.ErrorObject = void 0;
2364
1826
  var ErrorObject = (function () {
@@ -2418,10 +1880,7 @@ exports.ErrorObject = ErrorObject;
2418
1880
  //# sourceMappingURL=ErrorObject.js.map
2419
1881
  });
2420
1882
 
2421
- const ErrorObject = /*@__PURE__*/getDefaultExportFromCjs(ErrorObject_1);
2422
-
2423
- var ErrorResponse_1 = createCommonjsModule(function (module, exports) {
2424
- "use strict";
1883
+ var ErrorResponse_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2425
1884
  Object.defineProperty(exports, "__esModule", { value: true });
2426
1885
  exports.ErrorResponse = void 0;
2427
1886
  var ErrorResponse = (function () {
@@ -2457,10 +1916,7 @@ exports.ErrorResponse = ErrorResponse;
2457
1916
  //# sourceMappingURL=ErrorResponse.js.map
2458
1917
  });
2459
1918
 
2460
- const ErrorResponse = /*@__PURE__*/getDefaultExportFromCjs(ErrorResponse_1);
2461
-
2462
- var Event_1 = createCommonjsModule(function (module, exports) {
2463
- "use strict";
1919
+ var Event_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2464
1920
  Object.defineProperty(exports, "__esModule", { value: true });
2465
1921
  exports.Event = void 0;
2466
1922
  var Event = (function () {
@@ -2491,10 +1947,7 @@ exports.Event = Event;
2491
1947
  //# sourceMappingURL=Event.js.map
2492
1948
  });
2493
1949
 
2494
- const Event = /*@__PURE__*/getDefaultExportFromCjs(Event_1);
2495
-
2496
- var EventConfirmation_1 = createCommonjsModule(function (module, exports) {
2497
- "use strict";
1950
+ var EventConfirmation_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2498
1951
  Object.defineProperty(exports, "__esModule", { value: true });
2499
1952
  exports.EventConfirmation = void 0;
2500
1953
  var EventConfirmation = (function () {
@@ -2518,19 +1971,13 @@ exports.EventConfirmation = EventConfirmation;
2518
1971
  //# sourceMappingURL=EventConfirmation.js.map
2519
1972
  });
2520
1973
 
2521
- const EventConfirmation = /*@__PURE__*/getDefaultExportFromCjs(EventConfirmation_1);
2522
-
2523
- var FilterAction = createCommonjsModule(function (module, exports) {
2524
- "use strict";
1974
+ var FilterAction = imageSearch_store.createCommonjsModule(function (module, exports) {
2525
1975
  Object.defineProperty(exports, "__esModule", { value: true });
2526
1976
  //# sourceMappingURL=FilterAction.js.map
2527
1977
  });
2528
1978
 
2529
- const FilterAction$1 = /*@__PURE__*/getDefaultExportFromCjs(FilterAction);
2530
-
2531
- var FilterEvent_1 = createCommonjsModule(function (module, exports) {
2532
- "use strict";
2533
- var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
1979
+ var FilterEvent_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
1980
+ var __extends = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__extends) || (function () {
2534
1981
  var extendStatics = function (d, b) {
2535
1982
  extendStatics = Object.setPrototypeOf ||
2536
1983
  ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
@@ -2585,10 +2032,7 @@ exports.FilterEvent = FilterEvent;
2585
2032
  //# sourceMappingURL=FilterEvent.js.map
2586
2033
  });
2587
2034
 
2588
- const FilterEvent = /*@__PURE__*/getDefaultExportFromCjs(FilterEvent_1);
2589
-
2590
- var FilterEventAllOf_1 = createCommonjsModule(function (module, exports) {
2591
- "use strict";
2035
+ var FilterEventAllOf_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2592
2036
  Object.defineProperty(exports, "__esModule", { value: true });
2593
2037
  exports.FilterEventAllOf = void 0;
2594
2038
  var FilterEventAllOf = (function () {
@@ -2624,19 +2068,13 @@ exports.FilterEventAllOf = FilterEventAllOf;
2624
2068
  //# sourceMappingURL=FilterEventAllOf.js.map
2625
2069
  });
2626
2070
 
2627
- const FilterEventAllOf = /*@__PURE__*/getDefaultExportFromCjs(FilterEventAllOf_1);
2628
-
2629
- var FilterKind = createCommonjsModule(function (module, exports) {
2630
- "use strict";
2071
+ var FilterKind = imageSearch_store.createCommonjsModule(function (module, exports) {
2631
2072
  Object.defineProperty(exports, "__esModule", { value: true });
2632
2073
  //# sourceMappingURL=FilterKind.js.map
2633
2074
  });
2634
2075
 
2635
- const FilterKind$1 = /*@__PURE__*/getDefaultExportFromCjs(FilterKind);
2636
-
2637
- var ProductClickEvent_1 = createCommonjsModule(function (module, exports) {
2638
- "use strict";
2639
- var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2076
+ var ProductClickEvent_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2077
+ var __extends = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__extends) || (function () {
2640
2078
  var extendStatics = function (d, b) {
2641
2079
  extendStatics = Object.setPrototypeOf ||
2642
2080
  ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
@@ -2691,11 +2129,8 @@ exports.ProductClickEvent = ProductClickEvent;
2691
2129
  //# sourceMappingURL=ProductClickEvent.js.map
2692
2130
  });
2693
2131
 
2694
- const ProductClickEvent = /*@__PURE__*/getDefaultExportFromCjs(ProductClickEvent_1);
2695
-
2696
- var ProductViewEvent_1 = createCommonjsModule(function (module, exports) {
2697
- "use strict";
2698
- var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2132
+ var ProductViewEvent_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2133
+ var __extends = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__extends) || (function () {
2699
2134
  var extendStatics = function (d, b) {
2700
2135
  extendStatics = Object.setPrototypeOf ||
2701
2136
  ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
@@ -2750,10 +2185,7 @@ exports.ProductViewEvent = ProductViewEvent;
2750
2185
  //# sourceMappingURL=ProductViewEvent.js.map
2751
2186
  });
2752
2187
 
2753
- const ProductViewEvent = /*@__PURE__*/getDefaultExportFromCjs(ProductViewEvent_1);
2754
-
2755
- var ProductViewEventAllOf_1 = createCommonjsModule(function (module, exports) {
2756
- "use strict";
2188
+ var ProductViewEventAllOf_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2757
2189
  Object.defineProperty(exports, "__esModule", { value: true });
2758
2190
  exports.ProductViewEventAllOf = void 0;
2759
2191
  var ProductViewEventAllOf = (function () {
@@ -2789,19 +2221,13 @@ exports.ProductViewEventAllOf = ProductViewEventAllOf;
2789
2221
  //# sourceMappingURL=ProductViewEventAllOf.js.map
2790
2222
  });
2791
2223
 
2792
- const ProductViewEventAllOf = /*@__PURE__*/getDefaultExportFromCjs(ProductViewEventAllOf_1);
2793
-
2794
- var SearchArea = createCommonjsModule(function (module, exports) {
2795
- "use strict";
2224
+ var SearchArea = imageSearch_store.createCommonjsModule(function (module, exports) {
2796
2225
  Object.defineProperty(exports, "__esModule", { value: true });
2797
2226
  //# sourceMappingURL=SearchArea.js.map
2798
2227
  });
2799
2228
 
2800
- const SearchArea$1 = /*@__PURE__*/getDefaultExportFromCjs(SearchArea);
2801
-
2802
- var SearchEvent_1 = createCommonjsModule(function (module, exports) {
2803
- "use strict";
2804
- var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2229
+ var SearchEvent_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2230
+ var __extends = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__extends) || (function () {
2805
2231
  var extendStatics = function (d, b) {
2806
2232
  extendStatics = Object.setPrototypeOf ||
2807
2233
  ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
@@ -2856,10 +2282,7 @@ exports.SearchEvent = SearchEvent;
2856
2282
  //# sourceMappingURL=SearchEvent.js.map
2857
2283
  });
2858
2284
 
2859
- const SearchEvent = /*@__PURE__*/getDefaultExportFromCjs(SearchEvent_1);
2860
-
2861
- var SearchEventAllOf_1 = createCommonjsModule(function (module, exports) {
2862
- "use strict";
2285
+ var SearchEventAllOf_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2863
2286
  Object.defineProperty(exports, "__esModule", { value: true });
2864
2287
  exports.SearchEventAllOf = void 0;
2865
2288
  var SearchEventAllOf = (function () {
@@ -2895,35 +2318,23 @@ exports.SearchEventAllOf = SearchEventAllOf;
2895
2318
  //# sourceMappingURL=SearchEventAllOf.js.map
2896
2319
  });
2897
2320
 
2898
- const SearchEventAllOf = /*@__PURE__*/getDefaultExportFromCjs(SearchEventAllOf_1);
2899
-
2900
- var SearchImageSource = createCommonjsModule(function (module, exports) {
2901
- "use strict";
2321
+ var SearchImageSource = imageSearch_store.createCommonjsModule(function (module, exports) {
2902
2322
  Object.defineProperty(exports, "__esModule", { value: true });
2903
2323
  //# sourceMappingURL=SearchImageSource.js.map
2904
2324
  });
2905
2325
 
2906
- const SearchImageSource$1 = /*@__PURE__*/getDefaultExportFromCjs(SearchImageSource);
2907
-
2908
- var Widget = createCommonjsModule(function (module, exports) {
2909
- "use strict";
2326
+ var Widget = imageSearch_store.createCommonjsModule(function (module, exports) {
2910
2327
  Object.defineProperty(exports, "__esModule", { value: true });
2911
2328
  //# sourceMappingURL=Widget.js.map
2912
2329
  });
2913
2330
 
2914
- const Widget$1 = /*@__PURE__*/getDefaultExportFromCjs(Widget);
2915
-
2916
- var WidgetAction = createCommonjsModule(function (module, exports) {
2917
- "use strict";
2331
+ var WidgetAction = imageSearch_store.createCommonjsModule(function (module, exports) {
2918
2332
  Object.defineProperty(exports, "__esModule", { value: true });
2919
2333
  //# sourceMappingURL=WidgetAction.js.map
2920
2334
  });
2921
2335
 
2922
- const WidgetAction$1 = /*@__PURE__*/getDefaultExportFromCjs(WidgetAction);
2923
-
2924
- var WidgetEvent_1 = createCommonjsModule(function (module, exports) {
2925
- "use strict";
2926
- var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2336
+ var WidgetEvent_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2337
+ var __extends = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__extends) || (function () {
2927
2338
  var extendStatics = function (d, b) {
2928
2339
  extendStatics = Object.setPrototypeOf ||
2929
2340
  ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
@@ -2972,10 +2383,7 @@ exports.WidgetEvent = WidgetEvent;
2972
2383
  //# sourceMappingURL=WidgetEvent.js.map
2973
2384
  });
2974
2385
 
2975
- const WidgetEvent = /*@__PURE__*/getDefaultExportFromCjs(WidgetEvent_1);
2976
-
2977
- var WidgetEventAllOf_1 = createCommonjsModule(function (module, exports) {
2978
- "use strict";
2386
+ var WidgetEventAllOf_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2979
2387
  Object.defineProperty(exports, "__esModule", { value: true });
2980
2388
  exports.WidgetEventAllOf = void 0;
2981
2389
  var WidgetEventAllOf = (function () {
@@ -3005,11 +2413,8 @@ exports.WidgetEventAllOf = WidgetEventAllOf;
3005
2413
  //# sourceMappingURL=WidgetEventAllOf.js.map
3006
2414
  });
3007
2415
 
3008
- const WidgetEventAllOf = /*@__PURE__*/getDefaultExportFromCjs(WidgetEventAllOf_1);
3009
-
3010
- var all = createCommonjsModule(function (module, exports) {
3011
- "use strict";
3012
- var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) {
2416
+ var all = imageSearch_store.createCommonjsModule(function (module, exports) {
2417
+ var __createBinding = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3013
2418
  if (k2 === undefined) k2 = k;
3014
2419
  var desc = Object.getOwnPropertyDescriptor(m, k);
3015
2420
  if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
@@ -3020,7 +2425,7 @@ var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Obj
3020
2425
  if (k2 === undefined) k2 = k;
3021
2426
  o[k2] = m[k];
3022
2427
  }));
3023
- var __exportStar = (commonjsGlobal && commonjsGlobal.__exportStar) || function(m, exports) {
2428
+ var __exportStar = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__exportStar) || function(m, exports) {
3024
2429
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
3025
2430
  };
3026
2431
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -3046,10 +2451,7 @@ __exportStar(WidgetEventAllOf_1, exports);
3046
2451
  //# sourceMappingURL=all.js.map
3047
2452
  });
3048
2453
 
3049
- const all$1 = /*@__PURE__*/getDefaultExportFromCjs(all);
3050
-
3051
- var middleware = createCommonjsModule(function (module, exports) {
3052
- "use strict";
2454
+ var middleware = imageSearch_store.createCommonjsModule(function (module, exports) {
3053
2455
  Object.defineProperty(exports, "__esModule", { value: true });
3054
2456
  exports.PromiseMiddlewareWrapper = void 0;
3055
2457
 
@@ -3069,10 +2471,7 @@ exports.PromiseMiddlewareWrapper = PromiseMiddlewareWrapper;
3069
2471
  //# sourceMappingURL=middleware.js.map
3070
2472
  });
3071
2473
 
3072
- const middleware$1 = /*@__PURE__*/getDefaultExportFromCjs(middleware);
3073
-
3074
- var servers = createCommonjsModule(function (module, exports) {
3075
- "use strict";
2474
+ var servers = imageSearch_store.createCommonjsModule(function (module, exports) {
3076
2475
  Object.defineProperty(exports, "__esModule", { value: true });
3077
2476
  exports.servers = exports.server2 = exports.server1 = exports.ServerConfiguration = void 0;
3078
2477
 
@@ -3107,10 +2506,7 @@ exports.servers = [exports.server1, exports.server2];
3107
2506
  //# sourceMappingURL=servers.js.map
3108
2507
  });
3109
2508
 
3110
- const servers$1 = /*@__PURE__*/getDefaultExportFromCjs(servers);
3111
-
3112
- var configuration = createCommonjsModule(function (module, exports) {
3113
- "use strict";
2509
+ var configuration = imageSearch_store.createCommonjsModule(function (module, exports) {
3114
2510
  Object.defineProperty(exports, "__esModule", { value: true });
3115
2511
  exports.createConfiguration = void 0;
3116
2512
 
@@ -3134,11 +2530,8 @@ exports.createConfiguration = createConfiguration;
3134
2530
  //# sourceMappingURL=configuration.js.map
3135
2531
  });
3136
2532
 
3137
- const configuration$1 = /*@__PURE__*/getDefaultExportFromCjs(configuration);
3138
-
3139
- var exception = createCommonjsModule(function (module, exports) {
3140
- "use strict";
3141
- var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2533
+ var exception = imageSearch_store.createCommonjsModule(function (module, exports) {
2534
+ var __extends = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__extends) || (function () {
3142
2535
  var extendStatics = function (d, b) {
3143
2536
  extendStatics = Object.setPrototypeOf ||
3144
2537
  ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
@@ -3171,11 +2564,8 @@ exports.ApiException = ApiException;
3171
2564
  //# sourceMappingURL=exception.js.map
3172
2565
  });
3173
2566
 
3174
- const exception$1 = /*@__PURE__*/getDefaultExportFromCjs(exception);
3175
-
3176
- var baseapi = createCommonjsModule(function (module, exports) {
3177
- "use strict";
3178
- var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2567
+ var baseapi = imageSearch_store.createCommonjsModule(function (module, exports) {
2568
+ var __extends = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__extends) || (function () {
3179
2569
  var extendStatics = function (d, b) {
3180
2570
  extendStatics = Object.setPrototypeOf ||
3181
2571
  ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
@@ -3205,7 +2595,6 @@ var BaseAPIRequestFactory = (function () {
3205
2595
  return BaseAPIRequestFactory;
3206
2596
  }());
3207
2597
  exports.BaseAPIRequestFactory = BaseAPIRequestFactory;
3208
- ;
3209
2598
  var RequiredError = (function (_super) {
3210
2599
  __extends(RequiredError, _super);
3211
2600
  function RequiredError(api, method, field) {
@@ -3222,11 +2611,8 @@ exports.RequiredError = RequiredError;
3222
2611
  //# sourceMappingURL=baseapi.js.map
3223
2612
  });
3224
2613
 
3225
- const baseapi$1 = /*@__PURE__*/getDefaultExportFromCjs(baseapi);
3226
-
3227
- var ObjectSerializer_1 = createCommonjsModule(function (module, exports) {
3228
- "use strict";
3229
- var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) {
2614
+ var ObjectSerializer_1 = imageSearch_store.createCommonjsModule(function (module, exports) {
2615
+ var __createBinding = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3230
2616
  if (k2 === undefined) k2 = k;
3231
2617
  var desc = Object.getOwnPropertyDescriptor(m, k);
3232
2618
  if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
@@ -3237,7 +2623,7 @@ var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Obj
3237
2623
  if (k2 === undefined) k2 = k;
3238
2624
  o[k2] = m[k];
3239
2625
  }));
3240
- var __exportStar = (commonjsGlobal && commonjsGlobal.__exportStar) || function(m, exports) {
2626
+ var __exportStar = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__exportStar) || function(m, exports) {
3241
2627
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
3242
2628
  };
3243
2629
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -3482,10 +2868,7 @@ exports.ObjectSerializer = ObjectSerializer;
3482
2868
  //# sourceMappingURL=ObjectSerializer.js.map
3483
2869
  });
3484
2870
 
3485
- const ObjectSerializer = /*@__PURE__*/getDefaultExportFromCjs(ObjectSerializer_1);
3486
-
3487
- var util = createCommonjsModule(function (module, exports) {
3488
- "use strict";
2871
+ var util = imageSearch_store.createCommonjsModule(function (module, exports) {
3489
2872
  Object.defineProperty(exports, "__esModule", { value: true });
3490
2873
  exports.canConsumeForm = exports.isCodeInRange = void 0;
3491
2874
  function isCodeInRange(codeRange, code) {
@@ -3516,11 +2899,8 @@ exports.canConsumeForm = canConsumeForm;
3516
2899
  //# sourceMappingURL=util.js.map
3517
2900
  });
3518
2901
 
3519
- const util$1 = /*@__PURE__*/getDefaultExportFromCjs(util);
3520
-
3521
- var DefaultApi = createCommonjsModule(function (module, exports) {
3522
- "use strict";
3523
- var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2902
+ var DefaultApi = imageSearch_store.createCommonjsModule(function (module, exports) {
2903
+ var __extends = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__extends) || (function () {
3524
2904
  var extendStatics = function (d, b) {
3525
2905
  extendStatics = Object.setPrototypeOf ||
3526
2906
  ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
@@ -3535,7 +2915,7 @@ var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
3535
2915
  d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
3536
2916
  };
3537
2917
  })();
3538
- var __awaiter = (commonjsGlobal && commonjsGlobal.__awaiter) || function (thisArg, _arguments, P, generator) {
2918
+ var __awaiter = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__awaiter) || function (thisArg, _arguments, P, generator) {
3539
2919
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3540
2920
  return new (P || (P = Promise))(function (resolve, reject) {
3541
2921
  function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
@@ -3544,7 +2924,7 @@ var __awaiter = (commonjsGlobal && commonjsGlobal.__awaiter) || function (thisAr
3544
2924
  step((generator = generator.apply(thisArg, _arguments || [])).next());
3545
2925
  });
3546
2926
  };
3547
- var __generator = (commonjsGlobal && commonjsGlobal.__generator) || function (thisArg, body) {
2927
+ var __generator = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__generator) || function (thisArg, body) {
3548
2928
  var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
3549
2929
  return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
3550
2930
  function verb(n) { return function (v) { return step([n, v]); }; }
@@ -3672,10 +3052,7 @@ exports.DefaultApiResponseProcessor = DefaultApiResponseProcessor;
3672
3052
  //# sourceMappingURL=DefaultApi.js.map
3673
3053
  });
3674
3054
 
3675
- const DefaultApi$1 = /*@__PURE__*/getDefaultExportFromCjs(DefaultApi);
3676
-
3677
- var ObservableAPI = createCommonjsModule(function (module, exports) {
3678
- "use strict";
3055
+ var ObservableAPI = imageSearch_store.createCommonjsModule(function (module, exports) {
3679
3056
  Object.defineProperty(exports, "__esModule", { value: true });
3680
3057
  exports.ObservableDefaultApi = void 0;
3681
3058
 
@@ -3717,10 +3094,7 @@ exports.ObservableDefaultApi = ObservableDefaultApi;
3717
3094
  //# sourceMappingURL=ObservableAPI.js.map
3718
3095
  });
3719
3096
 
3720
- const ObservableAPI$1 = /*@__PURE__*/getDefaultExportFromCjs(ObservableAPI);
3721
-
3722
- var PromiseAPI = createCommonjsModule(function (module, exports) {
3723
- "use strict";
3097
+ var PromiseAPI = imageSearch_store.createCommonjsModule(function (module, exports) {
3724
3098
  Object.defineProperty(exports, "__esModule", { value: true });
3725
3099
  exports.PromiseDefaultApi = void 0;
3726
3100
 
@@ -3738,11 +3112,8 @@ exports.PromiseDefaultApi = PromiseDefaultApi;
3738
3112
  //# sourceMappingURL=PromiseAPI.js.map
3739
3113
  });
3740
3114
 
3741
- const PromiseAPI$1 = /*@__PURE__*/getDefaultExportFromCjs(PromiseAPI);
3742
-
3743
- var dist = createCommonjsModule(function (module, exports) {
3744
- "use strict";
3745
- var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3115
+ var dist = imageSearch_store.createCommonjsModule(function (module, exports) {
3116
+ var __createBinding = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3746
3117
  if (k2 === undefined) k2 = k;
3747
3118
  var desc = Object.getOwnPropertyDescriptor(m, k);
3748
3119
  if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
@@ -3753,7 +3124,7 @@ var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Obj
3753
3124
  if (k2 === undefined) k2 = k;
3754
3125
  o[k2] = m[k];
3755
3126
  }));
3756
- var __exportStar = (commonjsGlobal && commonjsGlobal.__exportStar) || function(m, exports) {
3127
+ var __exportStar = (imageSearch_store.commonjsGlobal && imageSearch_store.commonjsGlobal.__exportStar) || function(m, exports) {
3757
3128
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
3758
3129
  };
3759
3130
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -3770,8 +3141,6 @@ Object.defineProperty(exports, "DefaultApi", { enumerable: true, get: function (
3770
3141
  //# sourceMappingURL=index.js.map
3771
3142
  });
3772
3143
 
3773
- const index = /*@__PURE__*/getDefaultExportFromCjs(dist);
3774
-
3775
3144
  const STAGE_SERVER_IDENTIFIER = "stage";
3776
3145
  const getTrackingServerByApiPath = (apiPath) => isProductionPath(apiPath) ? dist.servers[0] : dist.servers[1];
3777
3146
  const isProductionPath = (apiPath) => !apiPath.includes(STAGE_SERVER_IDENTIFIER);
@@ -3854,4 +3223,13 @@ const createWidgetVpsEvent = createTrackingEvent(vpsWidget);
3854
3223
  const createSearchEvent = createTrackingEvent(searchEvent);
3855
3224
  const createFilterEvent = createTrackingEvent(filterEvent);
3856
3225
 
3857
- export { createProductClickVpsEvent as a, createSearchEvent as b, createProductViewVpsEvent as c, createFilterEvent as d, createTrackingApi as e, createWidgetVpsEvent as f, createProductViewVprEvent as g, createProductClickVprEvent as h, createWidgetVprEvent as i, v4 as v };
3226
+ exports.createFilterEvent = createFilterEvent;
3227
+ exports.createProductClickVprEvent = createProductClickVprEvent;
3228
+ exports.createProductClickVpsEvent = createProductClickVpsEvent;
3229
+ exports.createProductViewVprEvent = createProductViewVprEvent;
3230
+ exports.createProductViewVpsEvent = createProductViewVpsEvent;
3231
+ exports.createSearchEvent = createSearchEvent;
3232
+ exports.createTrackingApi = createTrackingApi;
3233
+ exports.createWidgetVprEvent = createWidgetVprEvent;
3234
+ exports.createWidgetVpsEvent = createWidgetVpsEvent;
3235
+ exports.v4 = v4;