@shohojdhara/atomix 0.3.1 → 0.3.3

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 (449) hide show
  1. package/CHANGELOG.md +0 -1
  2. package/README.md +41 -24
  3. package/dist/atomix.css +540 -666
  4. package/dist/atomix.min.css +3 -3
  5. package/dist/index.d.ts +7559 -5717
  6. package/dist/index.esm.js +5013 -2301
  7. package/dist/index.esm.js.map +1 -1
  8. package/dist/index.js +5084 -2356
  9. package/dist/index.js.map +1 -1
  10. package/dist/index.min.js +1 -1
  11. package/dist/index.min.js.map +1 -1
  12. package/dist/themes/applemix.css +1683 -722
  13. package/dist/themes/applemix.css.map +1 -0
  14. package/dist/themes/applemix.min.css +13 -10
  15. package/dist/themes/boomdevs.css +1358 -544
  16. package/dist/themes/boomdevs.css.map +1 -0
  17. package/dist/themes/boomdevs.min.css +13 -10
  18. package/dist/themes/esrar.css +1743 -718
  19. package/dist/themes/esrar.css.map +1 -0
  20. package/dist/themes/esrar.min.css +41 -7
  21. package/dist/themes/flashtrade.css +1735 -752
  22. package/dist/themes/flashtrade.css.map +1 -0
  23. package/dist/themes/flashtrade.min.css +19 -13
  24. package/dist/themes/mashroom.css +1765 -787
  25. package/dist/themes/mashroom.css.map +1 -0
  26. package/dist/themes/mashroom.min.css +87 -38
  27. package/dist/themes/shaj-default.css +1685 -713
  28. package/dist/themes/shaj-default.css.map +1 -0
  29. package/dist/themes/shaj-default.min.css +11 -7
  30. package/package.json +95 -26
  31. package/scripts/atomix-cli.js +1428 -0
  32. package/scripts/build-themes.js +208 -0
  33. package/scripts/cli/interactive-init.js +528 -0
  34. package/scripts/cli/migration-tools.js +603 -0
  35. package/scripts/cli/token-manager.js +519 -0
  36. package/scripts/sync-theme-config.js +309 -0
  37. package/src/components/List/ListGroup.tsx +1 -2
  38. package/src/components/Popover/Popover.tsx +2 -2
  39. package/src/components/Tooltip/Tooltip.stories.tsx +49 -12
  40. package/src/components/Tooltip/Tooltip.tsx +32 -58
  41. package/src/lib/composables/useAtomixGlass.ts +46 -46
  42. package/src/lib/composables/useTooltip.ts +285 -0
  43. package/src/lib/constants/cssVariables.ts +390 -0
  44. package/src/lib/hooks/__tests__/useComponentCustomization.test.ts +151 -0
  45. package/src/lib/hooks/index.ts +19 -0
  46. package/src/lib/hooks/useComponentCustomization.ts +175 -0
  47. package/src/lib/index.ts +10 -1
  48. package/src/lib/patterns/__tests__/slots.test.ts +108 -0
  49. package/src/lib/patterns/index.ts +35 -0
  50. package/src/lib/patterns/slots.tsx +421 -0
  51. package/src/lib/theme/__tests__/ThemeBuilder.test.ts +223 -0
  52. package/src/lib/theme/builders/ThemeBuilder.ts +372 -0
  53. package/src/lib/theme/config/index.ts +21 -0
  54. package/src/lib/theme/config/loader.ts +276 -0
  55. package/src/lib/theme/config/types.ts +98 -0
  56. package/src/lib/theme/config/validator.ts +326 -0
  57. package/src/lib/theme/constants.ts +183 -0
  58. package/src/lib/theme/core/ThemeCache.ts +283 -0
  59. package/src/lib/theme/core/ThemeEngine.test.ts +146 -0
  60. package/src/lib/theme/core/ThemeEngine.ts +657 -0
  61. package/src/lib/theme/core/ThemeRegistry.ts +284 -0
  62. package/src/lib/theme/core/ThemeValidator.ts +530 -0
  63. package/src/lib/theme/core/index.ts +24 -0
  64. package/src/lib/theme/createTheme.ts +83 -204
  65. package/src/lib/theme/cssVariableMapper.ts +261 -0
  66. package/src/lib/theme/devtools/CLI.ts +279 -0
  67. package/src/lib/theme/devtools/Inspector.tsx +594 -0
  68. package/src/lib/theme/devtools/Preview.tsx +392 -0
  69. package/src/lib/theme/devtools/index.ts +21 -0
  70. package/src/lib/theme/errors.test.ts +207 -0
  71. package/src/lib/theme/errors.ts +233 -0
  72. package/src/lib/theme/generateCSSVariables.ts +93 -9
  73. package/src/lib/theme/generators/CSSGenerator.ts +311 -0
  74. package/src/lib/theme/generators/ConfigGenerator.ts +287 -0
  75. package/src/lib/theme/generators/TypeGenerator.ts +228 -0
  76. package/src/lib/theme/generators/index.ts +21 -0
  77. package/src/lib/theme/i18n/index.ts +9 -0
  78. package/src/lib/theme/i18n/rtl.ts +325 -0
  79. package/src/lib/theme/index.ts +36 -109
  80. package/src/lib/theme/monitoring/ThemeAnalytics.ts +409 -0
  81. package/src/lib/theme/monitoring/index.ts +17 -0
  82. package/src/lib/theme/overrides/ComponentOverrides.ts +243 -0
  83. package/src/lib/theme/overrides/index.ts +15 -0
  84. package/src/lib/theme/runtime/ThemeApplicator.ts +252 -0
  85. package/src/lib/theme/runtime/ThemeErrorBoundary.tsx +233 -0
  86. package/src/lib/theme/runtime/ThemeManager.test.ts +176 -0
  87. package/src/lib/theme/runtime/ThemeManager.ts +442 -0
  88. package/src/lib/theme/runtime/ThemeProvider.tsx +318 -0
  89. package/src/lib/theme/runtime/index.ts +17 -0
  90. package/src/lib/theme/runtime/useTheme.ts +52 -0
  91. package/src/lib/theme/themeUtils.ts +27 -5
  92. package/src/lib/theme/types.ts +62 -1
  93. package/src/lib/theme/utils.ts +23 -22
  94. package/src/lib/theme/whitelabel/WhiteLabelManager.ts +364 -0
  95. package/src/lib/theme/whitelabel/index.ts +13 -0
  96. package/src/lib/theme-tools.ts +185 -0
  97. package/src/lib/types/components.ts +194 -0
  98. package/src/lib/types/partProps.ts +426 -0
  99. package/src/lib/utils/__tests__/componentUtils.test.ts +144 -0
  100. package/src/lib/utils/componentUtils.ts +163 -0
  101. package/src/lib/utils/index.ts +17 -57
  102. package/src/styles/01-settings/_settings.badge.scss +1 -1
  103. package/src/styles/01-settings/_settings.callout.scss +1 -1
  104. package/src/styles/01-settings/_settings.card.scss +1 -1
  105. package/src/styles/01-settings/_settings.colors.scss +10 -10
  106. package/src/styles/01-settings/_settings.input.scss +1 -1
  107. package/src/styles/01-settings/_settings.navbar.scss +1 -1
  108. package/src/styles/01-settings/_settings.tooltip.scss +1 -1
  109. package/src/styles/01-settings/_settings.upload.scss +1 -1
  110. package/src/styles/06-components/_components.chart.scss +2 -2
  111. package/src/styles/06-components/_components.tooltip.scss +31 -81
  112. package/src/styles/99-utilities/_utilities.border.scss +27 -58
  113. package/src/styles/99-utilities/_utilities.gradient.scss +12 -0
  114. package/src/styles/99-utilities/_utilities.position.scss +8 -15
  115. package/src/styles/99-utilities/_utilities.scss +2 -0
  116. package/src/styles/99-utilities/_utilities.spacing.scss +76 -121
  117. package/src/styles/99-utilities/_utilities.text.scss +30 -49
  118. package/src/themes/README.md +443 -0
  119. package/src/themes/THEME_CHECKLIST.md +74 -0
  120. package/src/themes/applemix/01-settings/_index.scss +24 -0
  121. package/src/themes/applemix/01-settings/_settings.animations.scss +0 -0
  122. package/src/themes/applemix/01-settings/_settings.background.scss +6 -0
  123. package/src/themes/applemix/01-settings/_settings.colors.scss +75 -0
  124. package/src/themes/applemix/01-settings/_settings.config.scss +15 -0
  125. package/src/themes/applemix/01-settings/_settings.typography.scss +30 -0
  126. package/src/themes/applemix/02-tools/_index.scss +4 -0
  127. package/src/themes/applemix/03-generic/_index.scss +7 -0
  128. package/src/themes/applemix/04-elements/_index.scss +7 -0
  129. package/src/themes/applemix/05-objects/_index.scss +7 -0
  130. package/src/themes/applemix/06-components/_index.scss +15 -0
  131. package/src/themes/applemix/99-utilities/_index.scss +7 -0
  132. package/src/themes/applemix/README.md +378 -0
  133. package/src/themes/applemix/index.scss +33 -0
  134. package/src/themes/boomdevs/01-settings/_index.scss +38 -0
  135. package/src/themes/boomdevs/01-settings/_settings.accordion.scss +12 -0
  136. package/src/themes/boomdevs/01-settings/_settings.animations.scss +11 -0
  137. package/src/themes/boomdevs/01-settings/_settings.avatar.scss +9 -0
  138. package/src/themes/boomdevs/01-settings/_settings.badge.scss +11 -0
  139. package/src/themes/boomdevs/01-settings/_settings.border-radius.scss +16 -0
  140. package/src/themes/boomdevs/01-settings/_settings.border.scss +10 -0
  141. package/src/themes/boomdevs/01-settings/_settings.box-shadow.scss +14 -0
  142. package/src/themes/boomdevs/01-settings/_settings.breadcrumb.scss +13 -0
  143. package/src/themes/boomdevs/01-settings/_settings.breakpoints.scss +15 -0
  144. package/src/themes/boomdevs/01-settings/_settings.button.scss +9 -0
  145. package/src/themes/boomdevs/01-settings/_settings.callout.scss +9 -0
  146. package/src/themes/boomdevs/01-settings/_settings.card.scss +11 -0
  147. package/src/themes/boomdevs/01-settings/_settings.checkbox.scss +9 -0
  148. package/src/themes/boomdevs/01-settings/_settings.colors.scss +145 -0
  149. package/src/themes/boomdevs/01-settings/_settings.dropdown.scss +11 -0
  150. package/src/themes/boomdevs/01-settings/_settings.grid.scss +16 -0
  151. package/src/themes/boomdevs/01-settings/_settings.input.scss +14 -0
  152. package/src/themes/boomdevs/01-settings/_settings.link.scss +11 -0
  153. package/src/themes/boomdevs/01-settings/_settings.list.scss +10 -0
  154. package/src/themes/boomdevs/01-settings/_settings.modal.scss +16 -0
  155. package/src/themes/boomdevs/01-settings/_settings.navbar.scss +16 -0
  156. package/src/themes/boomdevs/01-settings/_settings.pagination.scss +13 -0
  157. package/src/themes/boomdevs/01-settings/_settings.progress.scss +11 -0
  158. package/src/themes/boomdevs/01-settings/_settings.rating.scss +10 -0
  159. package/src/themes/boomdevs/01-settings/_settings.spacing.scss +33 -0
  160. package/src/themes/boomdevs/01-settings/_settings.spinner.scss +11 -0
  161. package/src/themes/boomdevs/01-settings/_settings.steps.scss +12 -0
  162. package/src/themes/boomdevs/01-settings/_settings.tabs.scss +12 -0
  163. package/src/themes/boomdevs/01-settings/_settings.todo.scss +15 -0
  164. package/src/themes/boomdevs/01-settings/_settings.toggle.scss +14 -0
  165. package/src/themes/boomdevs/01-settings/_settings.tooltip.scss +13 -0
  166. package/src/themes/boomdevs/01-settings/_settings.typography.scss +58 -0
  167. package/src/themes/boomdevs/01-settings/_settings.video-player.scss +12 -0
  168. package/src/themes/boomdevs/02-tools/_index.scss +7 -0
  169. package/src/themes/boomdevs/03-generic/_index.scss +7 -0
  170. package/src/themes/boomdevs/04-elements/_index.scss +7 -0
  171. package/src/themes/boomdevs/05-objects/_index.scss +7 -0
  172. package/src/themes/boomdevs/06-components/_components.button.scss +11 -0
  173. package/src/themes/boomdevs/06-components/_index.scss +11 -0
  174. package/src/themes/boomdevs/99-utilities/_index.scss +7 -0
  175. package/src/themes/boomdevs/index.scss +26 -0
  176. package/src/themes/esrar/01-settings/_index.scss +15 -0
  177. package/src/themes/esrar/01-settings/_settings.colors.scss +91 -0
  178. package/src/themes/esrar/02-tools/_index.scss +8 -0
  179. package/src/themes/esrar/02-tools/_tools.animations.scss +342 -0
  180. package/src/themes/esrar/06-components/_components.accordion.scss +49 -0
  181. package/src/themes/esrar/06-components/_components.avatar-group.scss +14 -0
  182. package/src/themes/esrar/06-components/_components.avatar.scss +61 -0
  183. package/src/themes/esrar/06-components/_components.badge.scss +117 -0
  184. package/src/themes/esrar/06-components/_components.breadcrumb.scss +65 -0
  185. package/src/themes/esrar/06-components/_components.btn-group.scss +19 -0
  186. package/src/themes/esrar/06-components/_components.button.scss +224 -0
  187. package/src/themes/esrar/06-components/_components.callout.scss +51 -0
  188. package/src/themes/esrar/06-components/_components.card.scss +134 -0
  189. package/src/themes/esrar/06-components/_components.chart.scss +24 -0
  190. package/src/themes/esrar/06-components/_components.checkbox-group.scss +26 -0
  191. package/src/themes/esrar/06-components/_components.checkbox.scss +71 -0
  192. package/src/themes/esrar/06-components/_components.color-mode-toggle.scss +29 -0
  193. package/src/themes/esrar/06-components/_components.countdown.scss +67 -0
  194. package/src/themes/esrar/06-components/_components.data-table.scss +22 -0
  195. package/src/themes/esrar/06-components/_components.datepicker.scss +20 -0
  196. package/src/themes/esrar/06-components/_components.dropdown.scss +272 -0
  197. package/src/themes/esrar/06-components/_components.edge-panel.scss +10 -0
  198. package/src/themes/esrar/06-components/_components.form-group.scss +15 -0
  199. package/src/themes/esrar/06-components/_components.form.scss +66 -0
  200. package/src/themes/esrar/06-components/_components.hero.scss +251 -0
  201. package/src/themes/esrar/06-components/_components.icon.scss +33 -0
  202. package/src/themes/esrar/06-components/_components.image-gallery.scss +29 -0
  203. package/src/themes/esrar/06-components/_components.input.scss +91 -0
  204. package/src/themes/esrar/06-components/_components.list-group.scss +26 -0
  205. package/src/themes/esrar/06-components/_components.modal.scss +148 -0
  206. package/src/themes/esrar/06-components/_components.notification.scss +80 -0
  207. package/src/themes/esrar/06-components/_components.pagination.scss +84 -0
  208. package/src/themes/esrar/06-components/_components.popover.scss +10 -0
  209. package/src/themes/esrar/06-components/_components.progress.scss +64 -0
  210. package/src/themes/esrar/06-components/_components.rating.scss +26 -0
  211. package/src/themes/esrar/06-components/_components.skeleton.scss +15 -0
  212. package/src/themes/esrar/06-components/_components.slider.scss +90 -0
  213. package/src/themes/esrar/06-components/_components.spinner.scss +71 -0
  214. package/src/themes/esrar/06-components/_components.steps.scss +76 -0
  215. package/src/themes/esrar/06-components/_components.tab.scss +58 -0
  216. package/src/themes/esrar/06-components/_components.tag.scss +21 -0
  217. package/src/themes/esrar/06-components/_components.timeline.scss +19 -0
  218. package/src/themes/esrar/06-components/_components.toast.scss +91 -0
  219. package/src/themes/esrar/06-components/_components.toggle.scss +74 -0
  220. package/src/themes/esrar/06-components/_components.tooltip.scss +45 -0
  221. package/src/themes/esrar/06-components/_components.upload.scss +102 -0
  222. package/src/themes/esrar/06-components/_index.scss +42 -0
  223. package/src/themes/esrar/index.scss +30 -0
  224. package/src/themes/flashtrade/01-settings/_index.scss +19 -0
  225. package/src/themes/flashtrade/01-settings/_settings.animations.scss +11 -0
  226. package/src/themes/flashtrade/01-settings/_settings.background.scss +9 -0
  227. package/src/themes/flashtrade/01-settings/_settings.colors.scss +79 -0
  228. package/src/themes/flashtrade/01-settings/_settings.config.scss +16 -0
  229. package/src/themes/flashtrade/01-settings/_settings.typography.scss +35 -0
  230. package/src/themes/flashtrade/02-tools/_index.scss +8 -0
  231. package/src/themes/flashtrade/03-generic/_index.scss +8 -0
  232. package/src/themes/flashtrade/04-elements/_index.scss +12 -0
  233. package/src/themes/flashtrade/05-objects/_index.scss +8 -0
  234. package/src/themes/flashtrade/06-components/_components.badge.scss +156 -0
  235. package/src/themes/flashtrade/06-components/_components.button.scss +135 -0
  236. package/src/themes/flashtrade/06-components/_components.card.scss +214 -0
  237. package/src/themes/flashtrade/06-components/_components.navbar.scss +227 -0
  238. package/src/themes/flashtrade/06-components/_index.scss +13 -0
  239. package/src/themes/flashtrade/99-utilities/_index.scss +9 -0
  240. package/src/themes/flashtrade/99-utilities/_utilities.trading.scss +187 -0
  241. package/src/themes/flashtrade/README.md +386 -0
  242. package/src/themes/flashtrade/demo.html +272 -0
  243. package/src/themes/flashtrade/index.scss +36 -0
  244. package/src/themes/mashroom/01-settings/_index.scss +69 -0
  245. package/src/themes/mashroom/01-settings/_settings.accordion.scss +32 -0
  246. package/src/themes/mashroom/01-settings/_settings.animations.scss +26 -0
  247. package/src/themes/mashroom/01-settings/_settings.avatar-group.scss +22 -0
  248. package/src/themes/mashroom/01-settings/_settings.avatar.scss +57 -0
  249. package/src/themes/mashroom/01-settings/_settings.badge.scss +19 -0
  250. package/src/themes/mashroom/01-settings/_settings.border-radius.scss +24 -0
  251. package/src/themes/mashroom/01-settings/_settings.border.scss +14 -0
  252. package/src/themes/mashroom/01-settings/_settings.box-shadow.scss +40 -0
  253. package/src/themes/mashroom/01-settings/_settings.breadcrumb.scss +0 -0
  254. package/src/themes/mashroom/01-settings/_settings.breakpoints.scss +17 -0
  255. package/src/themes/mashroom/01-settings/_settings.btn-group.scss +5 -0
  256. package/src/themes/mashroom/01-settings/_settings.button.scss +50 -0
  257. package/src/themes/mashroom/01-settings/_settings.callout.scss +81 -0
  258. package/src/themes/mashroom/01-settings/_settings.card.scss +52 -0
  259. package/src/themes/mashroom/01-settings/_settings.checkbox-group.scss +5 -0
  260. package/src/themes/mashroom/01-settings/_settings.checkbox.scss +23 -0
  261. package/src/themes/mashroom/01-settings/_settings.color-mode.scss +7 -0
  262. package/src/themes/mashroom/01-settings/_settings.colors.scss +180 -0
  263. package/src/themes/mashroom/01-settings/_settings.config.scss +4 -0
  264. package/src/themes/mashroom/01-settings/_settings.countdown.scss +20 -0
  265. package/src/themes/mashroom/01-settings/_settings.data-table.scss +56 -0
  266. package/src/themes/mashroom/01-settings/_settings.datepicker.scss +45 -0
  267. package/src/themes/mashroom/01-settings/_settings.design-tokens.scss +3 -0
  268. package/src/themes/mashroom/01-settings/_settings.dropdown.scss +45 -0
  269. package/src/themes/mashroom/01-settings/_settings.edge-panel.scss +24 -0
  270. package/src/themes/mashroom/01-settings/_settings.fonts.scss +8 -0
  271. package/src/themes/mashroom/01-settings/_settings.form-group.scss +14 -0
  272. package/src/themes/mashroom/01-settings/_settings.form.scss +6 -0
  273. package/src/themes/mashroom/01-settings/_settings.grid.scss +23 -0
  274. package/src/themes/mashroom/01-settings/_settings.hero.scss +41 -0
  275. package/src/themes/mashroom/01-settings/_settings.input.scss +51 -0
  276. package/src/themes/mashroom/01-settings/_settings.link.scss +13 -0
  277. package/src/themes/mashroom/01-settings/_settings.list-group.scss +16 -0
  278. package/src/themes/mashroom/01-settings/_settings.list.scss +13 -0
  279. package/src/themes/mashroom/01-settings/_settings.masonry-grid.scss +23 -0
  280. package/src/themes/mashroom/01-settings/_settings.menu.scss +50 -0
  281. package/src/themes/mashroom/01-settings/_settings.messages.scss +98 -0
  282. package/src/themes/mashroom/01-settings/_settings.modal.scss +41 -0
  283. package/src/themes/mashroom/01-settings/_settings.nav.scss +20 -0
  284. package/src/themes/mashroom/01-settings/_settings.navbar.scss +54 -0
  285. package/src/themes/mashroom/01-settings/_settings.pagination.scss +30 -0
  286. package/src/themes/mashroom/01-settings/_settings.photoviewer.scss +45 -0
  287. package/src/themes/mashroom/01-settings/_settings.popover.scss +20 -0
  288. package/src/themes/mashroom/01-settings/_settings.position.scss +9 -0
  289. package/src/themes/mashroom/01-settings/_settings.progress.scss +17 -0
  290. package/src/themes/mashroom/01-settings/_settings.rating.scss +11 -0
  291. package/src/themes/mashroom/01-settings/_settings.river.scss +50 -0
  292. package/src/themes/mashroom/01-settings/_settings.sectionintro.scss +31 -0
  293. package/src/themes/mashroom/01-settings/_settings.select.scss +47 -0
  294. package/src/themes/mashroom/01-settings/_settings.side-menu.scss +79 -0
  295. package/src/themes/mashroom/01-settings/_settings.skeleton.scss +24 -0
  296. package/src/themes/mashroom/01-settings/_settings.spacing.scss +66 -0
  297. package/src/themes/mashroom/01-settings/_settings.spinner.scss +34 -0
  298. package/src/themes/mashroom/01-settings/_settings.steps.scss +33 -0
  299. package/src/themes/mashroom/01-settings/_settings.tabs.scss +33 -0
  300. package/src/themes/mashroom/01-settings/_settings.testimonials.scss +24 -0
  301. package/src/themes/mashroom/01-settings/_settings.todo.scss +52 -0
  302. package/src/themes/mashroom/01-settings/_settings.toggle.scss +49 -0
  303. package/src/themes/mashroom/01-settings/_settings.tooltip.scss +20 -0
  304. package/src/themes/mashroom/01-settings/_settings.typography.scss +95 -0
  305. package/src/themes/mashroom/01-settings/_settings.upload.scss +96 -0
  306. package/src/themes/mashroom/01-settings/_settings.z-layers.scss +19 -0
  307. package/src/themes/mashroom/02-tools/_index.scss +8 -0
  308. package/src/themes/mashroom/02-tools/_tools.psychedelic-gradients.scss +78 -0
  309. package/src/themes/mashroom/02-tools/_tools.trippy-effects.scss +114 -0
  310. package/src/themes/mashroom/03-generic/_index.scss +6 -0
  311. package/src/themes/mashroom/04-elements/_index.scss +6 -0
  312. package/src/themes/mashroom/05-objects/_index.scss +6 -0
  313. package/src/themes/mashroom/06-components/_components.accordion.scss +187 -0
  314. package/src/themes/mashroom/06-components/_components.avatar-group.scss +276 -0
  315. package/src/themes/mashroom/06-components/_components.avatar.scss +114 -0
  316. package/src/themes/mashroom/06-components/_components.badge.scss +152 -0
  317. package/src/themes/mashroom/06-components/_components.breadcrumb.scss +162 -0
  318. package/src/themes/mashroom/06-components/_components.btn-group.scss +404 -0
  319. package/src/themes/mashroom/06-components/_components.button.scss +160 -0
  320. package/src/themes/mashroom/06-components/_components.callout.scss +140 -0
  321. package/src/themes/mashroom/06-components/_components.card.scss +225 -0
  322. package/src/themes/mashroom/06-components/_components.checkbox.scss +186 -0
  323. package/src/themes/mashroom/06-components/_components.color-mode-toggle.scss +308 -0
  324. package/src/themes/mashroom/06-components/_components.countdown.scss +402 -0
  325. package/src/themes/mashroom/06-components/_components.data-table.scss +354 -0
  326. package/src/themes/mashroom/06-components/_components.datepicker.scss +349 -0
  327. package/src/themes/mashroom/06-components/_components.dropdown.scss +334 -0
  328. package/src/themes/mashroom/06-components/_components.edge-panel.scss +413 -0
  329. package/src/themes/mashroom/06-components/_components.form-group.scss +433 -0
  330. package/src/themes/mashroom/06-components/_components.form.scss +358 -0
  331. package/src/themes/mashroom/06-components/_components.hero.scss +151 -0
  332. package/src/themes/mashroom/06-components/_components.input.scss +147 -0
  333. package/src/themes/mashroom/06-components/_components.list-group.scss +456 -0
  334. package/src/themes/mashroom/06-components/_components.list.scss +145 -0
  335. package/src/themes/mashroom/06-components/_components.menu.scss +497 -0
  336. package/src/themes/mashroom/06-components/_components.messages.scss +277 -0
  337. package/src/themes/mashroom/06-components/_components.modal.scss +264 -0
  338. package/src/themes/mashroom/06-components/_components.nav.scss +181 -0
  339. package/src/themes/mashroom/06-components/_components.navbar.scss +538 -0
  340. package/src/themes/mashroom/06-components/_components.pagination.scss +400 -0
  341. package/src/themes/mashroom/06-components/_components.photoviewer.scss +498 -0
  342. package/src/themes/mashroom/06-components/_components.popover.scss +383 -0
  343. package/src/themes/mashroom/06-components/_components.product-review.scss +408 -0
  344. package/src/themes/mashroom/06-components/_components.progress.scss +249 -0
  345. package/src/themes/mashroom/06-components/_components.rating.scss +300 -0
  346. package/src/themes/mashroom/06-components/_components.river.scss +570 -0
  347. package/src/themes/mashroom/06-components/_components.sectionintro.scss +546 -0
  348. package/src/themes/mashroom/06-components/_components.select.scss +455 -0
  349. package/src/themes/mashroom/06-components/_components.side-menu.scss +635 -0
  350. package/src/themes/mashroom/06-components/_components.skeleton.scss +447 -0
  351. package/src/themes/mashroom/06-components/_components.slider.scss +414 -0
  352. package/src/themes/mashroom/06-components/_components.spinner.scss +198 -0
  353. package/src/themes/mashroom/06-components/_components.steps.scss +350 -0
  354. package/src/themes/mashroom/06-components/_components.tabs.scss +269 -0
  355. package/src/themes/mashroom/06-components/_components.testimonials.scss +561 -0
  356. package/src/themes/mashroom/06-components/_components.toggle.scss +231 -0
  357. package/src/themes/mashroom/06-components/_components.tooltip.scss +167 -0
  358. package/src/themes/mashroom/06-components/_components.upload.scss +537 -0
  359. package/src/themes/mashroom/06-components/_components.video-player.scss +560 -0
  360. package/src/themes/mashroom/06-components/_index.scss +55 -0
  361. package/src/themes/mashroom/99-utilities/_index.scss +6 -0
  362. package/src/themes/mashroom/index.scss +26 -0
  363. package/src/themes/shaj-default/01-settings/_index.scss +69 -0
  364. package/src/themes/shaj-default/01-settings/_settings.accordion.scss +38 -0
  365. package/src/themes/shaj-default/01-settings/_settings.animations.scss +32 -0
  366. package/src/themes/shaj-default/01-settings/_settings.avatar-group.scss +28 -0
  367. package/src/themes/shaj-default/01-settings/_settings.avatar.scss +63 -0
  368. package/src/themes/shaj-default/01-settings/_settings.badge.scss +25 -0
  369. package/src/themes/shaj-default/01-settings/_settings.border-radius.scss +24 -0
  370. package/src/themes/shaj-default/01-settings/_settings.border.scss +20 -0
  371. package/src/themes/shaj-default/01-settings/_settings.box-shadow.scss +46 -0
  372. package/src/themes/shaj-default/01-settings/_settings.breadcrumb.scss +0 -0
  373. package/src/themes/shaj-default/01-settings/_settings.breakpoints.scss +23 -0
  374. package/src/themes/shaj-default/01-settings/_settings.btn-group.scss +11 -0
  375. package/src/themes/shaj-default/01-settings/_settings.button.scss +56 -0
  376. package/src/themes/shaj-default/01-settings/_settings.callout.scss +87 -0
  377. package/src/themes/shaj-default/01-settings/_settings.card.scss +52 -0
  378. package/src/themes/shaj-default/01-settings/_settings.checkbox-group.scss +11 -0
  379. package/src/themes/shaj-default/01-settings/_settings.checkbox.scss +29 -0
  380. package/src/themes/shaj-default/01-settings/_settings.color-mode.scss +13 -0
  381. package/src/themes/shaj-default/01-settings/_settings.colors.scss +91 -0
  382. package/src/themes/shaj-default/01-settings/_settings.config.scss +4 -0
  383. package/src/themes/shaj-default/01-settings/_settings.countdown.scss +26 -0
  384. package/src/themes/shaj-default/01-settings/_settings.data-table.scss +62 -0
  385. package/src/themes/shaj-default/01-settings/_settings.datepicker.scss +51 -0
  386. package/src/themes/shaj-default/01-settings/_settings.design-tokens.scss +9 -0
  387. package/src/themes/shaj-default/01-settings/_settings.dropdown.scss +51 -0
  388. package/src/themes/shaj-default/01-settings/_settings.edge-panel.scss +30 -0
  389. package/src/themes/shaj-default/01-settings/_settings.fonts.scss +13 -0
  390. package/src/themes/shaj-default/01-settings/_settings.form-group.scss +20 -0
  391. package/src/themes/shaj-default/01-settings/_settings.form.scss +12 -0
  392. package/src/themes/shaj-default/01-settings/_settings.grid.scss +29 -0
  393. package/src/themes/shaj-default/01-settings/_settings.hero.scss +47 -0
  394. package/src/themes/shaj-default/01-settings/_settings.input.scss +57 -0
  395. package/src/themes/shaj-default/01-settings/_settings.link.scss +19 -0
  396. package/src/themes/shaj-default/01-settings/_settings.list-group.scss +22 -0
  397. package/src/themes/shaj-default/01-settings/_settings.list.scss +19 -0
  398. package/src/themes/shaj-default/01-settings/_settings.masonry-grid.scss +29 -0
  399. package/src/themes/shaj-default/01-settings/_settings.menu.scss +56 -0
  400. package/src/themes/shaj-default/01-settings/_settings.messages.scss +104 -0
  401. package/src/themes/shaj-default/01-settings/_settings.modal.scss +47 -0
  402. package/src/themes/shaj-default/01-settings/_settings.nav.scss +26 -0
  403. package/src/themes/shaj-default/01-settings/_settings.navbar.scss +60 -0
  404. package/src/themes/shaj-default/01-settings/_settings.pagination.scss +36 -0
  405. package/src/themes/shaj-default/01-settings/_settings.photoviewer.scss +51 -0
  406. package/src/themes/shaj-default/01-settings/_settings.popover.scss +26 -0
  407. package/src/themes/shaj-default/01-settings/_settings.position.scss +15 -0
  408. package/src/themes/shaj-default/01-settings/_settings.progress.scss +23 -0
  409. package/src/themes/shaj-default/01-settings/_settings.rating.scss +17 -0
  410. package/src/themes/shaj-default/01-settings/_settings.river.scss +56 -0
  411. package/src/themes/shaj-default/01-settings/_settings.sectionintro.scss +37 -0
  412. package/src/themes/shaj-default/01-settings/_settings.select.scss +53 -0
  413. package/src/themes/shaj-default/01-settings/_settings.side-menu.scss +85 -0
  414. package/src/themes/shaj-default/01-settings/_settings.skeleton.scss +30 -0
  415. package/src/themes/shaj-default/01-settings/_settings.spacing.scss +72 -0
  416. package/src/themes/shaj-default/01-settings/_settings.spinner.scss +24 -0
  417. package/src/themes/shaj-default/01-settings/_settings.steps.scss +39 -0
  418. package/src/themes/shaj-default/01-settings/_settings.tabs.scss +39 -0
  419. package/src/themes/shaj-default/01-settings/_settings.testimonials.scss +30 -0
  420. package/src/themes/shaj-default/01-settings/_settings.todo.scss +58 -0
  421. package/src/themes/shaj-default/01-settings/_settings.toggle.scss +55 -0
  422. package/src/themes/shaj-default/01-settings/_settings.tooltip.scss +26 -0
  423. package/src/themes/shaj-default/01-settings/_settings.typography.scss +101 -0
  424. package/src/themes/shaj-default/01-settings/_settings.upload.scss +102 -0
  425. package/src/themes/shaj-default/01-settings/_settings.z-layers.scss +25 -0
  426. package/src/themes/shaj-default/02-tools/_index.scss +0 -0
  427. package/src/themes/shaj-default/03-generic/_generic.root.scss +0 -0
  428. package/src/themes/shaj-default/03-generic/_index.scss +2 -0
  429. package/src/themes/shaj-default/04-elements/_index.scss +0 -0
  430. package/src/themes/shaj-default/05-objects/_index.scss +0 -0
  431. package/src/themes/shaj-default/06-components/_components.button.scss +55 -0
  432. package/src/themes/shaj-default/06-components/_components.card.scss +57 -0
  433. package/src/themes/shaj-default/06-components/_components.input.scss +58 -0
  434. package/src/themes/shaj-default/06-components/_components.navbar.scss +99 -0
  435. package/src/themes/shaj-default/06-components/_components.tooltip.scss +0 -0
  436. package/src/themes/shaj-default/06-components/_index.scss +13 -0
  437. package/src/themes/shaj-default/99-utilities/_index.scss +0 -0
  438. package/src/themes/shaj-default/index.scss +25 -0
  439. package/src/themes/themes.config.js +219 -0
  440. package/theme.config.ts +360 -0
  441. package/src/lib/theme/ThemeManager.integration.test.ts +0 -124
  442. package/src/lib/theme/ThemeManager.stories.tsx +0 -472
  443. package/src/lib/theme/ThemeManager.test.ts +0 -190
  444. package/src/lib/theme/ThemeManager.ts +0 -645
  445. package/src/lib/theme/ThemeProvider.tsx +0 -377
  446. package/src/lib/theme/createTheme.test.ts +0 -475
  447. package/src/lib/theme/useTheme.test.tsx +0 -67
  448. package/src/lib/theme/useTheme.ts +0 -64
  449. package/src/lib/theme/utils.test.ts +0 -140
