flowbite-svelte 0.48.4 → 1.0.0-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (807) hide show
  1. package/dist/accordion/Accordion.svelte +31 -31
  2. package/dist/accordion/Accordion.svelte.d.ts +11 -45
  3. package/dist/accordion/AccordionItem.svelte +64 -82
  4. package/dist/accordion/AccordionItem.svelte.d.ts +15 -47
  5. package/dist/accordion/index.d.ts +5 -0
  6. package/dist/accordion/index.js +4 -0
  7. package/dist/accordion/theme.d.ts +80 -0
  8. package/dist/accordion/theme.js +55 -0
  9. package/dist/accordion/type.d.ts +35 -0
  10. package/dist/accordion/type.js +1 -0
  11. package/dist/alert/Alert.svelte +81 -24
  12. package/dist/alert/Alert.svelte.d.ts +17 -40
  13. package/dist/alert/index.d.ts +4 -0
  14. package/dist/alert/index.js +3 -0
  15. package/dist/alert/theme.d.ts +109 -0
  16. package/dist/alert/theme.js +150 -0
  17. package/dist/alert/type.d.ts +15 -0
  18. package/dist/alert/type.js +1 -0
  19. package/dist/avatar/Avatar.svelte +47 -40
  20. package/dist/avatar/Avatar.svelte.d.ts +14 -22
  21. package/dist/avatar/index.d.ts +4 -0
  22. package/dist/avatar/index.js +3 -0
  23. package/dist/avatar/theme.d.ts +62 -0
  24. package/dist/avatar/theme.js +32 -0
  25. package/dist/avatar/type.d.ts +16 -0
  26. package/dist/avatar/type.js +1 -0
  27. package/dist/badge/Badge.svelte +51 -81
  28. package/dist/badge/Badge.svelte.d.ts +20 -33
  29. package/dist/badge/index.d.ts +4 -0
  30. package/dist/badge/index.js +3 -0
  31. package/dist/badge/theme.d.ts +235 -0
  32. package/dist/badge/theme.js +251 -0
  33. package/dist/badge/type.d.ts +19 -0
  34. package/dist/badge/type.js +1 -0
  35. package/dist/banner/Banner.svelte +43 -49
  36. package/dist/banner/Banner.svelte.d.ts +16 -41
  37. package/dist/banner/index.d.ts +4 -0
  38. package/dist/banner/index.js +3 -0
  39. package/dist/banner/theme.d.ts +317 -0
  40. package/dist/banner/theme.js +68 -0
  41. package/dist/banner/type.d.ts +20 -0
  42. package/dist/banner/type.js +1 -0
  43. package/dist/bottom-navigation/BottomNav.svelte +36 -56
  44. package/dist/bottom-navigation/BottomNav.svelte.d.ts +13 -33
  45. package/dist/bottom-navigation/BottomNavHeader.svelte +11 -12
  46. package/dist/bottom-navigation/BottomNavHeader.svelte.d.ts +8 -17
  47. package/dist/bottom-navigation/BottomNavHeaderItem.svelte +8 -11
  48. package/dist/bottom-navigation/BottomNavHeaderItem.svelte.d.ts +7 -23
  49. package/dist/bottom-navigation/BottomNavItem.svelte +70 -55
  50. package/dist/bottom-navigation/BottomNavItem.svelte.d.ts +13 -39
  51. package/dist/bottom-navigation/index.d.ts +7 -0
  52. package/dist/bottom-navigation/index.js +6 -0
  53. package/dist/bottom-navigation/theme.d.ts +343 -0
  54. package/dist/bottom-navigation/theme.js +113 -0
  55. package/dist/bottom-navigation/type.d.ts +42 -0
  56. package/dist/bottom-navigation/type.js +1 -0
  57. package/dist/breadcrumb/Breadcrumb.svelte +24 -17
  58. package/dist/breadcrumb/Breadcrumb.svelte.d.ts +10 -21
  59. package/dist/breadcrumb/BreadcrumbItem.svelte +35 -30
  60. package/dist/breadcrumb/BreadcrumbItem.svelte.d.ts +13 -26
  61. package/dist/breadcrumb/index.d.ts +5 -0
  62. package/dist/breadcrumb/index.js +4 -0
  63. package/dist/breadcrumb/theme.d.ts +61 -0
  64. package/dist/breadcrumb/theme.js +51 -0
  65. package/dist/breadcrumb/type.d.ts +19 -0
  66. package/dist/breadcrumb/type.js +1 -0
  67. package/dist/buttongroup/ButtonGroup.svelte +22 -0
  68. package/dist/buttongroup/ButtonGroup.svelte.d.ts +21 -0
  69. package/dist/buttongroup/index.d.ts +4 -0
  70. package/dist/buttongroup/index.js +3 -0
  71. package/dist/buttongroup/theme.d.ts +20 -0
  72. package/dist/buttongroup/theme.js +15 -0
  73. package/dist/buttongroup/type.d.ts +8 -0
  74. package/dist/buttongroup/type.js +1 -0
  75. package/dist/buttons/Button.svelte +30 -125
  76. package/dist/buttons/Button.svelte.d.ts +13 -48
  77. package/dist/buttons/GradientButton.svelte +27 -62
  78. package/dist/buttons/GradientButton.svelte.d.ts +14 -23
  79. package/dist/buttons/index.d.ts +5 -0
  80. package/dist/buttons/index.js +4 -0
  81. package/dist/buttons/theme.d.ts +419 -0
  82. package/dist/buttons/theme.js +387 -0
  83. package/dist/buttons/type.d.ts +17 -0
  84. package/dist/buttons/type.js +1 -0
  85. package/dist/cards/Card.svelte +62 -44
  86. package/dist/cards/Card.svelte.d.ts +17 -43
  87. package/dist/cards/index.d.ts +4 -0
  88. package/dist/cards/index.js +3 -0
  89. package/dist/cards/theme.d.ts +454 -0
  90. package/dist/cards/theme.js +195 -0
  91. package/dist/cards/type.d.ts +26 -0
  92. package/dist/cards/type.js +1 -0
  93. package/dist/carousel/Carousel.svelte +177 -129
  94. package/dist/carousel/Carousel.svelte.d.ts +17 -48
  95. package/dist/carousel/ControlButton.svelte +18 -13
  96. package/dist/carousel/ControlButton.svelte.d.ts +9 -15
  97. package/dist/carousel/Controls.svelte +51 -33
  98. package/dist/carousel/Controls.svelte.d.ts +7 -10
  99. package/dist/carousel/Indicators.svelte +23 -13
  100. package/dist/carousel/Indicators.svelte.d.ts +9 -18
  101. package/dist/carousel/Slide.svelte +34 -25
  102. package/dist/carousel/Slide.svelte.d.ts +7 -13
  103. package/dist/carousel/Thumbnail.svelte +9 -10
  104. package/dist/carousel/Thumbnail.svelte.d.ts +6 -14
  105. package/dist/carousel/Thumbnails.svelte +40 -30
  106. package/dist/carousel/Thumbnails.svelte.d.ts +12 -26
  107. package/dist/carousel/index.d.ts +8 -0
  108. package/dist/carousel/index.js +7 -0
  109. package/dist/carousel/theme.d.ts +86 -0
  110. package/dist/carousel/theme.js +47 -0
  111. package/dist/carousel/type.d.ts +62 -0
  112. package/dist/carousel/type.js +1 -0
  113. package/dist/chart/Chart.svelte +43 -0
  114. package/dist/chart/Chart.svelte.d.ts +21 -0
  115. package/dist/chart/chart.css +166 -0
  116. package/dist/chart/index.d.ts +3 -0
  117. package/dist/chart/index.js +2 -0
  118. package/dist/chart/type.d.ts +6 -0
  119. package/dist/chart/type.js +1 -0
  120. package/dist/darkmode/DarkMode.svelte +42 -32
  121. package/dist/darkmode/DarkMode.svelte.d.ts +7 -13
  122. package/dist/darkmode/index.d.ts +4 -0
  123. package/dist/darkmode/index.js +3 -0
  124. package/dist/darkmode/theme.d.ts +1 -0
  125. package/dist/darkmode/theme.js +4 -0
  126. package/dist/darkmode/type.d.ts +10 -0
  127. package/dist/darkmode/type.js +1 -0
  128. package/dist/datepicker/Datepicker.svelte +228 -248
  129. package/dist/datepicker/Datepicker.svelte.d.ts +26 -44
  130. package/dist/datepicker/index.d.ts +4 -0
  131. package/dist/datepicker/index.js +3 -0
  132. package/dist/datepicker/theme.d.ts +364 -0
  133. package/dist/datepicker/theme.js +52 -0
  134. package/dist/datepicker/type.d.ts +29 -0
  135. package/dist/datepicker/type.js +1 -0
  136. package/dist/device-mockups/Android.svelte +24 -35
  137. package/dist/device-mockups/Android.svelte.d.ts +13 -35
  138. package/dist/device-mockups/DefaultMockup.svelte +22 -30
  139. package/dist/device-mockups/DefaultMockup.svelte.d.ts +12 -31
  140. package/dist/device-mockups/Desktop.svelte +18 -20
  141. package/dist/device-mockups/Desktop.svelte.d.ts +7 -20
  142. package/dist/device-mockups/DeviceMockup.svelte +29 -25
  143. package/dist/device-mockups/DeviceMockup.svelte.d.ts +7 -10
  144. package/dist/device-mockups/Ios.svelte +22 -30
  145. package/dist/device-mockups/Ios.svelte.d.ts +12 -31
  146. package/dist/device-mockups/Laptop.svelte +20 -21
  147. package/dist/device-mockups/Laptop.svelte.d.ts +7 -20
  148. package/dist/device-mockups/Smartwatch.svelte +24 -30
  149. package/dist/device-mockups/Smartwatch.svelte.d.ts +12 -31
  150. package/dist/device-mockups/Tablet.svelte +22 -30
  151. package/dist/device-mockups/Tablet.svelte.d.ts +12 -31
  152. package/dist/device-mockups/index.d.ts +11 -0
  153. package/dist/device-mockups/index.js +10 -0
  154. package/dist/device-mockups/theme.d.ts +368 -0
  155. package/dist/device-mockups/theme.js +76 -0
  156. package/dist/device-mockups/type.d.ts +61 -0
  157. package/dist/device-mockups/type.js +1 -0
  158. package/dist/drawer/Drawer.svelte +39 -67
  159. package/dist/drawer/Drawer.svelte.d.ts +19 -45
  160. package/dist/drawer/Drawerhead.svelte +35 -0
  161. package/dist/drawer/Drawerhead.svelte.d.ts +23 -0
  162. package/dist/drawer/index.d.ts +5 -0
  163. package/dist/drawer/index.js +4 -0
  164. package/dist/drawer/theme.d.ts +166 -0
  165. package/dist/drawer/theme.js +39 -0
  166. package/dist/drawer/type.d.ts +18 -0
  167. package/dist/drawer/type.js +1 -0
  168. package/dist/dropdown/Dropdown.svelte +32 -59
  169. package/dist/dropdown/Dropdown.svelte.d.ts +12 -74
  170. package/dist/dropdown/DropdownDivider.svelte +8 -4
  171. package/dist/dropdown/DropdownDivider.svelte.d.ts +5 -8
  172. package/dist/dropdown/DropdownGroup.svelte +20 -0
  173. package/dist/dropdown/DropdownGroup.svelte.d.ts +20 -0
  174. package/dist/dropdown/DropdownHeader.svelte +9 -11
  175. package/dist/dropdown/DropdownHeader.svelte.d.ts +7 -13
  176. package/dist/dropdown/DropdownItem.svelte +39 -27
  177. package/dist/dropdown/DropdownItem.svelte.d.ts +8 -22
  178. package/dist/dropdown/index.d.ts +8 -0
  179. package/dist/dropdown/index.js +7 -0
  180. package/dist/dropdown/theme.d.ts +65 -0
  181. package/dist/dropdown/theme.js +22 -0
  182. package/dist/dropdown/type.d.ts +28 -0
  183. package/dist/dropdown/type.js +1 -0
  184. package/dist/footer/Footer.svelte +11 -6
  185. package/dist/footer/Footer.svelte.d.ts +8 -11
  186. package/dist/footer/FooterBrand.svelte +25 -31
  187. package/dist/footer/FooterBrand.svelte.d.ts +13 -31
  188. package/dist/footer/FooterCopyright.svelte +17 -24
  189. package/dist/footer/FooterCopyright.svelte.d.ts +10 -24
  190. package/dist/footer/FooterIcon.svelte +13 -12
  191. package/dist/footer/FooterIcon.svelte.d.ts +9 -17
  192. package/dist/footer/FooterLink.svelte +12 -18
  193. package/dist/footer/FooterLink.svelte.d.ts +9 -21
  194. package/dist/footer/FooterLinkGroup.svelte +9 -5
  195. package/dist/footer/FooterLinkGroup.svelte.d.ts +7 -11
  196. package/dist/footer/index.d.ts +9 -0
  197. package/dist/footer/index.js +8 -0
  198. package/dist/footer/theme.d.ts +133 -0
  199. package/dist/footer/theme.js +40 -0
  200. package/dist/footer/type.d.ts +43 -0
  201. package/dist/footer/type.js +1 -0
  202. package/dist/forms/checkbox/Checkbox.svelte +49 -0
  203. package/dist/forms/checkbox/Checkbox.svelte.d.ts +30 -0
  204. package/dist/forms/checkbox/index.d.ts +4 -0
  205. package/dist/forms/checkbox/index.js +3 -0
  206. package/dist/forms/checkbox/theme.d.ts +273 -0
  207. package/dist/forms/checkbox/theme.js +91 -0
  208. package/dist/forms/checkbox/type.d.ts +21 -0
  209. package/dist/forms/checkbox/type.js +1 -0
  210. package/dist/forms/checkbox-button/CheckboxButton.svelte +70 -0
  211. package/dist/forms/checkbox-button/CheckboxButton.svelte.d.ts +29 -0
  212. package/dist/forms/checkbox-button/index.d.ts +3 -0
  213. package/dist/forms/checkbox-button/index.js +2 -0
  214. package/dist/forms/checkbox-button/theme.d.ts +25 -0
  215. package/dist/forms/checkbox-button/theme.js +16 -0
  216. package/dist/forms/checkbox-button/type.d.ts +14 -0
  217. package/dist/forms/checkbox-button/type.js +1 -0
  218. package/dist/forms/dropzone/Dropzone.svelte +67 -0
  219. package/dist/forms/dropzone/Dropzone.svelte.d.ts +19 -0
  220. package/dist/forms/dropzone/index.d.ts +4 -0
  221. package/dist/forms/dropzone/index.js +3 -0
  222. package/dist/forms/dropzone/theme.d.ts +1 -0
  223. package/dist/forms/dropzone/theme.js +4 -0
  224. package/dist/forms/dropzone/type.d.ts +7 -0
  225. package/dist/forms/dropzone/type.js +1 -0
  226. package/dist/forms/fileupload/Fileupload.svelte +37 -0
  227. package/dist/forms/fileupload/Fileupload.svelte.d.ts +22 -0
  228. package/dist/forms/fileupload/index.d.ts +4 -0
  229. package/dist/forms/fileupload/index.js +3 -0
  230. package/dist/forms/fileupload/theme.d.ts +51 -0
  231. package/dist/forms/fileupload/theme.js +15 -0
  232. package/dist/forms/fileupload/type.d.ts +10 -0
  233. package/dist/forms/fileupload/type.js +1 -0
  234. package/dist/forms/floating-label-input/FloatingLabelInput.svelte +33 -0
  235. package/dist/forms/floating-label-input/FloatingLabelInput.svelte.d.ts +28 -0
  236. package/dist/forms/floating-label-input/index.d.ts +4 -0
  237. package/dist/forms/floating-label-input/index.js +3 -0
  238. package/dist/forms/floating-label-input/theme.d.ts +339 -0
  239. package/dist/forms/floating-label-input/theme.js +179 -0
  240. package/dist/forms/floating-label-input/type.d.ts +15 -0
  241. package/dist/forms/floating-label-input/type.js +1 -0
  242. package/dist/forms/helper/Helper.svelte +21 -0
  243. package/dist/forms/helper/Helper.svelte.d.ts +21 -0
  244. package/dist/forms/helper/index.d.ts +4 -0
  245. package/dist/forms/helper/index.js +3 -0
  246. package/dist/forms/helper/theme.d.ts +75 -0
  247. package/dist/forms/helper/theme.js +29 -0
  248. package/dist/forms/helper/type.d.ts +5 -0
  249. package/dist/forms/helper/type.js +1 -0
  250. package/dist/forms/input/Input.svelte +61 -0
  251. package/dist/forms/input/Input.svelte.d.ts +19 -0
  252. package/dist/forms/input/index.d.ts +6 -0
  253. package/dist/forms/input/index.js +6 -0
  254. package/dist/forms/input/theme.d.ts +282 -0
  255. package/dist/forms/input/theme.js +94 -0
  256. package/dist/forms/input/type.d.ts +19 -0
  257. package/dist/forms/input/type.js +1 -0
  258. package/dist/forms/input-addon/InputAddon.svelte +47 -0
  259. package/dist/forms/{InputAddon.svelte.d.ts → input-addon/InputAddon.svelte.d.ts} +8 -11
  260. package/dist/forms/input-addon/index.d.ts +3 -0
  261. package/dist/forms/input-addon/index.js +2 -0
  262. package/dist/forms/input-addon/type.d.ts +8 -0
  263. package/dist/forms/input-addon/type.js +1 -0
  264. package/dist/forms/label/Label.svelte +26 -0
  265. package/dist/forms/label/Label.svelte.d.ts +22 -0
  266. package/dist/forms/label/index.d.ts +4 -0
  267. package/dist/forms/label/index.js +3 -0
  268. package/dist/forms/label/theme.d.ts +75 -0
  269. package/dist/forms/label/theme.js +29 -0
  270. package/dist/forms/label/type.d.ts +9 -0
  271. package/dist/forms/label/type.js +1 -0
  272. package/dist/forms/radio/Radio.svelte +22 -0
  273. package/dist/forms/radio/Radio.svelte.d.ts +19 -0
  274. package/dist/forms/radio/index.d.ts +4 -0
  275. package/dist/forms/radio/index.js +3 -0
  276. package/dist/forms/radio/theme.d.ts +273 -0
  277. package/dist/forms/radio/theme.js +83 -0
  278. package/dist/forms/radio/type.d.ts +11 -0
  279. package/dist/forms/radio/type.js +1 -0
  280. package/dist/forms/radio-button/RadioButton.svelte +21 -0
  281. package/dist/forms/radio-button/RadioButton.svelte.d.ts +19 -0
  282. package/dist/forms/radio-button/index.d.ts +4 -0
  283. package/dist/forms/radio-button/index.js +3 -0
  284. package/dist/forms/radio-button/theme.d.ts +25 -0
  285. package/dist/forms/radio-button/theme.js +16 -0
  286. package/dist/forms/radio-button/type.d.ts +13 -0
  287. package/dist/forms/radio-button/type.js +1 -0
  288. package/dist/forms/range/Range.svelte +21 -0
  289. package/dist/forms/range/Range.svelte.d.ts +23 -0
  290. package/dist/forms/range/index.d.ts +4 -0
  291. package/dist/forms/range/index.js +3 -0
  292. package/dist/forms/range/theme.d.ts +66 -0
  293. package/dist/forms/range/theme.js +74 -0
  294. package/dist/forms/range/type.d.ts +6 -0
  295. package/dist/forms/range/type.js +1 -0
  296. package/dist/forms/search/Search.svelte +29 -0
  297. package/dist/forms/search/Search.svelte.d.ts +19 -0
  298. package/dist/forms/search/index.d.ts +4 -0
  299. package/dist/forms/search/index.js +3 -0
  300. package/dist/forms/search/theme.d.ts +66 -0
  301. package/dist/forms/search/theme.js +32 -0
  302. package/dist/forms/search/type.d.ts +8 -0
  303. package/dist/forms/search/type.js +1 -0
  304. package/dist/forms/select/MultiSelect.svelte +147 -0
  305. package/dist/forms/select/MultiSelect.svelte.d.ts +19 -0
  306. package/dist/forms/select/Select.svelte +31 -0
  307. package/dist/forms/select/Select.svelte.d.ts +19 -0
  308. package/dist/forms/select/index.d.ts +5 -0
  309. package/dist/forms/select/index.js +4 -0
  310. package/dist/forms/select/theme.d.ts +131 -0
  311. package/dist/forms/select/theme.js +58 -0
  312. package/dist/forms/select/type.d.ts +24 -0
  313. package/dist/forms/select/type.js +1 -0
  314. package/dist/forms/textarea/Textarea.svelte +48 -0
  315. package/dist/forms/textarea/Textarea.svelte.d.ts +27 -0
  316. package/dist/forms/textarea/index.d.ts +4 -0
  317. package/dist/forms/textarea/index.js +3 -0
  318. package/dist/forms/textarea/theme.d.ts +105 -0
  319. package/dist/forms/textarea/theme.js +37 -0
  320. package/dist/forms/textarea/type.d.ts +14 -0
  321. package/dist/forms/textarea/type.js +1 -0
  322. package/dist/forms/toggle/Toggle.svelte +36 -0
  323. package/dist/forms/toggle/Toggle.svelte.d.ts +28 -0
  324. package/dist/forms/toggle/index.d.ts +4 -0
  325. package/dist/forms/toggle/index.js +3 -0
  326. package/dist/forms/toggle/theme.d.ts +279 -0
  327. package/dist/forms/toggle/theme.js +97 -0
  328. package/dist/forms/toggle/type.d.ts +13 -0
  329. package/dist/forms/toggle/type.js +1 -0
  330. package/dist/gallery/Gallery.svelte +31 -14
  331. package/dist/gallery/Gallery.svelte.d.ts +10 -16
  332. package/dist/gallery/index.d.ts +4 -0
  333. package/dist/gallery/index.js +3 -0
  334. package/dist/gallery/theme.d.ts +32 -0
  335. package/dist/gallery/theme.js +8 -0
  336. package/dist/gallery/type.d.ts +13 -0
  337. package/dist/gallery/type.js +1 -0
  338. package/dist/index.d.ts +73 -137
  339. package/dist/index.js +76 -229
  340. package/dist/indicator/Indicator.svelte +39 -0
  341. package/dist/indicator/Indicator.svelte.d.ts +26 -0
  342. package/dist/indicator/index.d.ts +4 -0
  343. package/dist/indicator/index.js +3 -0
  344. package/dist/indicator/theme.d.ts +417 -0
  345. package/dist/indicator/theme.js +122 -0
  346. package/dist/indicator/type.d.ts +13 -0
  347. package/dist/indicator/type.js +1 -0
  348. package/dist/kbd/Kbd.svelte +10 -5
  349. package/dist/kbd/Kbd.svelte.d.ts +7 -11
  350. package/dist/kbd/index.d.ts +4 -0
  351. package/dist/kbd/index.js +3 -0
  352. package/dist/kbd/theme.d.ts +1 -0
  353. package/dist/kbd/theme.js +4 -0
  354. package/dist/kbd/type.d.ts +6 -0
  355. package/dist/kbd/type.js +1 -0
  356. package/dist/list-group/Listgroup.svelte +36 -25
  357. package/dist/list-group/Listgroup.svelte.d.ts +20 -39
  358. package/dist/list-group/ListgroupItem.svelte +41 -42
  359. package/dist/list-group/ListgroupItem.svelte.d.ts +14 -44
  360. package/dist/list-group/index.d.ts +5 -0
  361. package/dist/list-group/index.js +4 -0
  362. package/dist/list-group/theme.d.ts +86 -0
  363. package/dist/list-group/theme.js +59 -0
  364. package/dist/list-group/type.d.ts +32 -0
  365. package/dist/list-group/type.js +1 -0
  366. package/dist/mega-menu/MegaMenu.svelte +34 -27
  367. package/dist/mega-menu/MegaMenu.svelte.d.ts +11 -52
  368. package/dist/mega-menu/index.d.ts +4 -0
  369. package/dist/mega-menu/index.js +3 -0
  370. package/dist/mega-menu/theme.d.ts +22 -0
  371. package/dist/mega-menu/theme.js +12 -0
  372. package/dist/mega-menu/type.d.ts +18 -0
  373. package/dist/mega-menu/type.js +1 -0
  374. package/dist/modal/Modal.svelte +91 -136
  375. package/dist/modal/Modal.svelte.d.ts +28 -64
  376. package/dist/modal/index.d.ts +4 -0
  377. package/dist/modal/index.js +3 -0
  378. package/dist/modal/theme.d.ts +228 -0
  379. package/dist/modal/theme.js +52 -0
  380. package/dist/modal/type.d.ts +25 -0
  381. package/dist/modal/type.js +1 -0
  382. package/dist/navbar/NavBrand.svelte +23 -5
  383. package/dist/navbar/NavBrand.svelte.d.ts +10 -11
  384. package/dist/navbar/NavHamburger.svelte +23 -18
  385. package/dist/navbar/NavHamburger.svelte.d.ts +6 -24
  386. package/dist/navbar/NavLi.svelte +32 -36
  387. package/dist/navbar/NavLi.svelte.d.ts +7 -23
  388. package/dist/navbar/NavUl.svelte +21 -49
  389. package/dist/navbar/NavUl.svelte.d.ts +8 -31
  390. package/dist/navbar/Navbar.svelte +84 -20
  391. package/dist/navbar/Navbar.svelte.d.ts +22 -31
  392. package/dist/navbar/index.d.ts +8 -0
  393. package/dist/navbar/index.js +7 -0
  394. package/dist/navbar/theme.d.ts +300 -0
  395. package/dist/navbar/theme.js +154 -0
  396. package/dist/navbar/type.d.ts +45 -0
  397. package/dist/navbar/type.js +1 -0
  398. package/dist/pagination/Pagination.svelte +45 -40
  399. package/dist/pagination/Pagination.svelte.d.ts +13 -38
  400. package/dist/pagination/PaginationItem.svelte +28 -27
  401. package/dist/pagination/PaginationItem.svelte.d.ts +7 -27
  402. package/dist/pagination/index.d.ts +5 -0
  403. package/dist/pagination/index.js +4 -0
  404. package/dist/pagination/theme.d.ts +83 -0
  405. package/dist/pagination/theme.js +52 -0
  406. package/dist/pagination/type.d.ts +24 -0
  407. package/dist/pagination/type.js +1 -0
  408. package/dist/popover/Popover.svelte +25 -13
  409. package/dist/popover/Popover.svelte.d.ts +13 -40
  410. package/dist/popover/index.d.ts +9 -0
  411. package/dist/popover/index.js +8 -0
  412. package/dist/popover/theme.d.ts +399 -0
  413. package/dist/popover/theme.js +786 -0
  414. package/dist/popover/type.d.ts +12 -0
  415. package/dist/popover/type.js +1 -0
  416. package/dist/progress/Progressbar.svelte +42 -50
  417. package/dist/progress/Progressbar.svelte.d.ts +18 -33
  418. package/dist/progress/index.d.ts +4 -0
  419. package/dist/progress/index.js +3 -0
  420. package/dist/progress/theme.d.ts +271 -0
  421. package/dist/progress/theme.js +113 -0
  422. package/dist/progress/type.d.ts +20 -0
  423. package/dist/progress/type.js +1 -0
  424. package/dist/rating/AdvancedRating.svelte +24 -39
  425. package/dist/rating/AdvancedRating.svelte.d.ts +14 -36
  426. package/dist/rating/CustomIcon.svelte +41 -0
  427. package/dist/rating/CustomIcon.svelte.d.ts +28 -0
  428. package/dist/rating/Heart.svelte +18 -17
  429. package/dist/rating/Heart.svelte.d.ts +10 -19
  430. package/dist/rating/Rating.svelte +36 -39
  431. package/dist/rating/Rating.svelte.d.ts +14 -29
  432. package/dist/rating/RatingComment.svelte +28 -20
  433. package/dist/rating/RatingComment.svelte.d.ts +10 -31
  434. package/dist/rating/Review.svelte +81 -73
  435. package/dist/rating/Review.svelte.d.ts +18 -35
  436. package/dist/rating/ScoreRating.svelte +54 -53
  437. package/dist/rating/ScoreRating.svelte.d.ts +7 -37
  438. package/dist/rating/Star.svelte +22 -21
  439. package/dist/rating/Star.svelte.d.ts +10 -19
  440. package/dist/rating/Thumbup.svelte +18 -17
  441. package/dist/rating/Thumbup.svelte.d.ts +10 -19
  442. package/dist/rating/index.d.ts +12 -0
  443. package/dist/rating/index.js +11 -0
  444. package/dist/rating/theme.d.ts +202 -0
  445. package/dist/rating/theme.js +39 -0
  446. package/dist/rating/type.d.ts +108 -0
  447. package/dist/rating/type.js +1 -0
  448. package/dist/sidebar/Sidebar.svelte +88 -24
  449. package/dist/sidebar/Sidebar.svelte.d.ts +22 -23
  450. package/dist/sidebar/SidebarBrand.svelte +18 -12
  451. package/dist/sidebar/SidebarBrand.svelte.d.ts +9 -15
  452. package/dist/sidebar/SidebarButton.svelte +21 -0
  453. package/dist/sidebar/SidebarButton.svelte.d.ts +20 -0
  454. package/dist/sidebar/SidebarCta.svelte +16 -15
  455. package/dist/sidebar/SidebarCta.svelte.d.ts +11 -18
  456. package/dist/sidebar/SidebarDropdownWrapper.svelte +75 -42
  457. package/dist/sidebar/SidebarDropdownWrapper.svelte.d.ts +19 -29
  458. package/dist/sidebar/SidebarGroup.svelte +10 -12
  459. package/dist/sidebar/SidebarGroup.svelte.d.ts +9 -15
  460. package/dist/sidebar/SidebarItem.svelte +44 -30
  461. package/dist/sidebar/SidebarItem.svelte.d.ts +15 -35
  462. package/dist/sidebar/SidebarWrapper.svelte +5 -5
  463. package/dist/sidebar/SidebarWrapper.svelte.d.ts +3 -8
  464. package/dist/sidebar/index.d.ts +12 -0
  465. package/dist/sidebar/index.js +11 -0
  466. package/dist/sidebar/theme.d.ts +283 -0
  467. package/dist/sidebar/theme.js +66 -0
  468. package/dist/sidebar/type.d.ts +80 -0
  469. package/dist/sidebar/type.js +1 -0
  470. package/dist/skeleton/CardPlaceholder.svelte +22 -28
  471. package/dist/skeleton/CardPlaceholder.svelte.d.ts +6 -10
  472. package/dist/skeleton/ImagePlaceholder.svelte +28 -23
  473. package/dist/skeleton/ImagePlaceholder.svelte.d.ts +7 -12
  474. package/dist/skeleton/ListPlaceholder.svelte +23 -38
  475. package/dist/skeleton/ListPlaceholder.svelte.d.ts +8 -8
  476. package/dist/skeleton/Skeleton.svelte +15 -21
  477. package/dist/skeleton/Skeleton.svelte.d.ts +6 -10
  478. package/dist/skeleton/TestimonialPlaceholder.svelte +16 -11
  479. package/dist/skeleton/TestimonialPlaceholder.svelte.d.ts +2 -5
  480. package/dist/skeleton/TextPlaceholder.svelte +37 -38
  481. package/dist/skeleton/TextPlaceholder.svelte.d.ts +6 -10
  482. package/dist/skeleton/VideoPlaceholder.svelte +10 -15
  483. package/dist/skeleton/VideoPlaceholder.svelte.d.ts +6 -10
  484. package/dist/skeleton/WidgetPlaceholder.svelte +19 -14
  485. package/dist/skeleton/WidgetPlaceholder.svelte.d.ts +2 -5
  486. package/dist/skeleton/index.d.ts +11 -0
  487. package/dist/skeleton/index.js +10 -0
  488. package/dist/skeleton/theme.d.ts +583 -0
  489. package/dist/skeleton/theme.js +175 -0
  490. package/dist/skeleton/type.d.ts +24 -0
  491. package/dist/skeleton/type.js +1 -0
  492. package/dist/speed-dial/SpeedDial.svelte +62 -58
  493. package/dist/speed-dial/SpeedDial.svelte.d.ts +19 -59
  494. package/dist/speed-dial/SpeedDialButton.svelte +27 -32
  495. package/dist/speed-dial/SpeedDialButton.svelte.d.ts +13 -46
  496. package/dist/speed-dial/index.d.ts +5 -0
  497. package/dist/speed-dial/index.js +4 -0
  498. package/dist/speed-dial/theme.d.ts +77 -0
  499. package/dist/speed-dial/theme.js +36 -0
  500. package/dist/speed-dial/type.d.ts +30 -0
  501. package/dist/speed-dial/type.js +1 -0
  502. package/dist/spinner/Spinner.svelte +13 -31
  503. package/dist/spinner/Spinner.svelte.d.ts +9 -18
  504. package/dist/spinner/index.d.ts +4 -0
  505. package/dist/spinner/index.js +3 -0
  506. package/dist/spinner/theme.d.ts +99 -0
  507. package/dist/spinner/theme.js +42 -0
  508. package/dist/spinner/type.d.ts +9 -0
  509. package/dist/spinner/type.js +1 -0
  510. package/dist/table/Table.svelte +56 -86
  511. package/dist/table/Table.svelte.d.ts +21 -52
  512. package/dist/table/TableBody.svelte +27 -14
  513. package/dist/table/TableBody.svelte.d.ts +13 -19
  514. package/dist/table/TableBodyCell.svelte +20 -15
  515. package/dist/table/TableBodyCell.svelte.d.ts +9 -11
  516. package/dist/table/TableBodyRow.svelte +25 -35
  517. package/dist/table/TableBodyRow.svelte.d.ts +11 -15
  518. package/dist/table/TableHead.svelte +47 -28
  519. package/dist/table/TableHead.svelte.d.ts +13 -13
  520. package/dist/table/TableHeadCell.svelte +12 -38
  521. package/dist/table/TableHeadCell.svelte.d.ts +12 -33
  522. package/dist/table/TableSearch.svelte +60 -53
  523. package/dist/table/TableSearch.svelte.d.ts +22 -40
  524. package/dist/table/index.d.ts +10 -0
  525. package/dist/table/index.js +9 -0
  526. package/dist/table/theme.d.ts +424 -0
  527. package/dist/table/theme.js +376 -0
  528. package/dist/table/type.d.ts +80 -0
  529. package/dist/table/type.js +1 -0
  530. package/dist/tabs/TabItem.svelte +60 -40
  531. package/dist/tabs/TabItem.svelte.d.ts +11 -30
  532. package/dist/tabs/Tabs.svelte +39 -49
  533. package/dist/tabs/Tabs.svelte.d.ts +10 -30
  534. package/dist/tabs/index.d.ts +5 -0
  535. package/dist/tabs/index.js +4 -0
  536. package/dist/tabs/theme.d.ts +136 -0
  537. package/dist/tabs/theme.js +84 -0
  538. package/dist/tabs/type.d.ts +29 -0
  539. package/dist/tabs/type.js +2 -0
  540. package/dist/theme/Theme.svelte +62 -0
  541. package/dist/theme/Theme.svelte.d.ts +20 -0
  542. package/dist/theme/index.d.ts +10362 -0
  543. package/dist/theme/index.js +117 -0
  544. package/dist/timeline/Activity.svelte +10 -6
  545. package/dist/timeline/Activity.svelte.d.ts +7 -11
  546. package/dist/timeline/ActivityItem.svelte +27 -55
  547. package/dist/timeline/ActivityItem.svelte.d.ts +13 -41
  548. package/dist/timeline/Group.svelte +14 -22
  549. package/dist/timeline/Group.svelte.d.ts +10 -23
  550. package/dist/timeline/GroupItem.svelte +34 -53
  551. package/dist/timeline/GroupItem.svelte.d.ts +10 -31
  552. package/dist/timeline/Timeline.svelte +15 -14
  553. package/dist/timeline/Timeline.svelte.d.ts +8 -11
  554. package/dist/timeline/TimelineItem.svelte +68 -57
  555. package/dist/timeline/TimelineItem.svelte.d.ts +15 -24
  556. package/dist/timeline/index.d.ts +9 -0
  557. package/dist/timeline/index.js +8 -0
  558. package/dist/timeline/theme.d.ts +300 -0
  559. package/dist/timeline/theme.js +92 -0
  560. package/dist/timeline/type.d.ts +65 -0
  561. package/dist/timeline/type.js +1 -0
  562. package/dist/toast/Toast.svelte +29 -72
  563. package/dist/toast/Toast.svelte.d.ts +17 -34
  564. package/dist/toast/index.d.ts +4 -0
  565. package/dist/toast/index.js +3 -0
  566. package/dist/toast/theme.d.ts +321 -0
  567. package/dist/toast/theme.js +100 -0
  568. package/dist/toast/type.d.ts +19 -0
  569. package/dist/toast/type.js +1 -0
  570. package/dist/toolbar/Toolbar.svelte +37 -20
  571. package/dist/toolbar/Toolbar.svelte.d.ts +10 -25
  572. package/dist/toolbar/ToolbarButton.svelte +29 -44
  573. package/dist/toolbar/ToolbarButton.svelte.d.ts +12 -29
  574. package/dist/toolbar/ToolbarGroup.svelte +18 -8
  575. package/dist/toolbar/ToolbarGroup.svelte.d.ts +10 -11
  576. package/dist/toolbar/index.d.ts +6 -0
  577. package/dist/toolbar/index.js +5 -0
  578. package/dist/toolbar/theme.d.ts +319 -0
  579. package/dist/toolbar/theme.js +144 -0
  580. package/dist/toolbar/type.d.ts +23 -0
  581. package/dist/toolbar/type.js +1 -0
  582. package/dist/tooltip/Tooltip.svelte +31 -21
  583. package/dist/tooltip/Tooltip.svelte.d.ts +13 -39
  584. package/dist/tooltip/index.d.ts +4 -0
  585. package/dist/tooltip/index.js +3 -0
  586. package/dist/tooltip/theme.d.ts +238 -0
  587. package/dist/tooltip/theme.js +55 -0
  588. package/dist/tooltip/type.d.ts +7 -0
  589. package/dist/tooltip/type.js +1 -0
  590. package/dist/types.d.ts +40 -89
  591. package/dist/types.js +1 -1
  592. package/dist/typography/anchor/A.svelte +20 -0
  593. package/dist/typography/anchor/A.svelte.d.ts +21 -0
  594. package/dist/typography/anchor/index.d.ts +4 -0
  595. package/dist/typography/anchor/index.js +3 -0
  596. package/dist/typography/anchor/theme.d.ts +72 -0
  597. package/dist/typography/anchor/theme.js +29 -0
  598. package/dist/typography/anchor/type.d.ts +8 -0
  599. package/dist/typography/anchor/type.js +1 -0
  600. package/dist/typography/blockquote/Blockquote.svelte +34 -0
  601. package/dist/typography/blockquote/Blockquote.svelte.d.ts +25 -0
  602. package/dist/typography/blockquote/index.d.ts +4 -0
  603. package/dist/typography/blockquote/index.js +3 -0
  604. package/dist/typography/blockquote/theme.d.ts +102 -0
  605. package/dist/typography/blockquote/theme.js +45 -0
  606. package/dist/typography/blockquote/type.d.ts +12 -0
  607. package/dist/typography/blockquote/type.js +1 -0
  608. package/dist/typography/descriptionlist/DescriptionList.svelte +26 -0
  609. package/dist/typography/descriptionlist/DescriptionList.svelte.d.ts +21 -0
  610. package/dist/typography/descriptionlist/index.d.ts +4 -0
  611. package/dist/typography/descriptionlist/index.js +3 -0
  612. package/dist/typography/descriptionlist/theme.d.ts +18 -0
  613. package/dist/typography/descriptionlist/theme.js +12 -0
  614. package/dist/typography/descriptionlist/type.d.ts +8 -0
  615. package/dist/typography/descriptionlist/type.js +1 -0
  616. package/dist/typography/heading/Heading.svelte +21 -0
  617. package/dist/typography/heading/Heading.svelte.d.ts +21 -0
  618. package/dist/typography/heading/index.d.ts +4 -0
  619. package/dist/typography/heading/index.js +3 -0
  620. package/dist/typography/heading/theme.d.ts +30 -0
  621. package/dist/typography/heading/theme.js +17 -0
  622. package/dist/typography/heading/type.d.ts +8 -0
  623. package/dist/typography/heading/type.js +1 -0
  624. package/dist/typography/hr/Hr.svelte +29 -0
  625. package/dist/typography/hr/Hr.svelte.d.ts +22 -0
  626. package/dist/typography/hr/index.d.ts +4 -0
  627. package/dist/typography/hr/index.js +3 -0
  628. package/dist/typography/hr/theme.d.ts +34 -0
  629. package/dist/typography/hr/theme.js +19 -0
  630. package/dist/typography/hr/type.d.ts +10 -0
  631. package/dist/typography/hr/type.js +1 -0
  632. package/dist/typography/img/EnhancedImg.svelte +41 -0
  633. package/dist/typography/img/EnhancedImg.svelte.d.ts +25 -0
  634. package/dist/typography/img/Img.svelte +42 -0
  635. package/dist/typography/img/Img.svelte.d.ts +25 -0
  636. package/dist/typography/img/index.d.ts +5 -0
  637. package/dist/typography/img/index.js +4 -0
  638. package/dist/typography/img/theme.d.ts +189 -0
  639. package/dist/typography/img/theme.js +41 -0
  640. package/dist/typography/img/type.d.ts +25 -0
  641. package/dist/typography/img/type.js +1 -0
  642. package/dist/typography/layout/Layout.svelte +19 -0
  643. package/dist/typography/layout/Layout.svelte.d.ts +20 -0
  644. package/dist/typography/layout/index.d.ts +4 -0
  645. package/dist/typography/layout/index.js +3 -0
  646. package/dist/typography/layout/theme.d.ts +1 -0
  647. package/dist/typography/layout/theme.js +4 -0
  648. package/dist/typography/layout/type.d.ts +6 -0
  649. package/dist/typography/layout/type.js +1 -0
  650. package/dist/typography/list/Li.svelte +25 -0
  651. package/dist/typography/list/Li.svelte.d.ts +21 -0
  652. package/dist/typography/list/List.svelte +33 -0
  653. package/dist/typography/list/List.svelte.d.ts +24 -0
  654. package/dist/typography/list/index.d.ts +5 -0
  655. package/dist/typography/list/index.js +4 -0
  656. package/dist/typography/list/theme.d.ts +33 -0
  657. package/dist/typography/list/theme.js +19 -0
  658. package/dist/typography/list/type.d.ts +15 -0
  659. package/dist/typography/list/type.js +1 -0
  660. package/dist/typography/mark/Mark.svelte +18 -0
  661. package/dist/typography/mark/Mark.svelte.d.ts +20 -0
  662. package/dist/typography/mark/index.d.ts +4 -0
  663. package/dist/typography/mark/index.js +3 -0
  664. package/dist/typography/mark/theme.d.ts +1 -0
  665. package/dist/typography/mark/theme.js +4 -0
  666. package/dist/typography/mark/type.d.ts +6 -0
  667. package/dist/typography/mark/type.js +1 -0
  668. package/dist/typography/paragraph/P.svelte +29 -0
  669. package/dist/typography/paragraph/P.svelte.d.ts +29 -0
  670. package/dist/typography/paragraph/index.d.ts +4 -0
  671. package/dist/typography/paragraph/index.js +3 -0
  672. package/dist/typography/paragraph/theme.d.ts +225 -0
  673. package/dist/typography/paragraph/theme.js +79 -0
  674. package/dist/typography/paragraph/type.d.ts +16 -0
  675. package/dist/typography/paragraph/type.js +1 -0
  676. package/dist/typography/secondary/Secondary.svelte +18 -0
  677. package/dist/typography/secondary/Secondary.svelte.d.ts +20 -0
  678. package/dist/typography/secondary/index.d.ts +4 -0
  679. package/dist/typography/secondary/index.js +3 -0
  680. package/dist/typography/secondary/theme.d.ts +1 -0
  681. package/dist/typography/secondary/theme.js +4 -0
  682. package/dist/typography/secondary/type.d.ts +6 -0
  683. package/dist/typography/secondary/type.js +1 -0
  684. package/dist/typography/span/Span.svelte +44 -0
  685. package/dist/typography/span/Span.svelte.d.ts +29 -0
  686. package/dist/typography/span/index.d.ts +4 -0
  687. package/dist/typography/span/index.js +3 -0
  688. package/dist/typography/span/theme.d.ts +246 -0
  689. package/dist/typography/span/theme.js +88 -0
  690. package/dist/typography/span/type.d.ts +16 -0
  691. package/dist/typography/span/type.js +1 -0
  692. package/dist/uiHelpers.svelte.d.ts +11 -0
  693. package/dist/uiHelpers.svelte.js +57 -0
  694. package/dist/utils/Arrow.svelte +72 -0
  695. package/dist/utils/Arrow.svelte.d.ts +19 -0
  696. package/dist/utils/CloseButton.svelte +28 -9
  697. package/dist/utils/CloseButton.svelte.d.ts +11 -10
  698. package/dist/utils/Popper.svelte +183 -158
  699. package/dist/utils/Popper.svelte.d.ts +40 -45
  700. package/dist/utils/focusTrap.d.ts +1 -1
  701. package/dist/utils/focusTrap.js +3 -3
  702. package/dist/utils/index.d.ts +110 -0
  703. package/dist/utils/index.js +70 -0
  704. package/dist/video/Video.svelte +15 -14
  705. package/dist/video/Video.svelte.d.ts +12 -19
  706. package/dist/video/index.d.ts +3 -0
  707. package/dist/video/index.js +2 -0
  708. package/dist/video/type.d.ts +11 -0
  709. package/dist/video/type.js +1 -0
  710. package/package.json +140 -162
  711. package/dist/button-group/ButtonGroup.svelte +0 -18
  712. package/dist/button-group/ButtonGroup.svelte.d.ts +0 -27
  713. package/dist/charts/Chart.svelte +0 -37
  714. package/dist/charts/Chart.svelte.d.ts +0 -26
  715. package/dist/forms/Checkbox.svelte +0 -44
  716. package/dist/forms/Checkbox.svelte.d.ts +0 -58
  717. package/dist/forms/CheckboxButton.svelte +0 -60
  718. package/dist/forms/CheckboxButton.svelte.d.ts +0 -73
  719. package/dist/forms/Dropzone.svelte +0 -32
  720. package/dist/forms/Dropzone.svelte.d.ts +0 -40
  721. package/dist/forms/Fileupload.svelte +0 -48
  722. package/dist/forms/Fileupload.svelte.d.ts +0 -50
  723. package/dist/forms/FloatingLabelInput.svelte +0 -88
  724. package/dist/forms/FloatingLabelInput.svelte.d.ts +0 -54
  725. package/dist/forms/Helper.svelte +0 -22
  726. package/dist/forms/Helper.svelte.d.ts +0 -26
  727. package/dist/forms/Input.svelte +0 -89
  728. package/dist/forms/Input.svelte.d.ts +0 -64
  729. package/dist/forms/InputAddon.svelte +0 -34
  730. package/dist/forms/Label.svelte +0 -32
  731. package/dist/forms/Label.svelte.d.ts +0 -28
  732. package/dist/forms/MultiSelect.svelte +0 -154
  733. package/dist/forms/MultiSelect.svelte.d.ts +0 -42
  734. package/dist/forms/NumberInput.svelte +0 -14
  735. package/dist/forms/NumberInput.svelte.d.ts +0 -46
  736. package/dist/forms/Radio.svelte +0 -48
  737. package/dist/forms/Radio.svelte.d.ts +0 -51
  738. package/dist/forms/RadioButton.svelte +0 -32
  739. package/dist/forms/RadioButton.svelte.d.ts +0 -51
  740. package/dist/forms/Range.svelte +0 -21
  741. package/dist/forms/Range.svelte.d.ts +0 -30
  742. package/dist/forms/Search.svelte +0 -40
  743. package/dist/forms/Search.svelte.d.ts +0 -52
  744. package/dist/forms/Select.svelte +0 -43
  745. package/dist/forms/Select.svelte.d.ts +0 -41
  746. package/dist/forms/Textarea.svelte +0 -47
  747. package/dist/forms/Textarea.svelte.d.ts +0 -50
  748. package/dist/forms/Toggle.svelte +0 -53
  749. package/dist/forms/Toggle.svelte.d.ts +0 -53
  750. package/dist/indicators/Indicator.svelte +0 -72
  751. package/dist/indicators/Indicator.svelte.d.ts +0 -35
  752. package/dist/kbd/ArrowKeyDown.svelte +0 -14
  753. package/dist/kbd/ArrowKeyDown.svelte.d.ts +0 -22
  754. package/dist/kbd/ArrowKeyLeft.svelte +0 -14
  755. package/dist/kbd/ArrowKeyLeft.svelte.d.ts +0 -22
  756. package/dist/kbd/ArrowKeyRight.svelte +0 -14
  757. package/dist/kbd/ArrowKeyRight.svelte.d.ts +0 -22
  758. package/dist/kbd/ArrowKeyUp.svelte +0 -14
  759. package/dist/kbd/ArrowKeyUp.svelte.d.ts +0 -22
  760. package/dist/marquee/Marquee.svelte +0 -46
  761. package/dist/marquee/Marquee.svelte.d.ts +0 -28
  762. package/dist/navbar/Menu.svelte +0 -36
  763. package/dist/navbar/Menu.svelte.d.ts +0 -30
  764. package/dist/navbar/NavContainer.svelte +0 -14
  765. package/dist/navbar/NavContainer.svelte.d.ts +0 -24
  766. package/dist/sidebar/SidebarDropdownItem.svelte +0 -24
  767. package/dist/sidebar/SidebarDropdownItem.svelte.d.ts +0 -40
  768. package/dist/steps/StepIndicator.svelte +0 -74
  769. package/dist/steps/StepIndicator.svelte.d.ts +0 -36
  770. package/dist/typography/A.svelte +0 -23
  771. package/dist/typography/A.svelte.d.ts +0 -35
  772. package/dist/typography/Blockquote.svelte +0 -48
  773. package/dist/typography/Blockquote.svelte.d.ts +0 -39
  774. package/dist/typography/DescriptionList.svelte +0 -19
  775. package/dist/typography/DescriptionList.svelte.d.ts +0 -28
  776. package/dist/typography/Heading.svelte +0 -26
  777. package/dist/typography/Heading.svelte.d.ts +0 -28
  778. package/dist/typography/Hr.svelte +0 -40
  779. package/dist/typography/Hr.svelte.d.ts +0 -40
  780. package/dist/typography/Img.svelte +0 -37
  781. package/dist/typography/Img.svelte.d.ts +0 -40
  782. package/dist/typography/Layout.svelte +0 -19
  783. package/dist/typography/Layout.svelte.d.ts +0 -28
  784. package/dist/typography/Li.svelte +0 -17
  785. package/dist/typography/Li.svelte.d.ts +0 -26
  786. package/dist/typography/List.svelte +0 -28
  787. package/dist/typography/List.svelte.d.ts +0 -36
  788. package/dist/typography/Mark.svelte +0 -18
  789. package/dist/typography/Mark.svelte.d.ts +0 -28
  790. package/dist/typography/P.svelte +0 -89
  791. package/dist/typography/P.svelte.d.ts +0 -47
  792. package/dist/typography/Secondary.svelte +0 -16
  793. package/dist/typography/Secondary.svelte.d.ts +0 -26
  794. package/dist/typography/Span.svelte +0 -32
  795. package/dist/typography/Span.svelte.d.ts +0 -40
  796. package/dist/utils/Frame.svelte +0 -116
  797. package/dist/utils/Frame.svelte.d.ts +0 -77
  798. package/dist/utils/TransitionFrame.svelte +0 -22
  799. package/dist/utils/TransitionFrame.svelte.d.ts +0 -43
  800. package/dist/utils/Wrapper.svelte +0 -20
  801. package/dist/utils/Wrapper.svelte.d.ts +0 -29
  802. package/dist/utils/backdrop.d.ts +0 -6
  803. package/dist/utils/backdrop.js +0 -73
  804. package/dist/utils/clickOutside.d.ts +0 -3
  805. package/dist/utils/clickOutside.js +0 -15
  806. package/dist/utils/generateId.d.ts +0 -1
  807. package/dist/utils/generateId.js +0 -5
