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
@@ -0,0 +1,120 @@
1
+ :host {
2
+ display: grid;
3
+ grid-gap: 1rem;
4
+ }
5
+
6
+ .filters {
7
+ display: flex;
8
+ flex-direction: row;
9
+ flex-wrap: wrap;
10
+ gap: 0.5rem;
11
+ }
12
+
13
+ .filter {
14
+ align-items: center;
15
+ -webkit-animation-duration: 0.25s;
16
+ animation-duration: 0.25s;
17
+ -webkit-animation-fill-mode: forwards;
18
+ animation-fill-mode: forwards;
19
+ -webkit-animation-name: scalein;
20
+ animation-name: scalein;
21
+ border: 1px solid lightgray;
22
+ cursor: pointer;
23
+ display: flex;
24
+ flex-direction: row;
25
+ grid-gap: 8px;
26
+ height: -webkit-max-content;
27
+ height: -moz-max-content;
28
+ height: max-content;
29
+ min-width: -webkit-max-content;
30
+ min-width: -moz-max-content;
31
+ min-width: max-content;
32
+ padding: 0.1rem;
33
+ transform: scale(0);
34
+ transition-property: background;
35
+ transition-duration: 0.25s;
36
+ transition-timing-function: ease-in-out;
37
+ -webkit-user-select: none;
38
+ -moz-user-select: none;
39
+ -ms-user-select: none;
40
+ user-select: none;
41
+ padding: 6px 16px;
42
+ }
43
+
44
+ .filter.active {
45
+ border: 1px solid black;
46
+ padding: 6px 8px;
47
+ }
48
+
49
+ .filter:hover {
50
+ border: 1px solid gray;
51
+ }
52
+
53
+ .show-more {
54
+ display: flex;
55
+ }
56
+
57
+ .show-more.hidden {
58
+ display: none;
59
+ }
60
+
61
+ .show-more::after {
62
+ content: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12.2l-6-6L3.2 5 8 9.8 12.8 5 14 6.2l-6 6z' fill='%23525252'/%3E%3C/svg%3E");
63
+ display: block;
64
+ height: 16px;
65
+ margin-top: 1px;
66
+ margin-left: 8px;
67
+ }
68
+
69
+ .show-more.active::after {
70
+ transform: rotateX(180deg);
71
+ }
72
+
73
+ @-webkit-keyframes scalein {
74
+ from {
75
+ opacity: 0;
76
+ transform: scale(0.5);
77
+ }
78
+
79
+ to {
80
+ opacity: 1;
81
+ transform: scale(1);
82
+ }
83
+ }
84
+
85
+ @keyframes scalein {
86
+ from {
87
+ opacity: 0;
88
+ transform: scale(0.5);
89
+ }
90
+
91
+ to {
92
+ opacity: 1;
93
+ transform: scale(1);
94
+ }
95
+ }
96
+
97
+ @media (max-width: 415px) {
98
+ .show-more::after {
99
+ transform: rotate(-90deg);
100
+ }
101
+
102
+ .show-more.active::after {
103
+ transform: rotate(90deg);
104
+ }
105
+ }
106
+
107
+ @media (max-width: 800px) {
108
+ .filters {
109
+ flex-wrap: nowrap;
110
+ overflow-x: scroll;
111
+ -ms-scroll-snap-type: x mandatory;
112
+ scroll-snap-type: x mandatory;
113
+ grid-gap: unset;
114
+ }
115
+
116
+ .filter {
117
+ scroll-snap-align: end;
118
+ margin-right: 0.5rem;
119
+ }
120
+ }
@@ -0,0 +1,125 @@
1
+ import { Component, Host, h, Prop, State, Element, Event } from "@stencil/core";
2
+ import { imageSearchState } from "../../../store/imageSearch.store";
3
+ import { CheckIcon } from "../../vviinn-icons";
4
+ const FILTERS_COUNT = 5;
5
+ const ACTIVE_FILTER_CLASSNAME = ".filter.active";
6
+ const getFilterId = (filter) => filter.href.split("/").reverse()[0];
7
+ export class SearchFilters {
8
+ constructor() {
9
+ this.filter = null;
10
+ this.selectedCategoryId = null;
11
+ this.hideFilters = true;
12
+ }
13
+ handleFilterSelection(filter) {
14
+ return this.isFilterSelected(filter)
15
+ ? this.clearSelectedFilter()
16
+ : this.selectFilter(filter);
17
+ }
18
+ selectFilter(filter) {
19
+ this.selectedCategoryId = getFilterId(filter);
20
+ imageSearchState.activeIonLink = filter;
21
+ this.filterSelected.emit("select");
22
+ }
23
+ clearSelectedFilter() {
24
+ this.selectedCategoryId = null;
25
+ imageSearchState.activeIonLink = undefined;
26
+ this.findSelectedFilter().blur();
27
+ this.filterSelected.emit("deselect");
28
+ }
29
+ findSelectedFilter() {
30
+ return this.el.shadowRoot.querySelector(ACTIVE_FILTER_CLASSNAME);
31
+ }
32
+ toggleFilters() {
33
+ this.hideFilters = !this.hideFilters;
34
+ }
35
+ handleEnter(ev, f) {
36
+ if (ev.key !== "Enter")
37
+ return;
38
+ this.handleFilterSelection(f);
39
+ }
40
+ isFilterSelected(filterLink) {
41
+ return this.selectedCategoryId === getFilterId(filterLink);
42
+ }
43
+ render() {
44
+ return (h(Host, { exportparts: "filter, show-more-filters" },
45
+ h("div", { class: "filters" },
46
+ this.filter.filters
47
+ .filter((_, i) => (this.hideFilters ? i < FILTERS_COUNT : true))
48
+ .map((f, n) => (h("div", { role: "button", tabindex: "0", part: this.isFilterSelected(f) ? "filter active" : "filter", class: {
49
+ filter: true,
50
+ active: this.selectedCategoryId === getFilterId(f),
51
+ }, style: { "animation-delay": `${n * 10}ms` }, onPointerUp: (ev) => {
52
+ ev.stopPropagation();
53
+ this.handleFilterSelection(f);
54
+ }, onKeyPress: (ev) => this.handleEnter(ev, f) },
55
+ this.isFilterSelected(f) ? h(CheckIcon, null) : null,
56
+ f.name))),
57
+ h("div", { class: {
58
+ filter: true,
59
+ "show-more": true,
60
+ hidden: this.filter.filters.length <= FILTERS_COUNT,
61
+ active: !this.hideFilters,
62
+ }, role: "button", tabindex: "0", "aria-role": "button", onClick: () => this.toggleFilters(), onKeyPress: (ev) => {
63
+ if (ev.key === "Enter") {
64
+ this.toggleFilters();
65
+ }
66
+ }, part: "show-more-filters" }, this.hideFilters ? "Zeige mehr" : "Zeige weniger"))));
67
+ }
68
+ static get is() { return "search-filters"; }
69
+ static get encapsulation() { return "shadow"; }
70
+ static get originalStyleUrls() { return {
71
+ "$": ["search-filters.css"]
72
+ }; }
73
+ static get styleUrls() { return {
74
+ "$": ["search-filters.css"]
75
+ }; }
76
+ static get properties() { return {
77
+ "filter": {
78
+ "type": "unknown",
79
+ "mutable": false,
80
+ "complexType": {
81
+ "original": "SearchSessionFilter | null",
82
+ "resolved": "SearchSessionFilter",
83
+ "references": {
84
+ "SearchSessionFilter": {
85
+ "location": "import",
86
+ "path": "../../../searchSession/searchSession"
87
+ }
88
+ }
89
+ },
90
+ "required": false,
91
+ "optional": false,
92
+ "docs": {
93
+ "tags": [],
94
+ "text": ""
95
+ },
96
+ "defaultValue": "null"
97
+ }
98
+ }; }
99
+ static get states() { return {
100
+ "selectedCategoryId": {},
101
+ "hideFilters": {}
102
+ }; }
103
+ static get events() { return [{
104
+ "method": "filterSelected",
105
+ "name": "filterSelected",
106
+ "bubbles": true,
107
+ "cancelable": true,
108
+ "composed": true,
109
+ "docs": {
110
+ "tags": [],
111
+ "text": ""
112
+ },
113
+ "complexType": {
114
+ "original": "FilterAction",
115
+ "resolved": "\"deselect\" | \"select\"",
116
+ "references": {
117
+ "FilterAction": {
118
+ "location": "import",
119
+ "path": "vviinn-tracking-client-ts"
120
+ }
121
+ }
122
+ }
123
+ }]; }
124
+ static get elementRef() { return "el"; }
125
+ }
@@ -0,0 +1,142 @@
1
+ :host {
2
+ --vviinn-progressbar-width: 0;
3
+ --vviinn-carousel-item-width: 150px;
4
+ --vviinn-carousel-columns-internal: var(--vviinn-carousel-columns, 4);
5
+ --vviinn-carousel-image-width-system: 140px;
6
+ }
7
+
8
+ .body {
9
+ display: flex;
10
+ position: relative;
11
+ width: var(--vviinn-carousel-content-width);
12
+ flex-direction: column;
13
+ }
14
+
15
+ .content-wrapper * {
16
+ box-sizing: border-box;
17
+ }
18
+
19
+ .content-wrapper {
20
+ overflow-y: hidden;
21
+ overflow-x: auto;
22
+ flex-grow: 1;
23
+ }
24
+
25
+ .bullets {
26
+ margin-top: 16px;
27
+ display: flex;
28
+ flex-direction: row;
29
+ grid-gap: 24px;
30
+ justify-content: center;
31
+ }
32
+
33
+ .bullet {
34
+ width: 10px;
35
+ height: 10px;
36
+ background: #E0E0E0;
37
+ border-radius: 50%;
38
+ cursor: pointer;
39
+ }
40
+
41
+ .bullet.active {
42
+ background: #161616;
43
+ }
44
+
45
+ .content:not(.show-scrollbar),
46
+ .content.grid {
47
+ scrollbar-color: #fff0 #fff0;
48
+ }
49
+
50
+ .content:not(.show-scrollbar)::-webkit-scrollbar,
51
+ .content.grid::-webkit-scrollbar {
52
+ opacity: 0;
53
+ }
54
+
55
+ .content {
56
+ display: flex;
57
+ flex-direction: row;
58
+ grid-gap: 8px;
59
+ -ms-scroll-snap-type: x mandatory;
60
+ scroll-snap-type: x mandatory;
61
+ overflow-y: hidden;
62
+ overflow-x: auto;
63
+ flex-grow: 1;
64
+ padding-bottom: 16px;
65
+ }
66
+
67
+ .content.left > * {
68
+ scroll-snap-align: start;
69
+ }
70
+
71
+ .content.right > * {
72
+ scroll-snap-align: end;
73
+ }
74
+
75
+ :host(.continuity) button {
76
+ border-radius: 2px;
77
+ }
78
+
79
+ :host(.grid) button {
80
+ border-radius: 50%;
81
+ }
82
+
83
+ button {
84
+ align-items: center;
85
+ background-color: white;
86
+ border: none;
87
+ box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
88
+ cursor: pointer;
89
+ display: grid;
90
+ height: 40px;
91
+ justify-items: center;
92
+ position: absolute;
93
+ top: calc(50% - 20px);
94
+ width: 40px;
95
+ z-index: 1;
96
+ padding: 0;
97
+ margin: 0;
98
+ }
99
+
100
+ button {
101
+ fill: #525252;
102
+ }
103
+
104
+ button.prev svg {
105
+ transform: rotate(180deg);
106
+ margin-left: -5px;
107
+ }
108
+
109
+ .prev {
110
+ left: 0;
111
+ }
112
+
113
+ .next {
114
+ right: 0;
115
+ }
116
+
117
+ .items-group {
118
+ display: grid;
119
+ grid-gap: 16px;
120
+ grid-template-columns: repeat(var(--vviinn-carousel-columns-internal), 1fr);
121
+ min-width: 100%;
122
+ }
123
+
124
+ vviinn-product-card::part(price-container) {
125
+ text-align: center;
126
+ }
127
+
128
+ :host(.classic) vviinn-product-card::part(title),
129
+ :host(.classic) vviinn-product-card::part(brand),
130
+ :host(.classic) vviinn-product-card::part(type) {
131
+ text-align: center;
132
+ }
133
+
134
+ @media(max-width: 480px) {
135
+ :host(.modern) button {
136
+ display: none;
137
+ }
138
+
139
+ .items-group {
140
+ grid-template-columns: repeat(2, 1fr);
141
+ }
142
+ }
@@ -1,17 +1,15 @@
1
- import { r as registerInstance, h, e as Host, g as getElement } from './index-c8128606.js';
2
- import { _ as _Array } from './Array-c4dc02db.js';
3
- import { c as ChevronIcon } from './index-bbcd6be9.js';
4
- import './NonEmptyArray-65395d97.js';
5
-
6
- const vviinnCarouselCss = ":host{--vviinn-progressbar-width:0;--vviinn-carousel-item-width:150px;--vviinn-carousel-columns-internal:var(--vviinn-carousel-columns, 4);--vviinn-carousel-image-width-system:140px}.body{display:flex;position:relative;width:var(--vviinn-carousel-content-width);flex-direction:column}.content-wrapper *{box-sizing:border-box}.content-wrapper{overflow-y:hidden;overflow-x:auto;flex-grow:1}.bullets{margin-top:16px;display:flex;flex-direction:row;grid-gap:24px;justify-content:center}.bullet{width:10px;height:10px;background:#E0E0E0;border-radius:50%;cursor:pointer}.bullet.active{background:#161616}.content:not(.show-scrollbar),.content.grid{scrollbar-color:#fff0 #fff0}.content:not(.show-scrollbar)::-webkit-scrollbar,.content.grid::-webkit-scrollbar{opacity:0}.content{display:flex;flex-direction:row;grid-gap:8px;-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory;overflow-y:hidden;overflow-x:auto;flex-grow:1;padding-bottom:16px}.content.left>*{scroll-snap-align:start}.content.right>*{scroll-snap-align:end}:host(.continuity) button{border-radius:2px}:host(.grid) button{border-radius:50%}button{align-items:center;background-color:white;border:none;box-shadow:0px 2px 6px rgba(0, 0, 0, 0.15);cursor:pointer;display:grid;height:40px;justify-items:center;position:absolute;top:calc(50% - 20px);width:40px;z-index:1;padding:0;margin:0}button{fill:#525252}button.prev svg{transform:rotate(180deg);margin-left:-5px}.prev{left:0}.next{right:0}.items-group{display:grid;grid-gap:16px;grid-template-columns:repeat(var(--vviinn-carousel-columns-internal), 1fr);min-width:100%}vviinn-product-card::part(price-container){text-align:center}:host(.classic) vviinn-product-card::part(title),:host(.classic) vviinn-product-card::part(brand),:host(.classic) vviinn-product-card::part(type){text-align:center}@media (max-width: 480px){:host(.modern) button{display:none}.items-group{grid-template-columns:repeat(2, 1fr)}}";
7
-
1
+ import { Component, Host, h, Element, State, Prop } from "@stencil/core";
2
+ import { chunksOf } from "fp-ts/lib/Array";
3
+ import { ChevronIcon } from "../vviinn-icons";
8
4
  const COLUMNS_NUMBER_CSS_VAR = "--vviinn-carousel-columns-internal";