@@ -0,0 +1,350 @@
1
+ /*!
2
+ * Mashroom Theme Steps Component
3
+ * Psychedelic mushroom-inspired theme with trippy visuals
4
+ */
5
+
6
+ // Import required tools and settings
7
+ @use '../02-tools/tools.trippy-effects' as trippy;
8
+ @use '../02-tools/tools.psychedelic-gradients' as gradients;
9
+ @use '../01-settings/settings.colors' as *;
10
+
11
+ // Psychedelic steps animations
12
+ @keyframes steps-float {
13
+ 0%,
14
+ 100% {
15
+ transform: translateY(0px);
16
+ }
17
+ 50% {
18
+ transform: translateY(-3px);
19
+ }
20
+ }
21
+
22
+ @keyframes steps-glow-pulse {
23
+ 0%,
24
+ 100% {
25
+ box-shadow: 0 0 5px rgba(157, 0, 255, 0.3);
26
+ }
27
+ 50% {
28
+ box-shadow:
29
+ 0 0 10px rgba(157, 0, 255, 0.6),
30
+ 0 0 20px rgba(255, 32, 133, 0.4);
31
+ }
32
+ }
33
+
34
+ @keyframes steps-connector-pulse {
35
+ 0%,
36
+ 100% {
37
+ opacity: 0.5;
38
+ }
39
+ 50% {
40
+ opacity: 1;
41
+ }
42
+ }
43
+
44
+ @keyframes steps-title-pulse {
45
+ 0%,
46
+ 100% {
47
+ box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
48
+ }
49
+ 50% {
50
+ box-shadow:
51
+ 0 0 6px rgba(255, 255, 255, 0.6),
52
+ 0 0 12px rgba(157, 0, 255, 0.4);
53
+ }
54
+ }
55
+
56
+ .c-steps {
57
+ $root: &;
58
+
59
+ // Add psychedelic background
60
+ @include gradients.rainbow-gradient();
61
+ background-size: 300% 300%;
62
+
63
+ // Add floating animation
64
+ @include trippy.float-animation();
65
+
66
+ // Add color shift effect
67
+ @include trippy.color-shift();
68
+
69
+ // Add pulse animation
70
+ animation:
71
+ rainbow-shift 4s ease infinite,
72
+ steps-glow-pulse 2s infinite;
73
+
74
+ padding: 2rem;
75
+ border-radius: 1rem;
76
+ position: relative;
77
+ overflow: hidden;
78
+
79
+ // Step item
80
+ &__item {
81
+ display: flex;
82
+ align-items: flex-start;
83
+ position: relative;
84
+ padding-bottom: 2rem;
85
+
86
+ // Connector line between steps
87
+ &::after {
88
+ content: '';
89
+ position: absolute;
90
+ top: 2.5rem;
91
+ left: 1.25rem;
92
+ bottom: -1rem;
93
+ width: 2px;
94
+ background: rgba($white, 0.2);
95
+ z-index: 1;
96
+ animation: steps-connector-pulse 2s infinite;
97
+ }
98
+
99
+ // Last item should not have connector
100
+ &:last-child::after {
101
+ display: none;
102
+ }
103
+ }
104
+
105
+ // Step icon container
106
+ &__icon {
107
+ position: relative;
108
+ z-index: 2;
109
+
110
+ // Add glow effect
111
+ @include trippy.trippy-glow(rgba(157, 0, 255, 0.3), 5px);
112
+
113
+ // Add floating animation to icon
114
+ @include trippy.float-animation();
115
+ animation-duration: 3s;
116
+
117
+ // Add pulse animation
118
+ animation: steps-glow-pulse 2s infinite;
119
+ }
120
+
121
+ // Step number
122
+ &__number {
123
+ color: $white;
124
+ font-weight: bold;
125
+ font-size: 1.1rem;
126
+
127
+ // Add floating effect
128
+ @include trippy.float-animation();
129
+ animation-duration: 4s;
130
+ }
131
+
132
+ // Step content
133
+ &__content {
134
+ flex: 1;
135
+ }
136
+
137
+ // Step title
138
+ &__title {
139
+ font-weight: 600;
140
+ margin-bottom: 0.5rem;
141
+ color: $white;
142
+ font-size: 1.2rem;
143
+
144
+ // Add glow effect to title
145
+ @include trippy.trippy-glow(rgba(255, 255, 255, 0.3), 3px);
146
+
147
+ // Add pulse animation
148
+ animation: steps-title-pulse 2s infinite;
149
+ }
150
+
151
+ // Step description
152
+ &__description {
153
+ color: rgba($white, 0.8);
154
+ line-height: 1.5;
155
+
156
+ // Add subtle floating effect
157
+ @include trippy.float-animation();
158
+ animation-duration: 5s;
159
+ }
160
+
161
+ // Completed step
162
+ &__item--completed {
163
+ #{$root}__icon {
164
+ background: linear-gradient(90deg, #9d00ff, #d080ff, #00ff9d, #ffbb00, #ff2085, #9d00ff);
165
+ background-size: 300% 300%;
166
+
167
+ // Add stronger glow for completed steps
168
+ @include trippy.trippy-glow($yellow-4, 10px);
169
+
170
+ // Add rainbow animation
171
+ animation: rainbow-shift 3s linear infinite;
172
+ }
173
+
174
+ #{$root}__number {
175
+ color: $yellow-4;
176
+ }
177
+
178
+ #{$root}__title {
179
+ color: $yellow-4;
180
+
181
+ // Add stronger glow to title
182
+ @include trippy.trippy-glow($yellow-4, 5px);
183
+
184
+ // Add pulse animation
185
+ animation: steps-title-pulse 1s infinite;
186
+ }
187
+
188
+ // Change connector for completed steps
189
+ &::after {
190
+ background: linear-gradient(to bottom, $yellow-4, rgba($yellow-4, 0.3));
191
+ animation: steps-connector-pulse 1s infinite;
192
+ }
193
+ }
194
+
195
+ // Active step
196
+ &__item--active {
197
+ #{$root}__icon {
198
+ background: rgba(255, 255, 255, 0.2);
199
+
200
+ // Add pulse animation for active step
201
+ @include trippy.psychedelic-pulse($red-4);
202
+
203
+ // Add floating effect
204
+ @include trippy.float-animation();
205
+ animation-duration: 2s;
206
+ }
207
+
208
+ #{$root}__number {
209
+ color: $red-4;
210
+ }
211
+
212
+ #{$root}__title {
213
+ color: $red-4;
214
+
215
+ // Add stronger glow to title
216
+ @include trippy.trippy-glow($red-4, 5px);
217
+
218
+ // Add pulse animation
219
+ animation: steps-title-pulse 1s infinite;
220
+ }
221
+ }
222
+
223
+ // Disabled step
224
+ &__item--disabled {
225
+ opacity: 0.5;
226
+
227
+ #{$root}__icon {
228
+ animation: none;
229
+ }
230
+ }
231
+
232
+ // Horizontal variant
233
+ &--horizontal {
234
+ display: flex;
235
+ align-items: flex-start;
236
+
237
+ #{$root}__item {
238
+ flex: 1;
239
+ text-align: center;
240
+ padding-bottom: 0;
241
+ padding-right: 1rem;
242
+
243
+ &::after {
244
+ top: 1.25rem;
245
+ left: calc(50% + 2rem);
246
+ right: calc(-50% + 2rem);
247
+ bottom: auto;
248
+ width: auto;
249
+ height: 2px;
250
+ }
251
+
252
+ &:last-child::after {
253
+ display: none;
254
+ }
255
+ }
256
+
257
+ #{$root}__icon {
258
+ margin-right: 0;
259
+ margin-bottom: 1rem;
260
+ }
261
+
262
+ #{$root}__content {
263
+ margin-right: 1rem;
264
+ }
265
+ }
266
+
267
+ // Psychedelic variant
268
+ &--psychedelic {
269
+ @include gradients.rainbow-gradient();
270
+ background-size: 400% 400%;
271
+ animation: rainbow-shift 2s ease infinite;
272
+ border: 1px solid transparent;
273
+
274
+ #{$root}__item {
275
+ &::after {
276
+ @include gradients.rainbow-gradient();
277
+ background-size: 100% 100%;
278
+ animation: rainbow-shift 3s linear infinite;
279
+ }
280
+ }
281
+
282
+ #{$root}__icon {
283
+ @include gradients.rainbow-gradient();
284
+ background-size: 200% 200%;
285
+ animation: rainbow-shift 3s linear infinite;
286
+ border-radius: 50%;
287
+ }
288
+
289
+ #{$root}__number {
290
+ @include gradients.rainbow-gradient();
291
+ background-clip: text;
292
+ -webkit-background-clip: text;
293
+ color: transparent;
294
+ background-size: 200% 100%;
295
+ animation: rainbow-shift 3s linear infinite;
296
+ }
297
+
298
+ #{$root}__title {
299
+ @include gradients.rainbow-gradient();
300
+ background-clip: text;
301
+ -webkit-background-clip: text;
302
+ color: transparent;
303
+ background-size: 200% 100%;
304
+ animation: rainbow-shift 3s linear infinite;
305
+ }
306
+ }
307
+
308
+ // Glowing variant
309
+ &--glow {
310
+ @include trippy.trippy-glow($purple-4, 20px);
311
+ animation: steps-glow-pulse 1s infinite;
312
+
313
+ #{$root}__icon {
314
+ @include trippy.trippy-glow(rgba(157, 0, 255, 0.5), 10px);
315
+
316
+ &--completed {
317
+ @include trippy.trippy-glow($yellow-4, 15px);
318
+ }
319
+
320
+ &--active {
321
+ @include trippy.trippy-glow($red-4, 15px);
322
+ }
323
+ }
324
+
325
+ #{$root}__title {
326
+ @include trippy.trippy-glow(rgba(255, 255, 255, 0.2), 5px);
327
+ }
328
+ }
329
+
330
+ // Floating variant
331
+ &--floating {
332
+ @include trippy.float-animation();
333
+ animation-duration: 5s;
334
+
335
+ #{$root}__item {
336
+ @include trippy.float-animation();
337
+ animation-duration: 3s;
338
+ }
339
+
340
+ #{$root}__icon {
341
+ @include trippy.float-animation();
342
+ animation-duration: 2s;
343
+ }
344
+
345
+ #{$root}__content {
346
+ @include trippy.float-animation();
347
+ animation-duration: 4s;
348
+ }
349
+ }
350
+ }
@@ -0,0 +1,269 @@
1
+ /*!
2
+ * Mashroom Theme Tabs Component
3
+ * Psychedelic mushroom-inspired theme with trippy visuals
4
+ */
5
+
6
+ // Import required tools and settings
7
+ @use '../02-tools/tools.trippy-effects' as trippy;
8
+ @use '../02-tools/tools.psychedelic-gradients' as gradients;
9
+ @use '../01-settings/settings.colors' as *;
10
+
11
+ // Psychedelic tabs animations
12
+ @keyframes tabs-float {
13
+ 0%,
14
+ 100% {
15
+ transform: translateY(0px);
16
+ }
17
+ 50% {
18
+ transform: translateY(-3px);
19
+ }
20
+ }
21
+
22
+ @keyframes tabs-glow-pulse {
23
+ 0%,
24
+ 100% {
25
+ box-shadow: 0 4px 20px rgba(157, 0, 255, 0.3);
26
+ }
27
+ 50% {
28
+ box-shadow:
29
+ 0 4px 20px rgba(157, 0, 255, 0.5),
30
+ 0 0 30px rgba(255, 32, 133, 0.4),
31
+ 0 0 50px rgba(255, 187, 0, 0.3);
32
+ }
33
+ }
34
+
35
+ @keyframes tabs-button-pulse {
36
+ 0%,
37
+ 100% {
38
+ box-shadow: 0 0 5px rgba($white, 0.1);
39
+ }
40
+ 50% {
41
+ box-shadow:
42
+ 0 0 10px rgba($white, 0.2),
43
+ 0 0 20px rgba(157, 0, 255, 0.3);
44
+ }
45
+ }
46
+
47
+ @keyframes tabs-active-pulse {
48
+ 0%,
49
+ 100% {
50
+ box-shadow: 0 0 15px $yellow-4;
51
+ }
52
+ 50% {
53
+ box-shadow:
54
+ 0 0 20px $yellow-4,
55
+ 0 0 30px rgba(255, 187, 0, 0.8);
56
+ }
57
+ }
58
+
59
+ @keyframes tabs-fade-in {
60
+ from {
61
+ opacity: 0;
62
+ transform: translateY(10px);
63
+ }
64
+ to {
65
+ opacity: 1;
66
+ transform: translateY(0);
67
+ }
68
+ }
69
+
70
+ .c-tabs {
71
+ $root: &;
72
+
73
+ // Add psychedelic background
74
+ @include gradients.rainbow-gradient();
75
+ background-size: 300% 300%;
76
+
77
+ // Add floating animation for a magical effect
78
+ @include trippy.float-animation();
79
+
80
+ // Add color shift for extra psychedelic effect
81
+ @include trippy.color-shift();
82
+
83
+ // Add pulse animation
84
+ animation:
85
+ rainbow-shift 4s ease infinite,
86
+ tabs-glow-pulse 2s infinite;
87
+
88
+ border-radius: 0.5rem;
89
+ overflow: hidden;
90
+ box-shadow: 0 4px 20px rgba(157, 0, 255, 0.3);
91
+
92
+ // Tab navigation
93
+ &__nav {
94
+ display: flex;
95
+ border-bottom: 2px solid rgba($white, 0.2);
96
+ background: rgba(157, 0, 255, 0.2);
97
+ backdrop-filter: blur(5px);
98
+
99
+ // Add floating effect to nav
100
+ @include trippy.float-animation();
101
+ animation-duration: 3s;
102
+ }
103
+
104
+ // Tab button
105
+ &__btn {
106
+ padding: 1rem 1.5rem;
107
+ color: rgba($white, 0.8);
108
+ background: transparent;
109
+ border: none;
110
+ cursor: pointer;
111
+ position: relative;
112
+ font-weight: 600;
113
+ transition: all 0.3s ease;
114
+
115
+ // Add glow effect
116
+ @include trippy.trippy-glow(rgba($white, 0.1), 5px);
117
+
118
+ // Add pulse animation
119
+ animation: tabs-button-pulse 2s infinite;
120
+
121
+ // Hover state
122
+ &:hover {
123
+ color: $white;
124
+ @include trippy.trippy-glow($red-4, 10px);
125
+ transform: translateY(-2px) rotate(1deg);
126
+ animation: tabs-button-pulse 0.5s infinite;
127
+ }
128
+
129
+ // Active state
130
+ &--active {
131
+ color: $yellow-4;
132
+ background: rgba(255, 187, 0, 0.15);
133
+
134
+ // Add stronger glow effect to active tab
135
+ @include trippy.trippy-glow($yellow-4, 15px);
136
+
137
+ // Add pulse animation
138
+ animation: tabs-active-pulse 2s infinite;
139
+
140
+ &::after {
141
+ content: '';
142
+ position: absolute;
143
+ bottom: -2px;
144
+ left: 0;
145
+ right: 0;
146
+ height: 3px;
147
+ background: $yellow-4;
148
+ background: linear-gradient(90deg, #9d00ff, #ff2085);
149
+ border-radius: 3px;
150
+ animation: tabs-active-pulse 2s infinite;
151
+ }
152
+ }
153
+
154
+ // Disabled state
155
+ &:disabled {
156
+ color: rgba($white, 0.4);
157
+ cursor: not-allowed;
158
+ animation: none;
159
+ @include trippy.trippy-glow(rgba($white, 0.05), 2px);
160
+ }
161
+ }
162
+
163
+ // Tab content
164
+ &__content {
165
+ padding: 1.5rem;
166
+ background: rgba(255, 255, 255, 0.1);
167
+ backdrop-filter: blur(10px);
168
+ min-height: 200px;
169
+
170
+ // Add subtle pulse effect to content
171
+ @include trippy.psychedelic-pulse(rgba(157, 0, 255, 0.1));
172
+
173
+ // Add floating effect
174
+ @include trippy.float-animation();
175
+ animation-duration: 5s;
176
+ }
177
+
178
+ // Tab panel (hidden/visible)
179
+ &__panel {
180
+ display: none;
181
+
182
+ &--active {
183
+ display: block;
184
+
185
+ // Add fade-in animation when panel becomes active
186
+ animation: tabs-fade-in 0.5s ease;
187
+ }
188
+ }
189
+
190
+ // Psychedelic variant
191
+ &--psychedelic {
192
+ @include gradients.rainbow-gradient();
193
+ background-size: 400% 400%;
194
+ animation: rainbow-shift 2s ease infinite;
195
+ border: 1px solid transparent;
196
+
197
+ #{$root}__btn {
198
+ @include gradients.rainbow-gradient();
199
+ background-clip: text;
200
+ -webkit-background-clip: text;
201
+ color: transparent;
202
+ background-size: 200% 100%;
203
+ animation: rainbow-shift 3s linear infinite;
204
+
205
+ &:hover {
206
+ animation: rainbow-shift 1s linear infinite;
207
+ @include trippy.trippy-glow(white, 15px);
208
+ }
209
+
210
+ &--active {
211
+ @include gradients.rainbow-gradient();
212
+ background-clip: text;
213
+ -webkit-background-clip: text;
214
+ color: transparent;
215
+ background-size: 200% 100%;
216
+ animation: rainbow-shift 2s linear infinite;
217
+
218
+ &::after {
219
+ @include gradients.rainbow-gradient();
220
+ background-size: 200% 100%;
221
+ animation: rainbow-shift 2s linear infinite;
222
+ }
223
+ }
224
+ }
225
+
226
+ #{$root}__content {
227
+ @include gradients.rainbow-gradient();
228
+ background-size: 300% 300%;
229
+ background-clip: padding-box;
230
+ animation: rainbow-shift 4s ease infinite;
231
+ opacity: 0.9;
232
+ }
233
+ }
234
+
235
+ // Glowing variant
236
+ &--glow {
237
+ @include trippy.trippy-glow($purple-4, 25px);
238
+ animation: tabs-glow-pulse 1s infinite;
239
+
240
+ #{$root}__btn {
241
+ @include trippy.trippy-glow(rgba($white, 0.1), 10px);
242
+
243
+ &:hover {
244
+ @include trippy.trippy-glow($red-4, 15px);
245
+ }
246
+
247
+ &--active {
248
+ @include trippy.trippy-glow($yellow-4, 20px);
249
+ animation: tabs-active-pulse 1s infinite;
250
+ }
251
+ }
252
+ }
253
+
254
+ // Floating variant
255
+ &--floating {
256
+ @include trippy.float-animation();
257
+ animation-duration: 4s;
258
+
259
+ #{$root}__nav {
260
+ @include trippy.float-animation();
261
+ animation-duration: 2s;
262
+ }
263
+
264
+ #{$root}__content {
265
+ @include trippy.float-animation();
266
+ animation-duration: 6s;
267
+ }
268
+ }
269
+ }