flowbite-svelte 0.44.8 → 0.44.9

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 (758) hide show
  1. package/.env +2 -0
  2. package/.eslintrc.cjs +20 -0
  3. package/.github/ISSUE_TEMPLATE/bug_report.yml +33 -0
  4. package/.github/ISSUE_TEMPLATE/config.yml +5 -0
  5. package/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
  6. package/.github/pull_request_template.md +71 -0
  7. package/.github/workflows/playwright-and-lint.yaml +47 -0
  8. package/.prettierignore +16 -0
  9. package/.prettierrc +9 -0
  10. package/CHANGELOG.md +3858 -0
  11. package/CONTRIBUTING.md +66 -0
  12. package/dist/bottom-nav/BottomNavItem.svelte +3 -1
  13. package/dist/bottom-nav/BottomNavItem.svelte.d.ts +2 -0
  14. package/dist/bottom-nav/BottomNavItem.svelte.d.ts.map +1 -1
  15. package/dist/carousels/Carousel.svelte +52 -153
  16. package/dist/carousels/Carousel.svelte.d.ts +22 -37
  17. package/dist/carousels/Carousel.svelte.d.ts.map +1 -1
  18. package/dist/carousels/ControlButton.svelte +31 -0
  19. package/dist/carousels/ControlButton.svelte.d.ts +29 -0
  20. package/dist/carousels/ControlButton.svelte.d.ts.map +1 -0
  21. package/dist/carousels/Controls.svelte +17 -0
  22. package/dist/carousels/Controls.svelte.d.ts +23 -0
  23. package/dist/carousels/Controls.svelte.d.ts.map +1 -0
  24. package/dist/carousels/Indicators.svelte +26 -0
  25. package/dist/carousels/Indicators.svelte.d.ts +32 -0
  26. package/dist/carousels/Indicators.svelte.d.ts.map +1 -0
  27. package/dist/carousels/Thumbnail.svelte +6 -23
  28. package/dist/carousels/Thumbnail.svelte.d.ts +5 -16
  29. package/dist/carousels/Thumbnail.svelte.d.ts.map +1 -1
  30. package/dist/carousels/Thumbnails.svelte +26 -0
  31. package/dist/carousels/Thumbnails.svelte.d.ts +33 -0
  32. package/dist/carousels/Thumbnails.svelte.d.ts.map +1 -0
  33. package/dist/index.d.ts +2 -1
  34. package/dist/index.d.ts.map +1 -1
  35. package/dist/index.js +3 -1
  36. package/dist/tables/TableSearch.svelte +2 -2
  37. package/dist/tables/TableSearch.svelte.d.ts +1 -1
  38. package/mdsvex.config.js +18 -0
  39. package/package.json +18 -80
  40. package/playwright.config.ts +12 -0
  41. package/postcss.config.cjs +12 -0
  42. package/src/app.css +45 -0
  43. package/src/app.d.ts +9 -0
  44. package/src/app.html +28 -0
  45. package/src/app.postcss +55 -0
  46. package/src/hooks.server.js +27 -0
  47. package/src/lib/accordion/Accordion.svelte +61 -0
  48. package/src/lib/accordion/AccordionItem.svelte +120 -0
  49. package/src/lib/alerts/Alert.svelte +60 -0
  50. package/src/lib/avatar/Avatar.svelte +56 -0
  51. package/src/lib/avatar/Placeholder.svelte +16 -0
  52. package/src/lib/badges/Badge.svelte +108 -0
  53. package/src/lib/banner/Banner.svelte +64 -0
  54. package/src/lib/bottom-nav/BottomNav.svelte +76 -0
  55. package/src/lib/bottom-nav/BottomNavHeader.svelte +19 -0
  56. package/src/lib/bottom-nav/BottomNavHeaderItem.svelte +23 -0
  57. package/src/lib/bottom-nav/BottomNavItem.svelte +76 -0
  58. package/src/lib/breadcrumbs/Breadcrumb.svelte +25 -0
  59. package/src/lib/breadcrumbs/BreadcrumbItem.svelte +51 -0
  60. package/src/lib/buttongroups/ButtonGroup.svelte +22 -0
  61. package/src/lib/buttons/Button.svelte +100 -0
  62. package/src/lib/buttons/GradientButton.svelte +79 -0
  63. package/src/lib/cards/Card.svelte +70 -0
  64. package/src/lib/carousels/Carousel.svelte +166 -0
  65. package/src/lib/carousels/ControlButton.svelte +34 -0
  66. package/src/lib/carousels/Controls.svelte +21 -0
  67. package/src/lib/carousels/Indicators.svelte +31 -0
  68. package/src/lib/carousels/Thumbnail.svelte +20 -0
  69. package/src/lib/carousels/Thumbnails.svelte +30 -0
  70. package/src/lib/charts/Chart.svelte +35 -0
  71. package/src/lib/darkmode/DarkMode.svelte +58 -0
  72. package/src/lib/datepicker/Calender.svelte +3 -0
  73. package/src/lib/datepicker/Datepicker.svelte +66 -0
  74. package/src/lib/device-mockup/Android.svelte +24 -0
  75. package/src/lib/device-mockup/DefaultMockup.svelte +21 -0
  76. package/src/lib/device-mockup/DeviceMockup.svelte +235 -0
  77. package/src/lib/device-mockup/Ios.svelte +21 -0
  78. package/src/lib/device-mockup/Smartwatch.svelte +15 -0
  79. package/src/lib/device-mockup/Tablet.svelte +21 -0
  80. package/src/lib/drawer/Drawer.svelte +87 -0
  81. package/src/lib/dropdowns/Dropdown.svelte +81 -0
  82. package/src/lib/dropdowns/DropdownDivider.svelte +13 -0
  83. package/src/lib/dropdowns/DropdownHeader.svelte +21 -0
  84. package/src/lib/dropdowns/DropdownItem.svelte +47 -0
  85. package/src/lib/footer/Footer.svelte +18 -0
  86. package/src/lib/footer/FooterBrand.svelte +39 -0
  87. package/src/lib/footer/FooterCopyright.svelte +38 -0
  88. package/src/lib/footer/FooterIcon.svelte +25 -0
  89. package/src/lib/footer/FooterLink.svelte +26 -0
  90. package/src/lib/footer/FooterLinkGroup.svelte +15 -0
  91. package/src/lib/forms/Checkbox.svelte +70 -0
  92. package/src/lib/forms/Dropzone.svelte +32 -0
  93. package/src/lib/forms/Fileupload.svelte +21 -0
  94. package/src/lib/forms/FloatingLabelInput.svelte +94 -0
  95. package/src/lib/forms/Helper.svelte +23 -0
  96. package/src/lib/forms/Input.svelte +83 -0
  97. package/src/lib/forms/InputAddon.svelte +47 -0
  98. package/src/lib/forms/Label.svelte +40 -0
  99. package/src/lib/forms/MultiSelect.svelte +126 -0
  100. package/src/lib/forms/NumberInput.svelte +16 -0
  101. package/src/lib/forms/Radio.svelte +53 -0
  102. package/src/lib/forms/RadioInline.svelte +9 -0
  103. package/src/lib/forms/Range.svelte +24 -0
  104. package/src/lib/forms/Search.svelte +44 -0
  105. package/src/lib/forms/Select.svelte +49 -0
  106. package/src/lib/forms/Textarea.svelte +51 -0
  107. package/src/lib/forms/Toggle.svelte +56 -0
  108. package/src/lib/forms/VoiceSearch.svelte +57 -0
  109. package/src/lib/gallery/Gallery.svelte +31 -0
  110. package/src/lib/index.ts +228 -0
  111. package/src/lib/indicators/Indicator.svelte +86 -0
  112. package/src/lib/kbd/ArrowKeyDown.svelte +15 -0
  113. package/src/lib/kbd/ArrowKeyLeft.svelte +15 -0
  114. package/src/lib/kbd/ArrowKeyRight.svelte +15 -0
  115. package/src/lib/kbd/ArrowKeyUp.svelte +15 -0
  116. package/src/lib/kbd/Kbd.svelte +15 -0
  117. package/src/lib/list-group/Listgroup.svelte +45 -0
  118. package/src/lib/list-group/ListgroupItem.svelte +57 -0
  119. package/src/lib/megamenu/MegaMenu.svelte +52 -0
  120. package/src/lib/modals/Modal.svelte +162 -0
  121. package/src/lib/navbar/Menu.svelte +38 -0
  122. package/src/lib/navbar/NavBrand.svelte +15 -0
  123. package/src/lib/navbar/NavHamburger.svelte +20 -0
  124. package/src/lib/navbar/NavLi.svelte +37 -0
  125. package/src/lib/navbar/NavSidebarHamburger.svelte +20 -0
  126. package/src/lib/navbar/NavUl.svelte +68 -0
  127. package/src/lib/navbar/Navbar.svelte +42 -0
  128. package/src/lib/navbar/SidebarMenu.svelte +37 -0
  129. package/src/lib/paginations/Pagination.svelte +59 -0
  130. package/src/lib/paginations/PaginationItem.svelte +40 -0
  131. package/src/lib/popover/Popover.svelte +34 -0
  132. package/src/lib/progressbars/Progressbar.svelte +52 -0
  133. package/src/lib/ratings/AdvancedRating.svelte +45 -0
  134. package/src/lib/ratings/Heart.svelte +39 -0
  135. package/src/lib/ratings/Rating.svelte +57 -0
  136. package/src/lib/ratings/RatingComment.svelte +85 -0
  137. package/src/lib/ratings/Review.svelte +78 -0
  138. package/src/lib/ratings/ScoreRating.svelte +76 -0
  139. package/src/lib/ratings/Star.svelte +47 -0
  140. package/src/lib/ratings/Thumbup.svelte +39 -0
  141. package/src/lib/sidebars/Sidebar.svelte +40 -0
  142. package/src/lib/sidebars/SidebarBrand.svelte +24 -0
  143. package/src/lib/sidebars/SidebarCta.svelte +28 -0
  144. package/src/lib/sidebars/SidebarDropdownItem.svelte +26 -0
  145. package/src/lib/sidebars/SidebarDropdownWrapper.svelte +71 -0
  146. package/src/lib/sidebars/SidebarGroup.svelte +24 -0
  147. package/src/lib/sidebars/SidebarItem.svelte +49 -0
  148. package/src/lib/sidebars/SidebarWrapper.svelte +16 -0
  149. package/src/lib/skeleton/CardPlaceholder.svelte +48 -0
  150. package/src/lib/skeleton/ImagePlaceholder.svelte +31 -0
  151. package/src/lib/skeleton/ListPlaceholder.svelte +50 -0
  152. package/src/lib/skeleton/Skeleton.svelte +38 -0
  153. package/src/lib/skeleton/TestimonialPlaceholder.svelte +24 -0
  154. package/src/lib/skeleton/TextPlaceholder.svelte +60 -0
  155. package/src/lib/skeleton/VideoPlaceholder.svelte +33 -0
  156. package/src/lib/skeleton/WidgetPlaceholder.svelte +26 -0
  157. package/src/lib/speed-dial/SpeedDial.svelte +80 -0
  158. package/src/lib/speed-dial/SpeedDialButton.svelte +49 -0
  159. package/src/lib/spinners/Spinner.svelte +49 -0
  160. package/src/lib/steps/StepIndicator.svelte +75 -0
  161. package/src/lib/tables/Table.svelte +49 -0
  162. package/src/lib/tables/TableBody.svelte +14 -0
  163. package/src/lib/tables/TableBodyCell.svelte +22 -0
  164. package/src/lib/tables/TableBodyRow.svelte +50 -0
  165. package/src/lib/tables/TableHead.svelte +45 -0
  166. package/src/lib/tables/TableHeadCell.svelte +15 -0
  167. package/src/lib/tables/TableSearch.svelte +73 -0
  168. package/src/lib/tabs/TabItem.svelte +61 -0
  169. package/src/lib/tabs/Tabs.svelte +78 -0
  170. package/src/lib/timeline/Activity.svelte +16 -0
  171. package/src/lib/timeline/ActivityItem.svelte +59 -0
  172. package/src/lib/timeline/Group.svelte +27 -0
  173. package/src/lib/timeline/GroupItem.svelte +59 -0
  174. package/src/lib/timeline/Timeline.svelte +25 -0
  175. package/src/lib/timeline/TimelineHorizontal.svelte +17 -0
  176. package/src/lib/timeline/TimelineItem.svelte +116 -0
  177. package/src/lib/timeline/TimelineItemHorizontal.svelte +72 -0
  178. package/src/lib/timeline/TimelineItemVertical.svelte +44 -0
  179. package/src/lib/toasts/Toast.svelte +99 -0
  180. package/src/lib/toolbar/Toolbar.svelte +52 -0
  181. package/src/lib/toolbar/ToolbarButton.svelte +67 -0
  182. package/src/lib/toolbar/ToolbarGroup.svelte +20 -0
  183. package/src/lib/tooltips/Tooltip.svelte +42 -0
  184. package/src/lib/types.ts +163 -0
  185. package/src/lib/typography/A.svelte +20 -0
  186. package/src/lib/typography/Blockquote.svelte +51 -0
  187. package/src/lib/typography/DescriptionList.svelte +22 -0
  188. package/src/lib/typography/Heading.svelte +28 -0
  189. package/src/lib/typography/Hr.svelte +37 -0
  190. package/src/lib/typography/Img.svelte +39 -0
  191. package/src/lib/typography/Layout.svelte +21 -0
  192. package/src/lib/typography/Li.svelte +19 -0
  193. package/src/lib/typography/List.svelte +33 -0
  194. package/src/lib/typography/Mark.svelte +20 -0
  195. package/src/lib/typography/P.svelte +102 -0
  196. package/src/lib/typography/Secondary.svelte +18 -0
  197. package/src/lib/typography/Span.svelte +35 -0
  198. package/src/lib/utils/CloseButton.svelte +19 -0
  199. package/src/lib/utils/Frame.svelte +142 -0
  200. package/src/lib/utils/Popper.svelte +206 -0
  201. package/src/lib/utils/Wrapper.svelte +22 -0
  202. package/src/lib/utils/backdrop.ts +101 -0
  203. package/src/lib/utils/clickOutside.ts +16 -0
  204. package/src/lib/utils/createEventDispatcher.ts +24 -0
  205. package/src/lib/utils/focusTrap.js +42 -0
  206. package/src/lib/utils/generateId.js +5 -0
  207. package/src/lib/video/Video.svelte +29 -0
  208. package/src/routes/+error.svelte +5 -0
  209. package/src/routes/+layout.svelte +98 -0
  210. package/src/routes/+page.server.ts +18 -0
  211. package/src/routes/+page.svelte +55 -0
  212. package/src/routes/api/posts/+server.js +7 -0
  213. package/src/routes/component-data/A.json +10 -0
  214. package/src/routes/component-data/Accordion.json +12 -0
  215. package/src/routes/component-data/AccordionItem.json +23 -0
  216. package/src/routes/component-data/Activity.json +1 -0
  217. package/src/routes/component-data/ActivityItem.json +16 -0
  218. package/src/routes/component-data/AdvancedRating.json +13 -0
  219. package/src/routes/component-data/Alert.json +9 -0
  220. package/src/routes/component-data/Android.json +12 -0
  221. package/src/routes/component-data/ArrowKeyDown.json +1 -0
  222. package/src/routes/component-data/ArrowKeyLeft.json +1 -0
  223. package/src/routes/component-data/ArrowKeyRight.json +1 -0
  224. package/src/routes/component-data/ArrowKeyUp.json +1 -0
  225. package/src/routes/component-data/Avatar.json +15 -0
  226. package/src/routes/component-data/Badge.json +10 -0
  227. package/src/routes/component-data/Banner.json +12 -0
  228. package/src/routes/component-data/Blockquote.json +15 -0
  229. package/src/routes/component-data/BottomNav.json +13 -0
  230. package/src/routes/component-data/BottomNavHeader.json +9 -0
  231. package/src/routes/component-data/BottomNavHeaderItem.json +11 -0
  232. package/src/routes/component-data/BottomNavItem.json +12 -0
  233. package/src/routes/component-data/Breadcrumb.json +11 -0
  234. package/src/routes/component-data/BreadcrumbItem.json +12 -0
  235. package/src/routes/component-data/Button.json +14 -0
  236. package/src/routes/component-data/ButtonGroup.json +9 -0
  237. package/src/routes/component-data/Calender.json +1 -0
  238. package/src/routes/component-data/Card.json +13 -0
  239. package/src/routes/component-data/CardPlaceholder.json +9 -0
  240. package/src/routes/component-data/Carousel.json +11 -0
  241. package/src/routes/component-data/Chart.json +1 -0
  242. package/src/routes/component-data/Checkbox.json +14 -0
  243. package/src/routes/component-data/CloseButton.json +1 -0
  244. package/src/routes/component-data/ControlButton.json +9 -0
  245. package/src/routes/component-data/Controls.json +1 -0
  246. package/src/routes/component-data/DarkMode.json +9 -0
  247. package/src/routes/component-data/Datepicker.json +14 -0
  248. package/src/routes/component-data/DefaultMockup.json +11 -0
  249. package/src/routes/component-data/DescriptionList.json +10 -0
  250. package/src/routes/component-data/DeviceMockup.json +50 -0
  251. package/src/routes/component-data/Drawer.json +23 -0
  252. package/src/routes/component-data/Dropdown.json +13 -0
  253. package/src/routes/component-data/DropdownDivider.json +1 -0
  254. package/src/routes/component-data/DropdownHeader.json +9 -0
  255. package/src/routes/component-data/DropdownItem.json +10 -0
  256. package/src/routes/component-data/Dropzone.json +10 -0
  257. package/src/routes/component-data/Fileupload.json +10 -0
  258. package/src/routes/component-data/FloatingLabelInput.json +14 -0
  259. package/src/routes/component-data/Footer.json +1 -0
  260. package/src/routes/component-data/FooterBrand.json +15 -0
  261. package/src/routes/component-data/FooterCopyright.json +14 -0
  262. package/src/routes/component-data/FooterIcon.json +11 -0
  263. package/src/routes/component-data/FooterLink.json +11 -0
  264. package/src/routes/component-data/FooterLinkGroup.json +1 -0
  265. package/src/routes/component-data/Frame.json +18 -0
  266. package/src/routes/component-data/Gallery.json +9 -0
  267. package/src/routes/component-data/GradientButton.json +9 -0
  268. package/src/routes/component-data/Group.json +11 -0
  269. package/src/routes/component-data/GroupItem.json +13 -0
  270. package/src/routes/component-data/Heading.json +10 -0
  271. package/src/routes/component-data/Heart.json +14 -0
  272. package/src/routes/component-data/Helper.json +9 -0
  273. package/src/routes/component-data/Hr.json +13 -0
  274. package/src/routes/component-data/ImagePlaceholder.json +9 -0
  275. package/src/routes/component-data/Img.json +17 -0
  276. package/src/routes/component-data/Indicator.json +13 -0
  277. package/src/routes/component-data/Indicators.json +9 -0
  278. package/src/routes/component-data/Input.json +13 -0
  279. package/src/routes/component-data/InputAddon.json +1 -0
  280. package/src/routes/component-data/Ios.json +11 -0
  281. package/src/routes/component-data/Kbd.json +1 -0
  282. package/src/routes/component-data/Label.json +10 -0
  283. package/src/routes/component-data/Layout.json +10 -0
  284. package/src/routes/component-data/Li.json +9 -0
  285. package/src/routes/component-data/List.json +10 -0
  286. package/src/routes/component-data/ListPlaceholder.json +1 -0
  287. package/src/routes/component-data/Listgroup.json +10 -0
  288. package/src/routes/component-data/ListgroupItem.json +17 -0
  289. package/src/routes/component-data/Mark.json +10 -0
  290. package/src/routes/component-data/MegaMenu.json +11 -0
  291. package/src/routes/component-data/Menu.json +11 -0
  292. package/src/routes/component-data/Modal.json +17 -0
  293. package/src/routes/component-data/MultiSelect.json +11 -0
  294. package/src/routes/component-data/NavBrand.json +1 -0
  295. package/src/routes/component-data/NavHamburger.json +9 -0
  296. package/src/routes/component-data/NavLi.json +10 -0
  297. package/src/routes/component-data/NavSidebarHamburger.json +9 -0
  298. package/src/routes/component-data/NavUl.json +14 -0
  299. package/src/routes/component-data/Navbar.json +10 -0
  300. package/src/routes/component-data/NumberInput.json +1 -0
  301. package/src/routes/component-data/P.json +19 -0
  302. package/src/routes/component-data/Pagination.json +13 -0
  303. package/src/routes/component-data/PaginationItem.json +12 -0
  304. package/src/routes/component-data/Placeholder.json +1 -0
  305. package/src/routes/component-data/Popover.json +9 -0
  306. package/src/routes/component-data/Popper.json +17 -0
  307. package/src/routes/component-data/Progressbar.json +14 -0
  308. package/src/routes/component-data/Radio.json +13 -0
  309. package/src/routes/component-data/RadioInline.json +1 -0
  310. package/src/routes/component-data/Range.json +9 -0
  311. package/src/routes/component-data/Rating.json +14 -0
  312. package/src/routes/component-data/RatingComment.json +10 -0
  313. package/src/routes/component-data/Review.json +13 -0
  314. package/src/routes/component-data/ScoreRating.json +13 -0
  315. package/src/routes/component-data/Search.json +10 -0
  316. package/src/routes/component-data/Secondary.json +9 -0
  317. package/src/routes/component-data/Select.json +14 -0
  318. package/src/routes/component-data/Sidebar.json +11 -0
  319. package/src/routes/component-data/SidebarBrand.json +11 -0
  320. package/src/routes/component-data/SidebarCta.json +11 -0
  321. package/src/routes/component-data/SidebarDropdownItem.json +12 -0
  322. package/src/routes/component-data/SidebarDropdownWrapper.json +14 -0
  323. package/src/routes/component-data/SidebarGroup.json +10 -0
  324. package/src/routes/component-data/SidebarItem.json +12 -0
  325. package/src/routes/component-data/SidebarMenu.json +11 -0
  326. package/src/routes/component-data/SidebarWrapper.json +1 -0
  327. package/src/routes/component-data/Skeleton.json +9 -0
  328. package/src/routes/component-data/Smartwatch.json +9 -0
  329. package/src/routes/component-data/Span.json +16 -0
  330. package/src/routes/component-data/SpeedDial.json +18 -0
  331. package/src/routes/component-data/SpeedDialButton.json +14 -0
  332. package/src/routes/component-data/Spinner.json +13 -0
  333. package/src/routes/component-data/Star.json +14 -0
  334. package/src/routes/component-data/StepIndicator.json +15 -0
  335. package/src/routes/component-data/TabItem.json +12 -0
  336. package/src/routes/component-data/Table.json +14 -0
  337. package/src/routes/component-data/TableBody.json +1 -0
  338. package/src/routes/component-data/TableBodyCell.json +1 -0
  339. package/src/routes/component-data/TableBodyRow.json +1 -0
  340. package/src/routes/component-data/TableHead.json +9 -0
  341. package/src/routes/component-data/TableHeadCell.json +1 -0
  342. package/src/routes/component-data/TableSearch.json +19 -0
  343. package/src/routes/component-data/Tablet.json +11 -0
  344. package/src/routes/component-data/Tabs.json +13 -0
  345. package/src/routes/component-data/TestimonialPlaceholder.json +1 -0
  346. package/src/routes/component-data/TextPlaceholder.json +9 -0
  347. package/src/routes/component-data/Textarea.json +11 -0
  348. package/src/routes/component-data/Thumbnail.json +10 -0
  349. package/src/routes/component-data/Thumbnails.json +9 -0
  350. package/src/routes/component-data/Thumbup.json +14 -0
  351. package/src/routes/component-data/Timeline.json +1 -0
  352. package/src/routes/component-data/TimelineHorizontal.json +1 -0
  353. package/src/routes/component-data/TimelineItem.json +10 -0
  354. package/src/routes/component-data/TimelineItemHorizontal.json +19 -0
  355. package/src/routes/component-data/TimelineItemVertical.json +13 -0
  356. package/src/routes/component-data/Toast.json +15 -0
  357. package/src/routes/component-data/Toggle.json +12 -0
  358. package/src/routes/component-data/Toolbar.json +9 -0
  359. package/src/routes/component-data/ToolbarButton.json +12 -0
  360. package/src/routes/component-data/ToolbarGroup.json +1 -0
  361. package/src/routes/component-data/Tooltip.json +9 -0
  362. package/src/routes/component-data/Video.json +12 -0
  363. package/src/routes/component-data/VideoPlaceholder.json +9 -0
  364. package/src/routes/component-data/VoiceSearch.json +16 -0
  365. package/src/routes/component-data/WidgetPlaceholder.json +1 -0
  366. package/src/routes/component-data/Wrapper.json +10 -0
  367. package/src/routes/component-data/backdrop.json +9 -0
  368. package/src/routes/component-data/clickOutside.json +1 -0
  369. package/src/routes/component-data/createEventDispatcher.json +1 -0
  370. package/src/routes/component-data/focusTrap.json +1 -0
  371. package/src/routes/component-data/generateId.json +1 -0
  372. package/src/routes/component-data/index.json +1 -0
  373. package/src/routes/component-data/types.json +1 -0
  374. package/src/routes/docs/+layout.js +10 -0
  375. package/src/routes/docs/+layout.svelte +74 -0
  376. package/src/routes/docs/components/[slug]/+page.js +13 -0
  377. package/src/routes/docs/components/[slug]/+page.svelte +6 -0
  378. package/src/routes/docs/components/accordion.md +315 -0
  379. package/src/routes/docs/components/alert.md +342 -0
  380. package/src/routes/docs/components/avatar.md +215 -0
  381. package/src/routes/docs/components/badge.md +269 -0
  382. package/src/routes/docs/components/banner.md +166 -0
  383. package/src/routes/docs/components/bottom-navigation.md +397 -0
  384. package/src/routes/docs/components/breadcrumb.md +112 -0
  385. package/src/routes/docs/components/button-group.md +198 -0
  386. package/src/routes/docs/components/button.md +314 -0
  387. package/src/routes/docs/components/card.md +423 -0
  388. package/src/routes/docs/components/carousel.md +242 -0
  389. package/src/routes/docs/components/darkmode.md +111 -0
  390. package/src/routes/docs/components/device-mockups.md +212 -0
  391. package/src/routes/docs/components/drawer.md +638 -0
  392. package/src/routes/docs/components/dropdown.md +748 -0
  393. package/src/routes/docs/components/footer.md +268 -0
  394. package/src/routes/docs/components/forms.md +254 -0
  395. package/src/routes/docs/components/gallery.md +230 -0
  396. package/src/routes/docs/components/imageData/+server.js +43 -0
  397. package/src/routes/docs/components/indicators.md +273 -0
  398. package/src/routes/docs/components/kbd.md +248 -0
  399. package/src/routes/docs/components/list-group.md +157 -0
  400. package/src/routes/docs/components/mega-menu.md +298 -0
  401. package/src/routes/docs/components/modal.md +413 -0
  402. package/src/routes/docs/components/navbar.md +342 -0
  403. package/src/routes/docs/components/pagination.md +350 -0
  404. package/src/routes/docs/components/popover.md +388 -0
  405. package/src/routes/docs/components/progress.md +170 -0
  406. package/src/routes/docs/components/rating.md +326 -0
  407. package/src/routes/docs/components/sidebar.md +568 -0
  408. package/src/routes/docs/components/skeleton.md +165 -0
  409. package/src/routes/docs/components/speed-dial.md +523 -0
  410. package/src/routes/docs/components/spinner.md +117 -0
  411. package/src/routes/docs/components/tab.md +341 -0
  412. package/src/routes/docs/components/table.md +871 -0
  413. package/src/routes/docs/components/timeline.md +267 -0
  414. package/src/routes/docs/components/toast.md +362 -0
  415. package/src/routes/docs/components/tooltip.md +156 -0
  416. package/src/routes/docs/components/typography.md +158 -0
  417. package/src/routes/docs/components/video.md +125 -0
  418. package/src/routes/docs/examples/[slug]/+page.js +13 -0
  419. package/src/routes/docs/examples/[slug]/+page.svelte +6 -0
  420. package/src/routes/docs/examples/sidebar-layout.md +20 -0
  421. package/src/routes/docs/examples/snapshot.md +59 -0
  422. package/src/routes/docs/examples/testsnap.svelte +49 -0
  423. package/src/routes/docs/experimental/[slug]/+page.js +13 -0
  424. package/src/routes/docs/experimental/[slug]/+page.svelte +6 -0
  425. package/src/routes/docs/experimental/datepicker.md +131 -0
  426. package/src/routes/docs/extend/CheckCircle.svelte +3 -0
  427. package/src/routes/docs/extend/[slug]/+page.js +13 -0
  428. package/src/routes/docs/extend/[slug]/+page.svelte +6 -0
  429. package/src/routes/docs/extend/flowbite-svelte-blocks.md +28 -0
  430. package/src/routes/docs/extend/flowbite-svelte-starter.md +34 -0
  431. package/src/routes/docs/extend/icons.md +204 -0
  432. package/src/routes/docs/extend/step-indicator.md +162 -0
  433. package/src/routes/docs/forms/[slug]/+page.js +13 -0
  434. package/src/routes/docs/forms/[slug]/+page.svelte +6 -0
  435. package/src/routes/docs/forms/checkbox.md +329 -0
  436. package/src/routes/docs/forms/file-input.md +171 -0
  437. package/src/routes/docs/forms/floating-label.md +176 -0
  438. package/src/routes/docs/forms/input-field.md +398 -0
  439. package/src/routes/docs/forms/radio.md +303 -0
  440. package/src/routes/docs/forms/range.md +110 -0
  441. package/src/routes/docs/forms/search-input.md +133 -0
  442. package/src/routes/docs/forms/select.md +280 -0
  443. package/src/routes/docs/forms/textarea.md +142 -0
  444. package/src/routes/docs/forms/toggle.md +86 -0
  445. package/src/routes/docs/pages/[slug]/+page.js +13 -0
  446. package/src/routes/docs/pages/[slug]/+page.svelte +6 -0
  447. package/src/routes/docs/pages/colors.md +152 -0
  448. package/src/routes/docs/pages/compiler-speed.md +116 -0
  449. package/src/routes/docs/pages/customization.md +103 -0
  450. package/src/routes/docs/pages/how-to-contribute.md +138 -0
  451. package/src/routes/docs/pages/ide-support.md +19 -0
  452. package/src/routes/docs/pages/introduction.md +131 -0
  453. package/src/routes/docs/pages/license.md +22 -0
  454. package/src/routes/docs/pages/quickstart.md +128 -0
  455. package/src/routes/docs/pages/typescript.md +25 -0
  456. package/src/routes/docs/plugins/[slug]/+page.js +13 -0
  457. package/src/routes/docs/plugins/[slug]/+page.svelte +6 -0
  458. package/src/routes/docs/plugins/charts.md +990 -0
  459. package/src/routes/docs/typography/[slug]/+page.js +13 -0
  460. package/src/routes/docs/typography/[slug]/+page.svelte +6 -0
  461. package/src/routes/docs/typography/blockquote.md +214 -0
  462. package/src/routes/docs/typography/heading.md +270 -0
  463. package/src/routes/docs/typography/hr.md +115 -0
  464. package/src/routes/docs/typography/image.md +244 -0
  465. package/src/routes/docs/typography/link.md +147 -0
  466. package/src/routes/docs/typography/list.md +358 -0
  467. package/src/routes/docs/typography/paragraph.md +265 -0
  468. package/src/routes/docs/typography/text.md +340 -0
  469. package/src/routes/docs/utilities/[slug]/+page.js +13 -0
  470. package/src/routes/docs/utilities/[slug]/+page.svelte +6 -0
  471. package/src/routes/docs/utilities/close-button.md +42 -0
  472. package/src/routes/docs/utilities/label.md +41 -0
  473. package/src/routes/docs/utilities/toolbar.md +157 -0
  474. package/src/routes/landing/CTA.svelte +98 -0
  475. package/src/routes/landing/Components.svelte +42 -0
  476. package/src/routes/landing/Contributors.svelte +55 -0
  477. package/src/routes/landing/DesignFigma.svelte +39 -0
  478. package/src/routes/landing/Featured.svelte +33 -0
  479. package/src/routes/landing/GetStarted.svelte +23 -0
  480. package/src/routes/landing/Hero.svelte +38 -0
  481. package/src/routes/landing/SocialProof.svelte +80 -0
  482. package/src/routes/landing/utils/A.svelte +5 -0
  483. package/src/routes/landing/utils/H2.svelte +1 -0
  484. package/src/routes/landing/utils/Row.svelte +16 -0
  485. package/src/routes/landing/utils/Section.svelte +9 -0
  486. package/src/routes/layouts/component/+page.svelte +44 -0
  487. package/src/routes/layouts/component/Anchor.svelte +29 -0
  488. package/src/routes/layouts/component/code.svelte +1 -0
  489. package/src/routes/layouts/component/h1.svelte +0 -0
  490. package/src/routes/layouts/component/h2.svelte +5 -0
  491. package/src/routes/layouts/component/h3.svelte +5 -0
  492. package/src/routes/layouts/testLayout/+page.svelte +5 -0
  493. package/src/routes/utils/AlgoliaSearch.svelte +22 -0
  494. package/src/routes/utils/CompoAttributesViewer.svelte +78 -0
  495. package/src/routes/utils/CompoCard.svelte +36 -0
  496. package/src/routes/utils/CompoDescription.svelte +7 -0
  497. package/src/routes/utils/CopyCliboardInput.svelte +45 -0
  498. package/src/routes/utils/DocBadge.svelte +7 -0
  499. package/src/routes/utils/DocBadgeList.svelte +10 -0
  500. package/src/routes/utils/ExampleDarkMode.svelte +16 -0
  501. package/src/routes/utils/ExampleWrapper.svelte +143 -0
  502. package/src/routes/utils/Footer.svelte +64 -0
  503. package/src/routes/utils/GitHubSource.svelte +13 -0
  504. package/src/routes/utils/GitHubSourceList.svelte +21 -0
  505. package/src/routes/utils/MetaTag.svelte +42 -0
  506. package/src/routes/utils/Newsletter.svelte +52 -0
  507. package/src/routes/utils/PageHeadSection.svelte +20 -0
  508. package/src/routes/utils/Paging.svelte +60 -0
  509. package/src/routes/utils/TableDefaultRow.svelte +81 -0
  510. package/src/routes/utils/TableProp.svelte +41 -0
  511. package/src/routes/utils/Toc.svelte +55 -0
  512. package/src/routes/utils/ToolbarLink.svelte +12 -0
  513. package/src/routes/utils/data.json +48 -0
  514. package/src/routes/utils/icons/Angular.svelte +3 -0
  515. package/src/routes/utils/icons/ArrowLeft.svelte +3 -0
  516. package/src/routes/utils/icons/ArrowRight.svelte +3 -0
  517. package/src/routes/utils/icons/Check.svelte +3 -0
  518. package/src/routes/utils/icons/China.svelte +9 -0
  519. package/src/routes/utils/icons/Clipboard.svelte +3 -0
  520. package/src/routes/utils/icons/CoinbaseWallet.svelte +4 -0
  521. package/src/routes/utils/icons/Combinator.svelte +35 -0
  522. package/src/routes/utils/icons/Community.svelte +5 -0
  523. package/src/routes/utils/icons/Dev.svelte +9 -0
  524. package/src/routes/utils/icons/Discord.svelte +5 -0
  525. package/src/routes/utils/icons/Dribble.svelte +3 -0
  526. package/src/routes/utils/icons/Figma.svelte +14 -0
  527. package/src/routes/utils/icons/FlowbiteLogo.svelte +49 -0
  528. package/src/routes/utils/icons/Fortmatic.svelte +4 -0
  529. package/src/routes/utils/icons/Germany.svelte +5 -0
  530. package/src/routes/utils/icons/GitHub.svelte +13 -0
  531. package/src/routes/utils/icons/Hunt.svelte +17 -0
  532. package/src/routes/utils/icons/Italy.svelte +7 -0
  533. package/src/routes/utils/icons/Mail.svelte +4 -0
  534. package/src/routes/utils/icons/MetaMask.svelte +31 -0
  535. package/src/routes/utils/icons/Moon.svelte +3 -0
  536. package/src/routes/utils/icons/Npm.svelte +3 -0
  537. package/src/routes/utils/icons/OperaWallet.svelte +17 -0
  538. package/src/routes/utils/icons/Quote.svelte +3 -0
  539. package/src/routes/utils/icons/React.svelte +4 -0
  540. package/src/routes/utils/icons/Reddit.svelte +23 -0
  541. package/src/routes/utils/icons/Sun.svelte +7 -0
  542. package/src/routes/utils/icons/Usa.svelte +31 -0
  543. package/src/routes/utils/icons/Vue.svelte +3 -0
  544. package/src/routes/utils/icons/WalletConnect.svelte +18 -0
  545. package/src/routes/utils/icons/YouTube.svelte +3 -0
  546. package/src/routes/utils/icons/YouTubeFull.svelte +17 -0
  547. package/src/routes/utils/index.ts +146 -0
  548. package/src/routes/utils/mdsvex.d.ts +8 -0
  549. package/static/images/alert-prop.png +0 -0
  550. package/static/images/carousel/cosmic-timetraveler-pYyOZ8q7AII-unsplash.webp +0 -0
  551. package/static/images/carousel/cristina-gottardi-CSpjU6hYo_0-unsplash.webp +0 -0
  552. package/static/images/carousel/johannes-plenio-RwHv7LgeC7s-unsplash.webp +0 -0
  553. package/static/images/carousel/jonatan-pie-3l3RwQdHRHg-unsplash.webp +0 -0
  554. package/static/images/carousel/mark-harpur-K2s_YE031CA-unsplash.webp +0 -0
  555. package/static/images/carousel/pietro-de-grandi-T7K4aEPoGGk-unsplash.webp +0 -0
  556. package/static/images/carousel/sergey-pesterev-tMvuB9se2uQ-unsplash.webp +0 -0
  557. package/static/images/carousel/solotravelgoals-7kLufxYoqWk-unsplash.webp +0 -0
  558. package/static/images/carousel-1.svg +4 -0
  559. package/static/images/carousel-2.svg +4 -0
  560. package/static/images/carousel-3.svg +4 -0
  561. package/static/images/carousel-4.svg +4 -0
  562. package/static/images/carousel-5.svg +4 -0
  563. package/static/images/code-example-dark.png +0 -0
  564. package/static/images/code-example.png +0 -0
  565. package/static/images/colors.webp +0 -0
  566. package/static/images/components/accordion-dark.svg +40 -0
  567. package/static/images/components/accordion.svg +40 -0
  568. package/static/images/components/alert-dark.svg +11 -0
  569. package/static/images/components/alert.svg +11 -0
  570. package/static/images/components/avatar-dark.svg +117 -0
  571. package/static/images/components/avatar.svg +117 -0
  572. package/static/images/components/badge-dark.svg +5 -0
  573. package/static/images/components/badge.svg +5 -0
  574. package/static/images/components/banner-dark.svg +34 -0
  575. package/static/images/components/banner.svg +33 -0
  576. package/static/images/components/bottom-navigation-dark.svg +44 -0
  577. package/static/images/components/bottom-navigation.svg +43 -0
  578. package/static/images/components/breadcrumb-dark.svg +7 -0
  579. package/static/images/components/breadcrumb.svg +7 -0
  580. package/static/images/components/button-dark.svg +10 -0
  581. package/static/images/components/button-group-dark.svg +10 -0
  582. package/static/images/components/button-group.svg +10 -0
  583. package/static/images/components/button.svg +10 -0
  584. package/static/images/components/card-dark.svg +31 -0
  585. package/static/images/components/card.svg +32 -0
  586. package/static/images/components/carousel-dark.svg +13 -0
  587. package/static/images/components/carousel.svg +13 -0
  588. package/static/images/components/charts-dark.svg +29 -0
  589. package/static/images/components/charts.svg +29 -0
  590. package/static/images/components/darkmode-dark.svg +7 -0
  591. package/static/images/components/darkmode.svg +3 -0
  592. package/static/images/components/device-mockups-dark.svg +17 -0
  593. package/static/images/components/device-mockups.svg +17 -0
  594. package/static/images/components/drawer-dark.svg +32 -0
  595. package/static/images/components/drawer.svg +32 -0
  596. package/static/images/components/dropdown-dark.svg +35 -0
  597. package/static/images/components/dropdown.svg +35 -0
  598. package/static/images/components/footer-dark.svg +52 -0
  599. package/static/images/components/footer.svg +50 -0
  600. package/static/images/components/forms-dark.svg +64 -0
  601. package/static/images/components/forms.svg +64 -0
  602. package/static/images/components/gallery-dark.svg +14 -0
  603. package/static/images/components/gallery.svg +14 -0
  604. package/static/images/components/indicators-dark.svg +38 -0
  605. package/static/images/components/indicators.svg +38 -0
  606. package/static/images/components/jumbotron-dark.svg +13 -0
  607. package/static/images/components/jumbotron.svg +13 -0
  608. package/static/images/components/kbd-dark.svg +460 -0
  609. package/static/images/components/kbd.svg +462 -0
  610. package/static/images/components/list-group-dark.svg +58 -0
  611. package/static/images/components/list-group.svg +58 -0
  612. package/static/images/components/mega-menu-dark.svg +71 -0
  613. package/static/images/components/mega-menu.svg +71 -0
  614. package/static/images/components/modal-dark.svg +32 -0
  615. package/static/images/components/modal.svg +33 -0
  616. package/static/images/components/navbar-dark.svg +78 -0
  617. package/static/images/components/navbar.svg +78 -0
  618. package/static/images/components/pagination-dark.svg +50 -0
  619. package/static/images/components/pagination.svg +50 -0
  620. package/static/images/components/popover-dark.svg +18 -0
  621. package/static/images/components/popover.svg +17 -0
  622. package/static/images/components/progress-dark.svg +10 -0
  623. package/static/images/components/progress.svg +10 -0
  624. package/static/images/components/rating-dark.svg +29 -0
  625. package/static/images/components/rating.svg +29 -0
  626. package/static/images/components/sidebar-dark.svg +17 -0
  627. package/static/images/components/sidebar.svg +18 -0
  628. package/static/images/components/skeleton-dark.svg +10 -0
  629. package/static/images/components/skeleton.svg +10 -0
  630. package/static/images/components/speed-dial-dark.svg +69 -0
  631. package/static/images/components/speed-dial.svg +69 -0
  632. package/static/images/components/spinner-dark.svg +6 -0
  633. package/static/images/components/spinner.svg +6 -0
  634. package/static/images/components/stepper-dark.svg +11 -0
  635. package/static/images/components/stepper.svg +10 -0
  636. package/static/images/components/tab-dark.svg +10 -0
  637. package/static/images/components/tab.svg +10 -0
  638. package/static/images/components/table-dark.svg +47 -0
  639. package/static/images/components/table.svg +47 -0
  640. package/static/images/components/timeline-dark.svg +20 -0
  641. package/static/images/components/timeline.svg +20 -0
  642. package/static/images/components/toast-dark.svg +49 -0
  643. package/static/images/components/toast.svg +49 -0
  644. package/static/images/components/tooltip-dark.svg +7 -0
  645. package/static/images/components/tooltip.svg +7 -0
  646. package/static/images/components/typography-dark.svg +13 -0
  647. package/static/images/components/typography.svg +13 -0
  648. package/static/images/components/video-dark.svg +4 -0
  649. package/static/images/components/video.svg +4 -0
  650. package/static/images/eugene.jpg +0 -0
  651. package/static/images/examples/content-gallery-3.png +0 -0
  652. package/static/images/examples/image-1.jpg +0 -0
  653. package/static/images/examples/image-1@2x.jpg +0 -0
  654. package/static/images/examples/image-2@2x.jpg +0 -0
  655. package/static/images/examples/image-3@2x.jpg +0 -0
  656. package/static/images/examples/image-4@2x.jpg +0 -0
  657. package/static/images/experimental/datepicker-dark.svg +67 -0
  658. package/static/images/experimental/datepicker.svg +67 -0
  659. package/static/images/favicon.png +0 -0
  660. package/static/images/favicon.svg +49 -0
  661. package/static/images/figma-dark.png +0 -0
  662. package/static/images/figma.png +0 -0
  663. package/static/images/flowbite-svelte-blocks-optimized.png +0 -0
  664. package/static/images/flowbite-svelte-icon-logo.svg +49 -0
  665. package/static/images/flowbite-svelte-icon.svg +49 -0
  666. package/static/images/flowbite-svelte-og-image.png +0 -0
  667. package/static/images/flowbite-svelte.png +0 -0
  668. package/static/images/forms/checkbox-dark.svg +14 -0
  669. package/static/images/forms/checkbox.svg +14 -0
  670. package/static/images/forms/file-input-dark.svg +59 -0
  671. package/static/images/forms/file-input.svg +46 -0
  672. package/static/images/forms/floating-label-dark.svg +11 -0
  673. package/static/images/forms/floating-label.svg +11 -0
  674. package/static/images/forms/input-field-dark.svg +65 -0
  675. package/static/images/forms/input-field.svg +66 -0
  676. package/static/images/forms/radio-dark.svg +14 -0
  677. package/static/images/forms/radio.svg +12 -0
  678. package/static/images/forms/range-dark.svg +38 -0
  679. package/static/images/forms/range.svg +38 -0
  680. package/static/images/forms/search-input-dark.svg +82 -0
  681. package/static/images/forms/search-input.svg +82 -0
  682. package/static/images/forms/select-dark.svg +64 -0
  683. package/static/images/forms/select.svg +64 -0
  684. package/static/images/forms/textarea-dark.svg +16 -0
  685. package/static/images/forms/textarea.svg +16 -0
  686. package/static/images/forms/toggle-dark.svg +12 -0
  687. package/static/images/forms/toggle.svg +12 -0
  688. package/static/images/gallery-dark.png +0 -0
  689. package/static/images/gallery.png +0 -0
  690. package/static/images/graphs-dark.png +0 -0
  691. package/static/images/graphs.png +0 -0
  692. package/static/images/image-1.jpeg +0 -0
  693. package/static/images/image-1.png +0 -0
  694. package/static/images/image-1.webp +0 -0
  695. package/static/images/image-2.jpeg +0 -0
  696. package/static/images/image-2.png +0 -0
  697. package/static/images/image-2.webp +0 -0
  698. package/static/images/image-4.jpeg +0 -0
  699. package/static/images/image-4.png +0 -0
  700. package/static/images/image-4.webp +0 -0
  701. package/static/images/italy.png +0 -0
  702. package/static/images/nature-1.jpeg +0 -0
  703. package/static/images/office1.webp +0 -0
  704. package/static/images/product-1.webp +0 -0
  705. package/static/images/profile-picture-1.webp +0 -0
  706. package/static/images/profile-picture-2.webp +0 -0
  707. package/static/images/profile-picture-3.webp +0 -0
  708. package/static/images/profile-picture-4.webp +0 -0
  709. package/static/images/profile-picture-5.webp +0 -0
  710. package/static/images/sveltekit-sidebar-layout-optimized.png +0 -0
  711. package/static/images/tailwind-code-dark.png +0 -0
  712. package/static/images/tailwind-code.png +0 -0
  713. package/static/images/typography/blockquote-dark.svg +8 -0
  714. package/static/images/typography/blockquote.svg +8 -0
  715. package/static/images/typography/heading-dark.svg +5 -0
  716. package/static/images/typography/heading.svg +5 -0
  717. package/static/images/typography/hr-dark.svg +7 -0
  718. package/static/images/typography/hr.svg +7 -0
  719. package/static/images/typography/image-dark.svg +6 -0
  720. package/static/images/typography/image.svg +6 -0
  721. package/static/images/typography/link-dark.svg +4 -0
  722. package/static/images/typography/link.svg +4 -0
  723. package/static/images/typography/list-dark.svg +26 -0
  724. package/static/images/typography/list.svg +26 -0
  725. package/static/images/typography/paragraph-dark.svg +13 -0
  726. package/static/images/typography/paragraph.svg +13 -0
  727. package/static/images/typography/text-dark.svg +11 -0
  728. package/static/images/typography/text.svg +11 -0
  729. package/static/site.webmanifest +12 -0
  730. package/static/styles/docs.css +537 -0
  731. package/static/videos/compo-doc.gif +0 -0
  732. package/static/videos/flowbite.mp4 +0 -0
  733. package/svelte.config.js +28 -0
  734. package/tailwind.config.cjs +89 -0
  735. package/tests/components.spec.ts +199 -0
  736. package/tests/examples.spec.ts +11 -0
  737. package/tests/extend.spec.ts +19 -0
  738. package/tests/forms.spec.ts +62 -0
  739. package/tests/page.spec.ts +46 -0
  740. package/tests/plugins.spec.ts +7 -0
  741. package/tests/redirect.spec.ts +175 -0
  742. package/tests/typography.spec.ts +52 -0
  743. package/tests/utilities.spec.ts +22 -0
  744. package/tsconfig.json +21 -0
  745. package/vite.config.ts +22 -0
  746. package/vite.config.ts.timestamp-1692816833518-844de2c3e2008.mjs +22 -0
  747. package/dist/carousels/Caption.svelte +0 -17
  748. package/dist/carousels/Caption.svelte.d.ts +0 -26
  749. package/dist/carousels/Caption.svelte.d.ts.map +0 -1
  750. package/dist/carousels/CarouselTransition.svelte +0 -174
  751. package/dist/carousels/CarouselTransition.svelte.d.ts +0 -68
  752. package/dist/carousels/CarouselTransition.svelte.d.ts.map +0 -1
  753. package/dist/carousels/Indicator.svelte +0 -20
  754. package/dist/carousels/Indicator.svelte.d.ts +0 -28
  755. package/dist/carousels/Indicator.svelte.d.ts.map +0 -1
  756. package/dist/carousels/Slide.svelte +0 -23
  757. package/dist/carousels/Slide.svelte.d.ts +0 -30
  758. package/dist/carousels/Slide.svelte.d.ts.map +0 -1