9
5
  const CAROUSEL_WIDTH_CSS_VAR = "--vviinn-carousel-content-width";
10
6
  const CAROUSEL_IMAGE_WIDTH_CSS_VAR = "--vviinn-carousel-image-width";
11
7
  const CONTENT_GROUP_CSS_CLASS = "items-group";
12
- let VviinnCarousel = class {
13
- constructor(hostRef) {
14
- registerInstance(this, hostRef);
8
+ /**
9
+ * @part carousel-button
10
+ **/
11
+ export class VviinnCarousel {
12
+ constructor() {
15
13
  this.moveDirection = "right";
16
14
  this.contentGroups = [];
17
15
  this.activeContentGroup = 0;
@@ -189,7 +187,7 @@ let VviinnCarousel = class {
189
187
  }
190
188
  renderGrid() {
191
189
  const recommendations = this.renderRecommendationsElements();
192
- const grouppedContent = _Array.chunksOf(this.getColumnsNumber())(recommendations);
190
+ const grouppedContent = chunksOf(this.getColumnsNumber())(recommendations);
193
191
  return this.renderRecommendationGroups(grouppedContent);
194
192
  }
195
193
  renderBullets() {
@@ -201,10 +199,107 @@ let VviinnCarousel = class {
201
199
  }, onClick: () => this.scroll(index) })));
202
200
  }