@@ -0,0 +1,786 @@
1
+ import { tv } from "tailwind-variants";
2
+ export const popover = tv({
3
+ slots: {
4
+ base: "rounded-lg shadow-md",
5
+ content: "p-2",
6
+ title: "py-2 px-3 rounded-t-md border-b ",
7
+ h3: "font-semibold",
8
+ arrowBase: "absolute pointer-events-none block w-[10px] h-[10px] rotate-45 bg-inherit border-inherit shadow-md"
9
+ },
10
+ variants: {
11
+ color: {
12
+ default: {
13
+ base: "bg-white dark:bg-gray-800 text-gray-500 dark:text-gray-400 border border-gray-200 dark:border-gray-700 divide-gray-200 dark:divide-gray-700",
14
+ title: "bg-gray-100 border-gray-200 dark:border-gray-600 dark:bg-gray-700",
15
+ h3: "text-gray-900 dark:text-white"
16
+ },
17
+ primary: {
18
+ base: "bg-primary-600 text-white",
19
+ title: "bg-primary-700",
20
+ h3: "text-white"
21
+ },
22
+ secondary: {
23
+ base: "bg-secondary-600 text-white",
24
+ title: "bg-secondary-700",
25
+ h3: "text-white"
26
+ },
27
+ gray: {
28
+ base: "bg-gray-600 text-white",
29
+ title: "bg-gray-700",
30
+ h3: "text-white"
31
+ },
32
+ red: {
33
+ base: "bg-red-600 text-white",
34
+ title: "bg-red-700",
35
+ h3: "text-white"
36
+ },
37
+ orange: {
38
+ base: "bg-orange-600 text-white",
39
+ title: "bg-orange-700",
40
+ h3: "text-white"
41
+ },
42
+ amber: {
43
+ base: "bg-amber-600 text-white",
44
+ title: "bg-amber-700",
45
+ h3: "text-white"
46
+ },
47
+ yellow: {
48
+ base: "bg-yellow-400 text-white",
49
+ title: "bg-yellow-500",
50
+ h3: "text-white"
51
+ },
52
+ lime: {
53
+ base: "bg-lime-600 text-white",
54
+ title: "bg-lime-700",
55
+ h3: "text-white"
56
+ },
57
+ green: {
58
+ base: "bg-green-600 text-white",
59
+ title: "bg-green-700",
60
+ h3: "text-white"
61
+ },
62
+ emerald: {
63
+ base: "bg-emerald-600 text-white",
64
+ title: "bg-emerald-700",
65
+ h3: "text-white"
66
+ },
67
+ teal: {
68
+ base: "bg-teal-600 text-white",
69
+ title: "bg-teal-700",
70
+ h3: "text-white"
71
+ },
72
+ cyan: {
73
+ base: "bg-cyan-600 text-white",
74
+ title: "bg-cyan-700",
75
+ h3: "text-white"
76
+ },
77
+ sky: {
78
+ base: "bg-sky-600 text-white",
79
+ title: "bg-sky-700 text-white",
80
+ h3: "text-white"
81
+ },
82
+ blue: {
83
+ base: "bg-blue-600 text-white",
84
+ title: "bg-blue-700 text-white",
85
+ h3: "text-white"
86
+ },
87
+ indigo: {
88
+ base: "bg-indigo-600 text-white",
89
+ title: "bg-indigo-700",
90
+ h3: "text-white"
91
+ },
92
+ violet: {
93
+ base: "bg-violet-600 text-white",
94
+ title: "bg-violet-700",
95
+ h3: "text-white"
96
+ },
97
+ purple: {
98
+ base: "bg-purple-600 text-white",
99
+ title: "bg-purple-700",
100
+ h3: "text-white"
101
+ },
102
+ fuchsia: {
103
+ base: "bg-fuchsia-600 text-white",
104
+ title: "bg-fuchsia-700",
105
+ h3: "text-white"
106
+ },
107
+ pink: {
108
+ base: "bg-pink-600 text-white",
109
+ title: "bg-pink-700",
110
+ h3: "text-white"
111
+ },
112
+ rose: {
113
+ base: "bg-rose-800 text-white",
114
+ title: "bg-rose-700",
115
+ h3: "text-white"
116
+ }
117
+ },
118
+ arrow: {
119
+ true: "",
120
+ false: ""
121
+ },
122
+ placement: {
123
+ top: "",
124
+ bottom: "",
125
+ left: "",
126
+ right: "",
127
+ "right-start": "",
128
+ "right-end": "",
129
+ "left-start": "",
130
+ "left-end": "",
131
+ "top-start": "",
132
+ "top-end": "",
133
+ "bottom-start": "",
134
+ "bottom-end": ""
135
+ }
136
+ },
137
+ compoundVariants: [
138
+ {
139
+ arrow: true,
140
+ position: "bottom",
141
+ color: "default",
142
+ class: { arrowBase: "bg-gray-100 dark:bg-gray-700 shadow-none" }
143
+ },
144
+ {
145
+ arrow: true,
146
+ position: "bottom",
147
+ color: "primary",
148
+ class: { arrowBase: "bg-primary-700 shadow-none" }
149
+ },
150
+ {
151
+ arrow: true,
152
+ position: "bottom",
153
+ color: "secondary",
154
+ class: { arrowBase: "bg-secondary-700 shadow-none" }
155
+ },
156
+ {
157
+ arrow: true,
158
+ position: "bottom",
159
+ color: "gray",
160
+ class: { arrowBase: "bg-gray-700 shadow-none" }
161
+ },
162
+ {
163
+ arrow: true,
164
+ position: "bottom",
165
+ color: "red",
166
+ class: { arrowBase: "bg-red-700 shadow-none" }
167
+ },
168
+ {
169
+ arrow: true,
170
+ position: "bottom",
171
+ color: "orange",
172
+ class: { arrowBase: "bg-orange-700 shadow-none" }
173
+ },
174
+ {
175
+ arrow: true,
176
+ position: "bottom",
177
+ color: "amber",
178
+ class: { arrowBase: "bg-amber-700 shadow-none" }
179
+ },
180
+ {
181
+ arrow: true,
182
+ position: "bottom",
183
+ color: "yellow",
184
+ class: { arrowBase: "bg-yellow-500 shadow-none" }
185
+ },
186
+ {
187
+ arrow: true,
188
+ position: "bottom",
189
+ color: "lime",
190
+ class: { arrowBase: "bg-lime-700 shadow-none" }
191
+ },
192
+ {
193
+ arrow: true,
194
+ position: "bottom",
195
+ color: "green",
196
+ class: { arrowBase: "bg-green-700 shadow-none" }
197
+ },
198
+ {
199
+ arrow: true,
200
+ position: "bottom",
201
+ color: "emerald",
202
+ class: { arrowBase: "bg-emerald-700 shadow-none" }
203
+ },
204
+ {
205
+ arrow: true,
206
+ position: "bottom",
207
+ color: "teal",
208
+ class: { arrowBase: "bg-teal-700 shadow-none" }
209
+ },
210
+ {
211
+ arrow: true,
212
+ position: "bottom",
213
+ color: "cyan",
214
+ class: { arrowBase: "bg-cyan-700 shadow-none" }
215
+ },
216
+ {
217
+ arrow: true,
218
+ position: "bottom",
219
+ color: "sky",
220
+ class: { arrowBase: "bg-sky-700 " }
221
+ },
222
+ {
223
+ arrow: true,
224
+ position: "bottom",
225
+ color: "blue",
226
+ class: { arrowBase: "bg-blue-700 shadow-none" }
227
+ },
228
+ {
229
+ arrow: true,
230
+ position: "bottom",
231
+ color: "indigo",
232
+ class: { arrowBase: "bg-indigo-700 shadow-none" }
233
+ },
234
+ {
235
+ arrow: true,
236
+ position: "bottom",
237
+ color: "violet",
238
+ class: { arrowBase: "bg-violet-700 shadow-none" }
239
+ },
240
+ {
241
+ arrow: true,
242
+ position: "bottom",
243
+ color: "purple",
244
+ class: { arrowBase: "bg-purple-700 shadow-none" }
245
+ },
246
+ {
247
+ arrow: true,
248
+ position: "bottom",
249
+ color: "fuchsia",
250
+ class: { arrowBase: "bg-fuchsia-700 shadow-none" }
251
+ },
252
+ {
253
+ arrow: true,
254
+ position: "bottom",
255
+ color: "pink",
256
+ class: { arrowBase: "bg-pink-700 shadow-none" }
257
+ },
258
+ {
259
+ arrow: true,
260
+ position: "bottom",
261
+ color: "rose",
262
+ class: { arrowBase: "bg-rose-700 shadow-none" }
263
+ },
264
+ {
265
+ arrow: true,
266
+ position: "right-start",
267
+ color: "default",
268
+ class: { arrowBase: "bg-gray-100 dark:bg-gray-700 shadow-none" }
269
+ },
270
+ {
271
+ arrow: true,
272
+ position: "right-start",
273
+ color: "primary",
274
+ class: { arrowBase: "bg-primary-700 shadow-none" }
275
+ },
276
+ {
277
+ arrow: true,
278
+ position: "right-start",
279
+ color: "secondary",
280
+ class: { arrowBase: "bg-secondary-700 shadow-none" }
281
+ },
282
+ {
283
+ arrow: true,
284
+ position: "right-start",
285
+ color: "gray",
286
+ class: { arrowBase: "bg-gray-700 shadow-none" }
287
+ },
288
+ {
289
+ arrow: true,
290
+ position: "right-start",
291
+ color: "red",
292
+ class: { arrowBase: "bg-red-700 shadow-none" }
293
+ },
294
+ {
295
+ arrow: true,
296
+ position: "right-start",
297
+ color: "orange",
298
+ class: { arrowBase: "bg-orange-700 shadow-none" }
299
+ },
300
+ {
301
+ arrow: true,
302
+ position: "right-start",
303
+ color: "amber",
304
+ class: { arrowBase: "bg-amber-700 shadow-none" }
305
+ },
306
+ {
307
+ arrow: true,
308
+ position: "right-start",
309
+ color: "yellow",
310
+ class: { arrowBase: "bg-yellow-500 shadow-none" }
311
+ },
312
+ {
313
+ arrow: true,
314
+ position: "right-start",
315
+ color: "lime",
316
+ class: { arrowBase: "bg-lime-700 shadow-none" }
317
+ },
318
+ {
319
+ arrow: true,
320
+ position: "right-start",
321
+ color: "green",
322
+ class: { arrowBase: "bg-green-700 shadow-none" }
323
+ },
324
+ {
325
+ arrow: true,
326
+ position: "right-start",
327
+ color: "emerald",
328
+ class: { arrowBase: "bg-emerald-700 shadow-none" }
329
+ },
330
+ {
331
+ arrow: true,
332
+ position: "right-start",
333
+ color: "teal",
334
+ class: { arrowBase: "bg-teal-700 shadow-none" }
335
+ },
336
+ {
337
+ arrow: true,
338
+ position: "right-start",
339
+ color: "cyan",
340
+ class: { arrowBase: "bg-cyan-700 shadow-none" }
341
+ },
342
+ {
343
+ arrow: true,
344
+ position: "right-start",
345
+ color: "sky",
346
+ class: { arrowBase: "bg-sky-700 shadow-none" }
347
+ },
348
+ {
349
+ arrow: true,
350
+ position: "right-start",
351
+ color: "blue",
352
+ class: { arrowBase: "bg-blue-700 shadow-none" }
353
+ },
354
+ {
355
+ arrow: true,
356
+ position: "right-start",
357
+ color: "indigo",
358
+ class: { arrowBase: "bg-indigo-700 shadow-none" }
359
+ },
360
+ {
361
+ arrow: true,
362
+ position: "right-start",
363
+ color: "violet",
364
+ class: { arrowBase: "bg-violet-700 shadow-none" }
365
+ },
366
+ {
367
+ arrow: true,
368
+ position: "right-start",
369
+ color: "purple",
370
+ class: { arrowBase: "bg-purple-700 shadow-none" }
371
+ },
372
+ {
373
+ arrow: true,
374
+ position: "right-start",
375
+ color: "fuchsia",
376
+ class: { arrowBase: "bg-fuchsia-700 shadow-none" }
377
+ },
378
+ {
379
+ arrow: true,
380
+ position: "right-start",
381
+ color: "pink",
382
+ class: { arrowBase: "bg-pink-700 shadow-none" }
383
+ },
384
+ {
385
+ arrow: true,
386
+ position: "right-start",
387
+ color: "rose",
388
+ class: { arrowBase: "bg-rose-700 shadow-none" }
389
+ },
390
+ {
391
+ arrow: true,
392
+ position: "left-start",
393
+ color: "default",
394
+ class: { arrowBase: "bg-gray-100 dark:bg-gray-700 shadow-none" }
395
+ },
396
+ {
397
+ arrow: true,
398
+ position: "left-start",
399
+ color: "primary",
400
+ class: { arrowBase: "bg-primary-700 shadow-none" }
401
+ },
402
+ {
403
+ arrow: true,
404
+ position: "left-start",
405
+ color: "secondary",
406
+ class: { arrowBase: "bg-secondary-700 shadow-none" }
407
+ },
408
+ {
409
+ arrow: true,
410
+ position: "left-start",
411
+ color: "gray",
412
+ class: { arrowBase: "bg-gray-700 shadow-none" }
413
+ },
414
+ {
415
+ arrow: true,
416
+ position: "left-start",
417
+ color: "red",
418
+ class: { arrowBase: "bg-red-700 shadow-none" }
419
+ },
420
+ {
421
+ arrow: true,
422
+ position: "left-start",
423
+ color: "orange",
424
+ class: { arrowBase: "bg-orange-700 shadow-none" }
425
+ },
426
+ {
427
+ arrow: true,
428
+ position: "left-start",
429
+ color: "amber",
430
+ class: { arrowBase: "bg-amber-700 shadow-none" }
431
+ },
432
+ {
433
+ arrow: true,
434
+ position: "left-start",
435
+ color: "yellow",
436
+ class: { arrowBase: "bg-yellow-500 shadow-none" }
437
+ },
438
+ {
439
+ arrow: true,
440
+ position: "left-start",
441
+ color: "lime",
442
+ class: { arrowBase: "bg-lime-700 shadow-none" }
443
+ },
444
+ {
445
+ arrow: true,
446
+ position: "left-start",
447
+ color: "green",
448
+ class: { arrowBase: "bg-green-700 shadow-none" }
449
+ },
450
+ {
451
+ arrow: true,
452
+ position: "left-start",
453
+ color: "emerald",
454
+ class: { arrowBase: "bg-emerald-700 shadow-none" }
455
+ },
456
+ {
457
+ arrow: true,
458
+ position: "left-start",
459
+ color: "teal",
460
+ class: { arrowBase: "bg-teal-700 shadow-none" }
461
+ },
462
+ {
463
+ arrow: true,
464
+ position: "left-start",
465
+ color: "cyan",
466
+ class: { arrowBase: "bg-cyan-700 shadow-none" }
467
+ },
468
+ {
469
+ arrow: true,
470
+ position: "left-start",
471
+ color: "sky",
472
+ class: { arrowBase: "bg-sky-700 shadow-none" }
473
+ },
474
+ {
475
+ arrow: true,
476
+ position: "left-start",
477
+ color: "blue",
478
+ class: { arrowBase: "bg-blue-700 shadow-none" }
479
+ },
480
+ {
481
+ arrow: true,
482
+ position: "left-start",
483
+ color: "indigo",
484
+ class: { arrowBase: "bg-indigo-700 shadow-none" }
485
+ },
486
+ {
487
+ arrow: true,
488
+ position: "left-start",
489
+ color: "violet",
490
+ class: { arrowBase: "bg-violet-700 shadow-none" }
491
+ },
492
+ {
493
+ arrow: true,
494
+ position: "left-start",
495
+ color: "purple",
496
+ class: { arrowBase: "bg-purple-700 shadow-none" }
497
+ },
498
+ {
499
+ arrow: true,
500
+ position: "left-start",
501
+ color: "fuchsia",
502
+ class: { arrowBase: "bg-fuchsia-700 shadow-none" }
503
+ },
504
+ {
505
+ arrow: true,
506
+ position: "left-start",
507
+ color: "pink",
508
+ class: { arrowBase: "bg-pink-700 shadow-none" }
509
+ },
510
+ {
511
+ arrow: true,
512
+ position: "left-start",
513
+ color: "rose",
514
+ class: { arrowBase: "bg-rose-700 shadow-none" }
515
+ },
516
+ // left, left-end, left-start
517
+ {
518
+ arrow: true,
519
+ position: "left",
520
+ color: "default",
521
+ class: { arrowBase: "bg-white border-t border-r dark:bg-gray-800 shadow-none" }
522
+ },
523
+ {
524
+ arrow: true,
525
+ position: "left-end",
526
+ color: "default",
527
+ class: { arrowBase: "bg-white border-t border-r dark:bg-gray-800 shadow-none" }
528
+ },
529
+ // bottom-start, bottom-end
530
+ // primary, secondary, gray, red, orange, amber, yellow, lime, green, emerald, teal, cyan, sky, blue, indigo, violet, purple, fuchsia, pink, rose
531
+ {
532
+ arrow: true,
533
+ position: "bottom-start",
534
+ color: "default",
535
+ class: { arrowBase: "bg-gray-100 dark:bg-gray-700 shadow-none" }
536
+ },
537
+ {
538
+ arrow: true,
539
+ position: "bottom-start",
540
+ color: "primary",
541
+ class: { arrowBase: "bg-primary-700 shadow-none" }
542
+ },
543
+ {
544
+ arrow: true,
545
+ position: "bottom-start",
546
+ color: "secondary",
547
+ class: { arrowBase: "bg-secondary-700 shadow-none" }
548
+ },
549
+ {
550
+ arrow: true,
551
+ position: "bottom-start",
552
+ color: "gray",
553
+ class: { arrowBase: "bg-gray-700 shadow-none" }
554
+ },
555
+ {
556
+ arrow: true,
557
+ position: "bottom-start",
558
+ color: "red",
559
+ class: { arrowBase: "bg-red-700 shadow-none" }
560
+ },
561
+ {
562
+ arrow: true,
563
+ position: "bottom-start",
564
+ color: "orange",
565
+ class: { arrowBase: "bg-orange-700 shadow-none" }
566
+ },
567
+ {
568
+ arrow: true,
569
+ position: "bottom-start",
570
+ color: "amber",
571
+ class: { arrowBase: "bg-amber-700 shadow-none" }
572
+ },
573
+ {
574
+ arrow: true,
575
+ position: "bottom-start",
576
+ color: "yellow",
577
+ class: { arrowBase: "bg-yellow-700 shadow-none" }
578
+ },
579
+ {
580
+ arrow: true,
581
+ position: "bottom-start",
582
+ color: "lime",
583
+ class: { arrowBase: "bg-lime-700 shadow-none" }
584
+ },
585
+ {
586
+ arrow: true,
587
+ position: "bottom-start",
588
+ color: "green",
589
+ class: { arrowBase: "bg-green-700 shadow-none" }
590
+ },
591
+ {
592
+ arrow: true,
593
+ position: "bottom-start",
594
+ color: "emerald",
595
+ class: { arrowBase: "bg-emerald-700 shadow-none" }
596
+ },
597
+ {
598
+ arrow: true,
599
+ position: "bottom-start",
600
+ color: "teal",
601
+ class: { arrowBase: "bg-teal-700 shadow-none" }
602
+ },
603
+ {
604
+ arrow: true,
605
+ position: "bottom-start",
606
+ color: "cyan",
607
+ class: { arrowBase: "bg-cyan-700 shadow-none" }
608
+ },
609
+ {
610
+ arrow: true,
611
+ position: "bottom-start",
612
+ color: "sky",
613
+ class: { arrowBase: "bg-sky-700 shadow-none" }
614
+ },
615
+ {
616
+ arrow: true,
617
+ position: "bottom-start",
618
+ color: "blue",
619
+ class: { arrowBase: "bg-blue-700 shadow-none" }
620
+ },
621
+ {
622
+ arrow: true,
623
+ position: "bottom-start",
624
+ color: "indigo",
625
+ class: { arrowBase: "bg-indigo-700 shadow-none" }
626
+ },
627
+ {
628
+ arrow: true,
629
+ position: "bottom-start",
630
+ color: "violet",
631
+ class: { arrowBase: "bg-violet-700 shadow-none" }
632
+ },
633
+ {
634
+ arrow: true,
635
+ position: "bottom-start",
636
+ color: "purple",
637
+ class: { arrowBase: "bg-purple-700 shadow-none" }
638
+ },
639
+ {
640
+ arrow: true,
641
+ position: "bottom-start",
642
+ color: "fuchsia",
643
+ class: { arrowBase: "bg-fuchsia-700 shadow-none" }
644
+ },
645
+ {
646
+ arrow: true,
647
+ position: "bottom-start",
648
+ color: "pink",
649
+ class: { arrowBase: "bg-pink-700 shadow-none" }
650
+ },
651
+ {
652
+ arrow: true,
653
+ position: "bottom-start",
654
+ color: "rose",
655
+ class: { arrowBase: "bg-rose-700 shadow-none" }
656
+ },
657
+ // bottom-end
658
+ // primary, secondary, gray, red, orange, amber, yellow, lime, green, emerald, teal, cyan, sky, blue, indigo, violet, purple, fuchsia, pink, rose
659
+ {
660
+ arrow: true,
661
+ position: "bottom-end",
662
+ color: "default",
663
+ class: { arrowBase: "bg-gray-100 dark:bg-gray-700 shadow-none" }
664
+ },
665
+ {
666
+ arrow: true,
667
+ position: "bottom-end",
668
+ color: "primary",
669
+ class: { arrowBase: "bg-primary-700 shadow-none" }
670
+ },
671
+ {
672
+ arrow: true,
673
+ position: "bottom-end",
674
+ color: "secondary",
675
+ class: { arrowBase: "bg-secondary-700 shadow-none" }
676
+ },
677
+ {
678
+ arrow: true,
679
+ position: "bottom-end",
680
+ color: "gray",
681
+ class: { arrowBase: "bg-gray-700 shadow-none" }
682
+ },
683
+ {
684
+ arrow: true,
685
+ position: "bottom-end",
686
+ color: "red",
687
+ class: { arrowBase: "bg-red-700 shadow-none" }
688
+ },
689
+ {
690
+ arrow: true,
691
+ position: "bottom-end",
692
+ color: "orange",
693
+ class: { arrowBase: "bg-orange-700 shadow-none" }
694
+ },
695
+ {
696
+ arrow: true,
697
+ position: "bottom-end",
698
+ color: "amber",
699
+ class: { arrowBase: "bg-amber-700 shadow-none" }
700
+ },
701
+ {
702
+ arrow: true,
703
+ position: "bottom-end",
704
+ color: "yellow",
705
+ class: { arrowBase: "bg-yellow-700 shadow-none" }
706
+ },
707
+ {
708
+ arrow: true,
709
+ position: "bottom-end",
710
+ color: "lime",
711
+ class: { arrowBase: "bg-lime-700 shadow-none" }
712
+ },
713
+ {
714
+ arrow: true,
715
+ position: "bottom-end",
716
+ color: "green",
717
+ class: { arrowBase: "bg-green-700 shadow-none" }
718
+ },
719
+ {
720
+ arrow: true,
721
+ position: "bottom-end",
722
+ color: "emerald",
723
+ class: { arrowBase: "bg-emerald-700 shadow-none" }
724
+ },
725
+ {
726
+ arrow: true,
727
+ position: "bottom-end",
728
+ color: "teal",
729
+ class: { arrowBase: "bg-teal-700 shadow-none" }
730
+ },
731
+ {
732
+ arrow: true,
733
+ position: "bottom-end",
734
+ color: "cyan",
735
+ class: { arrowBase: "bg-cyan-700 shadow-none" }
736
+ },
737
+ {
738
+ arrow: true,
739
+ position: "bottom-end",
740
+ color: "sky",
741
+ class: { arrowBase: "bg-sky-700 shadow-none" }
742
+ },
743
+ {
744
+ arrow: true,
745
+ position: "bottom-end",
746
+ color: "blue",
747
+ class: { arrowBase: "bg-blue-700 shadow-none" }
748
+ },
749
+ {
750
+ arrow: true,
751
+ position: "bottom-end",
752
+ color: "indigo",
753
+ class: { arrowBase: "bg-indigo-700 shadow-none" }
754
+ },
755
+ {
756
+ arrow: true,
757
+ position: "bottom-end",
758
+ color: "violet",
759
+ class: { arrowBase: "bg-violet-700 shadow-none" }
760
+ },
761
+ {
762
+ arrow: true,
763
+ position: "bottom-end",
764
+ color: "purple",
765
+ class: { arrowBase: "bg-purple-700 shadow-none" }
766
+ },
767
+ {
768
+ arrow: true,
769
+ position: "bottom-end",
770
+ color: "fuchsia",
771
+ class: { arrowBase: "bg-fuchsia-700 shadow-none" }
772
+ },
773
+ {
774
+ arrow: true,
775
+ position: "bottom-end",
776
+ color: "pink",
777
+ class: { arrowBase: "bg-pink-700 shadow-none" }
778
+ },
779
+ {
780
+ arrow: true,
781
+ position: "bottom-end",
782
+ color: "rose",
783
+ class: { arrowBase: "bg-rose-700 shadow-none" }
784
+ }
785
+ ]
786
+ });