@@ -0,0 +1,47 @@
1
+ <svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_dd_169_147619)">
3
+ <g clip-path="url(#clip0_169_147619)">
4
+ <rect x="12" y="15" width="386" height="210" rx="8" fill="#374151"/>
5
+ <rect width="386" height="42" transform="translate(12 15)" fill="#4B5563"/>
6
+ <rect x="33" y="31" width="50" height="10" rx="2" fill="#9CA3AF"/>
7
+ <rect x="178.5" y="31" width="50" height="10" rx="2" fill="#9CA3AF"/>
8
+ <rect x="324" y="31" width="50" height="10" rx="2" fill="#9CA3AF"/>
9
+ <line x1="12" y1="56.5" x2="398" y2="56.5" stroke="#4B5563"/>
10
+ <rect x="33" y="73" width="50" height="10" rx="2" fill="#6B7280"/>
11
+ <rect x="178.5" y="73" width="50" height="10" rx="2" fill="#6B7280"/>
12
+ <rect x="324" y="73" width="50" height="10" rx="2" fill="#EF562F"/>
13
+ <line x1="12" y1="98.5" x2="398" y2="98.5" stroke="#4B5563"/>
14
+ <rect x="33" y="115" width="50" height="10" rx="2" fill="#6B7280"/>
15
+ <rect x="178.5" y="115" width="50" height="10" rx="2" fill="#6B7280"/>
16
+ <rect x="324" y="115" width="50" height="10" rx="2" fill="#EF562F"/>
17
+ <line x1="12" y1="140.5" x2="398" y2="140.5" stroke="#4B5563"/>
18
+ <rect x="33" y="157" width="50" height="10" rx="2" fill="#6B7280"/>
19
+ <rect x="178.5" y="157" width="50" height="10" rx="2" fill="#6B7280"/>
20
+ <rect x="324" y="157" width="50" height="10" rx="2" fill="#EF562F"/>
21
+ <line x1="12" y1="182.5" x2="398" y2="182.5" stroke="#4B5563"/>
22
+ <rect x="33" y="199" width="50" height="10" rx="2" fill="#6B7280"/>
23
+ <rect x="178.5" y="199" width="50" height="10" rx="2" fill="#6B7280"/>
24
+ <rect x="324" y="199" width="50" height="10" rx="2" fill="#EF562F"/>
25
+ </g>
26
+ <rect x="12.5" y="15.5" width="385" height="209" rx="7.5" stroke="#4B5563"/>
27
+ </g>
28
+ <defs>
29
+ <filter id="filter0_dd_169_147619" x="6" y="13" width="398" height="222" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
30
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
31
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
32
+ <feOffset dy="4"/>
33
+ <feGaussianBlur stdDeviation="3"/>
34
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
35
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_147619"/>
36
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
37
+ <feOffset dy="2"/>
38
+ <feGaussianBlur stdDeviation="2"/>
39
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
40
+ <feBlend mode="normal" in2="effect1_dropShadow_169_147619" result="effect2_dropShadow_169_147619"/>
41
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_169_147619" result="shape"/>
42
+ </filter>
43
+ <clipPath id="clip0_169_147619">
44
+ <rect x="12" y="15" width="386" height="210" rx="8" fill="white"/>
45
+ </clipPath>
46
+ </defs>
47
+ </svg>
@@ -0,0 +1,47 @@
1
+ <svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_dd_169_147247)">
3
+ <g clip-path="url(#clip0_169_147247)">
4
+ <rect x="12" y="15" width="386" height="210" rx="8" fill="white"/>
5
+ <rect width="386" height="42" transform="translate(12 15)" fill="#F3F4F6"/>
6
+ <rect x="33" y="31" width="50" height="10" rx="2" fill="#D1D5DB"/>
7
+ <rect x="178.5" y="31" width="50" height="10" rx="2" fill="#D1D5DB"/>
8
+ <rect x="324" y="31" width="50" height="10" rx="2" fill="#D1D5DB"/>
9
+ <line x1="12" y1="56.5" x2="398" y2="56.5" stroke="#E4E4E7"/>
10
+ <rect x="33" y="73" width="50" height="10" rx="2" fill="#E5E7EB"/>
11
+ <rect x="178.5" y="73" width="50" height="10" rx="2" fill="#E5E7EB"/>
12
+ <rect x="324" y="73" width="50" height="10" rx="2" fill="#EB4F27"/>
13
+ <line x1="12" y1="98.5" x2="398" y2="98.5" stroke="#E4E4E7"/>
14
+ <rect x="33" y="115" width="50" height="10" rx="2" fill="#E5E7EB"/>
15
+ <rect x="178.5" y="115" width="50" height="10" rx="2" fill="#E5E7EB"/>
16
+ <rect x="324" y="115" width="50" height="10" rx="2" fill="#EB4F27"/>
17
+ <line x1="12" y1="140.5" x2="398" y2="140.5" stroke="#E4E4E7"/>
18
+ <rect x="33" y="157" width="50" height="10" rx="2" fill="#E5E7EB"/>
19
+ <rect x="178.5" y="157" width="50" height="10" rx="2" fill="#E5E7EB"/>
20
+ <rect x="324" y="157" width="50" height="10" rx="2" fill="#EB4F27"/>
21
+ <line x1="12" y1="182.5" x2="398" y2="182.5" stroke="#E4E4E7"/>
22
+ <rect x="33" y="199" width="50" height="10" rx="2" fill="#E5E7EB"/>
23
+ <rect x="178.5" y="199" width="50" height="10" rx="2" fill="#E5E7EB"/>
24
+ <rect x="324" y="199" width="50" height="10" rx="2" fill="#EB4F27"/>
25
+ </g>
26
+ <rect x="12.5" y="15.5" width="385" height="209" rx="7.5" stroke="#D4D4D8"/>
27
+ </g>
28
+ <defs>
29
+ <filter id="filter0_dd_169_147247" x="6" y="13" width="398" height="222" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
30
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
31
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
32
+ <feOffset dy="4"/>
33
+ <feGaussianBlur stdDeviation="3"/>
34
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
35
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_147247"/>
36
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
37
+ <feOffset dy="2"/>
38
+ <feGaussianBlur stdDeviation="2"/>
39
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
40
+ <feBlend mode="normal" in2="effect1_dropShadow_169_147247" result="effect2_dropShadow_169_147247"/>
41
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_169_147247" result="shape"/>
42
+ </filter>
43
+ <clipPath id="clip0_169_147247">
44
+ <rect x="12" y="15" width="386" height="210" rx="8" fill="white"/>
45
+ </clipPath>
46
+ </defs>
47
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="136.267" y="5.8252" width="2" height="221.59" rx="1" fill="#374151"/>
3
+ <path d="M140.767 32.3298C140.767 34.1834 139.214 35.7114 137.267 35.7114C135.319 35.7114 133.767 34.1834 133.767 32.3298C133.767 30.4763 135.319 28.9482 137.267 28.9482C139.214 28.9482 140.767 30.4763 140.767 32.3298Z" fill="#374151" stroke="#111827"/>
4
+ <path d="M140.767 111.903C140.767 113.756 139.214 115.284 137.267 115.284C135.319 115.284 133.767 113.756 133.767 111.903C133.767 110.049 135.319 108.521 137.267 108.521C139.214 108.521 140.767 110.049 140.767 111.903Z" fill="#374151" stroke="#111827"/>
5
+ <path d="M140.767 191.475C140.767 193.329 139.214 194.857 137.267 194.857C135.319 194.857 133.767 193.329 133.767 191.475C133.767 189.622 135.319 188.094 137.267 188.094C139.214 188.094 140.767 189.622 140.767 191.475Z" fill="#374151" stroke="#111827"/>
6
+ <rect x="150.177" y="30.3232" width="71.7043" height="4" rx="2" fill="#D1D5DB"/>
7
+ <rect x="150.177" y="37.584" width="46.2609" height="3" rx="1.5" fill="#6B7280"/>
8
+ <rect x="150.177" y="46.5059" width="126.556" height="3" rx="1.5" fill="#6B7280"/>
9
+ <rect x="150.177" y="52.5059" width="121.93" height="3" rx="1.5" fill="#6B7280"/>
10
+ <rect x="150.177" y="58.5059" width="102.104" height="3" rx="1.5" fill="#6B7280"/>
11
+ <rect x="150.177" y="110.218" width="71.7043" height="4" rx="2" fill="#D1D5DB"/>
12
+ <rect x="150.177" y="117.479" width="46.2609" height="3" rx="1.5" fill="#6B7280"/>
13
+ <rect x="150.177" y="126.401" width="126.556" height="3" rx="1.5" fill="#6B7280"/>
14
+ <rect x="150.177" y="132.401" width="121.93" height="3" rx="1.5" fill="#6B7280"/>
15
+ <rect x="150.177" y="138.401" width="102.104" height="3" rx="1.5" fill="#6B7280"/>
16
+ <rect x="150.043" y="189.232" width="71.7043" height="4" rx="2" fill="#D1D5DB"/>
17
+ <rect x="150.043" y="196.493" width="46.2609" height="3" rx="1.5" fill="#6B7280"/>
18
+ <rect x="150.043" y="205.415" width="126.556" height="3" rx="1.5" fill="#6B7280"/>
19
+ <rect x="150.043" y="211.415" width="121.93" height="3" rx="1.5" fill="#6B7280"/>
20
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="136.767" y="9.70508" width="1" height="220.59" rx="0.5" fill="#D1D5DB" stroke="#D1D5DB"/>
3
+ <path d="M140.767 35.7097C140.767 37.5633 139.214 39.0913 137.267 39.0913C135.319 39.0913 133.767 37.5633 133.767 35.7097C133.767 33.8562 135.319 32.3281 137.267 32.3281C139.214 32.3281 140.767 33.8562 140.767 35.7097Z" fill="#D1D5DB" stroke="white"/>
4
+ <path d="M140.767 115.282C140.767 117.136 139.214 118.664 137.267 118.664C135.319 118.664 133.767 117.136 133.767 115.282C133.767 113.429 135.319 111.901 137.267 111.901C139.214 111.901 140.767 113.429 140.767 115.282Z" fill="#D1D5DB" stroke="white"/>
5
+ <path d="M140.767 194.855C140.767 196.709 139.214 198.237 137.267 198.237C135.319 198.237 133.767 196.709 133.767 194.855C133.767 193.002 135.319 191.474 137.267 191.474C139.214 191.474 140.767 193.002 140.767 194.855Z" fill="#D1D5DB" stroke="white"/>
6
+ <rect x="150.177" y="33.7031" width="71.7043" height="4" rx="2" fill="#9CA3AF"/>
7
+ <rect x="150.177" y="40.9639" width="46.2609" height="3" rx="1.5" fill="#D1D5DB"/>
8
+ <rect x="150.177" y="49.8857" width="126.556" height="3" rx="1.5" fill="#D1D5DB"/>
9
+ <rect x="150.177" y="55.8857" width="121.93" height="3" rx="1.5" fill="#D1D5DB"/>
10
+ <rect x="150.177" y="61.8857" width="102.104" height="3" rx="1.5" fill="#D1D5DB"/>
11
+ <rect x="150.177" y="113.598" width="71.7043" height="4" rx="2" fill="#9CA3AF"/>
12
+ <rect x="150.177" y="120.859" width="46.2609" height="3" rx="1.5" fill="#D1D5DB"/>
13
+ <rect x="150.177" y="129.781" width="126.556" height="3" rx="1.5" fill="#D1D5DB"/>
14
+ <rect x="150.177" y="135.781" width="121.93" height="3" rx="1.5" fill="#D1D5DB"/>
15
+ <rect x="150.177" y="141.781" width="102.104" height="3" rx="1.5" fill="#D1D5DB"/>
16
+ <rect x="150.043" y="192.612" width="71.7043" height="4" rx="2" fill="#9CA3AF"/>
17
+ <rect x="150.043" y="199.873" width="46.2609" height="3" rx="1.5" fill="#D1D5DB"/>
18
+ <rect x="150.043" y="208.795" width="126.556" height="3" rx="1.5" fill="#D1D5DB"/>
19
+ <rect x="150.043" y="214.795" width="121.93" height="3" rx="1.5" fill="#D1D5DB"/>
20
+ </svg>
@@ -0,0 +1,49 @@
1
+ <svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_dd_169_147724)">
3
+ <rect x="91" y="115.5" width="228" height="62" rx="8" fill="#374151"/>
4
+ <path d="M111.833 138.833H111V135.5H110.167M111 132.167H111.008M118.5 135.5C118.5 136.485 118.306 137.46 117.929 138.37C117.552 139.28 117 140.107 116.303 140.803C115.607 141.5 114.78 142.052 113.87 142.429C112.96 142.806 111.985 143 111 143C110.015 143 109.04 142.806 108.13 142.429C107.22 142.052 106.393 141.5 105.697 140.803C105 140.107 104.448 139.28 104.071 138.37C103.694 137.46 103.5 136.485 103.5 135.5C103.5 133.511 104.29 131.603 105.697 130.197C107.103 128.79 109.011 128 111 128C112.989 128 114.897 128.79 116.303 130.197C117.71 131.603 118.5 133.511 118.5 135.5Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <rect x="129" y="125.5" width="84.6768" height="7" rx="2" fill="#D1D5DB"/>
6
+ <rect x="129" y="140.5" width="150" height="5" rx="2" fill="#9CA3AF"/>
7
+ <rect x="129" y="153.5" width="72.5" height="14" rx="2" fill="#EF562F"/>
8
+ <rect x="135" y="159" width="60.5" height="3" rx="1.5" fill="white"/>
9
+ <rect x="206.5" y="153.5" width="72.5" height="14" rx="2" fill="#4B5563"/>
10
+ <rect x="212.5" y="159" width="60.5" height="3" rx="1.5" fill="#9CA3AF"/>
11
+ <path d="M302 132.217L301.647 131.864L298.642 128.859C298.642 128.859 298.642 128.859 298.641 128.859C298.604 128.821 298.553 128.8 298.5 128.8C298.447 128.8 298.396 128.821 298.359 128.859C298.359 128.859 298.359 128.859 298.359 128.859M302 132.217L298.359 128.859M302 132.217L302.354 131.864L305.359 128.859L305.359 128.859L305.365 128.853C305.383 128.833 305.405 128.818 305.43 128.808L305.233 128.349L305.43 128.808C305.454 128.797 305.48 128.792 305.507 128.792C305.534 128.791 305.56 128.796 305.584 128.806C305.609 128.816 305.631 128.831 305.65 128.85L305.65 128.85C305.669 128.869 305.684 128.891 305.694 128.916C305.704 128.94 305.709 128.967 305.709 128.993C305.709 129.02 305.703 129.046 305.693 129.07C305.682 129.095 305.667 129.117 305.648 129.135L305.648 129.135L305.641 129.141L302.636 132.147L302.283 132.5L302.636 132.854L305.637 135.855M302 132.217L305.637 135.855M298.359 128.859C298.321 128.896 298.3 128.947 298.3 129C298.3 129.053 298.321 129.104 298.359 129.141M298.359 128.859L298.359 129.141M298.359 129.141C298.359 129.141 298.359 129.141 298.359 129.142L301.364 132.147L301.717 132.5L301.364 132.854L298.363 135.855C298.328 135.892 298.308 135.942 298.309 135.993C298.309 136.046 298.33 136.096 298.367 136.133C298.404 136.17 298.455 136.191 298.507 136.191C298.558 136.192 298.608 136.173 298.645 136.137L301.647 133.136L302 132.783L302.354 133.136L305.355 136.137C305.392 136.173 305.442 136.192 305.493 136.191C305.546 136.191 305.596 136.17 305.633 136.133C305.67 136.096 305.691 136.046 305.692 135.993C305.692 135.942 305.673 135.892 305.637 135.855M298.359 129.141L305.637 135.855" fill="black" stroke="#6B7280"/>
12
+ </g>
13
+ <g filter="url(#filter1_dd_169_147724)">
14
+ <rect x="91" y="62.5" width="228" height="40" rx="8" fill="#374151"/>
15
+ <path d="M111.833 85.8333H111V82.5H110.167M111 79.1667H111.008M118.5 82.5C118.5 83.4849 118.306 84.4602 117.929 85.3701C117.552 86.2801 117 87.1069 116.303 87.8033C115.607 88.4997 114.78 89.0522 113.87 89.4291C112.96 89.806 111.985 90 111 90C110.015 90 109.04 89.806 108.13 89.4291C107.22 89.0522 106.393 88.4997 105.697 87.8033C105 87.1069 104.448 86.2801 104.071 85.3701C103.694 84.4602 103.5 83.4849 103.5 82.5C103.5 80.5109 104.29 78.6032 105.697 77.1967C107.103 75.7902 109.011 75 111 75C112.989 75 114.897 75.7902 116.303 77.1967C117.71 78.6032 118.5 80.5109 118.5 82.5Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
16
+ <rect x="129" y="79" width="150" height="7" rx="2" fill="#9CA3AF"/>
17
+ <path d="M302 82.2174L301.647 81.8639L298.642 78.8588C298.642 78.8588 298.642 78.8588 298.641 78.8588C298.604 78.8213 298.553 78.8003 298.5 78.8003C298.447 78.8003 298.396 78.8213 298.359 78.8587C298.359 78.8587 298.359 78.8588 298.359 78.8588M302 82.2174L298.359 78.8588M302 82.2174L302.354 81.8639L305.359 78.8588L305.359 78.8588L305.365 78.8526C305.383 78.8335 305.405 78.8182 305.43 78.8077L305.233 78.349L305.43 78.8077C305.454 78.7973 305.48 78.7917 305.507 78.7915C305.534 78.7913 305.56 78.7963 305.584 78.8064C305.609 78.8165 305.631 78.8313 305.65 78.8501L305.65 78.8501C305.669 78.8689 305.684 78.8912 305.694 78.9158C305.704 78.9404 305.709 78.9667 305.709 78.9932C305.709 79.0198 305.703 79.046 305.693 79.0704C305.682 79.0948 305.667 79.1169 305.648 79.1354L305.648 79.1353L305.641 79.1415L302.636 82.1466L302.283 82.5001L302.636 82.8537L305.637 85.8548M302 82.2174L305.637 85.8548M298.359 78.8588C298.321 78.8963 298.3 78.9471 298.3 79.0001C298.3 79.0531 298.321 79.104 298.359 79.1415M298.359 78.8588L298.359 79.1415M298.359 79.1415C298.359 79.1415 298.359 79.1415 298.359 79.1415L301.364 82.1466L301.717 82.5001L301.364 82.8537L298.363 85.8548C298.328 85.8922 298.308 85.9418 298.309 85.9932C298.309 86.0457 298.33 86.0958 298.367 86.1329C298.404 86.17 298.455 86.191 298.507 86.1915C298.558 86.1919 298.608 86.1726 298.645 86.1374L301.647 83.1364L302 82.7828L302.354 83.1364L305.355 86.1374C305.392 86.1726 305.442 86.1919 305.493 86.1915C305.546 86.191 305.596 86.17 305.633 86.1329C305.67 86.0958 305.691 86.0457 305.692 85.9932C305.692 85.9418 305.673 85.8922 305.637 85.8548M298.359 79.1415L305.637 85.8548" fill="black" stroke="#6B7280"/>
18
+ </g>
19
+ <defs>
20
+ <filter id="filter0_dd_169_147724" x="88" y="113.5" width="234" height="68" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
21
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
22
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
23
+ <feOffset dy="1"/>
24
+ <feGaussianBlur stdDeviation="1.5"/>
25
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
26
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_147724"/>
27
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
28
+ <feOffset dy="1"/>
29
+ <feGaussianBlur stdDeviation="1"/>
30
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
31
+ <feBlend mode="normal" in2="effect1_dropShadow_169_147724" result="effect2_dropShadow_169_147724"/>
32
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_169_147724" result="shape"/>
33
+ </filter>
34
+ <filter id="filter1_dd_169_147724" x="88" y="60.5" width="234" height="46" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
35
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
36
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
37
+ <feOffset dy="1"/>
38
+ <feGaussianBlur stdDeviation="1.5"/>
39
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
40
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_147724"/>
41
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
42
+ <feOffset dy="1"/>
43
+ <feGaussianBlur stdDeviation="1"/>
44
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
45
+ <feBlend mode="normal" in2="effect1_dropShadow_169_147724" result="effect2_dropShadow_169_147724"/>
46
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_169_147724" result="shape"/>
47
+ </filter>
48
+ </defs>
49
+ </svg>
@@ -0,0 +1,49 @@
1
+ <svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_dd_169_147698)">
3
+ <rect x="91" y="115.5" width="228" height="62" rx="8" fill="white"/>
4
+ <path d="M111.833 138.833H111V135.5H110.167M111 132.167H111.008M118.5 135.5C118.5 136.485 118.306 137.46 117.929 138.37C117.552 139.28 117 140.107 116.303 140.803C115.607 141.5 114.78 142.052 113.87 142.429C112.96 142.806 111.985 143 111 143C110.015 143 109.04 142.806 108.13 142.429C107.22 142.052 106.393 141.5 105.697 140.803C105 140.107 104.448 139.28 104.071 138.37C103.694 137.46 103.5 136.485 103.5 135.5C103.5 133.511 104.29 131.603 105.697 130.197C107.103 128.79 109.011 128 111 128C112.989 128 114.897 128.79 116.303 130.197C117.71 131.603 118.5 133.511 118.5 135.5Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <rect x="129" y="125.5" width="84.6768" height="7" rx="2" fill="#9CA3AF"/>
6
+ <rect x="129" y="140.5" width="150" height="5" rx="2" fill="#D1D5DB"/>
7
+ <rect x="129" y="153.5" width="72.5" height="14" rx="2" fill="#EB4F27"/>
8
+ <rect x="135" y="159" width="60.5" height="3" rx="1.5" fill="white"/>
9
+ <rect x="206.5" y="153.5" width="72.5" height="14" rx="2" fill="#E5E7EB"/>
10
+ <rect x="212.5" y="159" width="60.5" height="3" rx="1.5" fill="#9CA3AF"/>
11
+ <path d="M302 132.217L301.647 131.864L298.642 128.859C298.642 128.859 298.642 128.859 298.641 128.859C298.604 128.821 298.553 128.8 298.5 128.8C298.447 128.8 298.396 128.821 298.359 128.859C298.359 128.859 298.359 128.859 298.359 128.859M302 132.217L298.359 128.859M302 132.217L302.354 131.864L305.359 128.859L305.359 128.859L305.365 128.853C305.383 128.833 305.405 128.818 305.43 128.808L305.233 128.349L305.43 128.808C305.454 128.797 305.48 128.792 305.507 128.792C305.534 128.791 305.56 128.796 305.584 128.806C305.609 128.816 305.631 128.831 305.65 128.85L305.65 128.85C305.669 128.869 305.684 128.891 305.694 128.916C305.704 128.94 305.709 128.967 305.709 128.993C305.709 129.02 305.703 129.046 305.693 129.07C305.682 129.095 305.667 129.117 305.648 129.135L305.648 129.135L305.641 129.141L302.636 132.147L302.283 132.5L302.636 132.854L305.637 135.855M302 132.217L305.637 135.855M298.359 128.859C298.321 128.896 298.3 128.947 298.3 129C298.3 129.053 298.321 129.104 298.359 129.141M298.359 128.859L298.359 129.141M298.359 129.141C298.359 129.141 298.359 129.141 298.359 129.142L301.364 132.147L301.717 132.5L301.364 132.854L298.363 135.855C298.328 135.892 298.308 135.942 298.309 135.993C298.309 136.046 298.33 136.096 298.367 136.133C298.404 136.17 298.455 136.191 298.507 136.191C298.558 136.192 298.608 136.173 298.645 136.137L301.647 133.136L302 132.783L302.354 133.136L305.355 136.137C305.392 136.173 305.442 136.192 305.493 136.191C305.546 136.191 305.596 136.17 305.633 136.133C305.67 136.096 305.691 136.046 305.692 135.993C305.692 135.942 305.673 135.892 305.637 135.855M298.359 129.141L305.637 135.855" fill="black" stroke="#9CA3AF"/>
12
+ </g>
13
+ <g filter="url(#filter1_dd_169_147698)">
14
+ <rect x="91" y="62.5" width="228" height="40" rx="8" fill="white"/>
15
+ <path d="M111.833 85.8333H111V82.5H110.167M111 79.1667H111.008M118.5 82.5C118.5 83.4849 118.306 84.4602 117.929 85.3701C117.552 86.2801 117 87.1069 116.303 87.8033C115.607 88.4997 114.78 89.0522 113.87 89.4291C112.96 89.806 111.985 90 111 90C110.015 90 109.04 89.806 108.13 89.4291C107.22 89.0522 106.393 88.4997 105.697 87.8033C105 87.1069 104.448 86.2801 104.071 85.3701C103.694 84.4602 103.5 83.4849 103.5 82.5C103.5 80.5109 104.29 78.6032 105.697 77.1967C107.103 75.7902 109.011 75 111 75C112.989 75 114.897 75.7902 116.303 77.1967C117.71 78.6032 118.5 80.5109 118.5 82.5Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
16
+ <rect x="129" y="79" width="150" height="7" rx="2" fill="#D1D5DB"/>
17
+ <path d="M302 82.2174L301.647 81.8639L298.642 78.8588C298.642 78.8588 298.642 78.8588 298.641 78.8588C298.604 78.8213 298.553 78.8003 298.5 78.8003C298.447 78.8003 298.396 78.8213 298.359 78.8587C298.359 78.8587 298.359 78.8588 298.359 78.8588M302 82.2174L298.359 78.8588M302 82.2174L302.354 81.8639L305.359 78.8588L305.359 78.8588L305.365 78.8526C305.383 78.8335 305.405 78.8182 305.43 78.8077L305.233 78.349L305.43 78.8077C305.454 78.7973 305.48 78.7917 305.507 78.7915C305.534 78.7913 305.56 78.7963 305.584 78.8064C305.609 78.8165 305.631 78.8313 305.65 78.8501L305.65 78.8501C305.669 78.8689 305.684 78.8912 305.694 78.9158C305.704 78.9404 305.709 78.9667 305.709 78.9932C305.709 79.0198 305.703 79.046 305.693 79.0704C305.682 79.0948 305.667 79.1169 305.648 79.1354L305.648 79.1353L305.641 79.1415L302.636 82.1466L302.283 82.5001L302.636 82.8537L305.637 85.8548M302 82.2174L305.637 85.8548M298.359 78.8588C298.321 78.8963 298.3 78.9471 298.3 79.0001C298.3 79.0531 298.321 79.104 298.359 79.1415M298.359 78.8588L298.359 79.1415M298.359 79.1415C298.359 79.1415 298.359 79.1415 298.359 79.1415L301.364 82.1466L301.717 82.5001L301.364 82.8537L298.363 85.8548C298.328 85.8922 298.308 85.9418 298.309 85.9932C298.309 86.0457 298.33 86.0958 298.367 86.1329C298.404 86.17 298.455 86.191 298.507 86.1915C298.558 86.1919 298.608 86.1726 298.645 86.1374L301.647 83.1364L302 82.7828L302.354 83.1364L305.355 86.1374C305.392 86.1726 305.442 86.1919 305.493 86.1915C305.546 86.191 305.596 86.17 305.633 86.1329C305.67 86.0958 305.691 86.0457 305.692 85.9932C305.692 85.9418 305.673 85.8922 305.637 85.8548M298.359 79.1415L305.637 85.8548" fill="black" stroke="#9CA3AF"/>
18
+ </g>
19
+ <defs>
20
+ <filter id="filter0_dd_169_147698" x="88" y="113.5" width="234" height="68" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
21
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
22
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
23
+ <feOffset dy="1"/>
24
+ <feGaussianBlur stdDeviation="1.5"/>
25
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
26
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_147698"/>
27
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
28
+ <feOffset dy="1"/>
29
+ <feGaussianBlur stdDeviation="1"/>
30
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
31
+ <feBlend mode="normal" in2="effect1_dropShadow_169_147698" result="effect2_dropShadow_169_147698"/>
32
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_169_147698" result="shape"/>
33
+ </filter>
34
+ <filter id="filter1_dd_169_147698" x="88" y="60.5" width="234" height="46" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
35
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
36
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
37
+ <feOffset dy="1"/>
38
+ <feGaussianBlur stdDeviation="1.5"/>
39
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
40
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_147698"/>
41
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
42
+ <feOffset dy="1"/>
43
+ <feGaussianBlur stdDeviation="1"/>
44
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
45
+ <feBlend mode="normal" in2="effect1_dropShadow_169_147698" result="effect2_dropShadow_169_147698"/>
46
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_169_147698" result="shape"/>
47
+ </filter>
48
+ </defs>
49
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="160" height="125" viewBox="0 0 160 125" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="4" y="69.5591" width="151" height="50" rx="8" fill="#EF562F"/>
3
+ <rect x="28" y="89.5591" width="103" height="10" rx="2" fill="white"/>
4
+ <rect x="4" y="5" width="151" height="44.2268" rx="6" fill="#4B5563"/>
5
+ <rect x="61.8633" y="41.9502" width="25" height="25" transform="rotate(-48.892 61.8633 41.9502)" fill="#4B5563"/>
6
+ <rect x="28" y="22.1133" width="103" height="10" rx="2" fill="#9CA3AF"/>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="160" height="125" viewBox="0 0 160 125" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="5" y="69.5591" width="151" height="50" rx="8" fill="#EB4F27"/>
3
+ <rect x="29" y="89.5591" width="103" height="10" rx="2" fill="white"/>
4
+ <rect x="5" y="5" width="151" height="44.2268" rx="6" fill="#E5E7EB"/>
5
+ <rect x="62.8633" y="41.9502" width="25" height="25" transform="rotate(-48.892 62.8633 41.9502)" fill="#E5E7EB"/>
6
+ <rect x="29" y="22.1133" width="103" height="10" rx="2" fill="#D1D5DB"/>
7
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="340" height="210" viewBox="0 0 340 210" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="13" y="15" width="270" height="12" rx="6" fill="#6B7280"/>
3
+ <rect x="13" y="43" width="291" height="12" rx="6" fill="#6B7280"/>
4
+ <rect x="13" y="71" width="78" height="12" rx="6" fill="#6B7280"/>
5
+ <rect x="103" y="71" width="126" height="12" rx="6" fill="#9CA3AF"/>
6
+ <rect x="241" y="71" width="85" height="12" rx="6" fill="#6B7280"/>
7
+ <rect x="13" y="99" width="261" height="12" rx="6" fill="#6B7280"/>
8
+ <rect x="13" y="127" width="291" height="12" rx="6" fill="#6B7280"/>
9
+ <rect x="13" y="155" width="147" height="12" rx="6" fill="#6B7280"/>
10
+ <rect x="172" y="155" width="55" height="12" rx="6" fill="#9CA3AF"/>
11
+ <rect x="239" y="155" width="85" height="12" rx="6" fill="#6B7280"/>
12
+ <rect x="13" y="183" width="207" height="12" rx="6" fill="#6B7280"/>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="340" height="210" viewBox="0 0 340 210" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="13" y="15" width="270" height="12" rx="6" fill="#D1D5DB"/>
3
+ <rect x="13" y="43" width="291" height="12" rx="6" fill="#D1D5DB"/>
4
+ <rect x="13" y="71" width="78" height="12" rx="6" fill="#D1D5DB"/>
5
+ <rect x="103" y="71" width="126" height="12" rx="6" fill="#9CA3AF"/>
6
+ <rect x="241" y="71" width="85" height="12" rx="6" fill="#D1D5DB"/>
7
+ <rect x="13" y="99" width="261" height="12" rx="6" fill="#D1D5DB"/>
8
+ <rect x="13" y="127" width="291" height="12" rx="6" fill="#D1D5DB"/>
9
+ <rect x="13" y="155" width="147" height="12" rx="6" fill="#D1D5DB"/>
10
+ <rect x="172" y="155" width="55" height="12" rx="6" fill="#D1D5DB"/>
11
+ <rect x="239" y="155" width="85" height="12" rx="6" fill="#D1D5DB"/>
12
+ <rect x="13" y="183" width="207" height="12" rx="6" fill="#D1D5DB"/>
13
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="60" y="52" width="230" height="126" rx="8" fill="#4B5563"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M175.001 130.2C179.032 130.2 182.898 128.598 185.749 125.748C188.599 122.897 190.201 119.031 190.201 115C190.201 110.969 188.599 107.102 185.749 104.252C182.898 101.401 179.032 99.7998 175.001 99.7998C170.969 99.7998 167.103 101.401 164.253 104.252C161.402 107.102 159.801 110.969 159.801 115C159.801 119.031 161.402 122.897 164.253 125.748C167.103 128.598 170.969 130.2 175.001 130.2ZM174.155 109.619C173.869 109.428 173.537 109.318 173.193 109.302C172.849 109.285 172.508 109.362 172.204 109.524C171.901 109.687 171.648 109.928 171.471 110.223C171.294 110.518 171.201 110.856 171.201 111.2V118.8C171.201 119.144 171.294 119.481 171.471 119.776C171.648 120.072 171.901 120.313 172.204 120.475C172.508 120.638 172.849 120.715 173.193 120.698C173.537 120.681 173.869 120.572 174.155 120.381L179.855 116.581C180.116 116.407 180.329 116.172 180.476 115.896C180.624 115.62 180.701 115.313 180.701 115C180.701 114.687 180.624 114.379 180.476 114.103C180.329 113.828 180.116 113.593 179.855 113.419L174.155 109.619Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="60" y="52" width="230" height="126" rx="8" fill="#D1D5DB"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M175.001 130.2C179.032 130.2 182.898 128.598 185.749 125.748C188.599 122.897 190.201 119.031 190.201 115C190.201 110.969 188.599 107.102 185.749 104.252C182.898 101.401 179.032 99.7998 175.001 99.7998C170.969 99.7998 167.103 101.401 164.253 104.252C161.402 107.102 159.801 110.969 159.801 115C159.801 119.031 161.402 122.897 164.253 125.748C167.103 128.598 170.969 130.2 175.001 130.2ZM174.155 109.619C173.869 109.428 173.537 109.318 173.193 109.302C172.849 109.285 172.508 109.362 172.204 109.524C171.901 109.687 171.648 109.928 171.471 110.223C171.294 110.518 171.201 110.856 171.201 111.2V118.8C171.201 119.144 171.294 119.481 171.471 119.776C171.648 120.072 171.901 120.313 172.204 120.475C172.508 120.638 172.849 120.715 173.193 120.698C173.537 120.681 173.869 120.572 174.155 120.381L179.855 116.581C180.116 116.407 180.329 116.172 180.476 115.896C180.624 115.62 180.701 115.313 180.701 115C180.701 114.687 180.624 114.379 180.476 114.103C180.329 113.828 180.116 113.593 179.855 113.419L174.155 109.619Z" fill="white"/>
4
+ </svg>
Binary file
@@ -0,0 +1,67 @@
1
+ <svg width="220" height="240" viewBox="0 0 220 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_169_147831)">
3
+ <rect x="7" y="8" width="205" height="50" rx="8" fill="#EF562F"/>
4
+ <rect x="31" y="28.5" width="20" height="9" rx="2" fill="white"/>
5
+ <rect x="61" y="28.5" width="20" height="9" rx="2" fill="white"/>
6
+ <rect x="91" y="28.5" width="80.233" height="9" rx="2" fill="white"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M186.526 30.2931C186.713 30.1056 186.968 30.0003 187.233 30.0003C187.498 30.0003 187.752 30.1056 187.94 30.2931L191.233 33.5861L194.526 30.2931C194.618 30.1976 194.728 30.1214 194.85 30.069C194.972 30.0166 195.104 29.989 195.236 29.9878C195.369 29.9867 195.501 30.012 195.624 30.0623C195.747 30.1125 195.858 30.1868 195.952 30.2807C196.046 30.3746 196.12 30.4862 196.171 30.6091C196.221 30.732 196.246 30.8637 196.245 30.9965C196.244 31.1293 196.216 31.2605 196.164 31.3825C196.111 31.5045 196.035 31.6148 195.94 31.7071L191.94 35.7071C191.752 35.8946 191.498 35.9999 191.233 35.9999C190.968 35.9999 190.713 35.8946 190.526 35.7071L186.526 31.7071C186.338 31.5196 186.233 31.2652 186.233 31.0001C186.233 30.7349 186.338 30.4806 186.526 30.2931Z" fill="white"/>
8
+ <g filter="url(#filter0_dd_169_147831)">
9
+ <rect x="7" y="70" width="205" height="163" rx="8" fill="#374151"/>
10
+ <rect x="25" y="86" width="13.5714" height="3" rx="1.5" fill="#9CA3AF"/>
11
+ <rect x="50.5713" y="86" width="13.5714" height="3" rx="1.5" fill="#9CA3AF"/>
12
+ <rect x="76.1431" y="86" width="13.5714" height="3" rx="1.5" fill="#9CA3AF"/>
13
+ <rect x="101.714" y="86" width="13.5714" height="3" rx="1.5" fill="#9CA3AF"/>
14
+ <rect x="127.286" y="86" width="13.5714" height="3" rx="1.5" fill="#9CA3AF"/>
15
+ <rect x="152.857" y="86" width="13.5714" height="3" rx="1.5" fill="#9CA3AF"/>
16
+ <rect x="178.429" y="86" width="13.5714" height="3" rx="1.5" fill="#9CA3AF"/>
17
+ <rect x="25" y="107" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
18
+ <rect x="50.5713" y="107" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
19
+ <rect x="76.1431" y="107" width="13.5714" height="10" rx="2" fill="#EF562F"/>
20
+ <rect x="101.714" y="107" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
21
+ <rect x="127.286" y="107" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
22
+ <rect x="152.857" y="107" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
23
+ <rect x="178.429" y="107" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
24
+ <rect x="25" y="139" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
25
+ <rect x="50.5713" y="139" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
26
+ <rect x="76.1431" y="139" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
27
+ <rect x="101.714" y="139" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
28
+ <rect x="127.286" y="139" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
29
+ <rect x="152.857" y="139" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
30
+ <rect x="178.429" y="139" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
31
+ <rect x="25" y="171" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
32
+ <rect x="50.5713" y="171" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
33
+ <rect x="76.1431" y="171" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
34
+ <rect x="101.714" y="171" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
35
+ <rect x="127.286" y="171" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
36
+ <rect x="152.857" y="171" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
37
+ <rect x="178.429" y="171" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
38
+ <rect x="25" y="203" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
39
+ <rect x="50.5713" y="203" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
40
+ <rect x="76.1431" y="203" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
41
+ <rect x="101.714" y="203" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
42
+ <rect x="127.286" y="203" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
43
+ <rect x="152.857" y="203" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
44
+ <rect x="178.429" y="203" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
45
+ <rect x="7.5" y="70.5" width="204" height="162" rx="7.5" stroke="#4B5563"/>
46
+ </g>
47
+ </g>
48
+ <defs>
49
+ <filter id="filter0_dd_169_147831" x="1" y="68" width="217" height="175" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
50
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
51
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
52
+ <feOffset dy="4"/>
53
+ <feGaussianBlur stdDeviation="3"/>
54
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
55
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_147831"/>
56
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
57
+ <feOffset dy="2"/>
58
+ <feGaussianBlur stdDeviation="2"/>
59
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
60
+ <feBlend mode="normal" in2="effect1_dropShadow_169_147831" result="effect2_dropShadow_169_147831"/>
61
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_169_147831" result="shape"/>
62
+ </filter>
63
+ <clipPath id="clip0_169_147831">
64
+ <rect width="220" height="240" fill="white"/>
65
+ </clipPath>
66
+ </defs>
67
+ </svg>
@@ -0,0 +1,67 @@
1
+ <svg width="220" height="240" viewBox="0 0 220 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_169_147298)">
3
+ <rect x="7" y="8" width="205" height="50" rx="8" fill="#EB4F27"/>
4
+ <rect x="31" y="28.5" width="20" height="9" rx="2" fill="white"/>
5
+ <rect x="61" y="28.5" width="20" height="9" rx="2" fill="white"/>
6
+ <rect x="91" y="28.5" width="80.233" height="9" rx="2" fill="white"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M186.526 30.2931C186.713 30.1056 186.968 30.0003 187.233 30.0003C187.498 30.0003 187.752 30.1056 187.94 30.2931L191.233 33.5861L194.526 30.2931C194.618 30.1976 194.728 30.1214 194.85 30.069C194.972 30.0166 195.104 29.989 195.236 29.9878C195.369 29.9867 195.501 30.012 195.624 30.0623C195.747 30.1125 195.858 30.1868 195.952 30.2807C196.046 30.3746 196.12 30.4862 196.171 30.6091C196.221 30.732 196.246 30.8637 196.245 30.9965C196.244 31.1293 196.216 31.2605 196.164 31.3825C196.111 31.5045 196.035 31.6148 195.94 31.7071L191.94 35.7071C191.752 35.8946 191.498 35.9999 191.233 35.9999C190.968 35.9999 190.713 35.8946 190.526 35.7071L186.526 31.7071C186.338 31.5196 186.233 31.2652 186.233 31.0001C186.233 30.7349 186.338 30.4806 186.526 30.2931Z" fill="white"/>
8
+ <g filter="url(#filter0_dd_169_147298)">
9
+ <rect x="7" y="70" width="205" height="163" rx="8" fill="white"/>
10
+ <rect x="25" y="86" width="13.5714" height="3" rx="1.5" fill="#E5E7EB"/>
11
+ <rect x="50.5713" y="86" width="13.5714" height="3" rx="1.5" fill="#E5E7EB"/>
12
+ <rect x="76.1431" y="86" width="13.5714" height="3" rx="1.5" fill="#E5E7EB"/>
13
+ <rect x="101.714" y="86" width="13.5714" height="3" rx="1.5" fill="#E5E7EB"/>
14
+ <rect x="127.286" y="86" width="13.5714" height="3" rx="1.5" fill="#E5E7EB"/>
15
+ <rect x="152.857" y="86" width="13.5714" height="3" rx="1.5" fill="#E5E7EB"/>
16
+ <rect x="178.429" y="86" width="13.5714" height="3" rx="1.5" fill="#E5E7EB"/>
17
+ <rect x="25" y="107" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
18
+ <rect x="50.5713" y="107" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
19
+ <rect x="76.1431" y="107" width="13.5714" height="10" rx="2" fill="#EB4F27"/>
20
+ <rect x="101.714" y="107" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
21
+ <rect x="127.286" y="107" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
22
+ <rect x="152.857" y="107" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
23
+ <rect x="178.429" y="107" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
24
+ <rect x="25" y="139" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
25
+ <rect x="50.5713" y="139" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
26
+ <rect x="76.1431" y="139" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
27
+ <rect x="101.714" y="139" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
28
+ <rect x="127.286" y="139" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
29
+ <rect x="152.857" y="139" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
30
+ <rect x="178.429" y="139" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
31
+ <rect x="25" y="171" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
32
+ <rect x="50.5713" y="171" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
33
+ <rect x="76.1431" y="171" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
34
+ <rect x="101.714" y="171" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
35
+ <rect x="127.286" y="171" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
36
+ <rect x="152.857" y="171" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
37
+ <rect x="178.429" y="171" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
38
+ <rect x="25" y="203" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
39
+ <rect x="50.5713" y="203" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
40
+ <rect x="76.1431" y="203" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
41
+ <rect x="101.714" y="203" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
42
+ <rect x="127.286" y="203" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
43
+ <rect x="152.857" y="203" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
44
+ <rect x="178.429" y="203" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
45
+ <rect x="7.5" y="70.5" width="204" height="162" rx="7.5" stroke="#D1D5DB"/>
46
+ </g>
47
+ </g>
48
+ <defs>
49
+ <filter id="filter0_dd_169_147298" x="1" y="68" width="217" height="175" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
50
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
51
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
52
+ <feOffset dy="4"/>
53
+ <feGaussianBlur stdDeviation="3"/>
54
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
55
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_147298"/>
56
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
57
+ <feOffset dy="2"/>
58
+ <feGaussianBlur stdDeviation="2"/>
59
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
60
+ <feBlend mode="normal" in2="effect1_dropShadow_169_147298" result="effect2_dropShadow_169_147298"/>
61
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_169_147298" result="shape"/>
62
+ </filter>
63
+ <clipPath id="clip0_169_147298">
64
+ <rect width="220" height="240" fill="white"/>
65
+ </clipPath>
66
+ </defs>
67
+ </svg>
Binary file
@@ -0,0 +1,49 @@
1
+ <svg width="16" height="16" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M73.5582 38.8281C73.3358 40.3595 72.3261 42.4399 71.1677 44.2486C69.7061 46.5309 67.3867 48.1294 64.7322 48.6845L53.0391 51.1296C51.1598 51.5226 49.4556 52.5062 48.1761 53.9365L40.5091 62.5065C39.0682 64.1171 38.0611 63.733 38.0611 61.5728C38.0436 61.6529 34.2559 71.421 44.2938 77.2108C48.1507 79.4355 53.7025 78.6362 57.5594 76.4115L77.995 64.6242C85.6375 60.216 91.0335 52.7586 92.8271 44.1261C92.898 43.7846 92.9528 43.4419 93.012 43.0995L73.5582 38.8281Z" fill="url(#paint0_linear_2768_3907)"/>
3
+ <path d="M68.2584 27.0537C72.1153 29.2783 73.6911 32.5903 73.6911 37.0396C73.6911 37.6436 73.6436 38.2404 73.5583 38.828L81.7924 42.365L93.0121 43.0993C94.4487 34.7848 91.6333 26.2265 86.586 19.4238C82.7877 14.3045 77.9001 9.86189 72.0242 6.47262C67.2511 3.71946 62.2909 1.9055 57.3074 0.910156L51.7082 8.16118L49.9395 16.4873L68.2584 27.0537Z" fill="url(#paint1_linear_2768_3907)"/>
4
+ <path d="M2.35055 33.1554C2.34845 33.162 2.35425 33.1639 2.35643 33.1573C2.78851 31.8614 3.33029 30.4156 4.00667 28.8711C7.53979 20.8029 14.3483 15.4219 22.7245 12.6782C31.1006 9.93467 40.2463 10.8964 47.8802 15.2996L49.9393 16.4873L57.3073 0.910235C33.8726 -3.77029 9.92159 9.9976 2.38034 33.0651C2.37674 33.0762 2.36363 33.1147 2.35055 33.1554Z" fill="url(#paint2_linear_2768_3907)"/>
5
+ <path d="M56.7594 76.4112C52.9026 78.6359 48.1507 78.6359 44.2939 76.4112C43.7704 76.1092 43.2768 75.7697 42.81 75.4021L36.027 80.0655L30.1807 89.5128C36.6698 94.913 45.0962 96.6491 53.5167 95.6836C59.8535 94.9569 66.1484 92.9495 72.0242 89.5603C76.7974 86.8071 80.8499 83.4225 84.2045 79.6084L80.7186 71.1384L75.0784 65.8447L56.7594 76.4112Z" fill="url(#paint3_linear_2768_3907)"/>
6
+ <path d="M42.8101 75.4019C39.8385 73.0612 38.0612 69.4711 38.0612 65.6258V65.2423V33.2168C38.0612 31.4056 38.5948 31.0978 40.1648 32.0034C37.7467 30.6086 32.1606 25.8205 25.2633 29.7989C21.4065 32.0236 18.2305 36.9342 18.2305 41.3834V64.9581C18.2305 73.7746 22.7969 82.9713 29.3832 88.8393C29.6437 89.0714 29.9134 89.2902 30.1807 89.5126L42.8101 75.4019Z" fill="url(#paint4_linear_2768_3907)"/>
7
+ <path d="M83.7314 15.9369C83.7268 15.9318 83.7223 15.9359 83.7268 15.941C84.6342 16.9629 85.6166 18.1545 86.6173 19.512C91.8446 26.6029 93.7977 35.5839 91.988 44.2028C90.1781 52.8217 84.7717 60.2537 77.1377 64.657L75.0786 65.8447L84.2047 79.6084C99.9793 61.6728 100.02 34.0663 83.7948 16.0078C83.7871 15.9992 83.7602 15.9686 83.7314 15.9369Z" fill="url(#paint5_linear_2768_3907)"/>
8
+ <path d="M19.0306 41.384C19.0306 36.9348 21.4065 32.8234 25.2634 30.5988C25.7869 30.2968 26.328 30.0396 26.8801 29.8195L26.2291 21.6191L21.6558 12.2368C13.7301 15.1511 7.31911 21.1739 3.94584 28.9422C1.40729 34.7882 2.9376e-05 41.2383 0 48.0167C0 53.5231 0.907647 58.7216 2.5366 63.5311L11.6217 64.75L19.0306 62.517V41.384V41.384Z" fill="url(#paint6_linear_2768_3907)"/>
9
+ <path d="M26.88 29.8195C30.3947 28.4189 34.3955 28.6762 37.7287 30.5988L38.0612 30.7906L64.7473 46.1832C66.6194 47.263 66.4492 48.3255 64.3334 48.7679L65.8728 48.4461C67.8986 48.0225 69.7492 46.9873 71.1645 45.4787C73.5979 42.8849 74.4912 39.7555 74.4912 37.0398C74.4912 32.5905 72.1153 28.4792 68.2585 26.2546L47.8229 14.4672C40.1804 10.059 31.0179 9.11901 22.6382 11.8835C22.3067 11.9928 21.9822 12.1168 21.6558 12.2368L26.88 29.8195Z" fill="url(#paint7_linear_2768_3907)"/>
10
+ <path d="M57.9666 94.9574C57.9733 94.956 57.9721 94.95 57.9653 94.9514C56.6259 95.2255 55.1017 95.4797 53.4247 95.6667C44.6642 96.6439 35.9025 93.8433 29.3362 87.968C22.7698 82.0927 19.0307 73.699 19.0307 64.8925L19.0306 62.5171L2.53662 63.5311C10.1967 86.1472 34.1068 99.9859 57.8734 94.9768C57.8848 94.9744 57.9247 94.9665 57.9666 94.9574Z" fill="url(#paint8_linear_2768_3907)"/>
11
+ <defs>
12
+ <linearGradient id="paint0_linear_2768_3907" x1="60.1798" y1="71.3098" x2="69.6224" y2="38.4205" gradientUnits="userSpaceOnUse">
13
+ <stop stop-color="#A72F09"/>
14
+ <stop offset="1" stop-color="#F83C00"/>
15
+ </linearGradient>
16
+ <linearGradient id="paint1_linear_2768_3907" x1="81.9279" y1="31.2009" x2="57.089" y2="6.44934" gradientUnits="userSpaceOnUse">
17
+ <stop stop-color="#F83C00"/>
18
+ <stop offset="1" stop-color="#F83C00"/>
19
+ </linearGradient>
20
+ <linearGradient id="paint2_linear_2768_3907" x1="48.4931" y1="15.0634" x2="11.0227" y2="17.4312" gradientUnits="userSpaceOnUse">
21
+ <stop stop-color="#F83C00"/>
22
+ <stop offset="1" stop-color="#F83C00"/>
23
+ </linearGradient>
24
+ <linearGradient id="paint3_linear_2768_3907" x1="45.9592" y1="85.9878" x2="79.6097" y2="76.9076" gradientUnits="userSpaceOnUse">
25
+ <stop stop-color="#F83C00"/>
26
+ <stop offset="1" stop-color="#F83C00"/>
27
+ </linearGradient>
28
+ <linearGradient id="paint4_linear_2768_3907" x1="21.8062" y1="47.0477" x2="45.6971" y2="71.8037" gradientUnits="userSpaceOnUse">
29
+ <stop stop-color="#A72F09"/>
30
+ <stop offset="1" stop-color="#F83C00"/>
31
+ </linearGradient>
32
+ <linearGradient id="paint5_linear_2768_3907" x1="76.3514" y1="64.9067" x2="93.0208" y2="31.3033" gradientUnits="userSpaceOnUse">
33
+ <stop stop-color="#F83C00"/>
34
+ <stop offset="1" stop-color="#F83C00"/>
35
+ </linearGradient>
36
+ <linearGradient id="paint6_linear_2768_3907" x1="16.0916" y1="27.393" x2="7.17161" y2="60.9197" gradientUnits="userSpaceOnUse">
37
+ <stop stop-color="#D03504"/>
38
+ <stop offset="1" stop-color="#F83C00"/>
39
+ </linearGradient>
40
+ <linearGradient id="paint7_linear_2768_3907" x1="61.6291" y1="25.7983" x2="29.0329" y2="33.9141" gradientUnits="userSpaceOnUse">
41
+ <stop stop-color="#A72E08"/>
42
+ <stop offset="1" stop-color="#CF3403"/>
43
+ </linearGradient>
44
+ <linearGradient id="paint8_linear_2768_3907" x1="19.2203" y1="64.0702" x2="39.9976" y2="95.3241" gradientUnits="userSpaceOnUse">
45
+ <stop stop-color="#F83C00"/>
46
+ <stop offset="1" stop-color="#F83C00" stop-opacity="0.52"/>
47
+ </linearGradient>
48
+ </defs>
49
+ </svg>
Binary file
Binary file