203
201
  render() {
204
- return (h(Host, { class: this.getClassMap() }, h("div", { class: Object.assign({ body: true }, this.getClassMap()) }, h("button", { class: "prev", onClick: () => this.showPrev(), part: "carousel-button" }, h(ChevronIcon, null)), h("div", { class: this.getContentClassMap(), onScroll: () => this.processScrollbarWidth() }, this.renderRecommendations()), h("button", { class: "next", onClick: () => this.showNext(), part: "carousel-button" }, h(ChevronIcon, null))), this.showBullets() ? (h("div", { class: "bullets" }, this.renderBullets())) : ("")));
205
- }
206
- get el() { return getElement(this); }
207
- };
208
- VviinnCarousel.style = vviinnCarouselCss;
209
-
210
- export { VviinnCarousel as vviinn_carousel };
202
+ return (h(Host, { class: this.getClassMap() },
203
+ h("div", { class: Object.assign({ body: true }, this.getClassMap()) },
204
+ h("button", { class: "prev", onClick: () => this.showPrev(), part: "carousel-button" },
205
+ h(ChevronIcon, null)),
206
+ h("div", { class: this.getContentClassMap(), onScroll: () => this.processScrollbarWidth() }, this.renderRecommendations()),
207
+ h("button", { class: "next", onClick: () => this.showNext(), part: "carousel-button" },
208
+ h(ChevronIcon, null))),
209
+ this.showBullets() ? (h("div", { class: "bullets" }, this.renderBullets())) : ("")));
210
+ }
211
+ static get is() { return "vviinn-carousel"; }
212
+ static get originalStyleUrls() { return {
213
+ "$": ["vviinn-carousel.css"]
214
+ }; }
215
+ static get styleUrls() { return {
216
+ "$": ["vviinn-carousel.css"]
217
+ }; }
218
+ static get properties() { return {
219
+ "mode": {
220
+ "type": "string",
221
+ "mutable": false,
222
+ "complexType": {
223
+ "original": "CarouselMode",
224
+ "resolved": "\"continuity\" | \"grid\"",
225
+ "references": {
226
+ "CarouselMode": {
227
+ "location": "local"
228
+ }
229
+ }
230
+ },
231
+ "required": false,
232
+ "optional": false,
233
+ "docs": {
234
+ "tags": [],
235
+ "text": ""
236
+ },
237
+ "attribute": "mode",
238
+ "reflect": false,
239
+ "defaultValue": "\"continuity\""
240
+ },
241
+ "imageWidth": {
242
+ "type": "number",
243
+ "mutable": false,
244
+ "complexType": {
245
+ "original": "number",
246
+ "resolved": "number",
247
+ "references": {}
248
+ },
249
+ "required": false,
250
+ "optional": false,
251
+ "docs": {
252
+ "tags": [],
253
+ "text": ""
254
+ },
255
+ "attribute": "image-width",
256
+ "reflect": false,
257
+ "defaultValue": "140"
258
+ },
259
+ "showScroll": {
260
+ "type": "boolean",
261
+ "mutable": false,
262
+ "complexType": {
263
+ "original": "boolean",
264
+ "resolved": "boolean",
265
+ "references": {}
266
+ },
267
+ "required": false,
268
+ "optional": false,
269
+ "docs": {
270
+ "tags": [],
271
+ "text": ""
272
+ },
273
+ "attribute": "show-scroll",
274
+ "reflect": false,
275
+ "defaultValue": "true"
276
+ },
277
+ "recommendations": {
278
+ "type": "unknown",
279
+ "mutable": false,
280
+ "complexType": {
281
+ "original": "Recommendation[]",
282
+ "resolved": "{ groupId?: string; productId?: string; title?: string; deeplink?: string; brand?: string; productType?: string; image?: { original?: string; thumbnail?: string; }; price?: { actual?: number; sale?: number; }; }[]",
283
+ "references": {
284
+ "Recommendation": {
285
+ "location": "import",
286
+ "path": "../../recommendation/recommendation"
287
+ }
288
+ }
289
+ },
290
+ "required": false,
291
+ "optional": false,
292
+ "docs": {
293
+ "tags": [],
294
+ "text": ""
295
+ },
296
+ "defaultValue": "[]"
297
+ }
298
+ }; }
299
+ static get states() { return {
300
+ "moveDirection": {},
301
+ "contentGroups": {},
302
+ "activeContentGroup": {}
303
+ }; }
304
+ static get elementRef() { return "el"; }
305
+ }
@@ -0,0 +1,7 @@
1
+ :host {
2
+ display: grid;
3
+ }
4
+
5
+ vviinn-error {
6
+ justify-items: center;
7
+ }
@@ -0,0 +1,36 @@
1
+ import { Component, Host, h, Event } from "@stencil/core";
2
+ export class VviinnEmptyResults {
3
+ render() {
4
+ return (h(Host, null,
5
+ h("vviinn-error", null,
6
+ h("svg", { slot: "icon", class: "icon", width: "32", height: "32", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
7
+ h("path", { d: "M16 2a14 14 0 1 0 0 28 14 14 0 0 0 0-28Zm0 26a12 12 0 1 1 0-24 12 12 0 0 1 0 24Z", fill: "#525252" }),
8
+ h("path", { d: "M17 8h-2v11h2V8Zm-1 14a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z", fill: "#525252" })),
9
+ h("h4", { slot: "title" }, "Leider nichts gefunden"),
10
+ h("span", { slot: "text" }, "Leider konnten wir keine passenden Produkte finden. Bitte versuche es mit einem anderen Bildausschnitt noch einmal."))));
11
+ }
12
+ static get is() { return "vviinn-empty-results"; }
13
+ static get encapsulation() { return "shadow"; }
14
+ static get originalStyleUrls() { return {
15
+ "$": ["vviinn-empty-results.css"]
16
+ }; }
17
+ static get styleUrls() { return {
18
+ "$": ["vviinn-empty-results.css"]
19
+ }; }
20
+ static get events() { return [{
21
+ "method": "actionClick",
22
+ "name": "actionClick",
23
+ "bubbles": true,
24
+ "cancelable": true,
25
+ "composed": true,
26
+ "docs": {
27
+ "tags": [],
28
+ "text": ""
29
+ },
30
+ "complexType": {
31
+ "original": "void",
32
+ "resolved": "void",
33
+ "references": {}
34
+ }
35
+ }]; }
36
+ }
@@ -0,0 +1,38 @@
1
+ :host {
2
+ background: #F4F4F4;
3
+ border-radius: 8px;
4
+ display: grid;
5
+ grid-gap: 20px;
6
+ padding: 24px;
7
+ text-align: center;
8
+ }
9
+
10
+ ::slotted(svg) {
11
+ display: grid;
12
+ align-self: center;
13
+ }
14
+
15
+ ::slotted(h4) {
16
+ margin: unset;
17
+ font-weight: 600;
18
+ font-size: 18px;
19
+ line-height: 24px;
20
+ }
21
+
22
+ ::slotted(span) {
23
+ font-size: 14px;
24
+ line-height: 20px;
25
+ }
26
+
27
+ ::slotted(button) {
28
+ -webkit-appearance: none;
29
+ -moz-appearance: none;
30
+ appearance: none;
31
+ border: none;
32
+ background: transparent;
33
+ color: var(--color-primary, var(--color-primary-system));
34
+ font-weight: 600;
35
+ font-size: 16px;
36
+ line-height: 20px;
37
+ cursor: pointer;
38
+ }
@@ -0,0 +1,18 @@
1
+ import { Component, Host, h } from "@stencil/core";
2
+ export class VviinnError {
3
+ render() {
4
+ return (h(Host, null,
5
+ h("slot", { name: "icon" }),
6
+ h("slot", { name: "title" }),
7
+ h("slot", { name: "text" }),
8
+ h("slot", { name: "action" })));
9
+ }
10
+ static get is() { return "vviinn-error"; }
11
+ static get encapsulation() { return "shadow"; }
12
+ static get originalStyleUrls() { return {
13
+ "$": ["vviinn-error.css"]
14
+ }; }
15
+ static get styleUrls() { return {
16
+ "$": ["vviinn-error.css"]
17
+ }; }
18
+ }
@@ -0,0 +1,34 @@
1
+ import { Component, Host, h, Event } from "@stencil/core";
2
+ export class VviinnServerError {
3
+ render() {
4
+ return (h(Host, null,
5
+ h("vviinn-error", null,
6
+ h("h4", { slot: "title" }, "Keine Verbindung"),
7
+ h("span", { slot: "text" }, "Etwas hat leider nicht funktioniert. Bitte pr\u00FCfen Sie Ihre Internetverbindung und laden Sie das Bild noch einmal hoch."),
8
+ h("button", { slot: "action", onClick: () => this.actionClick.emit() }, "Erneut versuchen"))));
9
+ }
10
+ static get is() { return "vviinn-server-error"; }
11
+ static get encapsulation() { return "shadow"; }
12
+ static get originalStyleUrls() { return {
13
+ "$": ["vviinn-server-error.css"]
14
+ }; }
15
+ static get styleUrls() { return {
16
+ "$": ["vviinn-server-error.css"]
17
+ }; }
18
+ static get events() { return [{
19
+ "method": "actionClick",
20
+ "name": "actionClick",
21
+ "bubbles": true,
22
+ "cancelable": true,
23
+ "composed": true,
24
+ "docs": {
25
+ "tags": [],
26
+ "text": ""
27
+ },
28
+ "complexType": {
29
+ "original": "void",
30
+ "resolved": "void",
31
+ "references": {}
32
+ }
33
+ }]; }
34
+ }