@pathscale/ui 1.1.37 → 1.1.39

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 (451) hide show
  1. package/dist/components/accordion/Accordion.classes.d.ts +38 -0
  2. package/dist/components/accordion/Accordion.classes.js +39 -0
  3. package/dist/components/accordion/Accordion.css +158 -0
  4. package/dist/components/accordion/Accordion.d.ts +46 -22
  5. package/dist/components/accordion/Accordion.js +334 -154
  6. package/dist/components/accordion/index.d.ts +1 -1
  7. package/dist/components/accordion/index.js +7 -1
  8. package/dist/components/calendar/Calendar.classes.d.ts +62 -0
  9. package/dist/components/calendar/Calendar.classes.js +63 -0
  10. package/dist/components/calendar/Calendar.css +258 -0
  11. package/dist/components/calendar/Calendar.d.ts +24 -22
  12. package/dist/components/calendar/Calendar.js +304 -167
  13. package/dist/components/calendar/index.d.ts +1 -1
  14. package/dist/components/chatbubble/ChatBubble.classes.d.ts +24 -0
  15. package/dist/components/chatbubble/ChatBubble.classes.js +25 -0
  16. package/dist/components/chatbubble/ChatBubble.css +164 -0
  17. package/dist/components/chatbubble/ChatBubble.d.ts +1 -1
  18. package/dist/components/chatbubble/ChatBubble.js +3 -6
  19. package/dist/components/chatbubble/ChatBubbleAvatar.js +2 -1
  20. package/dist/components/chatbubble/ChatBubbleFooter.d.ts +1 -1
  21. package/dist/components/chatbubble/ChatBubbleFooter.js +11 -3
  22. package/dist/components/chatbubble/ChatBubbleHeader.d.ts +1 -1
  23. package/dist/components/chatbubble/ChatBubbleHeader.js +11 -3
  24. package/dist/components/chatbubble/ChatBubbleMessage.d.ts +1 -1
  25. package/dist/components/chatbubble/ChatBubbleMessage.js +13 -14
  26. package/dist/components/chatbubble/ChatBubbleTime.d.ts +1 -1
  27. package/dist/components/chatbubble/ChatBubbleTime.js +11 -3
  28. package/dist/components/color-field/ColorField.d.ts +1 -1
  29. package/dist/components/color-field/ColorField.js +3 -3
  30. package/dist/components/color-picker/ColorPicker.js +5 -5
  31. package/dist/components/color-wheel-flower/ColorWheelFlower.classes.d.ts +33 -0
  32. package/dist/components/color-wheel-flower/ColorWheelFlower.classes.js +34 -0
  33. package/dist/components/{colorpicker → color-wheel-flower}/ColorWheelFlower.js +52 -27
  34. package/dist/components/color-wheel-flower/index.d.ts +5 -0
  35. package/dist/components/color-wheel-flower/index.js +6 -0
  36. package/dist/components/date-picker/DatePicker.classes.d.ts +30 -0
  37. package/dist/components/date-picker/DatePicker.classes.js +31 -0
  38. package/dist/components/date-picker/DatePicker.css +143 -0
  39. package/dist/components/date-picker/DatePicker.d.ts +24 -0
  40. package/dist/components/date-picker/DatePicker.js +180 -0
  41. package/dist/components/date-picker/index.d.ts +1 -0
  42. package/dist/components/date-picker/index.js +3 -0
  43. package/dist/components/date-range-picker/DateRangePicker.classes.d.ts +33 -0
  44. package/dist/components/date-range-picker/DateRangePicker.classes.js +34 -0
  45. package/dist/components/date-range-picker/DateRangePicker.css +149 -0
  46. package/dist/components/date-range-picker/DateRangePicker.d.ts +28 -0
  47. package/dist/components/date-range-picker/DateRangePicker.js +230 -0
  48. package/dist/components/date-range-picker/index.d.ts +1 -0
  49. package/dist/components/date-range-picker/index.js +3 -0
  50. package/dist/components/flex/Flex.classes.d.ts +65 -0
  51. package/dist/components/flex/Flex.classes.js +66 -0
  52. package/dist/components/flex/Flex.css +5 -0
  53. package/dist/components/flex/Flex.d.ts +1 -0
  54. package/dist/components/flex/Flex.js +7 -66
  55. package/dist/components/floating-dock/FloatingDock.classes.d.ts +25 -0
  56. package/dist/components/floating-dock/FloatingDock.classes.js +26 -0
  57. package/dist/components/floating-dock/FloatingDock.css +14 -0
  58. package/dist/components/floating-dock/FloatingDock.js +76 -51
  59. package/dist/components/footer/Footer.classes.d.ts +9 -0
  60. package/dist/components/footer/Footer.classes.js +10 -0
  61. package/dist/components/footer/Footer.js +2 -6
  62. package/dist/components/footer/FooterTitle.js +2 -1
  63. package/dist/components/footer/footer.css +45 -45
  64. package/dist/components/glass-panel/GlassPanel.classes.d.ts +44 -0
  65. package/dist/components/glass-panel/GlassPanel.classes.js +45 -0
  66. package/dist/components/glass-panel/GlassPanel.css +170 -0
  67. package/dist/components/glass-panel/GlassPanel.d.ts +1 -0
  68. package/dist/components/glass-panel/GlassPanel.js +20 -58
  69. package/dist/components/glow-card/GlowCard.classes.d.ts +4 -0
  70. package/dist/components/glow-card/GlowCard.classes.js +5 -0
  71. package/dist/components/glow-card/GlowCard.css +4 -0
  72. package/dist/components/glow-card/GlowCard.js +2 -1
  73. package/dist/components/grid/Grid.classes.d.ts +54 -0
  74. package/dist/components/grid/Grid.classes.js +55 -0
  75. package/dist/components/grid/Grid.css +5 -0
  76. package/dist/components/grid/Grid.d.ts +1 -0
  77. package/dist/components/grid/Grid.js +3 -52
  78. package/dist/components/icon/Icon.classes.d.ts +3 -0
  79. package/dist/components/icon/Icon.classes.js +4 -0
  80. package/dist/components/icon/Icon.css +10 -0
  81. package/dist/components/icon/Icon.d.ts +1 -0
  82. package/dist/components/icon/Icon.js +8 -4
  83. package/dist/components/immersive-landing/ImmersiveLanding.classes.d.ts +83 -0
  84. package/dist/components/immersive-landing/ImmersiveLanding.classes.js +84 -0
  85. package/dist/components/immersive-landing/ImmersiveLanding.css +562 -0
  86. package/dist/components/immersive-landing/ImmersiveLanding.d.ts +1 -0
  87. package/dist/components/immersive-landing/ImmersiveLanding.js +23 -2
  88. package/dist/components/immersive-landing/ImmersiveLandingArrows.js +11 -11
  89. package/dist/components/immersive-landing/ImmersiveLandingNavigation.js +38 -27
  90. package/dist/components/immersive-landing/ImmersiveLandingPage.js +4 -2
  91. package/dist/components/immersive-landing/components/CookieConsent.js +91 -20
  92. package/dist/components/immersive-landing/components/FirefoxPWABanner.js +33 -8
  93. package/dist/components/immersive-landing/components/PWAInstallPrompt.js +37 -11
  94. package/dist/components/immersive-landing/index.d.ts +1 -0
  95. package/dist/components/immersive-landing/index.js +1 -0
  96. package/dist/components/kbd/Kbd.classes.d.ts +11 -0
  97. package/dist/components/kbd/Kbd.classes.js +12 -0
  98. package/dist/components/kbd/Kbd.css +60 -0
  99. package/dist/components/kbd/Kbd.d.ts +28 -4
  100. package/dist/components/kbd/Kbd.js +139 -10
  101. package/dist/components/kbd/index.d.ts +1 -1
  102. package/dist/components/kbd/index.js +6 -1
  103. package/dist/components/language-switcher/LanguageSwitcher.classes.d.ts +9 -0
  104. package/dist/components/language-switcher/LanguageSwitcher.classes.js +10 -0
  105. package/dist/components/language-switcher/LanguageSwitcher.css +56 -0
  106. package/dist/components/language-switcher/LanguageSwitcher.d.ts +1 -0
  107. package/dist/components/language-switcher/LanguageSwitcher.js +15 -7
  108. package/dist/components/link/Link.classes.d.ts +19 -0
  109. package/dist/components/link/Link.classes.js +20 -0
  110. package/dist/components/link/Link.css +131 -0
  111. package/dist/components/link/Link.d.ts +20 -11
  112. package/dist/components/link/Link.js +84 -43
  113. package/dist/components/link/index.d.ts +1 -1
  114. package/dist/components/link/index.js +3 -1
  115. package/dist/components/live-chat/LiveChat.classes.d.ts +41 -0
  116. package/dist/components/live-chat/LiveChat.classes.js +42 -0
  117. package/dist/components/live-chat/LiveChat.css +324 -0
  118. package/dist/components/live-chat/LiveChatBubble.d.ts +1 -0
  119. package/dist/components/live-chat/LiveChatBubble.js +15 -6
  120. package/dist/components/live-chat/LiveChatPanel.d.ts +1 -0
  121. package/dist/components/live-chat/LiveChatPanel.js +102 -123
  122. package/dist/components/modal/Modal.classes.d.ts +86 -0
  123. package/dist/components/modal/Modal.classes.js +87 -0
  124. package/dist/components/modal/Modal.css +320 -0
  125. package/dist/components/modal/Modal.d.ts +83 -27
  126. package/dist/components/modal/Modal.js +613 -97
  127. package/dist/components/modal/index.d.ts +1 -6
  128. package/dist/components/modal/index.js +11 -1
  129. package/dist/components/navbar/Navbar.classes.d.ts +23 -22
  130. package/dist/components/navbar/Navbar.classes.js +23 -25
  131. package/dist/components/navbar/Navbar.css +110 -0
  132. package/dist/components/navbar/Navbar.d.ts +1 -1
  133. package/dist/components/navbar/Navbar.js +2 -2
  134. package/dist/components/navbar/NavbarRow.js +1 -1
  135. package/dist/components/navbar/NavbarSection.js +1 -1
  136. package/dist/components/navbar/NavbarStack.js +4 -4
  137. package/dist/components/noise-background/NoiseBackground.classes.d.ts +15 -0
  138. package/dist/components/noise-background/NoiseBackground.classes.js +16 -0
  139. package/dist/components/noise-background/NoiseBackground.css +66 -0
  140. package/dist/components/noise-background/NoiseBackground.d.ts +1 -0
  141. package/dist/components/noise-background/NoiseBackground.js +29 -14
  142. package/dist/components/slider/Slider.classes.d.ts +13 -0
  143. package/dist/components/slider/Slider.classes.js +14 -0
  144. package/dist/components/{range-slider/range.css → slider/Slider.css} +3 -17
  145. package/dist/components/{range-slider/RangeSlider.d.ts → slider/Slider.d.ts} +5 -5
  146. package/dist/components/{range-slider/RangeSlider.js → slider/Slider.js} +28 -24
  147. package/dist/components/slider/index.d.ts +2 -0
  148. package/dist/components/slider/index.js +3 -0
  149. package/dist/components/table/index.d.ts +0 -2
  150. package/dist/components/table/index.js +1 -3
  151. package/dist/components/theme-color-picker/ThemeColorPicker.js +6 -6
  152. package/dist/components/toast/Toast.classes.d.ts +67 -0
  153. package/dist/components/toast/Toast.classes.js +68 -0
  154. package/dist/components/toast/Toast.css +344 -0
  155. package/dist/components/toast/Toast.d.ts +156 -20
  156. package/dist/components/toast/Toast.js +795 -31
  157. package/dist/components/toast/index.d.ts +1 -1
  158. package/dist/components/toast/index.js +17 -1
  159. package/dist/hooks/date/date.utils.d.ts +30 -0
  160. package/dist/hooks/date/date.utils.js +112 -0
  161. package/dist/hooks/date/index.d.ts +6 -0
  162. package/dist/hooks/date/index.js +6 -0
  163. package/dist/hooks/date/useCalendarNavigation.d.ts +21 -0
  164. package/dist/hooks/date/useCalendarNavigation.js +70 -0
  165. package/dist/hooks/date/useCalendarState.d.ts +45 -0
  166. package/dist/hooks/date/useCalendarState.js +66 -0
  167. package/dist/hooks/date/useDateSelection.d.ts +12 -0
  168. package/dist/hooks/date/useDateSelection.js +22 -0
  169. package/dist/hooks/date/usePickerOpenState.d.ts +15 -0
  170. package/dist/hooks/date/usePickerOpenState.js +50 -0
  171. package/dist/hooks/date/useRangeSelection.d.ts +26 -0
  172. package/dist/hooks/date/useRangeSelection.js +74 -0
  173. package/dist/hooks/form/useForm.d.ts +2 -2
  174. package/dist/hooks/form/useForm.js +11 -6
  175. package/dist/index.d.ts +56 -101
  176. package/dist/index.js +47 -109
  177. package/dist/purge-manifest.json +1708 -208
  178. package/dist/styles/icons/generated-icons.css +1 -1
  179. package/package.json +11 -5
  180. package/dist/components/accordion/collapse.css +0 -248
  181. package/dist/components/background/Background.d.ts +0 -5
  182. package/dist/components/background/Background.js +0 -22
  183. package/dist/components/background/index.d.ts +0 -1
  184. package/dist/components/background/index.js +0 -3
  185. package/dist/components/bottom-sheet/BottomSheet.d.ts +0 -11
  186. package/dist/components/bottom-sheet/BottomSheet.js +0 -109
  187. package/dist/components/bottom-sheet/index.d.ts +0 -2
  188. package/dist/components/bottom-sheet/index.js +0 -3
  189. package/dist/components/browsermockup/BrowserMockup.d.ts +0 -10
  190. package/dist/components/browsermockup/BrowserMockup.js +0 -55
  191. package/dist/components/browsermockup/index.d.ts +0 -2
  192. package/dist/components/browsermockup/index.js +0 -3
  193. package/dist/components/calendar/input.css +0 -277
  194. package/dist/components/carousel/Carousel.d.ts +0 -16
  195. package/dist/components/carousel/Carousel.js +0 -70
  196. package/dist/components/carousel/CarouselItem.d.ts +0 -6
  197. package/dist/components/carousel/CarouselItem.js +0 -27
  198. package/dist/components/carousel/carousel.css +0 -39
  199. package/dist/components/carousel/index.d.ts +0 -3
  200. package/dist/components/carousel/index.js +0 -3
  201. package/dist/components/chatbubble/chat.css +0 -153
  202. package/dist/components/codemockup/CodeMockup.d.ts +0 -5
  203. package/dist/components/codemockup/CodeMockup.js +0 -33
  204. package/dist/components/codemockup/CodeMockupLine.d.ts +0 -12
  205. package/dist/components/codemockup/CodeMockupLine.js +0 -53
  206. package/dist/components/codemockup/index.d.ts +0 -2
  207. package/dist/components/codemockup/index.js +0 -5
  208. package/dist/components/collapse/Collapse.d.ts +0 -21
  209. package/dist/components/collapse/Collapse.js +0 -104
  210. package/dist/components/collapse/CollapseContent.d.ts +0 -4
  211. package/dist/components/collapse/CollapseContent.js +0 -15
  212. package/dist/components/collapse/CollapseDetails.d.ts +0 -17
  213. package/dist/components/collapse/CollapseDetails.js +0 -33
  214. package/dist/components/collapse/CollapseTitle.d.ts +0 -9
  215. package/dist/components/collapse/CollapseTitle.js +0 -47
  216. package/dist/components/collapse/collapse.css +0 -248
  217. package/dist/components/collapse/index.d.ts +0 -4
  218. package/dist/components/collapse/index.js +0 -10
  219. package/dist/components/colorpicker/AlphaSlider.d.ts +0 -7
  220. package/dist/components/colorpicker/AlphaSlider.js +0 -107
  221. package/dist/components/colorpicker/ColorInput.d.ts +0 -7
  222. package/dist/components/colorpicker/ColorInput.js +0 -88
  223. package/dist/components/colorpicker/ColorPicker.d.ts +0 -18
  224. package/dist/components/colorpicker/ColorPicker.js +0 -264
  225. package/dist/components/colorpicker/ColorPickerFlowerSelector.d.ts +0 -3
  226. package/dist/components/colorpicker/ColorPickerFlowerSelector.js +0 -9
  227. package/dist/components/colorpicker/ColorPickerGradientSelector.d.ts +0 -3
  228. package/dist/components/colorpicker/ColorPickerGradientSelector.js +0 -9
  229. package/dist/components/colorpicker/ColorPickerWheelSelector.d.ts +0 -3
  230. package/dist/components/colorpicker/ColorPickerWheelSelector.js +0 -9
  231. package/dist/components/colorpicker/ColorPreview.d.ts +0 -11
  232. package/dist/components/colorpicker/ColorPreview.js +0 -47
  233. package/dist/components/colorpicker/ColorSwatches.d.ts +0 -8
  234. package/dist/components/colorpicker/ColorSwatches.js +0 -67
  235. package/dist/components/colorpicker/ColorWheel.d.ts +0 -7
  236. package/dist/components/colorpicker/ColorWheel.js +0 -106
  237. package/dist/components/colorpicker/HueSlider.d.ts +0 -7
  238. package/dist/components/colorpicker/HueSlider.js +0 -105
  239. package/dist/components/colorpicker/LightnessSlider.d.ts +0 -7
  240. package/dist/components/colorpicker/LightnessSlider.js +0 -111
  241. package/dist/components/colorpicker/SaturationBrightness.d.ts +0 -7
  242. package/dist/components/colorpicker/SaturationBrightness.js +0 -120
  243. package/dist/components/colorpicker/index.d.ts +0 -26
  244. package/dist/components/colorpicker/index.js +0 -31
  245. package/dist/components/confirm-dialog/ConfirmDialog.d.ts +0 -15
  246. package/dist/components/confirm-dialog/ConfirmDialog.js +0 -102
  247. package/dist/components/confirm-dialog/index.d.ts +0 -2
  248. package/dist/components/confirm-dialog/index.js +0 -3
  249. package/dist/components/connectionstatus/ConnectionStatus.d.ts +0 -59
  250. package/dist/components/connectionstatus/ConnectionStatus.js +0 -197
  251. package/dist/components/connectionstatus/index.d.ts +0 -2
  252. package/dist/components/connectionstatus/index.js +0 -3
  253. package/dist/components/copy-button/CopyButton.d.ts +0 -11
  254. package/dist/components/copy-button/CopyButton.js +0 -70
  255. package/dist/components/copy-button/index.d.ts +0 -2
  256. package/dist/components/copy-button/index.js +0 -3
  257. package/dist/components/countdown/Countdown.d.ts +0 -8
  258. package/dist/components/countdown/Countdown.js +0 -37
  259. package/dist/components/countdown/countdown.css +0 -58
  260. package/dist/components/countdown/index.d.ts +0 -1
  261. package/dist/components/countdown/index.js +0 -3
  262. package/dist/components/diff/Diff.d.ts +0 -8
  263. package/dist/components/diff/Diff.js +0 -29
  264. package/dist/components/diff/diff.css +0 -162
  265. package/dist/components/diff/index.d.ts +0 -1
  266. package/dist/components/diff/index.js +0 -3
  267. package/dist/components/divider/Divider.d.ts +0 -21
  268. package/dist/components/divider/Divider.js +0 -41
  269. package/dist/components/divider/Divider.styles.d.ts +0 -25
  270. package/dist/components/divider/Divider.styles.js +0 -71
  271. package/dist/components/divider/index.d.ts +0 -3
  272. package/dist/components/divider/index.js +0 -3
  273. package/dist/components/dock/Dock.d.ts +0 -15
  274. package/dist/components/dock/Dock.js +0 -40
  275. package/dist/components/dock/DockItem.d.ts +0 -9
  276. package/dist/components/dock/DockItem.js +0 -45
  277. package/dist/components/dock/DockLabel.d.ts +0 -6
  278. package/dist/components/dock/DockLabel.js +0 -22
  279. package/dist/components/dock/dock.css +0 -147
  280. package/dist/components/dock/index.d.ts +0 -3
  281. package/dist/components/dock/index.js +0 -3
  282. package/dist/components/dropdown-select/DropdownSelect.d.ts +0 -22
  283. package/dist/components/dropdown-select/DropdownSelect.js +0 -296
  284. package/dist/components/dropdown-select/index.d.ts +0 -2
  285. package/dist/components/dropdown-select/index.js +0 -3
  286. package/dist/components/fileinput/FileInput.d.ts +0 -15
  287. package/dist/components/fileinput/FileInput.js +0 -51
  288. package/dist/components/fileinput/index.d.ts +0 -1
  289. package/dist/components/fileinput/index.js +0 -3
  290. package/dist/components/fileinput/input.css +0 -277
  291. package/dist/components/form-actions/FormActions.d.ts +0 -14
  292. package/dist/components/form-actions/FormActions.js +0 -142
  293. package/dist/components/form-actions/index.d.ts +0 -2
  294. package/dist/components/form-actions/index.js +0 -3
  295. package/dist/components/hero/Hero.d.ts +0 -11
  296. package/dist/components/hero/Hero.js +0 -47
  297. package/dist/components/hero/HeroContent.d.ts +0 -6
  298. package/dist/components/hero/HeroContent.js +0 -31
  299. package/dist/components/hero/HeroOverlay.d.ts +0 -6
  300. package/dist/components/hero/HeroOverlay.js +0 -39
  301. package/dist/components/hero/hero.css +0 -38
  302. package/dist/components/hero/index.d.ts +0 -4
  303. package/dist/components/hero/index.js +0 -3
  304. package/dist/components/indicator/Indicator.d.ts +0 -31
  305. package/dist/components/indicator/Indicator.js +0 -76
  306. package/dist/components/indicator/index.d.ts +0 -2
  307. package/dist/components/indicator/index.js +0 -3
  308. package/dist/components/indicator/indicator.css +0 -70
  309. package/dist/components/kbd/kbd.css +0 -55
  310. package/dist/components/link/link.css +0 -153
  311. package/dist/components/mask/Mask.d.ts +0 -15
  312. package/dist/components/mask/Mask.js +0 -62
  313. package/dist/components/mask/index.d.ts +0 -3
  314. package/dist/components/mask/index.js +0 -3
  315. package/dist/components/mask/mask.css +0 -89
  316. package/dist/components/modal/ModalActions.d.ts +0 -3
  317. package/dist/components/modal/ModalActions.js +0 -14
  318. package/dist/components/modal/ModalBody.d.ts +0 -3
  319. package/dist/components/modal/ModalBody.js +0 -14
  320. package/dist/components/modal/ModalHeader.d.ts +0 -3
  321. package/dist/components/modal/ModalHeader.js +0 -15
  322. package/dist/components/modal/ModalLegacy.d.ts +0 -8
  323. package/dist/components/modal/ModalLegacy.js +0 -36
  324. package/dist/components/modal/modal.css +0 -170
  325. package/dist/components/navbar/navbar.css +0 -33
  326. package/dist/components/phonemockup/PhoneMockup.d.ts +0 -8
  327. package/dist/components/phonemockup/PhoneMockup.js +0 -44
  328. package/dist/components/phonemockup/index.d.ts +0 -1
  329. package/dist/components/phonemockup/index.js +0 -3
  330. package/dist/components/props-table/PropsTable.d.ts +0 -14
  331. package/dist/components/props-table/PropsTable.js +0 -56
  332. package/dist/components/props-table/index.d.ts +0 -2
  333. package/dist/components/props-table/index.js +0 -3
  334. package/dist/components/range/Range.d.ts +0 -13
  335. package/dist/components/range/Range.js +0 -85
  336. package/dist/components/range/index.d.ts +0 -1
  337. package/dist/components/range/index.js +0 -3
  338. package/dist/components/range/range.css +0 -174
  339. package/dist/components/range-slider/index.d.ts +0 -2
  340. package/dist/components/range-slider/index.js +0 -3
  341. package/dist/components/rating/Rating.d.ts +0 -24
  342. package/dist/components/rating/Rating.js +0 -54
  343. package/dist/components/rating/RatingHidden.d.ts +0 -4
  344. package/dist/components/rating/RatingHidden.js +0 -29
  345. package/dist/components/rating/RatingItem.d.ts +0 -9
  346. package/dist/components/rating/RatingItem.js +0 -62
  347. package/dist/components/rating/index.d.ts +0 -4
  348. package/dist/components/rating/index.js +0 -3
  349. package/dist/components/rating/rating.css +0 -106
  350. package/dist/components/showcase/ShowcaseBlock.d.ts +0 -10
  351. package/dist/components/showcase/ShowcaseBlock.js +0 -48
  352. package/dist/components/showcase/index.d.ts +0 -2
  353. package/dist/components/showcase/index.js +0 -3
  354. package/dist/components/showcase-section/ShowcaseSection.d.ts +0 -8
  355. package/dist/components/showcase-section/ShowcaseSection.js +0 -73
  356. package/dist/components/showcase-section/index.d.ts +0 -2
  357. package/dist/components/showcase-section/index.js +0 -3
  358. package/dist/components/skip-link/SkipLink.d.ts +0 -7
  359. package/dist/components/skip-link/SkipLink.js +0 -34
  360. package/dist/components/skip-link/index.d.ts +0 -2
  361. package/dist/components/skip-link/index.js +0 -3
  362. package/dist/components/stack/Stack.d.ts +0 -18
  363. package/dist/components/stack/Stack.js +0 -53
  364. package/dist/components/stack/index.d.ts +0 -2
  365. package/dist/components/stack/index.js +0 -3
  366. package/dist/components/stack/stack.css +0 -90
  367. package/dist/components/stat-card/StatCard.d.ts +0 -22
  368. package/dist/components/stat-card/StatCard.js +0 -46
  369. package/dist/components/stat-card/StatCardSection.d.ts +0 -5
  370. package/dist/components/stat-card/StatCardSection.js +0 -39
  371. package/dist/components/stat-card/index.d.ts +0 -1
  372. package/dist/components/stat-card/index.js +0 -3
  373. package/dist/components/stats/Stat.d.ts +0 -13
  374. package/dist/components/stats/Stat.js +0 -51
  375. package/dist/components/stats/StatSection.d.ts +0 -6
  376. package/dist/components/stats/StatSection.js +0 -29
  377. package/dist/components/stats/Stats.d.ts +0 -15
  378. package/dist/components/stats/Stats.js +0 -29
  379. package/dist/components/stats/index.d.ts +0 -1
  380. package/dist/components/stats/index.js +0 -3
  381. package/dist/components/stats/stat.css +0 -67
  382. package/dist/components/status/Status.d.ts +0 -8
  383. package/dist/components/status/Status.js +0 -30
  384. package/dist/components/status/index.d.ts +0 -2
  385. package/dist/components/status/index.js +0 -3
  386. package/dist/components/steps/Step.d.ts +0 -20
  387. package/dist/components/steps/Step.js +0 -88
  388. package/dist/components/steps/Steps.d.ts +0 -18
  389. package/dist/components/steps/Steps.js +0 -80
  390. package/dist/components/steps/index.d.ts +0 -3
  391. package/dist/components/steps/index.js +0 -3
  392. package/dist/components/steps/step.css +0 -179
  393. package/dist/components/streaming-table/StreamingTable.d.ts +0 -28
  394. package/dist/components/streaming-table/StreamingTable.js +0 -304
  395. package/dist/components/streaming-table/createRowStore.d.ts +0 -7
  396. package/dist/components/streaming-table/createRowStore.js +0 -18
  397. package/dist/components/streaming-table/createStreamingTableStore.d.ts +0 -13
  398. package/dist/components/streaming-table/createStreamingTableStore.js +0 -68
  399. package/dist/components/streaming-table/index.d.ts +0 -5
  400. package/dist/components/streaming-table/index.js +0 -5
  401. package/dist/components/streaming-table/types.d.ts +0 -46
  402. package/dist/components/streaming-table/types.js +0 -0
  403. package/dist/components/svgbackground/SvgBackground.d.ts +0 -21
  404. package/dist/components/svgbackground/SvgBackground.js +0 -413
  405. package/dist/components/svgbackground/index.d.ts +0 -2
  406. package/dist/components/svgbackground/index.js +0 -3
  407. package/dist/components/swap/Swap.d.ts +0 -13
  408. package/dist/components/swap/Swap.js +0 -57
  409. package/dist/components/swap/index.d.ts +0 -1
  410. package/dist/components/swap/index.js +0 -3
  411. package/dist/components/swap/swap.css +0 -92
  412. package/dist/components/switch-field/SwitchField.d.ts +0 -19
  413. package/dist/components/switch-field/SwitchField.js +0 -71
  414. package/dist/components/switch-field/index.d.ts +0 -2
  415. package/dist/components/switch-field/index.js +0 -3
  416. package/dist/components/table/EnhancedTable.d.ts +0 -46
  417. package/dist/components/table/EnhancedTable.js +0 -740
  418. package/dist/components/timeline/Timeline.d.ts +0 -12
  419. package/dist/components/timeline/Timeline.js +0 -42
  420. package/dist/components/timeline/TimelineEnd.d.ts +0 -6
  421. package/dist/components/timeline/TimelineEnd.js +0 -28
  422. package/dist/components/timeline/TimelineItem.d.ts +0 -8
  423. package/dist/components/timeline/TimelineItem.js +0 -47
  424. package/dist/components/timeline/TimelineMiddle.d.ts +0 -4
  425. package/dist/components/timeline/TimelineMiddle.js +0 -25
  426. package/dist/components/timeline/TimelineStart.d.ts +0 -6
  427. package/dist/components/timeline/TimelineStart.js +0 -28
  428. package/dist/components/timeline/index.d.ts +0 -5
  429. package/dist/components/timeline/index.js +0 -11
  430. package/dist/components/timeline/timeline.css +0 -286
  431. package/dist/components/toast/toast.css +0 -58
  432. package/dist/components/toastcontainer/ToastContainer.d.ts +0 -3
  433. package/dist/components/toastcontainer/ToastContainer.js +0 -15
  434. package/dist/components/toastcontainer/ToastStack.d.ts +0 -17
  435. package/dist/components/toastcontainer/ToastStack.js +0 -181
  436. package/dist/components/toastcontainer/index.d.ts +0 -3
  437. package/dist/components/toastcontainer/index.js +0 -5
  438. package/dist/components/windowmockup/WindowMockup.d.ts +0 -11
  439. package/dist/components/windowmockup/WindowMockup.js +0 -85
  440. package/dist/components/windowmockup/index.d.ts +0 -1
  441. package/dist/components/windowmockup/index.js +0 -3
  442. package/dist/stores/index.d.ts +0 -1
  443. package/dist/stores/index.js +0 -1
  444. package/dist/stores/toastStore.d.ts +0 -24
  445. package/dist/stores/toastStore.js +0 -64
  446. /package/dist/components/{colorpicker → color-wheel-flower}/ColorUtils.d.ts +0 -0
  447. /package/dist/components/{colorpicker → color-wheel-flower}/ColorUtils.js +0 -0
  448. /package/dist/components/{colorpicker → color-wheel-flower}/ColorWheelFlower.css +0 -0
  449. /package/dist/components/{colorpicker → color-wheel-flower}/ColorWheelFlower.d.ts +0 -0
  450. /package/dist/components/{colorpicker/colorpickerContext.d.ts → color-wheel-flower/colorWheelFlowerContext.d.ts} +0 -0
  451. /package/dist/components/{colorpicker/colorpickerContext.js → color-wheel-flower/colorWheelFlowerContext.js} +0 -0
