@designcrowd/fe-shared-lib 1.4.8 → 1.5.0-eng-3440-eng-3442

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 (636) hide show
  1. package/.eslintrc.js +35 -35
  2. package/.github/workflows/auto-merge.yml +52 -52
  3. package/.prettierrc.js +7 -7
  4. package/.storybook/main.ts +36 -36
  5. package/.storybook/preview-head-master.html +4 -4
  6. package/.storybook/preview-head-publish-master.html +4 -4
  7. package/.storybook/preview-head-publish.html +9 -9
  8. package/.storybook/preview-head.html +9 -9
  9. package/.storybook/preview.js +53 -53
  10. package/CLAUDE.md +70 -70
  11. package/Dockerfile +43 -43
  12. package/README.md +103 -103
  13. package/buildspec.yml +47 -47
  14. package/{public → dist}/css/tailwind-brandCrowd.css +1074 -949
  15. package/{public → dist}/css/tailwind-brandPage.css +918 -818
  16. package/{public → dist}/css/tailwind-crazyDomains.css +1074 -949
  17. package/{public → dist}/css/tailwind-designCom.css +1074 -949
  18. package/{public → dist}/css/tailwind-designCrowd.css +1074 -949
  19. package/index.cjs +16 -16
  20. package/index.js +57 -57
  21. package/nodemon.translation.json +6 -6
  22. package/package.json +115 -115
  23. package/postcss.config.js +5 -5
  24. package/src/atoms/components/Button/Button.vue +341 -341
  25. package/src/atoms/components/Button/ButtonVariant.mixin.vue +126 -126
  26. package/src/atoms/components/Button/Buttons.stories.js +828 -828
  27. package/src/atoms/components/Button/ButtonsCrazyDomains.stories.js +117 -117
  28. package/src/atoms/components/Button/variants/ButtonAi.vue +63 -63
  29. package/src/atoms/components/Button/variants/ButtonDarkModePill.vue +52 -52
  30. package/src/atoms/components/Button/variants/ButtonFlat.vue +65 -65
  31. package/src/atoms/components/Button/variants/ButtonGray.vue +64 -64
  32. package/src/atoms/components/Button/variants/ButtonInfo.vue +51 -51
  33. package/src/atoms/components/Button/variants/ButtonInfoFilled.vue +63 -63
  34. package/src/atoms/components/Button/variants/ButtonNoBorder.vue +65 -65
  35. package/src/atoms/components/Button/variants/ButtonOutline.vue +62 -62
  36. package/src/atoms/components/Button/variants/ButtonOutlineNoHover.vue +62 -62
  37. package/src/atoms/components/Button/variants/ButtonOutlinePrimary.vue +53 -53
  38. package/src/atoms/components/Button/variants/ButtonOutlineSuccess.vue +54 -54
  39. package/src/atoms/components/Button/variants/ButtonPill.vue +52 -52
  40. package/src/atoms/components/Button/variants/ButtonPrimary.vue +69 -69
  41. package/src/atoms/components/Button/variants/ButtonPrimaryWithIcon.vue +68 -68
  42. package/src/atoms/components/Button/variants/ButtonSecondary.vue +51 -51
  43. package/src/atoms/components/Button/variants/ButtonSuccess.vue +55 -55
  44. package/src/atoms/components/Button/variants/ButtonWarning.vue +65 -65
  45. package/src/atoms/components/Button/variants/crazy-domains/ButtonCrazyDomainsOutline.vue +58 -58
  46. package/src/atoms/components/Button/variants/crazy-domains/ButtonCrazyDomainsPrimary.vue +38 -38
  47. package/src/atoms/components/ButtonGroup/ButtonGroup.stories.js +575 -575
  48. package/src/atoms/components/ButtonGroup/ButtonGroup.vue +200 -200
  49. package/src/atoms/components/Carousel/Carousel.fixtures.js +35 -35
  50. package/src/atoms/components/Carousel/Carousel.vue +352 -352
  51. package/src/atoms/components/Carousel/carousel.stories.js +261 -261
  52. package/src/atoms/components/Checkbox/Checkbox.mixin.js +57 -57
  53. package/src/atoms/components/Checkbox/Checkbox.stories.js +340 -340
  54. package/src/atoms/components/Checkbox/Checkbox.vue +84 -84
  55. package/src/atoms/components/Checktile/Checktile.stories.js +79 -79
  56. package/src/atoms/components/Checktile/Checktile.vue +73 -73
  57. package/src/atoms/components/CollapsiblePanel/CollapsiblePanel.mixin.js +38 -38
  58. package/src/atoms/components/CollapsiblePanel/CollapsiblePanel.stories.js +53 -53
  59. package/src/atoms/components/CollapsiblePanel/CollapsiblePanel.vue +33 -33
  60. package/src/atoms/components/ColorPicker/ColorPicker.stories.js +89 -89
  61. package/src/atoms/components/ColorPicker/ColorPicker.vue +95 -95
  62. package/src/atoms/components/CopyToClipboardText/CopyToClipboardText.stories.js +41 -41
  63. package/src/atoms/components/CopyToClipboardText/CopyToClipboardText.vue +71 -71
  64. package/src/atoms/components/Dropdown/Dropdown.stories.js +140 -140
  65. package/src/atoms/components/Dropdown/Dropdown.vue +118 -118
  66. package/src/atoms/components/Dropdown/DropdownItem.vue +33 -33
  67. package/src/atoms/components/FormControl/FormControl.mixin.js +136 -136
  68. package/src/atoms/components/HelloBar/HelloBar.stories.js +195 -195
  69. package/src/atoms/components/HelloBar/HelloBar.vue +156 -156
  70. package/src/atoms/components/Icon/Icon.stories.js +398 -396
  71. package/src/atoms/components/Icon/Icon.vue +844 -838
  72. package/src/atoms/components/Icon/icons/add-page.vue +6 -6
  73. package/src/atoms/components/Icon/icons/ai.vue +6 -6
  74. package/src/atoms/components/Icon/icons/arrow-down.vue +6 -6
  75. package/src/atoms/components/Icon/icons/arrow-left.vue +7 -7
  76. package/src/atoms/components/Icon/icons/arrow-right.vue +7 -7
  77. package/src/atoms/components/Icon/icons/arrow-top-right.vue +6 -6
  78. package/src/atoms/components/Icon/icons/arrow-up-underline.vue +7 -7
  79. package/src/atoms/components/Icon/icons/arrow-up.vue +7 -7
  80. package/src/atoms/components/Icon/icons/attach.vue +6 -6
  81. package/src/atoms/components/Icon/icons/auth-facebook-white.vue +17 -17
  82. package/src/atoms/components/Icon/icons/auth-facebook.vue +24 -24
  83. package/src/atoms/components/Icon/icons/auth-google.vue +32 -32
  84. package/src/atoms/components/Icon/icons/background.vue +7 -7
  85. package/src/atoms/components/Icon/icons/badge.vue +7 -7
  86. package/src/atoms/components/Icon/icons/banner-centered.vue +6 -6
  87. package/src/atoms/components/Icon/icons/banner-left.vue +6 -6
  88. package/src/atoms/components/Icon/icons/banner.vue +7 -7
  89. package/src/atoms/components/Icon/icons/bc-mast.vue +7 -7
  90. package/src/atoms/components/Icon/icons/briefcase.vue +7 -7
  91. package/src/atoms/components/Icon/icons/brush.vue +6 -6
  92. package/src/atoms/components/Icon/icons/business-card-filled.vue +5 -5
  93. package/src/atoms/components/Icon/icons/business.vue +6 -6
  94. package/src/atoms/components/Icon/icons/calculator.vue +3 -0
  95. package/src/atoms/components/Icon/icons/calendar.vue +5 -5
  96. package/src/atoms/components/Icon/icons/callout-error.vue +6 -6
  97. package/src/atoms/components/Icon/icons/callout-info.vue +6 -6
  98. package/src/atoms/components/Icon/icons/callout-success.vue +8 -8
  99. package/src/atoms/components/Icon/icons/callout-warning.vue +6 -6
  100. package/src/atoms/components/Icon/icons/cap.vue +22 -22
  101. package/src/atoms/components/Icon/icons/card.vue +9 -9
  102. package/src/atoms/components/Icon/icons/cart-empty.vue +9 -9
  103. package/src/atoms/components/Icon/icons/check-thin.vue +7 -7
  104. package/src/atoms/components/Icon/icons/check.vue +3 -3
  105. package/src/atoms/components/Icon/icons/chevron-down.vue +7 -7
  106. package/src/atoms/components/Icon/icons/chevron-left.vue +7 -7
  107. package/src/atoms/components/Icon/icons/chevron-right-wide.vue +3 -3
  108. package/src/atoms/components/Icon/icons/chevron-right.vue +3 -3
  109. package/src/atoms/components/Icon/icons/chevron-up.vue +7 -7
  110. package/src/atoms/components/Icon/icons/clipboard-check.vue +6 -6
  111. package/src/atoms/components/Icon/icons/close.vue +6 -6
  112. package/src/atoms/components/Icon/icons/community.vue +5 -5
  113. package/src/atoms/components/Icon/icons/contact-message.vue +10 -10
  114. package/src/atoms/components/Icon/icons/content.vue +7 -7
  115. package/src/atoms/components/Icon/icons/copy.vue +10 -10
  116. package/src/atoms/components/Icon/icons/crazy-domains/filter.vue +6 -6
  117. package/src/atoms/components/Icon/icons/crazy-domains/globe.vue +6 -6
  118. package/src/atoms/components/Icon/icons/crazy-domains/home.vue +6 -6
  119. package/src/atoms/components/Icon/icons/crazy-domains/social-facebook.vue +6 -6
  120. package/src/atoms/components/Icon/icons/crazy-domains/social-google.vue +6 -6
  121. package/src/atoms/components/Icon/icons/crazy-domains/social-instagram.vue +6 -6
  122. package/src/atoms/components/Icon/icons/crazy-domains/social-twitter.vue +6 -6
  123. package/src/atoms/components/Icon/icons/crazy-domains/social-youtube.vue +6 -6
  124. package/src/atoms/components/Icon/icons/crop.vue +6 -6
  125. package/src/atoms/components/Icon/icons/delete.vue +8 -8
  126. package/src/atoms/components/Icon/icons/designs.vue +6 -6
  127. package/src/atoms/components/Icon/icons/desktop.vue +7 -7
  128. package/src/atoms/components/Icon/icons/donate.vue +6 -6
  129. package/src/atoms/components/Icon/icons/download.vue +5 -5
  130. package/src/atoms/components/Icon/icons/duplicate.vue +6 -6
  131. package/src/atoms/components/Icon/icons/edit-line.vue +10 -10
  132. package/src/atoms/components/Icon/icons/edit.vue +6 -6
  133. package/src/atoms/components/Icon/icons/ellipsis.vue +6 -6
  134. package/src/atoms/components/Icon/icons/envelope-email.vue +9 -9
  135. package/src/atoms/components/Icon/icons/error.vue +8 -8
  136. package/src/atoms/components/Icon/icons/eye-crossed.vue +7 -7
  137. package/src/atoms/components/Icon/icons/eye-open.vue +11 -11
  138. package/src/atoms/components/Icon/icons/fees.vue +6 -6
  139. package/src/atoms/components/Icon/icons/file.vue +7 -7
  140. package/src/atoms/components/Icon/icons/filter.vue +7 -7
  141. package/src/atoms/components/Icon/icons/filters.vue +6 -6
  142. package/src/atoms/components/Icon/icons/flag.vue +6 -6
  143. package/src/atoms/components/Icon/icons/flip-horizontal.vue +7 -7
  144. package/src/atoms/components/Icon/icons/flip-vertical.vue +7 -7
  145. package/src/atoms/components/Icon/icons/folder.vue +6 -6
  146. package/src/atoms/components/Icon/icons/footer-centered.vue +7 -7
  147. package/src/atoms/components/Icon/icons/footer-left.vue +7 -7
  148. package/src/atoms/components/Icon/icons/form-message.vue +6 -6
  149. package/src/atoms/components/Icon/icons/form.vue +5 -5
  150. package/src/atoms/components/Icon/icons/fullscreen-exit.vue +5 -5
  151. package/src/atoms/components/Icon/icons/fullscreen.vue +5 -5
  152. package/src/atoms/components/Icon/icons/globe.vue +6 -6
  153. package/src/atoms/components/Icon/icons/godaddy/logo.vue +5 -5
  154. package/src/atoms/components/Icon/icons/hamburger.vue +7 -7
  155. package/src/atoms/components/Icon/icons/home.vue +7 -7
  156. package/src/atoms/components/Icon/icons/icon-style-circle-bg.vue +22 -22
  157. package/src/atoms/components/Icon/icons/icon-style-no-bg.vue +16 -16
  158. package/src/atoms/components/Icon/icons/icon-style-square-bg.vue +22 -22
  159. package/src/atoms/components/Icon/icons/image-gallery-carousel.vue +7 -7
  160. package/src/atoms/components/Icon/icons/image-gallery-grid.vue +7 -7
  161. package/src/atoms/components/Icon/icons/image-gallery-masonry.vue +6 -6
  162. package/src/atoms/components/Icon/icons/images-gallery.vue +5 -5
  163. package/src/atoms/components/Icon/icons/images.vue +7 -7
  164. package/src/atoms/components/Icon/icons/info.vue +9 -9
  165. package/src/atoms/components/Icon/icons/jobs.vue +8 -8
  166. package/src/atoms/components/Icon/icons/layer-bring-front.vue +6 -6
  167. package/src/atoms/components/Icon/icons/layer-send-back.vue +6 -6
  168. package/src/atoms/components/Icon/icons/layer.vue +6 -6
  169. package/src/atoms/components/Icon/icons/layout/display-style-about-1.vue +20 -20
  170. package/src/atoms/components/Icon/icons/layout/display-style-about-2.vue +20 -20
  171. package/src/atoms/components/Icon/icons/layout/display-style-about-3.vue +20 -20
  172. package/src/atoms/components/Icon/icons/layout/display-style-about-4.vue +32 -32
  173. package/src/atoms/components/Icon/icons/layout/display-style-about-5.vue +27 -27
  174. package/src/atoms/components/Icon/icons/layout/display-style-about-6.vue +27 -27
  175. package/src/atoms/components/Icon/icons/layout/display-style-banner-1.vue +20 -20
  176. package/src/atoms/components/Icon/icons/layout/display-style-banner-2.vue +20 -20
  177. package/src/atoms/components/Icon/icons/layout/display-style-banner-3.vue +20 -20
  178. package/src/atoms/components/Icon/icons/layout/display-style-banner-4.vue +20 -20
  179. package/src/atoms/components/Icon/icons/layout/display-style-banner-5.vue +20 -20
  180. package/src/atoms/components/Icon/icons/layout/display-style-banner-6.vue +27 -27
  181. package/src/atoms/components/Icon/icons/layout/display-style-banner-7.vue +27 -27
  182. package/src/atoms/components/Icon/icons/layout/display-style-banner-8.vue +20 -20
  183. package/src/atoms/components/Icon/icons/layout/display-style-banner-9.vue +20 -20
  184. package/src/atoms/components/Icon/icons/layout/display-style-contact-1.vue +24 -24
  185. package/src/atoms/components/Icon/icons/layout/display-style-contact-2.vue +24 -24
  186. package/src/atoms/components/Icon/icons/layout/display-style-contact-4.vue +24 -24
  187. package/src/atoms/components/Icon/icons/layout/display-style-contact-5.vue +39 -39
  188. package/src/atoms/components/Icon/icons/layout/display-style-contact-6.vue +39 -39
  189. package/src/atoms/components/Icon/icons/layout/footer/display-style-1.vue +7 -7
  190. package/src/atoms/components/Icon/icons/layout/footer/display-style-2.vue +16 -16
  191. package/src/atoms/components/Icon/icons/layout/header/desktop-hamburger-display-style-1.vue +17 -17
  192. package/src/atoms/components/Icon/icons/layout/header/desktop-hamburger-display-style-2.vue +17 -17
  193. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-1.vue +17 -17
  194. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-2.vue +17 -17
  195. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-3.vue +13 -13
  196. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-4.vue +13 -13
  197. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-5.vue +17 -17
  198. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-6.vue +17 -17
  199. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-1.vue +16 -16
  200. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-2.vue +16 -16
  201. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-3.vue +16 -16
  202. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-1.vue +17 -17
  203. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-2.vue +17 -17
  204. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-3.vue +17 -17
  205. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-4.vue +21 -21
  206. package/src/atoms/components/Icon/icons/layout/header/mobile-tab-display-style-1.vue +17 -17
  207. package/src/atoms/components/Icon/icons/layout/header/mobile-tab-display-style-2.vue +17 -17
  208. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-1.vue +16 -16
  209. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-2.vue +16 -16
  210. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-3.vue +16 -16
  211. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-normal-text-center-normal.vue +7 -7
  212. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-normal-text-center-small.vue +7 -7
  213. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-small-text-center-normal.vue +7 -7
  214. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-bottom.vue +11 -11
  215. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-circle.vue +10 -10
  216. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-top.vue +11 -11
  217. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-center-normal.vue +7 -7
  218. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-justify-normal.vue +7 -7
  219. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-left-normal.vue +7 -7
  220. package/src/atoms/components/Icon/icons/layout/layout-icon-left-small-text-left-normal.vue +7 -7
  221. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-center-normal.vue +7 -7
  222. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-justify-normal.vue +7 -7
  223. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-right-normal.vue +7 -7
  224. package/src/atoms/components/Icon/icons/layout/layout-icon-right-small-text-right-normal.vue +7 -7
  225. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-center-normal.vue +7 -7
  226. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-center-small.vue +7 -7
  227. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-justify-normal.vue +7 -7
  228. package/src/atoms/components/Icon/icons/layout/layout-icon-top-small-text-center-normal.vue +7 -7
  229. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-1.vue +16 -16
  230. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-2.vue +10 -10
  231. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-3.vue +10 -10
  232. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-4.vue +23 -23
  233. package/src/atoms/components/Icon/icons/layout/nav/tab/display-style-1.vue +16 -16
  234. package/src/atoms/components/Icon/icons/layout/nav/tab/display-style-2.vue +7 -7
  235. package/src/atoms/components/Icon/icons/letterhead-filled.vue +5 -5
  236. package/src/atoms/components/Icon/icons/link.vue +6 -6
  237. package/src/atoms/components/Icon/icons/location.vue +6 -6
  238. package/src/atoms/components/Icon/icons/lock.vue +6 -6
  239. package/src/atoms/components/Icon/icons/mac-command.vue +7 -7
  240. package/src/atoms/components/Icon/icons/maker/align-center.vue +7 -7
  241. package/src/atoms/components/Icon/icons/maker/align-justify.vue +7 -7
  242. package/src/atoms/components/Icon/icons/maker/align-left.vue +7 -7
  243. package/src/atoms/components/Icon/icons/maker/align-right.vue +7 -7
  244. package/src/atoms/components/Icon/icons/maker/animate.vue +7 -7
  245. package/src/atoms/components/Icon/icons/maker/bold.vue +7 -7
  246. package/src/atoms/components/Icon/icons/maker/custom-landscape.vue +5 -5
  247. package/src/atoms/components/Icon/icons/maker/email-symbol.vue +5 -5
  248. package/src/atoms/components/Icon/icons/maker/email.vue +5 -5
  249. package/src/atoms/components/Icon/icons/maker/eraser.vue +5 -5
  250. package/src/atoms/components/Icon/icons/maker/etsy.vue +5 -5
  251. package/src/atoms/components/Icon/icons/maker/facebook.vue +5 -5
  252. package/src/atoms/components/Icon/icons/maker/favicon.vue +7 -7
  253. package/src/atoms/components/Icon/icons/maker/flyer.vue +7 -7
  254. package/src/atoms/components/Icon/icons/maker/gift-certificate.vue +5 -5
  255. package/src/atoms/components/Icon/icons/maker/globe.vue +5 -5
  256. package/src/atoms/components/Icon/icons/maker/image.vue +7 -7
  257. package/src/atoms/components/Icon/icons/maker/instagram.vue +7 -7
  258. package/src/atoms/components/Icon/icons/maker/invitation.vue +5 -5
  259. package/src/atoms/components/Icon/icons/maker/invoice.vue +5 -5
  260. package/src/atoms/components/Icon/icons/maker/italic.vue +7 -7
  261. package/src/atoms/components/Icon/icons/maker/link.vue +7 -7
  262. package/src/atoms/components/Icon/icons/maker/linkedin.vue +7 -7
  263. package/src/atoms/components/Icon/icons/maker/menu.vue +5 -5
  264. package/src/atoms/components/Icon/icons/maker/pause.vue +5 -5
  265. package/src/atoms/components/Icon/icons/maker/phone.vue +5 -5
  266. package/src/atoms/components/Icon/icons/maker/pinterest.vue +5 -5
  267. package/src/atoms/components/Icon/icons/maker/play.vue +5 -5
  268. package/src/atoms/components/Icon/icons/maker/postcard.vue +5 -5
  269. package/src/atoms/components/Icon/icons/maker/poster.vue +7 -7
  270. package/src/atoms/components/Icon/icons/maker/profile.vue +5 -5
  271. package/src/atoms/components/Icon/icons/maker/qrcode.vue +5 -5
  272. package/src/atoms/components/Icon/icons/maker/snapchat.vue +5 -5
  273. package/src/atoms/components/Icon/icons/maker/soundcloud.vue +7 -7
  274. package/src/atoms/components/Icon/icons/maker/spacing.vue +18 -18
  275. package/src/atoms/components/Icon/icons/maker/strikethrough.vue +7 -7
  276. package/src/atoms/components/Icon/icons/maker/t-shirt.vue +32 -32
  277. package/src/atoms/components/Icon/icons/maker/text-background-color.vue +12 -12
  278. package/src/atoms/components/Icon/icons/maker/text-color.vue +14 -14
  279. package/src/atoms/components/Icon/icons/maker/text.vue +7 -7
  280. package/src/atoms/components/Icon/icons/maker/thankyou-card.vue +5 -5
  281. package/src/atoms/components/Icon/icons/maker/tiktok.vue +5 -5
  282. package/src/atoms/components/Icon/icons/maker/tumblr.vue +5 -5
  283. package/src/atoms/components/Icon/icons/maker/twitch.vue +7 -7
  284. package/src/atoms/components/Icon/icons/maker/twitter.vue +5 -5
  285. package/src/atoms/components/Icon/icons/maker/underline.vue +7 -7
  286. package/src/atoms/components/Icon/icons/maker/uppercase.vue +14 -14
  287. package/src/atoms/components/Icon/icons/maker/video.vue +5 -5
  288. package/src/atoms/components/Icon/icons/maker/whatsapp.vue +7 -7
  289. package/src/atoms/components/Icon/icons/maker/youtube.vue +5 -5
  290. package/src/atoms/components/Icon/icons/maker/zoom.vue +5 -5
  291. package/src/atoms/components/Icon/icons/map.vue +6 -6
  292. package/src/atoms/components/Icon/icons/message.vue +6 -6
  293. package/src/atoms/components/Icon/icons/minus-circle-light.vue +7 -7
  294. package/src/atoms/components/Icon/icons/minus.vue +3 -3
  295. package/src/atoms/components/Icon/icons/mobile.vue +5 -5
  296. package/src/atoms/components/Icon/icons/mug.vue +29 -29
  297. package/src/atoms/components/Icon/icons/opacity.vue +6 -6
  298. package/src/atoms/components/Icon/icons/other.vue +7 -7
  299. package/src/atoms/components/Icon/icons/page-buttons.vue +8 -8
  300. package/src/atoms/components/Icon/icons/page-hamburger.vue +9 -9
  301. package/src/atoms/components/Icon/icons/page-tabs.vue +9 -9
  302. package/src/atoms/components/Icon/icons/pages.vue +6 -6
  303. package/src/atoms/components/Icon/icons/palette.vue +6 -6
  304. package/src/atoms/components/Icon/icons/pause.vue +5 -5
  305. package/src/atoms/components/Icon/icons/payment.vue +8 -8
  306. package/src/atoms/components/Icon/icons/payments-featured.vue +6 -6
  307. package/src/atoms/components/Icon/icons/payments-textonly.vue +8 -8
  308. package/src/atoms/components/Icon/icons/payments-thumbnail.vue +9 -9
  309. package/src/atoms/components/Icon/icons/pen-tool.vue +7 -7
  310. package/src/atoms/components/Icon/icons/phone.vue +6 -6
  311. package/src/atoms/components/Icon/icons/plus-circle-light.vue +8 -8
  312. package/src/atoms/components/Icon/icons/plus-circle.vue +7 -7
  313. package/src/atoms/components/Icon/icons/plus.vue +3 -3
  314. package/src/atoms/components/Icon/icons/poll.vue +3 -3
  315. package/src/atoms/components/Icon/icons/portfolio.vue +10 -10
  316. package/src/atoms/components/Icon/icons/preview.vue +6 -6
  317. package/src/atoms/components/Icon/icons/printing.vue +6 -6
  318. package/src/atoms/components/Icon/icons/processing.vue +5 -5
  319. package/src/atoms/components/Icon/icons/question.vue +11 -11
  320. package/src/atoms/components/Icon/icons/ratio-1-1.vue +3 -3
  321. package/src/atoms/components/Icon/icons/ratio-16-9.vue +1 -1
  322. package/src/atoms/components/Icon/icons/ratio-2-3.vue +3 -3
  323. package/src/atoms/components/Icon/icons/ratio-3-2.vue +3 -3
  324. package/src/atoms/components/Icon/icons/ratio-3-4.vue +3 -3
  325. package/src/atoms/components/Icon/icons/ratio-4-3.vue +3 -3
  326. package/src/atoms/components/Icon/icons/ratio-9-16.vue +3 -3
  327. package/src/atoms/components/Icon/icons/ratio-circle.vue +8 -8
  328. package/src/atoms/components/Icon/icons/ratio-original.vue +11 -11
  329. package/src/atoms/components/Icon/icons/redo.vue +6 -6
  330. package/src/atoms/components/Icon/icons/reload.vue +6 -6
  331. package/src/atoms/components/Icon/icons/reorderable.vue +5 -5
  332. package/src/atoms/components/Icon/icons/request-payment.vue +6 -6
  333. package/src/atoms/components/Icon/icons/reset.vue +6 -6
  334. package/src/atoms/components/Icon/icons/search.vue +11 -11
  335. package/src/atoms/components/Icon/icons/secure.vue +7 -7
  336. package/src/atoms/components/Icon/icons/send.vue +12 -0
  337. package/src/atoms/components/Icon/icons/services.vue +7 -7
  338. package/src/atoms/components/Icon/icons/settings.vue +7 -7
  339. package/src/atoms/components/Icon/icons/shape.vue +5 -5
  340. package/src/atoms/components/Icon/icons/share.vue +8 -8
  341. package/src/atoms/components/Icon/icons/shop.vue +5 -5
  342. package/src/atoms/components/Icon/icons/sms.vue +5 -5
  343. package/src/atoms/components/Icon/icons/social-facebook-color.vue +9 -9
  344. package/src/atoms/components/Icon/icons/social-facebook.vue +5 -5
  345. package/src/atoms/components/Icon/icons/social-google.vue +5 -5
  346. package/src/atoms/components/Icon/icons/social-instagram-color.vue +24 -24
  347. package/src/atoms/components/Icon/icons/social-linkedin-color.vue +9 -9
  348. package/src/atoms/components/Icon/icons/social-share.vue +7 -7
  349. package/src/atoms/components/Icon/icons/social-twitter-color.vue +9 -9
  350. package/src/atoms/components/Icon/icons/star-filled.vue +6 -6
  351. package/src/atoms/components/Icon/icons/star-hollow.vue +6 -6
  352. package/src/atoms/components/Icon/icons/sticker.vue +28 -28
  353. package/src/atoms/components/Icon/icons/stop.vue +5 -0
  354. package/src/atoms/components/Icon/icons/styles.vue +5 -5
  355. package/src/atoms/components/Icon/icons/submit.vue +5 -5
  356. package/src/atoms/components/Icon/icons/templates.vue +7 -7
  357. package/src/atoms/components/Icon/icons/text-image-center.vue +6 -6
  358. package/src/atoms/components/Icon/icons/text-image-justified.vue +7 -7
  359. package/src/atoms/components/Icon/icons/text-image-left.vue +9 -9
  360. package/src/atoms/components/Icon/icons/text-image-only.vue +5 -5
  361. package/src/atoms/components/Icon/icons/text-image-right.vue +9 -9
  362. package/src/atoms/components/Icon/icons/text-image.vue +13 -13
  363. package/src/atoms/components/Icon/icons/time.vue +8 -8
  364. package/src/atoms/components/Icon/icons/tooltip-bottom.vue +5 -5
  365. package/src/atoms/components/Icon/icons/tooltip-left.vue +5 -5
  366. package/src/atoms/components/Icon/icons/tooltip-right.vue +5 -5
  367. package/src/atoms/components/Icon/icons/tooltip-top.vue +5 -5
  368. package/src/atoms/components/Icon/icons/undo.vue +6 -6
  369. package/src/atoms/components/Icon/icons/upgrade-alt.vue +7 -7
  370. package/src/atoms/components/Icon/icons/upgrade.vue +9 -9
  371. package/src/atoms/components/Icon/icons/upload-arrow.vue +5 -5
  372. package/src/atoms/components/Icon/icons/upload.vue +5 -5
  373. package/src/atoms/components/Icon/icons/user-accounts.vue +5 -5
  374. package/src/atoms/components/Icon/icons/user-headset.vue +50 -50
  375. package/src/atoms/components/Icon/icons/volume-muted.vue +5 -5
  376. package/src/atoms/components/Icon/icons/volume.vue +5 -5
  377. package/src/atoms/components/Icon/icons/watchlist-filled.vue +14 -14
  378. package/src/atoms/components/Icon/icons/watchlist-hollow-alt.vue +14 -14
  379. package/src/atoms/components/Icon/icons/watchlist-hollow.vue +6 -6
  380. package/src/atoms/components/Icon/icons/website-filled.vue +5 -5
  381. package/src/atoms/components/Icon/icons/website.vue +6 -6
  382. package/src/atoms/components/Icon/icons/wholesale.vue +6 -6
  383. package/src/atoms/components/Icon/icons/zoom-in.vue +5 -5
  384. package/src/atoms/components/Icon/icons/zoom-out.vue +5 -5
  385. package/src/atoms/components/Icon/icons/zoom.vue +11 -11
  386. package/src/atoms/components/Loader/Loader.vue +15 -15
  387. package/src/atoms/components/Masonry/Masonry.stories.js +48 -48
  388. package/src/atoms/components/Masonry/Masonry.vue +48 -48
  389. package/src/atoms/components/Masonry/fixtures.js +589 -589
  390. package/src/atoms/components/Modal/HashRouteModal.stories.js +68 -68
  391. package/src/atoms/components/Modal/HashRouteModal.vue +120 -120
  392. package/src/atoms/components/Modal/Modal.stories.js +293 -293
  393. package/src/atoms/components/Modal/Modal.vue +263 -263
  394. package/src/atoms/components/Notice/Notice.stories.js +174 -174
  395. package/src/atoms/components/Notice/Notice.vue +71 -71
  396. package/src/atoms/components/NumberStepper/NumberStepper.stories.js +55 -55
  397. package/src/atoms/components/NumberStepper/NumberStepper.vue +340 -340
  398. package/src/atoms/components/Picture/Picture.stories.js +90 -90
  399. package/src/atoms/components/Picture/Picture.vue +84 -84
  400. package/src/atoms/components/Picture/picture.fixtures.js +35 -35
  401. package/src/atoms/components/Pill/Pill.stories.js +20 -20
  402. package/src/atoms/components/Pill/Pill.vue +8 -8
  403. package/src/atoms/components/PillBar/PillBar.fixtures.js +941 -941
  404. package/src/atoms/components/PillBar/PillBar.stories.js +39 -39
  405. package/src/atoms/components/PillBar/PillBar.vue +62 -62
  406. package/src/atoms/components/Price/Price.fixtures.js +85 -85
  407. package/src/atoms/components/Price/Price.stories.js +291 -291
  408. package/src/atoms/components/Price/Price.vue +135 -135
  409. package/src/atoms/components/Price/i18n/price.de-DE.json +5 -5
  410. package/src/atoms/components/Price/i18n/price.es-ES.json +5 -5
  411. package/src/atoms/components/Price/i18n/price.fr-CA.json +5 -5
  412. package/src/atoms/components/Price/i18n/price.fr-FR.json +5 -5
  413. package/src/atoms/components/Price/i18n/price.json +5 -5
  414. package/src/atoms/components/Price/i18n/price.pt-BR.json +5 -5
  415. package/src/atoms/components/Price/i18n/price.pt-PT.json +5 -5
  416. package/src/atoms/components/SearchBar/SearchBar.stories.js +21 -21
  417. package/src/atoms/components/SearchBar/SearchBar.vue +51 -51
  418. package/src/atoms/components/Select/Select.stories.js +142 -142
  419. package/src/atoms/components/Select/Select.vue +619 -619
  420. package/src/atoms/components/Select/pointerMixin.js +99 -99
  421. package/src/atoms/components/Select/selectMixin.js +356 -356
  422. package/src/atoms/components/SparkleIcon/SparkleIcon.stories.js +182 -182
  423. package/src/atoms/components/SparkleIcon/SparkleIcon.vue +97 -105
  424. package/src/atoms/components/SparkleIcon/assets/animations/state-01.svg +5 -5
  425. package/src/atoms/components/SparkleIcon/assets/animations/state-02.svg +5 -5
  426. package/src/atoms/components/SparkleIcon/assets/animations/state-03.svg +5 -5
  427. package/src/atoms/components/SparkleIcon/assets/animations/state-04.svg +5 -5
  428. package/src/atoms/components/SparkleIcon/assets/animations/state-05.svg +5 -5
  429. package/src/atoms/components/SparkleIcon/assets/animations/state-06.svg +5 -5
  430. package/src/atoms/components/SparkleIcon/assets/animations/state-07.svg +5 -5
  431. package/src/atoms/components/SparkleIcon/assets/animations/state-08.svg +5 -5
  432. package/src/atoms/components/SparkleIcon/assets/sparkle.svg +3 -3
  433. package/src/atoms/components/SparkleIcon/index.ts +3 -3
  434. package/src/atoms/components/SparkleIcon/sparkle-paths.ts +53 -0
  435. package/src/atoms/components/StarRating/StarRating.stories.js +50 -50
  436. package/src/atoms/components/StarRating/StarRating.vue +84 -84
  437. package/src/atoms/components/TabMenu/TabMenu.stories.js +54 -54
  438. package/src/atoms/components/TabMenu/TabMenu.vue +44 -44
  439. package/src/atoms/components/TextCopyField/TextCopyField.stories.js +68 -68
  440. package/src/atoms/components/TextCopyField/TextCopyField.vue +75 -75
  441. package/src/atoms/components/TextInput/TextInput.stories.js +232 -232
  442. package/src/atoms/components/TextInput/TextInput.vue +161 -161
  443. package/src/atoms/components/Textarea/Textarea.stories.js +209 -209
  444. package/src/atoms/components/Textarea/Textarea.vue +112 -112
  445. package/src/atoms/components/Toggle/Toggle.stories.js +176 -176
  446. package/src/atoms/components/Toggle/Toggle.vue +69 -69
  447. package/src/atoms/components/Tooltip/Tooltip.stories.js +493 -493
  448. package/src/atoms/components/Tooltip/Tooltip.vue +196 -196
  449. package/src/atoms/components/design-com/Icon/Icon.stories.js +82 -82
  450. package/src/atoms/components/design-com/Icon/Icon.vue +157 -157
  451. package/src/atoms/components/design-com/Icon/icons/award.vue +7 -7
  452. package/src/atoms/components/design-com/Icon/icons/bulb.vue +7 -7
  453. package/src/atoms/components/design-com/Icon/icons/card.vue +7 -7
  454. package/src/atoms/components/design-com/Icon/icons/check-circle-light.vue +7 -7
  455. package/src/atoms/components/design-com/Icon/icons/chevron-down.vue +7 -7
  456. package/src/atoms/components/design-com/Icon/icons/chevron-left.vue +7 -7
  457. package/src/atoms/components/design-com/Icon/icons/chevron-right.vue +3 -3
  458. package/src/atoms/components/design-com/Icon/icons/chevron-up.vue +7 -7
  459. package/src/atoms/components/design-com/Icon/icons/diamond.vue +7 -7
  460. package/src/atoms/components/design-com/Icon/icons/download.vue +7 -7
  461. package/src/atoms/components/design-com/Icon/icons/file-empty.vue +7 -7
  462. package/src/atoms/components/design-com/Icon/icons/file.vue +7 -7
  463. package/src/atoms/components/design-com/Icon/icons/filter.vue +7 -7
  464. package/src/atoms/components/design-com/Icon/icons/font.vue +7 -7
  465. package/src/atoms/components/design-com/Icon/icons/headphones.vue +7 -7
  466. package/src/atoms/components/design-com/Icon/icons/heart.vue +7 -7
  467. package/src/atoms/components/design-com/Icon/icons/image.vue +7 -7
  468. package/src/atoms/components/design-com/Icon/icons/logo.vue +7 -7
  469. package/src/atoms/components/design-com/Icon/icons/minus-circle-light.vue +7 -7
  470. package/src/atoms/components/design-com/Icon/icons/plus-circle-light.vue +8 -8
  471. package/src/atoms/components/design-com/Icon/icons/question-circle-filled.vue +7 -7
  472. package/src/atoms/components/design-com/Icon/icons/search.vue +7 -7
  473. package/src/atoms/components/design-com/Icon/icons/star-filled.vue +6 -6
  474. package/src/atoms/components/design-com/Icon/icons/star-hollow.vue +6 -6
  475. package/src/atoms/components/design-com/Icon/icons/users.vue +7 -7
  476. package/src/atoms/constants/constants.ts +6 -6
  477. package/src/atoms/mixin/hash-router-mixin.js +68 -68
  478. package/src/atoms/thirdparty-components/VueMasonryWall/VueMasonryWall.vue +280 -280
  479. package/src/atoms/thirdparty-components/VueMasonryWall/maxBy.js +50 -50
  480. package/src/bundleTranslation.js +86 -86
  481. package/src/bundles/bundled-translations.de-DE.json +6 -6
  482. package/src/bundles/bundled-translations.es-ES.json +6 -6
  483. package/src/bundles/bundled-translations.fr-CA.json +6 -6
  484. package/src/bundles/bundled-translations.fr-FR.json +6 -6
  485. package/src/bundles/bundled-translations.json +6 -6
  486. package/src/bundles/bundled-translations.pt-BR.json +6 -6
  487. package/src/bundles/bundled-translations.pt-PT.json +6 -6
  488. package/src/css/tailwind.css +3 -3
  489. package/src/experiences/clients/brand-crowd-api.client.js +119 -119
  490. package/src/experiences/clients/brand-page-api.client.js +62 -62
  491. package/src/experiences/components/AuthFlow/Auth.fixtures.js +4 -4
  492. package/src/experiences/components/AuthFlow/Auth.stories.js +345 -345
  493. package/src/experiences/components/AuthFlow/AuthCrazyDomains.stories.js +60 -60
  494. package/src/experiences/components/AuthFlow/AuthLegal.vue +108 -108
  495. package/src/experiences/components/AuthFlow/AuthModal.vue +39 -39
  496. package/src/experiences/components/AuthFlow/ForgotPassword.vue +222 -222
  497. package/src/experiences/components/AuthFlow/ForgotPasswordModal.vue +68 -68
  498. package/src/experiences/components/AuthFlow/ResetPassword.vue +179 -179
  499. package/src/experiences/components/AuthFlow/ResetPasswordModal.vue +64 -64
  500. package/src/experiences/components/AuthFlow/ResetPasswordSuccessModal.vue +56 -56
  501. package/src/experiences/components/AuthFlow/SignIn.vue +465 -465
  502. package/src/experiences/components/AuthFlow/SignUp.vue +278 -278
  503. package/src/experiences/components/AuthFlow/SignUpModal.vue +90 -90
  504. package/src/experiences/components/AuthFlow/SocialSignIn.vue +177 -177
  505. package/src/experiences/components/AuthFlow/SocialSignInButton.vue +74 -74
  506. package/src/experiences/components/AuthFlow/SubmissionButton.vue +56 -56
  507. package/src/experiences/components/PaymentConfigList/PaymentConfig.mixin.js +118 -118
  508. package/src/experiences/components/PaymentConfigList/PaymentConfigDeleteConfigModal.vue +108 -108
  509. package/src/experiences/components/PaymentConfigList/PaymentConfigDropdown.vue +175 -175
  510. package/src/experiences/components/PaymentConfigList/PaymentConfigList.stories.js +234 -234
  511. package/src/experiences/components/PaymentConfigList/PaymentConfigList.vue +136 -136
  512. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.de-DE.json +11 -11
  513. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.es-ES.json +11 -11
  514. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.fr-CA.json +11 -11
  515. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.fr-FR.json +11 -11
  516. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.json +11 -11
  517. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.pt-BR.json +11 -11
  518. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.pt-PT.json +11 -11
  519. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageCard.vue +119 -119
  520. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.stories.js +226 -226
  521. package/src/experiences/components/PublishBrandPageModal/__fixtures__/data.js +25 -25
  522. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.de-DE.json +24 -24
  523. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.es-ES.json +24 -24
  524. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-CA.json +24 -24
  525. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-FR.json +24 -24
  526. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.json +24 -24
  527. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-BR.json +24 -24
  528. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-PT.json +24 -24
  529. package/src/experiences/components/SellDomainNameList/SellDomainNameList.fixtures.js +32 -32
  530. package/src/experiences/components/SellDomainNameList/SellDomainNameList.vue +157 -157
  531. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.de-DE.json +7 -7
  532. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.es-ES.json +7 -7
  533. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.fr-CA.json +7 -7
  534. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.fr-FR.json +7 -7
  535. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.json +7 -7
  536. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.pt-BR.json +7 -7
  537. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.pt-PT.json +7 -7
  538. package/src/experiences/components/SellDomainNameListModal/SellDomainNameListModal.stories.js +74 -74
  539. package/src/experiences/components/SellDomainNameListModal/SellDomainNameListModal.vue +128 -128
  540. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.de-DE.json +5 -5
  541. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.es-ES.json +5 -5
  542. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.fr-CA.json +5 -5
  543. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.fr-FR.json +5 -5
  544. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.json +5 -5
  545. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.pt-BR.json +5 -5
  546. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.pt-PT.json +5 -5
  547. package/src/experiences/components/SellDomainNameModalApplication/SellDomainNameModalApplication.vue +209 -209
  548. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.de-DE.json +5 -5
  549. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.es-ES.json +5 -5
  550. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.fr-CA.json +5 -5
  551. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.fr-FR.json +5 -5
  552. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.json +5 -5
  553. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.pt-BR.json +5 -5
  554. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.pt-PT.json +5 -5
  555. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.de-DE.json +7 -7
  556. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.es-ES.json +7 -7
  557. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.fr-CA.json +7 -7
  558. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.fr-FR.json +7 -7
  559. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.json +7 -7
  560. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.pt-BR.json +7 -7
  561. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.pt-PT.json +7 -7
  562. package/src/experiences/components/SellDomainNameSearchResult/SellDomainNameListSearchResult.vue +167 -167
  563. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.de-DE.json +5 -5
  564. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.es-ES.json +5 -5
  565. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.fr-CA.json +5 -5
  566. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.fr-FR.json +5 -5
  567. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.json +5 -5
  568. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.pt-BR.json +5 -5
  569. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.pt-PT.json +5 -5
  570. package/src/experiences/components/SellDomainNameSearchWithResults/SellDomainNameSearchWithResults.stories.js +38 -38
  571. package/src/experiences/components/SellDomainNameSearchWithResults/SellDomainNameSearchWithResults.vue +214 -214
  572. package/src/experiences/components/SellDomainNameWidget/SellDomainNameWidget.stories.js +40 -40
  573. package/src/experiences/components/SellDomainNameWidget/SellDomainNameWidget.vue +155 -155
  574. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.de-DE.json +7 -7
  575. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.es-ES.json +7 -7
  576. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.fr-CA.json +7 -7
  577. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.fr-FR.json +7 -7
  578. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.json +7 -7
  579. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.pt-BR.json +7 -7
  580. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.pt-PT.json +7 -7
  581. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.stories.js +205 -205
  582. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.vue +133 -133
  583. package/src/experiences/components/UploadYourLogoDropzone/UploadYourLogoDropzone.stories.js +59 -59
  584. package/src/experiences/components/UploadYourLogoDropzone/UploadYourLogoDropzone.vue +285 -285
  585. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessBrandColours.stories.js +37 -37
  586. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessBrandColours.vue +338 -338
  587. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessText.vue +146 -146
  588. package/src/experiences/components/UploadYourLogoOnBoarding/LogoCropper.vue +473 -473
  589. package/src/experiences/components/UploadYourLogoOnBoarding/LogoPreview.vue +103 -103
  590. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadError.vue +75 -75
  591. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadExitConfirmation.vue +55 -55
  592. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadModal.vue +38 -38
  593. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploader.vue +102 -102
  594. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadingLoader.vue +22 -22
  595. package/src/experiences/components/UploadYourLogoOnBoarding/UploadYourLogoOnBoarding.vue +302 -302
  596. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.de-DE.json +34 -34
  597. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.es-ES.json +34 -34
  598. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.fr-CA.json +34 -34
  599. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.fr-FR.json +34 -34
  600. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.json +35 -35
  601. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.pt-BR.json +34 -34
  602. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.pt-PT.json +34 -34
  603. package/src/experiences/components/UploadedLogoSearchResultCard/UploadedLogoSearchResultCard.stories.js +82 -82
  604. package/src/experiences/components/UploadedLogoSearchResultCard/UploadedLogoSearchResultCard.vue +211 -211
  605. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.de-DE.json +8 -8
  606. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.es-ES.json +8 -8
  607. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.fr-CA.json +8 -8
  608. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.fr-FR.json +8 -8
  609. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.json +8 -8
  610. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.pt-BR.json +8 -8
  611. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.pt-PT.json +8 -8
  612. package/src/experiences/constants/api.js +8 -8
  613. package/src/experiences/constants/error-constants.js +5 -5
  614. package/src/experiences/constants/event-constants.js +18 -18
  615. package/src/experiences/constants/partner-dictionary-constants.js +27 -27
  616. package/src/experiences/constants/rego-source-constants.js +3 -3
  617. package/src/experiences/constants/sell-domain-name-constants.js +4 -4
  618. package/src/experiences/helpers/email-validator.js +5 -5
  619. package/src/experiences/helpers/hex-diff.js +116 -116
  620. package/src/experiences/helpers/tracking.js +5 -5
  621. package/src/experiences/mixins/mediaQueryMixin.js +31 -31
  622. package/src/experiences/mixins/themeMixin.js +22 -22
  623. package/src/themes/base.js +20 -20
  624. package/src/themes/bc.js +95 -95
  625. package/src/themes/bp.js +21 -21
  626. package/src/themes/cd.js +94 -94
  627. package/src/themes/dc.js +84 -84
  628. package/src/themes/dcom.js +106 -106
  629. package/src/themes/themes.js +16 -16
  630. package/src/useSharedLibTranslate.js +127 -127
  631. package/src/viewports.js +51 -51
  632. package/stylelint.config.js +19 -19
  633. package/tailwind.build.js +83 -83
  634. package/tailwind.config.js +37 -37
  635. package/tailwind.themes.js +59 -59
  636. package/vite.config.ts +37 -37