@@ -1,153 +0,0 @@
1
- @layer components {
2
- .link {
3
- cursor: pointer;
4
- text-decoration-line: underline;
5
- }
6
-
7
- .link:focus {
8
- --tw-outline-style: none;
9
- outline-style: none;
10
- }
11
-
12
- @media (forced-colors: active) {
13
- .link:focus {
14
- outline: 2px solid transparent;
15
- outline-offset: 2px;
16
- }
17
- }
18
-
19
- .link:focus-visible {
20
- outline: 2px solid currentColor;
21
- outline-offset: 2px;
22
- }
23
-
24
- .link-accent {
25
- color: var(--color-accent);
26
- }
27
-
28
- @media (hover: hover) {
29
- .link-accent:hover {
30
- color: var(--color-accent);
31
- }
32
- @supports (color: color-mix(in lab, red, red)) {
33
- .link-accent:hover {
34
- color: color-mix(in oklab, var(--color-accent) 80%, #000);
35
- }
36
- }
37
- }
38
-
39
- .link-error {
40
- color: var(--color-error);
41
- }
42
-
43
- @media (hover: hover) {
44
- .link-error:hover {
45
- color: var(--color-error);
46
- }
47
- @supports (color: color-mix(in lab, red, red)) {
48
- .link-error:hover {
49
- color: color-mix(in oklab, var(--color-error) 80%, #000);
50
- }
51
- }
52
- }
53
-
54
- .link-info {
55
- color: var(--color-info);
56
- }
57
-
58
- @media (hover: hover) {
59
- .link-info:hover {
60
- color: var(--color-info);
61
- }
62
- @supports (color: color-mix(in lab, red, red)) {
63
- .link-info:hover {
64
- color: color-mix(in oklab, var(--color-info) 80%, #000);
65
- }
66
- }
67
- }
68
-
69
- .link-neutral {
70
- color: var(--color-neutral);
71
- }
72
-
73
- @media (hover: hover) {
74
- .link-neutral:hover {
75
- color: var(--color-neutral);
76
- }
77
- @supports (color: color-mix(in lab, red, red)) {
78
- .link-neutral:hover {
79
- color: color-mix(in oklab, var(--color-neutral) 80%, #000);
80
- }
81
- }
82
- }
83
-
84
- .link-primary {
85
- color: var(--color-primary);
86
- }
87
-
88
- @media (hover: hover) {
89
- .link-primary:hover {
90
- color: var(--color-primary);
91
- }
92
- @supports (color: color-mix(in lab, red, red)) {
93
- .link-primary:hover {
94
- color: color-mix(in oklab, var(--color-primary) 80%, #000);
95
- }
96
- }
97
- }
98
-
99
- .link-secondary {
100
- color: var(--color-secondary);
101
- }
102
-
103
- @media (hover: hover) {
104
- .link-secondary:hover {
105
- color: var(--color-secondary);
106
- }
107
- @supports (color: color-mix(in lab, red, red)) {
108
- .link-secondary:hover {
109
- color: color-mix(in oklab, var(--color-secondary) 80%, #000);
110
- }
111
- }
112
- }
113
-
114
- .link-success {
115
- color: var(--color-success);
116
- }
117
-
118
- @media (hover: hover) {
119
- .link-success:hover {
120
- color: var(--color-success);
121
- }
122
- @supports (color: color-mix(in lab, red, red)) {
123
- .link-success:hover {
124
- color: color-mix(in oklab, var(--color-success) 80%, #000);
125
- }
126
- }
127
- }
128
-
129
- .link-warning {
130
- color: var(--color-warning);
131
- }
132
-
133
- @media (hover: hover) {
134
- .link-warning:hover {
135
- color: var(--color-warning);
136
- }
137
- @supports (color: color-mix(in lab, red, red)) {
138
- .link-warning:hover {
139
- color: color-mix(in oklab, var(--color-warning) 80%, #000);
140
- }
141
- }
142
- }
143
-
144
- .link-hover {
145
- text-decoration-line: none;
146
- }
147
-
148
- @media (hover: hover) {
149
- .link-hover:hover {
150
- text-decoration-line: underline;
151
- }
152
- }
153
- }
@@ -1,15 +0,0 @@
1
- import "./mask.css";
2
- import { type JSX, type Component } from "solid-js";
3
- import type { IComponentBaseProps } from "../types";
4
- export type MaskProps = JSX.ImgHTMLAttributes<HTMLImageElement> & IComponentBaseProps & {
5
- variant?: "squircle" | "heart" | "hexagon" | "hexagon-2" | "decagon" | "pentagon" | "diamond" | "square" | "circle" | "star" | "star-2" | "triangle" | "triangle-2" | "triangle-3" | "triangle-4" | "half-1" | "half-2";
6
- class?: string;
7
- className?: string;
8
- style?: JSX.CSSProperties;
9
- };
10
- export declare function maskClassName({ className, variant, }?: Pick<MaskProps, "className" | "variant">): string;
11
- type MaskComponent = Component<MaskProps> & {
12
- className: typeof maskClassName;
13
- };
14
- declare const Mask: MaskComponent;
15
- export default Mask;
@@ -1,62 +0,0 @@
1
- import * as __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__ from "solid-js/web";
2
- import "./mask.css";
3
- import * as __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__ from "solid-js";
4
- import * as __WEBPACK_EXTERNAL_MODULE_tailwind_merge_e05e3e95__ from "tailwind-merge";
5
- import * as __WEBPACK_EXTERNAL_MODULE_clsx__ from "clsx";
6
- var _tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<img>");
7
- function maskClassName({ className, variant } = {}) {
8
- return (0, __WEBPACK_EXTERNAL_MODULE_tailwind_merge_e05e3e95__.twMerge)("mask", className, (0, __WEBPACK_EXTERNAL_MODULE_clsx__.clsx)({
9
- "mask-squircle": "squircle" === variant,
10
- "mask-heart": "heart" === variant,
11
- "mask-hexagon": "hexagon" === variant,
12
- "mask-hexagon-2": "hexagon-2" === variant,
13
- "mask-decagon": "decagon" === variant,
14
- "mask-pentagon": "pentagon" === variant,
15
- "mask-diamond": "diamond" === variant,
16
- "mask-square": "square" === variant,
17
- "mask-circle": "circle" === variant,
18
- "mask-star": "star" === variant,
19
- "mask-star-2": "star-2" === variant,
20
- "mask-triangle": "triangle" === variant,
21
- "mask-triangle-2": "triangle-2" === variant,
22
- "mask-triangle-3": "triangle-3" === variant,
23
- "mask-triangle-4": "triangle-4" === variant,
24
- "mask-half-1": "half-1" === variant,
25
- "mask-half-2": "half-2" === variant
26
- }));
27
- }
28
- const Mask_Mask = (props)=>{
29
- const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
30
- "src",
31
- "variant",
32
- "dataTheme",
33
- "class",
34
- "className",
35
- "style"
36
- ]);
37
- const classes = ()=>maskClassName({
38
- className: local.class ?? local.className,
39
- variant: local.variant
40
- });
41
- return (()=>{
42
- var _el$ = _tmpl$();
43
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, {
44
- get src () {
45
- return local.src;
46
- },
47
- get ["data-theme"] () {
48
- return local.dataTheme;
49
- },
50
- get ["class"] () {
51
- return classes();
52
- },
53
- get style () {
54
- return local.style;
55
- }
56
- }), false, false);
57
- return _el$;
58
- })();
59
- };
60
- Mask_Mask.className = maskClassName;
61
- const Mask = Mask_Mask;
62
- export { Mask as default, maskClassName };
@@ -1,3 +0,0 @@
1
- import Mask from "./Mask";
2
- export type { MaskProps } from "./Mask";
3
- export default Mask;
@@ -1,3 +0,0 @@
1
- import * as __WEBPACK_EXTERNAL_MODULE__Mask_js_a7b405d3__ from "./Mask.js";
2
- const mask = __WEBPACK_EXTERNAL_MODULE__Mask_js_a7b405d3__["default"];
3
- export { mask as default };
@@ -1,89 +0,0 @@
1
- @layer components {
2
- .mask {
3
- display: inline-block;
4
- vertical-align: middle;
5
- mask-size: contain;
6
- mask-repeat: no-repeat;
7
- mask-position: center;
8
- }
9
-
10
- .mask-circle {
11
- mask-image: url("data:image/svg+xml,%3csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle fill='black' cx='100' cy='100' r='100' fill-rule='evenodd'/%3e%3c/svg%3e");
12
- }
13
-
14
- .mask-decagon {
15
- mask-image: url("data:image/svg+xml,%3csvg width='192' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m96 0 58.779 19.098 36.327 50v61.804l-36.327 50L96 200l-58.779-19.098-36.327-50V69.098l36.327-50z' fill-rule='evenodd'/%3e%3c/svg%3e");
16
- }
17
-
18
- .mask-diamond {
19
- mask-image: url("data:image/svg+xml,%3csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m100 0 100 100-100 100L0 100z' fill-rule='evenodd'/%3e%3c/svg%3e");
20
- }
21
-
22
- .mask-heart {
23
- mask-image: url("data:image/svg+xml,%3csvg width='200' height='185' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M100 184.606a15.384 15.384 0 0 1-8.653-2.678C53.565 156.28 37.205 138.695 28.182 127.7 8.952 104.264-.254 80.202.005 54.146.308 24.287 24.264 0 53.406 0c21.192 0 35.869 11.937 44.416 21.879a2.884 2.884 0 0 0 4.356 0C110.725 11.927 125.402 0 146.594 0c29.142 0 53.098 24.287 53.4 54.151.26 26.061-8.956 50.122-28.176 73.554-9.023 10.994-25.383 28.58-63.165 54.228a15.384 15.384 0 0 1-8.653 2.673Z' fill='black' fill-rule='nonzero'/%3e%3c/svg%3e");
24
- }
25
-
26
- .mask-hexagon {
27
- mask-image: url("data:image/svg+xml,%3csvg width='182' height='201' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M.3 65.486c0-9.196 6.687-20.063 14.211-25.078l61.86-35.946c8.36-5.016 20.899-5.016 29.258 0l61.86 35.946c8.36 5.015 14.211 15.882 14.211 25.078v71.055c0 9.196-6.687 20.063-14.211 25.079l-61.86 35.945c-8.36 4.18-20.899 4.18-29.258 0L14.51 161.62C6.151 157.44.3 145.737.3 136.54V65.486Z' fill='black' fill-rule='nonzero'/%3e%3c/svg%3e");
28
- }
29
-
30
- .mask-hexagon-2 {
31
- mask-image: url("data:image/svg+xml,%3csvg width='200' height='182' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M64.786 181.4c-9.196 0-20.063-6.687-25.079-14.21L3.762 105.33c-5.016-8.36-5.016-20.9 0-29.259l35.945-61.86C44.723 5.851 55.59 0 64.786 0h71.055c9.196 0 20.063 6.688 25.079 14.211l35.945 61.86c4.18 8.36 4.18 20.899 0 29.258l-35.945 61.86c-4.18 8.36-15.883 14.211-25.079 14.211H64.786Z' fill='black' fill-rule='nonzero'/%3e%3c/svg%3e");
32
- }
33
-
34
- .mask-pentagon {
35
- mask-image: url("data:image/svg+xml,%3csvg width='192' height='181' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m96 0 95.106 69.098-36.327 111.804H37.22L.894 69.098z' fill-rule='evenodd'/%3e%3c/svg%3e");
36
- }
37
-
38
- .mask-squircle {
39
- mask-image: url("data:image/svg+xml,%3csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M100 0C20 0 0 20 0 100s20 100 100 100 100-20 100-100S180 0 100 0Z'/%3e%3c/svg%3e");
40
- }
41
-
42
- .mask-star {
43
- mask-image: url("data:image/svg+xml,%3csvg width='192' height='180' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m96 137.263-58.779 42.024 22.163-68.389L.894 68.481l72.476-.243L96 0l22.63 68.238 72.476.243-58.49 42.417 22.163 68.389z' fill-rule='evenodd'/%3e%3c/svg%3e");
44
- }
45
-
46
- .mask-star-2 {
47
- mask-image: url("data:image/svg+xml,%3csvg width='192' height='180' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m96 153.044-58.779 26.243 7.02-63.513L.894 68.481l63.117-13.01L96 0l31.989 55.472 63.117 13.01-43.347 47.292 7.02 63.513z' fill-rule='evenodd'/%3e%3c/svg%3e");
48
- }
49
-
50
- .mask-triangle {
51
- mask-image: url("data:image/svg+xml,%3csvg width='174' height='149' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m87 148.476-86.603.185L43.86 74.423 87 0l43.14 74.423 43.463 74.238z' fill-rule='evenodd'/%3e%3c/svg%3e");
52
- }
53
-
54
- .mask-triangle-2 {
55
- mask-image: url("data:image/svg+xml,%3csvg width='174' height='150' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m87 .738 86.603-.184-43.463 74.238L87 149.214 43.86 74.792.397.554z' fill-rule='evenodd'/%3e%3c/svg%3e");
56
- }
57
-
58
- .mask-triangle-3 {
59
- mask-image: url("data:image/svg+xml,%3csvg width='150' height='174' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m149.369 87.107.185 86.603-74.239-43.463L.893 87.107l74.422-43.14L149.554.505z' fill-rule='evenodd'/%3e%3c/svg%3e");
60
- }
61
-
62
- .mask-triangle-4 {
63
- mask-image: url("data:image/svg+xml,%3csvg width='150' height='174' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M.631 87.107.446.505l74.239 43.462 74.422 43.14-74.422 43.14L.446 173.71z' fill-rule='evenodd'/%3e%3c/svg%3e");
64
- }
65
-
66
- .mask-circle {
67
- --tw-mask-radial-shape: circle;
68
- }
69
-
70
- .mask-half-1 {
71
- mask-size: 200%;
72
- mask-position: left;
73
- mask-position: left;
74
- }
75
-
76
- .mask-half-1:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
77
- mask-position: right;
78
- }
79
-
80
- .mask-half-2 {
81
- mask-size: 200%;
82
- mask-position: right;
83
- mask-position: right;
84
- }
85
-
86
- .mask-half-2:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
87
- mask-position: left;
88
- }
89
- }
@@ -1,3 +0,0 @@
1
- import type { JSX } from "solid-js";
2
- export type ModalActionsProps = JSX.HTMLAttributes<HTMLDivElement>;
3
- export default function ModalActions(props: ModalActionsProps): JSX.Element;
@@ -1,14 +0,0 @@
1
- import * as __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__ from "solid-js/web";
2
- var _tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
3
- function ModalActions(props) {
4
- return (()=>{
5
- var _el$ = _tmpl$();
6
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(props, {
7
- get ["class"] () {
8
- return props.class;
9
- }
10
- }), false, false);
11
- return _el$;
12
- })();
13
- }
14
- export { ModalActions as default };
@@ -1,3 +0,0 @@
1
- import type { JSX } from "solid-js";
2
- export type ModalBodyProps = JSX.HTMLAttributes<HTMLDivElement>;
3
- export default function ModalBody(props: ModalBodyProps): JSX.Element;
@@ -1,14 +0,0 @@
1
- import * as __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__ from "solid-js/web";
2
- var _tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
3
- function ModalBody(props) {
4
- return (()=>{
5
- var _el$ = _tmpl$();
6
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(props, {
7
- get ["class"] () {
8
- return props.class;
9
- }
10
- }), false, false);
11
- return _el$;
12
- })();
13
- }
14
- export { ModalBody as default };
@@ -1,3 +0,0 @@
1
- import type { JSX } from "solid-js";
2
- export type ModalHeaderProps = JSX.HTMLAttributes<HTMLDivElement>;
3
- export default function ModalHeader(props: ModalHeaderProps): JSX.Element;
@@ -1,15 +0,0 @@
1
- import * as __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__ from "solid-js/web";
2
- import * as __WEBPACK_EXTERNAL_MODULE_tailwind_merge_e05e3e95__ from "tailwind-merge";
3
- var _tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
4
- function ModalHeader(props) {
5
- return (()=>{
6
- var _el$ = _tmpl$();
7
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(props, {
8
- get ["class"] () {
9
- return (0, __WEBPACK_EXTERNAL_MODULE_tailwind_merge_e05e3e95__.twMerge)("w-full mb-8 text-xl", props.class);
10
- }
11
- }), false, false);
12
- return _el$;
13
- })();
14
- }
15
- export { ModalHeader as default };
@@ -1,8 +0,0 @@
1
- import type { JSX } from "solid-js";
2
- import type { IComponentBaseProps } from "../types";
3
- export type ModalLegacyProps = JSX.HTMLAttributes<HTMLDivElement> & IComponentBaseProps & {
4
- open?: boolean;
5
- responsive?: boolean;
6
- onClickBackdrop?: () => void;
7
- };
8
- export default function ModalLegacy(props: ModalLegacyProps): JSX.Element;
@@ -1,36 +0,0 @@
1
- import * as __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__ from "solid-js/web";
2
- import * as __WEBPACK_EXTERNAL_MODULE_tailwind_merge_e05e3e95__ from "tailwind-merge";
3
- import * as __WEBPACK_EXTERNAL_MODULE_clsx__ from "clsx";
4
- var _tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div aria-label=Modal><div>");
5
- function ModalLegacy(props) {
6
- const { children, open, responsive, onClickBackdrop, dataTheme, class: classProp, className, ...rest } = props;
7
- const containerClasses = (0, __WEBPACK_EXTERNAL_MODULE_tailwind_merge_e05e3e95__.twMerge)("modal", (0, __WEBPACK_EXTERNAL_MODULE_clsx__.clsx)({
8
- "modal-open": open,
9
- "modal-bottom modal-responsive-middle": responsive
10
- }));
11
- const bodyClasses = (0, __WEBPACK_EXTERNAL_MODULE_tailwind_merge_e05e3e95__.twMerge)("modal-box", classProp, className);
12
- return (()=>{
13
- var _el$ = _tmpl$(), _el$2 = _el$.firstChild;
14
- _el$.$$click = (e)=>{
15
- e.stopPropagation();
16
- if (e.target === e.currentTarget) {
17
- e.stopPropagation();
18
- onClickBackdrop?.();
19
- }
20
- };
21
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.setAttribute)(_el$, "aria-hidden", !open);
22
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.setAttribute)(_el$, "aria-modal", open);
23
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.setAttribute)(_el$, "data-theme", dataTheme);
24
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.className)(_el$, containerClasses);
25
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$2, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(rest, {
26
- "data-theme": dataTheme,
27
- class: bodyClasses
28
- }), false, true);
29
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$2, children);
30
- return _el$;
31
- })();
32
- }
33
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.delegateEvents)([
34
- "click"
35
- ]);
36
- export { ModalLegacy as default };
@@ -1,170 +0,0 @@
1
- @layer components {
2
- .modal {
3
- pointer-events: none;
4
- visibility: hidden;
5
- position: fixed;
6
- inset: calc(0.25rem * 0);
7
- margin: calc(0.25rem * 0);
8
- display: grid;
9
- height: 100%;
10
- max-height: none;
11
- width: 100%;
12
- max-width: none;
13
- align-items: center;
14
- justify-items: center;
15
- background-color: transparent;
16
- padding: calc(0.25rem * 0);
17
- color: inherit;
18
- transition: visibility 0.3s allow-discrete, background-color 0.3s ease-out, opacity 0.1s ease-out;
19
- overflow: clip;
20
- overscroll-behavior: contain;
21
- z-index: 999;
22
- scrollbar-gutter: auto;
23
- }
24
-
25
- .modal::backdrop {
26
- display: none;
27
- }
28
-
29
- .modal.modal-open,
30
- .modal[open],
31
- .modal:target,
32
- .modal-toggle:checked + .modal {
33
- pointer-events: auto;
34
- visibility: visible;
35
- opacity: 100%;
36
- transition: visibility 0s allow-discrete, background-color 0.3s ease-out, opacity 0.1s ease-out;
37
- background-color: oklch(0% 0 0/ 0.4);
38
- }
39
-
40
- .modal.modal-open .modal-box,
41
- .modal[open] .modal-box,
42
- .modal:target .modal-box,
43
- .modal-toggle:checked + .modal .modal-box {
44
- translate: 0 0;
45
- scale: 1;
46
- opacity: 1;
47
- }
48
-
49
- :root:has(.modal.modal-open),
50
- :root:has(.modal[open]),
51
- :root:has(.modal:target),
52
- :root:has(.modal-toggle:checked + .modal) {
53
- --page-has-backdrop: 1;
54
- --page-overflow: hidden;
55
- --page-scroll-bg: var(--page-scroll-bg-on);
56
- --page-scroll-gutter: stable;
57
- --page-scroll-transition: var(--page-scroll-transition-on);
58
- animation: set-page-has-scroll forwards;
59
- animation-timeline: scroll();
60
- }
61
-
62
- @starting-style {
63
- .modal.modal-open,
64
- .modal[open],
65
- .modal:target,
66
- .modal-toggle:checked + .modal {
67
- opacity: 0%;
68
- }
69
- }
70
-
71
- .modal-toggle {
72
- position: fixed;
73
- height: calc(0.25rem * 0);
74
- width: calc(0.25rem * 0);
75
- appearance: none;
76
- opacity: 0%;
77
- }
78
-
79
- .modal-backdrop {
80
- grid-column-start: 1;
81
- grid-row-start: 1;
82
- display: grid;
83
- align-self: stretch;
84
- justify-self: stretch;
85
- color: transparent;
86
- z-index: -1;
87
- }
88
-
89
- .modal-backdrop button {
90
- cursor: pointer;
91
- }
92
-
93
- .modal-box {
94
- grid-column-start: 1;
95
- grid-row-start: 1;
96
- max-height: 100vh;
97
- width: calc(11/12 * 100%);
98
- max-width: 32rem;
99
- background-color: var(--color-base-100);
100
- padding: calc(0.25rem * 6);
101
- transition: translate 0.3s ease-out, scale 0.3s ease-out, opacity 0.2s ease-out 0.05s, box-shadow 0.3s ease-out;
102
- border-top-left-radius: var(--modal-tl, var(--radius-box));
103
- border-top-right-radius: var(--modal-tr, var(--radius-box));
104
- border-bottom-left-radius: var(--modal-bl, var(--radius-box));
105
- border-bottom-right-radius: var(--modal-br, var(--radius-box));
106
- scale: 95%;
107
- opacity: 0;
108
- box-shadow: oklch(0% 0 0/ 0.25) 0px 25px 50px -12px;
109
- overflow-y: auto;
110
- overscroll-behavior: contain;
111
- }
112
-
113
- .modal-action {
114
- margin-top: calc(0.25rem * 6);
115
- display: flex;
116
- justify-content: flex-end;
117
- gap: calc(0.25rem * 2);
118
- }
119
-
120
- .modal-bottom {
121
- place-items: end;
122
- }
123
-
124
- .modal-bottom .modal-box {
125
- height: auto;
126
- width: 100%;
127
- max-width: none;
128
- max-height: calc(100vh - 5em);
129
- translate: 0 100%;
130
- scale: 1;
131
- --modal-tl: var(--radius-box);
132
- --modal-tr: var(--radius-box);
133
- --modal-bl: 0;
134
- --modal-br: 0;
135
- }
136
-
137
- .modal-middle {
138
- place-items: center;
139
- }
140
-
141
- .modal-middle .modal-box {
142
- height: auto;
143
- width: calc(11/12 * 100%);
144
- max-width: 32rem;
145
- max-height: calc(100vh - 5em);
146
- translate: 0 2%;
147
- scale: 98%;
148
- --modal-tl: var(--radius-box);
149
- --modal-tr: var(--radius-box);
150
- --modal-bl: var(--radius-box);
151
- --modal-br: var(--radius-box);
152
- }
153
-
154
- .modal-top {
155
- place-items: start;
156
- }
157
-
158
- .modal-top .modal-box {
159
- height: auto;
160
- width: 100%;
161
- max-width: none;
162
- max-height: calc(100vh - 5em);
163
- translate: 0 -100%;
164
- scale: 1;
165
- --modal-tl: 0;
166
- --modal-tr: 0;
167
- --modal-bl: var(--radius-box);
168
- --modal-br: var(--radius-box);
169
- }
170
- }
@@ -1,33 +0,0 @@
1
- @layer components {
2
- .navbar {
3
- display: flex;
4
- width: 100%;
5
- align-items: center;
6
- padding: 0.5rem;
7
- min-height: 4rem;
8
- }
9
-
10
- :where(.navbar) {
11
- position: relative;
12
- }
13
-
14
- .navbar-end {
15
- display: inline-flex;
16
- align-items: center;
17
- width: 50%;
18
- justify-content: flex-end;
19
- }
20
-
21
- .navbar-start {
22
- display: inline-flex;
23
- align-items: center;
24
- width: 50%;
25
- justify-content: flex-start;
26
- }
27
-
28
- .navbar-center {
29
- display: inline-flex;
30
- align-items: center;
31
- flex-shrink: 0;
32
- }
33
- }
@@ -1,8 +0,0 @@
1
- import { type ParentComponent, type JSX } from "solid-js";
2
- import type { IComponentBaseProps, ComponentColor } from "../types";
3
- export type PhoneMockupProps = JSX.HTMLAttributes<HTMLDivElement> & IComponentBaseProps & {
4
- color?: Exclude<ComponentColor, "ghost">;
5
- innerProps?: JSX.HTMLAttributes<HTMLDivElement> & IComponentBaseProps;
6
- };
7
- declare const PhoneMockup: ParentComponent<PhoneMockupProps>;
8
- export default PhoneMockup;