@@ -1,182 +1,182 @@
1
- import SparkleIcon from './SparkleIcon.vue';
2
-
3
- export default {
4
- title: 'Components/SparkleIcon',
5
- component: SparkleIcon,
6
- argTypes: {
7
- animated: {
8
- control: 'boolean',
9
- description: 'Whether the sparkle icon should animate',
10
- defaultValue: false,
11
- },
12
- size: {
13
- control: { type: 'select' },
14
- options: ['sm', 'md', 'lg', 12, 16, 20, 24, 32, 48],
15
- description: 'Size of the icon (predefined or custom number)',
16
- defaultValue: 'md',
17
- },
18
- },
19
- };
20
-
21
- // Default story
22
- export const Default = (args) => ({
23
- components: { SparkleIcon },
24
- setup() {
25
- return { args };
26
- },
27
- template: '<SparkleIcon v-bind="args" />',
28
- });
29
-
30
- Default.args = {
31
- animated: false,
32
- size: 'md',
33
- };
34
-
35
- // Static icon story
36
- export const Static = () => ({
37
- components: { SparkleIcon },
38
- template: `
39
- <div class="tw-flex tw-gap-4 tw-items-center">
40
- <SparkleIcon size="sm" />
41
- <SparkleIcon size="md" />
42
- <SparkleIcon size="lg" />
43
- </div>
44
- `,
45
- });
46
-
47
- Static.story = {
48
- name: 'Static Sizes',
49
- };
50
-
51
- // Animated icon story
52
- export const Animated = () => ({
53
- components: { SparkleIcon },
54
- template: `
55
- <div class="tw-flex tw-gap-4 tw-items-center">
56
- <SparkleIcon :animated="true" size="sm" />
57
- <SparkleIcon :animated="true" size="md" />
58
- <SparkleIcon :animated="true" size="lg" />
59
- </div>
60
- `,
61
- });
62
-
63
- Animated.story = {
64
- name: 'Animated Sizes',
65
- };
66
-
67
- // Custom sizes story
68
- export const CustomSizes = () => ({
69
- components: { SparkleIcon },
70
- template: `
71
- <div class="tw-flex tw-gap-4 tw-items-center">
72
- <SparkleIcon :size="12" />
73
- <SparkleIcon :size="16" />
74
- <SparkleIcon :size="20" />
75
- <SparkleIcon :size="24" />
76
- <SparkleIcon :size="32" />
77
- <SparkleIcon :size="48" />
78
- </div>
79
- `,
80
- });
81
-
82
- CustomSizes.story = {
83
- name: 'Custom Number Sizes',
84
- };
85
-
86
- // Interactive toggle story
87
- export const Interactive = () => ({
88
- components: { SparkleIcon },
89
- data() {
90
- return {
91
- isAnimated: false,
92
- };
93
- },
94
- template: `
95
- <div class="tw-flex tw-flex-col tw-gap-4">
96
- <div class="tw-flex tw-items-center tw-gap-4">
97
- <SparkleIcon :animated="isAnimated" size="lg" />
98
- <button
99
- class="tw-px-4 tw-py-2 tw-bg-primary-500 tw-text-white tw-rounded hover:tw-bg-blue-600"
100
- @click="isAnimated = !isAnimated"
101
- >
102
- {{ isAnimated ? 'Stop Animation' : 'Start Animation' }}
103
- </button>
104
- </div>
105
- <p class="tw-text-sm tw-text-gray-600">
106
- Click the button to toggle animation
107
- </p>
108
- </div>
109
- `,
110
- });
111
-
112
- Interactive.story = {
113
- name: 'Interactive Toggle',
114
- };
115
-
116
- // All variations showcase
117
- export const Showcase = () => ({
118
- components: { SparkleIcon },
119
- template: `
120
- <div class="tw-p-6">
121
- <h3 class="tw-text-lg tw-font-bold tw-mb-4">Sparkle Icon Showcase</h3>
122
-
123
- <div class="tw-mb-6">
124
- <h4 class="tw-text-md tw-font-semibold tw-mb-2">Static Icons</h4>
125
- <div class="tw-flex tw-gap-4 tw-items-center tw-p-4 tw-bg-gray-100 tw-rounded">
126
- <div class="tw-text-center">
127
- <SparkleIcon size="sm" />
128
- <p class="tw-text-xs tw-mt-1">Small (12px)</p>
129
- </div>
130
- <div class="tw-text-center">
131
- <SparkleIcon size="md" />
132
- <p class="tw-text-xs tw-mt-1">Medium (16px)</p>
133
- </div>
134
- <div class="tw-text-center">
135
- <SparkleIcon size="lg" />
136
- <p class="tw-text-xs tw-mt-1">Large (20px)</p>
137
- </div>
138
- </div>
139
- </div>
140
-
141
- <div class="tw-mb-6">
142
- <h4 class="tw-text-md tw-font-semibold tw-mb-2">Animated Icons</h4>
143
- <div class="tw-flex tw-gap-4 tw-items-center tw-p-4 tw-bg-gray-100 tw-rounded">
144
- <div class="tw-text-center">
145
- <SparkleIcon :animated="true" size="sm" />
146
- <p class="tw-text-xs tw-mt-1">Small (12px)</p>
147
- </div>
148
- <div class="tw-text-center">
149
- <SparkleIcon :animated="true" size="md" />
150
- <p class="tw-text-xs tw-mt-1">Medium (16px)</p>
151
- </div>
152
- <div class="tw-text-center">
153
- <SparkleIcon :animated="true" size="lg" />
154
- <p class="tw-text-xs tw-mt-1">Large (20px)</p>
155
- </div>
156
- </div>
157
- </div>
158
-
159
- <div>
160
- <h4 class="tw-text-md tw-font-semibold tw-mb-2">Custom Sizes</h4>
161
- <div class="tw-flex tw-gap-4 tw-items-center tw-p-4 tw-bg-gray-100 tw-rounded">
162
- <div class="tw-text-center">
163
- <SparkleIcon :animated="true" :size="24" />
164
- <p class="tw-text-xs tw-mt-1">24px</p>
165
- </div>
166
- <div class="tw-text-center">
167
- <SparkleIcon :animated="true" :size="32" />
168
- <p class="tw-text-xs tw-mt-1">32px</p>
169
- </div>
170
- <div class="tw-text-center">
171
- <SparkleIcon :animated="true" :size="48" />
172
- <p class="tw-text-xs tw-mt-1">48px</p>
173
- </div>
174
- </div>
175
- </div>
176
- </div>
177
- `,
178
- });
179
-
180
- Showcase.story = {
181
- name: 'Complete Showcase',
182
- };
1
+ import SparkleIcon from './SparkleIcon.vue';
2
+
3
+ export default {
4
+ title: 'Components/SparkleIcon',
5
+ component: SparkleIcon,
6
+ argTypes: {
7
+ animated: {
8
+ control: 'boolean',
9
+ description: 'Whether the sparkle icon should animate',
10
+ defaultValue: false,
11
+ },
12
+ size: {
13
+ control: { type: 'select' },
14
+ options: ['sm', 'md', 'lg', 12, 16, 20, 24, 32, 48],
15
+ description: 'Size of the icon (predefined or custom number)',
16
+ defaultValue: 'md',
17
+ },
18
+ },
19
+ };
20
+
21
+ // Default story
22
+ export const Default = (args) => ({
23
+ components: { SparkleIcon },
24
+ setup() {
25
+ return { args };
26
+ },
27
+ template: '<SparkleIcon v-bind="args" />',
28
+ });
29
+
30
+ Default.args = {
31
+ animated: false,
32
+ size: 'md',
33
+ };
34
+
35
+ // Static icon story
36
+ export const Static = () => ({
37
+ components: { SparkleIcon },
38
+ template: `
39
+ <div class="tw-flex tw-gap-4 tw-items-center">
40
+ <SparkleIcon size="sm" />
41
+ <SparkleIcon size="md" />
42
+ <SparkleIcon size="lg" />
43
+ </div>
44
+ `,
45
+ });
46
+
47
+ Static.story = {
48
+ name: 'Static Sizes',
49
+ };
50
+
51
+ // Animated icon story
52
+ export const Animated = () => ({
53
+ components: { SparkleIcon },
54
+ template: `
55
+ <div class="tw-flex tw-gap-4 tw-items-center tw-text-black">
56
+ <SparkleIcon :animated="true" size="sm" />
57
+ <SparkleIcon :animated="true" size="md" />
58
+ <SparkleIcon :animated="true" size="lg" :color-class="'tw-text-primary-500'" />
59
+ </div>
60
+ `,
61
+ });
62
+
63
+ Animated.story = {
64
+ name: 'Animated Sizes',
65
+ };
66
+
67
+ // Custom sizes story
68
+ export const CustomSizes = () => ({
69
+ components: { SparkleIcon },
70
+ template: `
71
+ <div class="tw-flex tw-gap-4 tw-items-center">
72
+ <SparkleIcon :size="12" />
73
+ <SparkleIcon :size="16" />
74
+ <SparkleIcon :size="20" />
75
+ <SparkleIcon :size="24" />
76
+ <SparkleIcon :size="32" />
77
+ <SparkleIcon :size="48" />
78
+ </div>
79
+ `,
80
+ });
81
+
82
+ CustomSizes.story = {
83
+ name: 'Custom Number Sizes',
84
+ };
85
+
86
+ // Interactive toggle story
87
+ export const Interactive = () => ({
88
+ components: { SparkleIcon },
89
+ data() {
90
+ return {
91
+ isAnimated: false,
92
+ };
93
+ },
94
+ template: `
95
+ <div class="tw-flex tw-flex-col tw-gap-4">
96
+ <div class="tw-flex tw-items-center tw-gap-4">
97
+ <SparkleIcon :animated="isAnimated" size="lg" />
98
+ <button
99
+ class="tw-px-4 tw-py-2 tw-bg-primary-500 tw-text-white tw-rounded hover:tw-bg-blue-600"
100
+ @click="isAnimated = !isAnimated"
101
+ >
102
+ {{ isAnimated ? 'Stop Animation' : 'Start Animation' }}
103
+ </button>
104
+ </div>
105
+ <p class="tw-text-sm tw-text-gray-600">
106
+ Click the button to toggle animation
107
+ </p>
108
+ </div>
109
+ `,
110
+ });
111
+
112
+ Interactive.story = {
113
+ name: 'Interactive Toggle',
114
+ };
115
+
116
+ // All variations showcase
117
+ export const Showcase = () => ({
118
+ components: { SparkleIcon },
119
+ template: `
120
+ <div class="tw-p-6">
121
+ <h3 class="tw-text-lg tw-font-bold tw-mb-4">Sparkle Icon Showcase</h3>
122
+
123
+ <div class="tw-mb-6">
124
+ <h4 class="tw-text-md tw-font-semibold tw-mb-2">Static Icons</h4>
125
+ <div class="tw-flex tw-gap-4 tw-items-center tw-p-4 tw-bg-gray-100 tw-rounded">
126
+ <div class="tw-text-center">
127
+ <SparkleIcon size="sm" />
128
+ <p class="tw-text-xs tw-mt-1">Small (12px)</p>
129
+ </div>
130
+ <div class="tw-text-center">
131
+ <SparkleIcon size="md" />
132
+ <p class="tw-text-xs tw-mt-1">Medium (16px)</p>
133
+ </div>
134
+ <div class="tw-text-center">
135
+ <SparkleIcon size="lg" />
136
+ <p class="tw-text-xs tw-mt-1">Large (20px)</p>
137
+ </div>
138
+ </div>
139
+ </div>
140
+
141
+ <div class="tw-mb-6">
142
+ <h4 class="tw-text-md tw-font-semibold tw-mb-2">Animated Icons</h4>
143
+ <div class="tw-flex tw-gap-4 tw-items-center tw-p-4 tw-bg-gray-100 tw-rounded">
144
+ <div class="tw-text-center">
145
+ <SparkleIcon :animated="true" size="sm" />
146
+ <p class="tw-text-xs tw-mt-1">Small (12px)</p>
147
+ </div>
148
+ <div class="tw-text-center">
149
+ <SparkleIcon :animated="true" size="md" />
150
+ <p class="tw-text-xs tw-mt-1">Medium (16px)</p>
151
+ </div>
152
+ <div class="tw-text-center">
153
+ <SparkleIcon :animated="true" size="lg" />
154
+ <p class="tw-text-xs tw-mt-1">Large (20px)</p>
155
+ </div>
156
+ </div>
157
+ </div>
158
+
159
+ <div>
160
+ <h4 class="tw-text-md tw-font-semibold tw-mb-2">Custom Sizes</h4>
161
+ <div class="tw-flex tw-gap-4 tw-items-center tw-p-4 tw-bg-gray-100 tw-rounded">
162
+ <div class="tw-text-center">
163
+ <SparkleIcon :animated="true" :size="24" />
164
+ <p class="tw-text-xs tw-mt-1">24px</p>
165
+ </div>
166
+ <div class="tw-text-center">
167
+ <SparkleIcon :animated="true" :size="32" />
168
+ <p class="tw-text-xs tw-mt-1">32px</p>
169
+ </div>
170
+ <div class="tw-text-center">
171
+ <SparkleIcon :animated="true" :size="48" />
172
+ <p class="tw-text-xs tw-mt-1">48px</p>
173
+ </div>
174
+ </div>
175
+ </div>
176
+ </div>
177
+ `,
178
+ });
179
+
180
+ Showcase.story = {
181
+ name: 'Complete Showcase',
182
+ };
@@ -1,105 +1,97 @@
1
- <template>
2
- <img :src="currentIcon" alt="AI" class="tw-flex-shrink-0" :style="sizeStyle" />
3
- </template>
4
-
5
- <script setup lang="ts">
6
- import { ref, computed, watch, onUnmounted } from 'vue';
7
- import sparkleIcon from './assets/sparkle.svg';
8
- import sparkleState01 from './assets/animations/state-01.svg';
9
- import sparkleState02 from './assets/animations/state-02.svg';
10
- import sparkleState03 from './assets/animations/state-03.svg';
11
- import sparkleState04 from './assets/animations/state-04.svg';
12
- import sparkleState05 from './assets/animations/state-05.svg';
13
- import sparkleState06 from './assets/animations/state-06.svg';
14
- import sparkleState07 from './assets/animations/state-07.svg';
15
- import sparkleState08 from './assets/animations/state-08.svg';
16
-
17
- interface SparkleIconProps {
18
- animated?: boolean;
19
- size?: 'sm' | 'md' | 'lg' | number;
20
- }
21
-
22
- const props = withDefaults(defineProps<SparkleIconProps>(), {
23
- animated: false,
24
- size: 'md',
25
- });
26
-
27
- // Size mapping
28
- const sizeMap = {
29
- sm: 12,
30
- md: 16,
31
- lg: 20,
32
- };
33
-
34
- // Computed style for size
35
- const sizeStyle = computed(() => {
36
- const sizeValue = typeof props.size === 'number' ? props.size : sizeMap[props.size];
37
-
38
- return {
39
- width: `${sizeValue}px`,
40
- height: `${sizeValue}px`,
41
- };
42
- });
43
-
44
- // Animation frames
45
- const sparkleFrames = [
46
- sparkleState01,
47
- sparkleState02,
48
- sparkleState03,
49
- sparkleState04,
50
- sparkleState05,
51
- sparkleState06,
52
- sparkleState07,
53
- sparkleState08,
54
- ];
55
-
56
- const currentFrame = ref(0);
57
- let animationInterval: number | null = null;
58
-
59
- // Computed property to return either static or animated icon
60
- const currentIcon = computed(() => {
61
- if (props.animated) {
62
- return sparkleFrames[currentFrame.value];
63
- }
64
-
65
- return sparkleIcon;
66
- });
67
-
68
- // Start animation
69
- const startAnimation = () => {
70
- if (animationInterval) return;
71
-
72
- currentFrame.value = 0;
73
- animationInterval = window.setInterval(() => {
74
- currentFrame.value = (currentFrame.value + 1) % sparkleFrames.length;
75
- }, 100); // Change frame every 100ms
76
- };
77
-
78
- // Stop animation
79
- const stopAnimation = () => {
80
- if (animationInterval) {
81
- clearInterval(animationInterval);
82
- animationInterval = null;
83
- }
84
-
85
- currentFrame.value = 0;
86
- };
87
-
88
- // Watch animated prop to control animation
89
- watch(
90
- () => props.animated,
91
- (isAnimated) => {
92
- if (isAnimated) {
93
- startAnimation();
94
- } else {
95
- stopAnimation();
96
- }
97
- },
98
- { immediate: true },
99
- );
100
-
101
- // Cleanup on unmount
102
- onUnmounted(() => {
103
- stopAnimation();
104
- });
105
- </script>
1
+ <template>
2
+ <svg
3
+ :width="sizeValue"
4
+ :height="sizeValue"
5
+ viewBox="0 0 20 20"
6
+ :class="['tw-flex-shrink-0', props.colorClass]"
7
+ :style="colorStyle"
8
+ >
9
+ <path v-for="(pathData, index) in currentPaths" :key="index" :d="pathData" fill="currentColor" />
10
+ </svg>
11
+ </template>
12
+
13
+ <script setup lang="ts">
14
+ import { ref, computed, watch, onUnmounted } from 'vue';
15
+ import { SPARKLE_PATHS } from './sparkle-paths';
16
+
17
+ interface SparkleIconProps {
18
+ animated?: boolean;
19
+ size?: 'sm' | 'md' | 'lg' | number;
20
+ color?: string;
21
+ colorClass?: string;
22
+ }
23
+
24
+ const props = withDefaults(defineProps<SparkleIconProps>(), {
25
+ animated: false,
26
+ size: 'md',
27
+ color: '#3F59F6',
28
+ colorClass: '',
29
+ });
30
+
31
+ // Size mapping
32
+ const sizeMap = {
33
+ sm: 12,
34
+ md: 16,
35
+ lg: 20,
36
+ };
37
+
38
+ // Computed size value
39
+ const sizeValue = computed(() => (typeof props.size === 'number' ? props.size : sizeMap[props.size]));
40
+
41
+ // Computed color style - only apply inline color if no colorClass is provided
42
+ const colorStyle = computed(() => {
43
+ if (props.colorClass) {
44
+ return undefined;
45
+ }
46
+ return { color: props.color };
47
+ });
48
+
49
+ const currentFrame = ref(0);
50
+ let animationInterval: number | null = null;
51
+
52
+ // Computed property to return current paths
53
+ const currentPaths = computed(() => {
54
+ if (props.animated) {
55
+ return SPARKLE_PATHS[currentFrame.value];
56
+ }
57
+ return SPARKLE_PATHS[0]; // Static icon uses first frame
58
+ });
59
+
60
+ // Start animation
61
+ const startAnimation = () => {
62
+ if (animationInterval) return;
63
+
64
+ currentFrame.value = 0;
65
+ animationInterval = window.setInterval(() => {
66
+ currentFrame.value = (currentFrame.value + 1) % SPARKLE_PATHS.length;
67
+ }, 100);
68
+ };
69
+
70
+ // Stop animation
71
+ const stopAnimation = () => {
72
+ if (animationInterval) {
73
+ clearInterval(animationInterval);
74
+ animationInterval = null;
75
+ }
76
+
77
+ currentFrame.value = 0;
78
+ };
79
+
80
+ // Watch animated prop to control animation
81
+ watch(
82
+ () => props.animated,
83
+ (isAnimated) => {
84
+ if (isAnimated) {
85
+ startAnimation();
86
+ } else {
87
+ stopAnimation();
88
+ }
89
+ },
90
+ { immediate: true },
91
+ );
92
+
93
+ // Cleanup on unmount
94
+ onUnmounted(() => {
95
+ stopAnimation();
96
+ });
97
+ </script>
@@ -1,5 +1,5 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M12.5 10C12.5 9.80469 12.4121 9.6582 12.2363 9.56055L8.95508 7.91992L7.28516 4.60938C7.20703 4.45312 7.07031 4.375 6.875 4.375C6.67969 4.375 6.54297 4.45312 6.46484 4.60938L4.79492 7.91992L1.51367 9.56055C1.33789 9.6582 1.25 9.80469 1.25 10C1.25 10.1953 1.33789 10.332 1.51367 10.4102L4.79492 12.0508L6.46484 15.3613C6.54297 15.5371 6.67969 15.625 6.875 15.625C7.07031 15.625 7.20703 15.5371 7.28516 15.3613L8.95508 12.0508L12.2363 10.4102C12.4121 10.332 12.5 10.1953 12.5 10Z" fill="#3F59F6"/>
3
- <path d="M11.5625 5.3125C11.5625 5.3776 11.5885 5.42318 11.6406 5.44922L12.8125 5.9375L13.3008 7.10938C13.3268 7.16146 13.3724 7.1875 13.4375 7.1875C13.5026 7.1875 13.5482 7.16146 13.5742 7.10938L14.0625 5.9375L15.2344 5.44922C15.2865 5.42318 15.3125 5.3776 15.3125 5.3125C15.3125 5.2474 15.2865 5.20182 15.2344 5.17578L14.0625 4.6875L13.5742 3.51562C13.5482 3.46354 13.5026 3.4375 13.4375 3.4375C13.3724 3.4375 13.3268 3.46354 13.3008 3.51562L12.8125 4.6875L11.6406 5.17578C11.5885 5.20182 11.5625 5.2474 11.5625 5.3125Z" fill="#3F59F6"/>
4
- <path d="M15.3125 14.6875C15.3125 14.6224 15.2865 14.5768 15.2344 14.5508L14.0625 14.0625L13.5742 12.8906C13.5482 12.8385 13.5026 12.8125 13.4375 12.8125C13.3724 12.8125 13.3268 12.8385 13.3008 12.8906L12.8125 14.0625L11.6406 14.5508C11.5885 14.5768 11.5625 14.6224 11.5625 14.6875C11.5625 14.7526 11.5885 14.7982 11.6406 14.8242L12.8125 15.3125L13.3008 16.4844C13.3268 16.5365 13.3724 16.5625 13.4375 16.5625C13.5026 16.5625 13.5482 16.5365 13.5742 16.4844L14.0625 15.3125L15.2344 14.8242C15.2865 14.7982 15.3125 14.7526 15.3125 14.6875Z" fill="#3F59F6"/>
5
- </svg>
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.5 10C12.5 9.80469 12.4121 9.6582 12.2363 9.56055L8.95508 7.91992L7.28516 4.60938C7.20703 4.45312 7.07031 4.375 6.875 4.375C6.67969 4.375 6.54297 4.45312 6.46484 4.60938L4.79492 7.91992L1.51367 9.56055C1.33789 9.6582 1.25 9.80469 1.25 10C1.25 10.1953 1.33789 10.332 1.51367 10.4102L4.79492 12.0508L6.46484 15.3613C6.54297 15.5371 6.67969 15.625 6.875 15.625C7.07031 15.625 7.20703 15.5371 7.28516 15.3613L8.95508 12.0508L12.2363 10.4102C12.4121 10.332 12.5 10.1953 12.5 10Z" fill="#3F59F6"/>
3
+ <path d="M11.5625 5.3125C11.5625 5.3776 11.5885 5.42318 11.6406 5.44922L12.8125 5.9375L13.3008 7.10938C13.3268 7.16146 13.3724 7.1875 13.4375 7.1875C13.5026 7.1875 13.5482 7.16146 13.5742 7.10938L14.0625 5.9375L15.2344 5.44922C15.2865 5.42318 15.3125 5.3776 15.3125 5.3125C15.3125 5.2474 15.2865 5.20182 15.2344 5.17578L14.0625 4.6875L13.5742 3.51562C13.5482 3.46354 13.5026 3.4375 13.4375 3.4375C13.3724 3.4375 13.3268 3.46354 13.3008 3.51562L12.8125 4.6875L11.6406 5.17578C11.5885 5.20182 11.5625 5.2474 11.5625 5.3125Z" fill="#3F59F6"/>
4
+ <path d="M15.3125 14.6875C15.3125 14.6224 15.2865 14.5768 15.2344 14.5508L14.0625 14.0625L13.5742 12.8906C13.5482 12.8385 13.5026 12.8125 13.4375 12.8125C13.3724 12.8125 13.3268 12.8385 13.3008 12.8906L12.8125 14.0625L11.6406 14.5508C11.5885 14.5768 11.5625 14.6224 11.5625 14.6875C11.5625 14.7526 11.5885 14.7982 11.6406 14.8242L12.8125 15.3125L13.3008 16.4844C13.3268 16.5365 13.3724 16.5625 13.4375 16.5625C13.5026 16.5625 13.5482 16.5365 13.5742 16.4844L14.0625 15.3125L15.2344 14.8242C15.2865 14.7982 15.3125 14.7526 15.3125 14.6875Z" fill="#3F59F6"/>
5
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M13.125 10C13.125 9.78299 13.0273 9.62023 12.832 9.51172L9.1862 7.6888L7.33073 4.01042C7.24392 3.83681 7.09201 3.75 6.875 3.75C6.65799 3.75 6.50608 3.83681 6.41927 4.01042L4.5638 7.6888L0.917969 9.51172C0.722656 9.62023 0.625 9.78299 0.625 10C0.625 10.217 0.722656 10.3689 0.917969 10.4557L4.5638 12.2786L6.41927 15.957C6.50608 16.1523 6.65799 16.25 6.875 16.25C7.09201 16.25 7.24392 16.1523 7.33073 15.957L9.1862 12.2786L12.832 10.4557C13.0273 10.3689 13.125 10.217 13.125 10Z" fill="#3F59F6"/>
3
- <path d="M12.5 5.3125C12.5 5.34505 12.513 5.36784 12.5391 5.38086L13.125 5.625L13.3691 6.21094C13.3822 6.23698 13.4049 6.25 13.4375 6.25C13.4701 6.25 13.4928 6.23698 13.5059 6.21094L13.75 5.625L14.3359 5.38086C14.362 5.36784 14.375 5.34505 14.375 5.3125C14.375 5.27995 14.362 5.25716 14.3359 5.24414L13.75 5L13.5059 4.41406C13.4928 4.38802 13.4701 4.375 13.4375 4.375C13.4049 4.375 13.3822 4.38802 13.3691 4.41406L13.125 5L12.5391 5.24414C12.513 5.25716 12.5 5.27995 12.5 5.3125Z" fill="#3F59F6"/>
4
- <path d="M14.375 14.6875C14.375 14.6549 14.362 14.6322 14.3359 14.6191L13.75 14.375L13.5059 13.7891C13.4928 13.763 13.4701 13.75 13.4375 13.75C13.4049 13.75 13.3822 13.763 13.3691 13.7891L13.125 14.375L12.5391 14.6191C12.513 14.6322 12.5 14.6549 12.5 14.6875C12.5 14.7201 12.513 14.7428 12.5391 14.7559L13.125 15L13.3691 15.5859C13.3822 15.612 13.4049 15.625 13.4375 15.625C13.4701 15.625 13.4928 15.612 13.5059 15.5859L13.75 15L14.3359 14.7559C14.362 14.7428 14.375 14.7201 14.375 14.6875Z" fill="#3F59F6"/>
5
- </svg>
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.125 10C13.125 9.78299 13.0273 9.62023 12.832 9.51172L9.1862 7.6888L7.33073 4.01042C7.24392 3.83681 7.09201 3.75 6.875 3.75C6.65799 3.75 6.50608 3.83681 6.41927 4.01042L4.5638 7.6888L0.917969 9.51172C0.722656 9.62023 0.625 9.78299 0.625 10C0.625 10.217 0.722656 10.3689 0.917969 10.4557L4.5638 12.2786L6.41927 15.957C6.50608 16.1523 6.65799 16.25 6.875 16.25C7.09201 16.25 7.24392 16.1523 7.33073 15.957L9.1862 12.2786L12.832 10.4557C13.0273 10.3689 13.125 10.217 13.125 10Z" fill="#3F59F6"/>
3
+ <path d="M12.5 5.3125C12.5 5.34505 12.513 5.36784 12.5391 5.38086L13.125 5.625L13.3691 6.21094C13.3822 6.23698 13.4049 6.25 13.4375 6.25C13.4701 6.25 13.4928 6.23698 13.5059 6.21094L13.75 5.625L14.3359 5.38086C14.362 5.36784 14.375 5.34505 14.375 5.3125C14.375 5.27995 14.362 5.25716 14.3359 5.24414L13.75 5L13.5059 4.41406C13.4928 4.38802 13.4701 4.375 13.4375 4.375C13.4049 4.375 13.3822 4.38802 13.3691 4.41406L13.125 5L12.5391 5.24414C12.513 5.25716 12.5 5.27995 12.5 5.3125Z" fill="#3F59F6"/>
4
+ <path d="M14.375 14.6875C14.375 14.6549 14.362 14.6322 14.3359 14.6191L13.75 14.375L13.5059 13.7891C13.4928 13.763 13.4701 13.75 13.4375 13.75C13.4049 13.75 13.3822 13.763 13.3691 13.7891L13.125 14.375L12.5391 14.6191C12.513 14.6322 12.5 14.6549 12.5 14.6875C12.5 14.7201 12.513 14.7428 12.5391 14.7559L13.125 15L13.3691 15.5859C13.3822 15.612 13.4049 15.625 13.4375 15.625C13.4701 15.625 13.4928 15.612 13.5059 15.5859L13.75 15L14.3359 14.7559C14.362 14.7428 14.375 14.7201 14.375 14.6875Z" fill="#3F59F6"/>
5
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M12.5 10C12.5 9.80469 12.4121 9.6582 12.2363 9.56055L8.95508 7.91992L7.28516 4.60938C7.20703 4.45312 7.07031 4.375 6.875 4.375C6.67969 4.375 6.54297 4.45312 6.46484 4.60938L4.79492 7.91992L1.51367 9.56055C1.33789 9.6582 1.25 9.80469 1.25 10C1.25 10.1953 1.33789 10.332 1.51367 10.4102L4.79492 12.0508L6.46484 15.3613C6.54297 15.5371 6.67969 15.625 6.875 15.625C7.07031 15.625 7.20703 15.5371 7.28516 15.3613L8.95508 12.0508L12.2363 10.4102C12.4121 10.332 12.5 10.1953 12.5 10Z" fill="#3F59F6"/>
3
- <path d="M11.5625 5.3125C11.5625 5.3776 11.5885 5.42318 11.6406 5.44922L12.8125 5.9375L13.3008 7.10938C13.3268 7.16146 13.3724 7.1875 13.4375 7.1875C13.5026 7.1875 13.5482 7.16146 13.5742 7.10938L14.0625 5.9375L15.2344 5.44922C15.2865 5.42318 15.3125 5.3776 15.3125 5.3125C15.3125 5.2474 15.2865 5.20182 15.2344 5.17578L14.0625 4.6875L13.5742 3.51562C13.5482 3.46354 13.5026 3.4375 13.4375 3.4375C13.3724 3.4375 13.3268 3.46354 13.3008 3.51562L12.8125 4.6875L11.6406 5.17578C11.5885 5.20182 11.5625 5.2474 11.5625 5.3125Z" fill="#3F59F6"/>
4
- <path d="M15.3125 14.6875C15.3125 14.6224 15.2865 14.5768 15.2344 14.5508L14.0625 14.0625L13.5742 12.8906C13.5482 12.8385 13.5026 12.8125 13.4375 12.8125C13.3724 12.8125 13.3268 12.8385 13.3008 12.8906L12.8125 14.0625L11.6406 14.5508C11.5885 14.5768 11.5625 14.6224 11.5625 14.6875C11.5625 14.7526 11.5885 14.7982 11.6406 14.8242L12.8125 15.3125L13.3008 16.4844C13.3268 16.5365 13.3724 16.5625 13.4375 16.5625C13.5026 16.5625 13.5482 16.5365 13.5742 16.4844L14.0625 15.3125L15.2344 14.8242C15.2865 14.7982 15.3125 14.7526 15.3125 14.6875Z" fill="#3F59F6"/>
5
- </svg>
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.5 10C12.5 9.80469 12.4121 9.6582 12.2363 9.56055L8.95508 7.91992L7.28516 4.60938C7.20703 4.45312 7.07031 4.375 6.875 4.375C6.67969 4.375 6.54297 4.45312 6.46484 4.60938L4.79492 7.91992L1.51367 9.56055C1.33789 9.6582 1.25 9.80469 1.25 10C1.25 10.1953 1.33789 10.332 1.51367 10.4102L4.79492 12.0508L6.46484 15.3613C6.54297 15.5371 6.67969 15.625 6.875 15.625C7.07031 15.625 7.20703 15.5371 7.28516 15.3613L8.95508 12.0508L12.2363 10.4102C12.4121 10.332 12.5 10.1953 12.5 10Z" fill="#3F59F6"/>
3
+ <path d="M11.5625 5.3125C11.5625 5.3776 11.5885 5.42318 11.6406 5.44922L12.8125 5.9375L13.3008 7.10938C13.3268 7.16146 13.3724 7.1875 13.4375 7.1875C13.5026 7.1875 13.5482 7.16146 13.5742 7.10938L14.0625 5.9375L15.2344 5.44922C15.2865 5.42318 15.3125 5.3776 15.3125 5.3125C15.3125 5.2474 15.2865 5.20182 15.2344 5.17578L14.0625 4.6875L13.5742 3.51562C13.5482 3.46354 13.5026 3.4375 13.4375 3.4375C13.3724 3.4375 13.3268 3.46354 13.3008 3.51562L12.8125 4.6875L11.6406 5.17578C11.5885 5.20182 11.5625 5.2474 11.5625 5.3125Z" fill="#3F59F6"/>
4
+ <path d="M15.3125 14.6875C15.3125 14.6224 15.2865 14.5768 15.2344 14.5508L14.0625 14.0625L13.5742 12.8906C13.5482 12.8385 13.5026 12.8125 13.4375 12.8125C13.3724 12.8125 13.3268 12.8385 13.3008 12.8906L12.8125 14.0625L11.6406 14.5508C11.5885 14.5768 11.5625 14.6224 11.5625 14.6875C11.5625 14.7526 11.5885 14.7982 11.6406 14.8242L12.8125 15.3125L13.3008 16.4844C13.3268 16.5365 13.3724 16.5625 13.4375 16.5625C13.5026 16.5625 13.5482 16.5365 13.5742 16.4844L14.0625 15.3125L15.2344 14.8242C15.2865 14.7982 15.3125 14.7526 15.3125 14.6875Z" fill="#3F59F6"/>
5
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M11.5625 10C11.5625 9.83724 11.4893 9.71517 11.3428 9.63379L8.6084 8.2666L7.2168 5.50781C7.15169 5.3776 7.03776 5.3125 6.875 5.3125C6.71224 5.3125 6.59831 5.3776 6.5332 5.50781L5.1416 8.2666L2.40723 9.63379C2.26074 9.71517 2.1875 9.83724 2.1875 10C2.1875 10.1628 2.26074 10.2767 2.40723 10.3418L5.1416 11.709L6.5332 14.4678C6.59831 14.6143 6.71224 14.6875 6.875 14.6875C7.03776 14.6875 7.15169 14.6143 7.2168 14.4678L8.6084 11.709L11.3428 10.3418C11.4893 10.2767 11.5625 10.1628 11.5625 10Z" fill="#3F59F6"/>
3
- <path d="M10.625 5.3125C10.625 5.41016 10.6641 5.47852 10.7422 5.51758L12.5 6.25L13.2324 8.00781C13.2715 8.08594 13.3398 8.125 13.4375 8.125C13.5352 8.125 13.6035 8.08594 13.6426 8.00781L14.375 6.25L16.1328 5.51758C16.2109 5.47852 16.25 5.41016 16.25 5.3125C16.25 5.21484 16.2109 5.14648 16.1328 5.10742L14.375 4.375L13.6426 2.61719C13.6035 2.53906 13.5352 2.5 13.4375 2.5C13.3398 2.5 13.2715 2.53906 13.2324 2.61719L12.5 4.375L10.7422 5.10742C10.6641 5.14648 10.625 5.21484 10.625 5.3125Z" fill="#3F59F6"/>
4
- <path d="M16.25 14.6875C16.25 14.5898 16.2109 14.5215 16.1328 14.4824L14.375 13.75L13.6426 11.9922C13.6035 11.9141 13.5352 11.875 13.4375 11.875C13.3398 11.875 13.2715 11.9141 13.2324 11.9922L12.5 13.75L10.7422 14.4824C10.6641 14.5215 10.625 14.5898 10.625 14.6875C10.625 14.7852 10.6641 14.8535 10.7422 14.8926L12.5 15.625L13.2324 17.3828C13.2715 17.4609 13.3398 17.5 13.4375 17.5C13.5352 17.5 13.6035 17.4609 13.6426 17.3828L14.375 15.625L16.1328 14.8926C16.2109 14.8535 16.25 14.7852 16.25 14.6875Z" fill="#3F59F6"/>
5
- </svg>
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.5625 10C11.5625 9.83724 11.4893 9.71517 11.3428 9.63379L8.6084 8.2666L7.2168 5.50781C7.15169 5.3776 7.03776 5.3125 6.875 5.3125C6.71224 5.3125 6.59831 5.3776 6.5332 5.50781L5.1416 8.2666L2.40723 9.63379C2.26074 9.71517 2.1875 9.83724 2.1875 10C2.1875 10.1628 2.26074 10.2767 2.40723 10.3418L5.1416 11.709L6.5332 14.4678C6.59831 14.6143 6.71224 14.6875 6.875 14.6875C7.03776 14.6875 7.15169 14.6143 7.2168 14.4678L8.6084 11.709L11.3428 10.3418C11.4893 10.2767 11.5625 10.1628 11.5625 10Z" fill="#3F59F6"/>
3
+ <path d="M10.625 5.3125C10.625 5.41016 10.6641 5.47852 10.7422 5.51758L12.5 6.25L13.2324 8.00781C13.2715 8.08594 13.3398 8.125 13.4375 8.125C13.5352 8.125 13.6035 8.08594 13.6426 8.00781L14.375 6.25L16.1328 5.51758C16.2109 5.47852 16.25 5.41016 16.25 5.3125C16.25 5.21484 16.2109 5.14648 16.1328 5.10742L14.375 4.375L13.6426 2.61719C13.6035 2.53906 13.5352 2.5 13.4375 2.5C13.3398 2.5 13.2715 2.53906 13.2324 2.61719L12.5 4.375L10.7422 5.10742C10.6641 5.14648 10.625 5.21484 10.625 5.3125Z" fill="#3F59F6"/>
4
+ <path d="M16.25 14.6875C16.25 14.5898 16.2109 14.5215 16.1328 14.4824L14.375 13.75L13.6426 11.9922C13.6035 11.9141 13.5352 11.875 13.4375 11.875C13.3398 11.875 13.2715 11.9141 13.2324 11.9922L12.5 13.75L10.7422 14.4824C10.6641 14.5215 10.625 14.5898 10.625 14.6875C10.625 14.7852 10.6641 14.8535 10.7422 14.8926L12.5 15.625L13.2324 17.3828C13.2715 17.4609 13.3398 17.5 13.4375 17.5C13.5352 17.5 13.6035 17.4609 13.6426 17.3828L14.375 15.625L16.1328 14.8926C16.2109 14.8535 16.25 14.7852 16.25 14.6875Z" fill="#3F59F6"/>
5
+ </svg>