flowbite-svelte 0.27.13 → 0.27.15
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.
- package/.eslintrc.cjs +20 -0
- package/.github/FUNDING.yml +13 -0
- package/.github/ISSUE_TEMPLATE/bug_report.yml +33 -0
- package/.github/ISSUE_TEMPLATE/config.yml +5 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
- package/.github/pull_request_template.md +67 -0
- package/.prettierrc +8 -0
- package/CHANGELOG.md +24 -0
- package/CONTRIBUTING.md +67 -0
- package/mdsvex.config.js +22 -0
- package/package.json +113 -258
- package/playwright.config.ts +10 -0
- package/postcss.config.cjs +13 -0
- package/src/app.css +41 -0
- package/src/app.d.ts +9 -0
- package/src/app.html +32 -0
- package/src/app.postcss +4 -0
- package/src/hooks.server.js +76 -0
- package/src/lib/accordions/Accordion.svelte +45 -0
- package/src/lib/accordions/AccordionItem.svelte +79 -0
- package/src/lib/alerts/Alert.svelte +59 -0
- package/src/lib/avatar/Avatar.svelte +54 -0
- package/src/lib/avatar/Dot.svelte +48 -0
- package/src/lib/avatar/Placeholder.svelte +16 -0
- package/src/lib/badges/Badge.svelte +67 -0
- package/src/lib/breadcrumbs/Breadcrumb.svelte +16 -0
- package/src/lib/breadcrumbs/BreadcrumbItem.svelte +47 -0
- package/src/lib/buttongroups/ButtonGroup.svelte +14 -0
- package/src/lib/buttons/Button.svelte +182 -0
- package/src/lib/cards/Card.svelte +60 -0
- package/src/lib/carousels/Caption.svelte +8 -0
- package/src/lib/carousels/Carousel.svelte +147 -0
- package/src/lib/carousels/CarouselTransition.svelte +167 -0
- package/src/lib/carousels/Indicator.svelte +13 -0
- package/src/lib/carousels/Slide.svelte +10 -0
- package/src/lib/carousels/Thumbnail.svelte +25 -0
- package/src/lib/darkmode/DarkMode.svelte +36 -0
- package/{datepicker → src/lib/datepicker}/Calender.svelte +0 -0
- package/src/lib/datepicker/Datepicker.svelte +74 -0
- package/src/lib/drawer/Drawer.svelte +85 -0
- package/src/lib/dropdowns/Dropdown.svelte +36 -0
- package/src/lib/dropdowns/DropdownDivider.svelte +6 -0
- package/src/lib/dropdowns/DropdownHeader.svelte +14 -0
- package/src/lib/dropdowns/DropdownItem.svelte +34 -0
- package/src/lib/footer/Footer.svelte +22 -0
- package/src/lib/footer/FooterBrand.svelte +21 -0
- package/src/lib/footer/FooterCopyright.svelte +21 -0
- package/src/lib/footer/FooterIcon.svelte +15 -0
- package/src/lib/footer/FooterLink.svelte +14 -0
- package/src/lib/footer/FooterLinkGroup.svelte +8 -0
- package/src/lib/forms/Checkbox.svelte +58 -0
- package/src/lib/forms/Dropzone.svelte +28 -0
- package/src/lib/forms/Fileupload.svelte +29 -0
- package/src/lib/forms/FloatingLabelInput.svelte +124 -0
- package/src/lib/forms/Helper.svelte +15 -0
- package/src/lib/forms/Iconinput.svelte +86 -0
- package/src/lib/forms/Input.svelte +110 -0
- package/src/lib/forms/InputAddon.svelte +50 -0
- package/src/lib/forms/Label.svelte +31 -0
- package/src/lib/forms/NumberInput.svelte +9 -0
- package/src/lib/forms/Radio.svelte +69 -0
- package/{forms → src/lib/forms}/RadioInline.svelte +0 -0
- package/src/lib/forms/Range.svelte +29 -0
- package/src/lib/forms/Search.svelte +58 -0
- package/src/lib/forms/Select.svelte +40 -0
- package/src/lib/forms/SimpleSearch.svelte +21 -0
- package/src/lib/forms/Textarea.svelte +77 -0
- package/src/lib/forms/Toggle.svelte +46 -0
- package/src/lib/forms/VoiceSearch.svelte +71 -0
- package/src/lib/index.ts +200 -0
- package/src/lib/kbd/ArrowKeyDown.svelte +16 -0
- package/src/lib/kbd/ArrowKeyLeft.svelte +16 -0
- package/src/lib/kbd/ArrowKeyRight.svelte +16 -0
- package/src/lib/kbd/ArrowKeyUp.svelte +16 -0
- package/src/lib/kbd/Kbd.svelte +9 -0
- package/src/lib/list-group/Listgroup.svelte +23 -0
- package/src/lib/list-group/ListgroupItem.svelte +77 -0
- package/src/lib/megamenu/MegaMenu.svelte +57 -0
- package/src/lib/modals/Modal.svelte +165 -0
- package/src/lib/navbar/Menu.svelte +37 -0
- package/src/lib/navbar/NavBrand.svelte +8 -0
- package/src/lib/navbar/NavDropdown.svelte +66 -0
- package/src/lib/navbar/NavHamburger.svelte +11 -0
- package/src/lib/navbar/NavLi.svelte +37 -0
- package/src/lib/navbar/NavUl.svelte +35 -0
- package/src/lib/navbar/Navbar.svelte +36 -0
- package/src/lib/paginations/Pagination.svelte +42 -0
- package/src/lib/paginations/PaginationItem.svelte +36 -0
- package/src/lib/popover/Popover.svelte +20 -0
- package/src/lib/progressbars/Progressbar.svelte +39 -0
- package/src/lib/ratings/AdvancedRating.svelte +25 -0
- package/src/lib/ratings/Rating.svelte +37 -0
- package/src/lib/ratings/RatingComment.svelte +81 -0
- package/src/lib/ratings/Review.svelte +66 -0
- package/src/lib/ratings/ScoreRating.svelte +53 -0
- package/src/lib/ratings/Star.svelte +37 -0
- package/src/lib/sidebars/Sidebar.svelte +8 -0
- package/src/lib/sidebars/SidebarBrand.svelte +15 -0
- package/src/lib/sidebars/SidebarCta.svelte +24 -0
- package/src/lib/sidebars/SidebarDropdownItem.svelte +27 -0
- package/src/lib/sidebars/SidebarDropdownWrapper.svelte +49 -0
- package/src/lib/sidebars/SidebarGroup.svelte +15 -0
- package/src/lib/sidebars/SidebarItem.svelte +34 -0
- package/src/lib/sidebars/SidebarWrapper.svelte +9 -0
- package/src/lib/skeleton/CardPlaceholder.svelte +46 -0
- package/src/lib/skeleton/ImagePlaceholder.svelte +34 -0
- package/src/lib/skeleton/ListPlaceholder.svelte +44 -0
- package/src/lib/skeleton/Skeleton.svelte +14 -0
- package/src/lib/skeleton/TestimonialPlaceholder.svelte +26 -0
- package/src/lib/skeleton/TextPlaceholder.svelte +38 -0
- package/src/lib/skeleton/VideoPlaceholder.svelte +22 -0
- package/src/lib/skeleton/WidgetPlaceholder.svelte +20 -0
- package/src/lib/spinners/Spinner.svelte +54 -0
- package/src/lib/tables/Table.svelte +36 -0
- package/{tables → src/lib/tables}/TableBody.svelte +0 -0
- package/src/lib/tables/TableBodyCell.svelte +21 -0
- package/src/lib/tables/TableBodyRow.svelte +49 -0
- package/src/lib/tables/TableHead.svelte +49 -0
- package/src/lib/tables/TableHeadCell.svelte +7 -0
- package/src/lib/tables/TableSearch.svelte +60 -0
- package/src/lib/tabs/TabHead.svelte +31 -0
- package/src/lib/tabs/TabHeadItem.svelte +70 -0
- package/src/lib/tabs/TabItem.svelte +65 -0
- package/src/lib/tabs/Tabs.svelte +68 -0
- package/src/lib/timelines/Activity.svelte +7 -0
- package/src/lib/timelines/ActivityItem.svelte +31 -0
- package/src/lib/timelines/Group.svelte +12 -0
- package/src/lib/timelines/GroupItem.svelte +51 -0
- package/src/lib/timelines/Timeline.svelte +21 -0
- package/src/lib/timelines/TimelineHorizontal.svelte +7 -0
- package/src/lib/timelines/TimelineItem.svelte +135 -0
- package/src/lib/timelines/TimelineItemHorizontal.svelte +56 -0
- package/src/lib/timelines/TimelineItemVertical.svelte +34 -0
- package/src/lib/toasts/Toast.svelte +60 -0
- package/src/lib/toolbar/Toolbar.svelte +73 -0
- package/src/lib/toolbar/ToolbarButton.svelte +58 -0
- package/src/lib/toolbar/ToolbarGroup.svelte +11 -0
- package/src/lib/tooltips/Tooltip.svelte +25 -0
- package/src/lib/types.ts +285 -0
- package/src/lib/typography/A.svelte +11 -0
- package/src/lib/typography/Blockquote.svelte +59 -0
- package/src/lib/typography/DescriptionList.svelte +13 -0
- package/src/lib/typography/Heading.svelte +22 -0
- package/src/lib/typography/Hr.svelte +28 -0
- package/src/lib/typography/Img.svelte +32 -0
- package/src/lib/typography/Layout.svelte +12 -0
- package/src/lib/typography/Li.svelte +11 -0
- package/src/lib/typography/List.svelte +33 -0
- package/src/lib/typography/Mark.svelte +11 -0
- package/src/lib/typography/P.svelte +118 -0
- package/src/lib/typography/Secondary.svelte +10 -0
- package/src/lib/typography/Span.svelte +29 -0
- package/src/lib/typography/Ul.svelte +22 -0
- package/src/lib/utils/Chevron.svelte +32 -0
- package/src/lib/utils/ChevronDown.svelte +37 -0
- package/src/lib/utils/ChevronLeft.svelte +37 -0
- package/src/lib/utils/ChevronRight.svelte +37 -0
- package/src/lib/utils/ChevronUp.svelte +37 -0
- package/src/lib/utils/CloseButton.svelte +64 -0
- package/src/lib/utils/Frame.svelte +146 -0
- package/src/lib/utils/InformationCircle.svelte +38 -0
- package/src/lib/utils/Popper.svelte +148 -0
- package/src/lib/utils/UserCircle.svelte +38 -0
- package/src/lib/utils/Wrapper.svelte +13 -0
- package/src/lib/utils/backdrop.ts +109 -0
- package/src/lib/utils/clickOutside.ts +16 -0
- package/{utils → src/lib/utils}/createEventDispatcher.js +0 -0
- package/{utils → src/lib/utils}/focusTrap.js +0 -0
- package/{utils → src/lib/utils}/generateId.js +0 -0
- package/src/lib/video/Video.svelte +24 -0
- package/src/routes/+error.svelte +16 -0
- package/src/routes/+layout.js +9 -0
- package/src/routes/+layout.svelte +259 -0
- package/src/routes/+page.svelte +126 -0
- package/src/routes/Toc/+page.svelte +41 -0
- package/src/routes/api/posts/+server.js +7 -0
- package/src/routes/blocks/+server.ts +51 -0
- package/src/routes/blocks/AccordionBlock/+page.svelte +47 -0
- package/src/routes/blocks/AlertBlock/+page.svelte +47 -0
- package/src/routes/blocks/AvatarBlock/+page.svelte +47 -0
- package/src/routes/blocks/BadgeBlock/+page.svelte +47 -0
- package/src/routes/blocks/BlockquoteBlock/+page.svelte +46 -0
- package/src/routes/blocks/BreadcrumbBlock/+page.svelte +47 -0
- package/src/routes/blocks/ButtonBlock/+page.svelte +47 -0
- package/src/routes/blocks/ButtongroupBlock/+page.svelte +47 -0
- package/src/routes/blocks/CardBlock/+page.svelte +47 -0
- package/src/routes/blocks/CarouselBlock/+page.svelte +47 -0
- package/src/routes/blocks/CheckboxBlock/+page.svelte +55 -0
- package/src/routes/blocks/DatepickerBlock/+page.svelte +48 -0
- package/src/routes/blocks/DrawerBlock/+page.svelte +46 -0
- package/src/routes/blocks/DropdownBlock/+page.svelte +47 -0
- package/src/routes/blocks/FileinputBlock/+page.svelte +47 -0
- package/src/routes/blocks/FloatingLabelBlock/+page.svelte +47 -0
- package/src/routes/blocks/FooterBlock/+page.svelte +47 -0
- package/src/routes/blocks/FormBlock/+page.svelte +47 -0
- package/src/routes/blocks/HeadingBlock/+page.svelte +46 -0
- package/src/routes/blocks/HrBlock/+page.svelte +46 -0
- package/src/routes/blocks/ImageBlock/+page.svelte +46 -0
- package/src/routes/blocks/InputfieldBlock/+page.svelte +47 -0
- package/src/routes/blocks/KbdBlock/+page.svelte +47 -0
- package/src/routes/blocks/LinkBlock/+page.svelte +46 -0
- package/src/routes/blocks/ListBlock/+page.svelte +46 -0
- package/src/routes/blocks/ListgroupBlock/+page.svelte +47 -0
- package/src/routes/blocks/MegamenuBlock/+page.svelte +47 -0
- package/src/routes/blocks/ModalBlock/+page.svelte +47 -0
- package/src/routes/blocks/NavbarBlock/+page.svelte +47 -0
- package/src/routes/blocks/PaginationBlock/+page.svelte +47 -0
- package/src/routes/blocks/ParagraphBlock/+page.svelte +46 -0
- package/src/routes/blocks/PopoverBlock/+page.svelte +46 -0
- package/src/routes/blocks/ProgressbarBlock/+page.svelte +47 -0
- package/src/routes/blocks/RadioBlock/+page.svelte +47 -0
- package/src/routes/blocks/RangeBlock/+page.svelte +47 -0
- package/src/routes/blocks/RatingBlock/+page.svelte +47 -0
- package/src/routes/blocks/SearchinputBlock/+page.svelte +47 -0
- package/src/routes/blocks/SelectBlock/+page.svelte +47 -0
- package/src/routes/blocks/SidebarBlock/+page.svelte +47 -0
- package/src/routes/blocks/SkeletonBlock/+page.svelte +47 -0
- package/src/routes/blocks/SpinnerBlock/+page.svelte +47 -0
- package/src/routes/blocks/TabBlock/+page.svelte +47 -0
- package/src/routes/blocks/TableBlock/+page.svelte +47 -0
- package/src/routes/blocks/TextBlock/+page.svelte +46 -0
- package/src/routes/blocks/TextareaBlock/+page.svelte +47 -0
- package/src/routes/blocks/TimelineBlock/+page.svelte +47 -0
- package/src/routes/blocks/ToastBlock/+page.svelte +47 -0
- package/src/routes/blocks/ToggleBlock/+page.svelte +47 -0
- package/src/routes/blocks/TooltipBlock/+page.svelte +47 -0
- package/src/routes/blocks/TypographyBlock/+page.svelte +47 -0
- package/src/routes/blocks/VideoBlock/+page.svelte +46 -0
- package/src/routes/components/[slug]/+page.js +12 -0
- package/src/routes/components/[slug]/+page.svelte +6 -0
- package/src/routes/components/accordion.md +300 -0
- package/src/routes/components/alert.md +324 -0
- package/src/routes/components/avatar.md +228 -0
- package/src/routes/components/badge.md +190 -0
- package/src/routes/components/breadcrumb.md +134 -0
- package/src/routes/components/button-group.md +225 -0
- package/src/routes/components/button.md +335 -0
- package/src/routes/components/card.md +454 -0
- package/src/routes/components/carousel.md +294 -0
- package/src/routes/components/darkmode.md +121 -0
- package/src/routes/components/drawer.md +727 -0
- package/src/routes/components/dropdown.md +710 -0
- package/src/routes/components/footer.md +306 -0
- package/src/routes/components/forms.md +298 -0
- package/src/routes/components/imageData/+server.js +50 -0
- package/src/routes/components/kbd.md +284 -0
- package/src/routes/components/list-group.md +192 -0
- package/src/routes/components/mega-menu.md +286 -0
- package/src/routes/components/modal.md +360 -0
- package/src/routes/components/navbar.md +349 -0
- package/src/routes/components/pagination.md +263 -0
- package/src/routes/components/popover.md +398 -0
- package/src/routes/components/progress.md +213 -0
- package/src/routes/components/rating.md +408 -0
- package/src/routes/components/sidebar.md +584 -0
- package/src/routes/components/skeleton.md +176 -0
- package/src/routes/components/spinner.md +137 -0
- package/src/routes/components/tab.md +305 -0
- package/src/routes/components/table.md +849 -0
- package/src/routes/components/timeline.md +362 -0
- package/src/routes/components/toast.md +381 -0
- package/src/routes/components/tooltip.md +174 -0
- package/src/routes/components/typography.md +132 -0
- package/src/routes/components/video.md +143 -0
- package/src/routes/datepicker/+page.svelte +179 -0
- package/src/routes/extend/CheckCircle.svelte +9 -0
- package/src/routes/extend/[slug]/+page.js +12 -0
- package/src/routes/extend/[slug]/+page.svelte +6 -0
- package/src/routes/extend/flowbite-svelte-starter.md +76 -0
- package/src/routes/extend/icons.md +270 -0
- package/src/routes/forms/[slug]/+page.js +12 -0
- package/src/routes/forms/[slug]/+page.svelte +6 -0
- package/src/routes/forms/checkbox.md +338 -0
- package/src/routes/forms/file-input.md +158 -0
- package/src/routes/forms/floating-label.md +184 -0
- package/src/routes/forms/input-field.md +410 -0
- package/src/routes/forms/radio.md +330 -0
- package/src/routes/forms/range.md +134 -0
- package/src/routes/forms/search-input.md +131 -0
- package/src/routes/forms/select.md +194 -0
- package/src/routes/forms/textarea.md +162 -0
- package/src/routes/forms/toggle.md +103 -0
- package/src/routes/layouts/component/+page.svelte +9 -0
- package/src/routes/layouts/formLayout/+page.svelte +60 -0
- package/src/routes/layouts/pageLayout/+page.svelte +57 -0
- package/src/routes/layouts/testLayout/+page.svelte +6 -0
- package/src/routes/layouts/typographyLayout/+page.svelte +100 -0
- package/src/routes/layouts/utilitiesLayout/+page.svelte +33 -0
- package/src/routes/moduleItems/+server.js +13 -0
- package/src/routes/pages/[slug]/+page.js +12 -0
- package/src/routes/pages/[slug]/+page.svelte +6 -0
- package/src/routes/pages/about.md +36 -0
- package/src/routes/pages/getting-started.md +119 -0
- package/src/routes/pages/how-to-contribute.md +148 -0
- package/src/routes/pages/license.md +48 -0
- package/src/routes/pages/types.md +28 -0
- package/src/routes/props/A.json +1 -0
- package/src/routes/props/Accordion.json +1 -0
- package/src/routes/props/AccordionItem.json +1 -0
- package/src/routes/props/Activity.json +1 -0
- package/src/routes/props/ActivityItem.json +1 -0
- package/src/routes/props/AdvancedRating.json +1 -0
- package/src/routes/props/Alert.json +1 -0
- package/src/routes/props/ArrowKeyDown.json +1 -0
- package/src/routes/props/ArrowKeyLeft.json +1 -0
- package/src/routes/props/ArrowKeyRight.json +1 -0
- package/src/routes/props/ArrowKeyUp.json +1 -0
- package/src/routes/props/Avatar.json +1 -0
- package/src/routes/props/Badge.json +1 -0
- package/src/routes/props/Blockquote.json +1 -0
- package/src/routes/props/Breadcrumb.json +1 -0
- package/src/routes/props/BreadcrumbItem.json +1 -0
- package/src/routes/props/Button.json +1 -0
- package/src/routes/props/ButtonGroup.json +1 -0
- package/src/routes/props/Caption.json +1 -0
- package/src/routes/props/Card.json +1 -0
- package/src/routes/props/CardPlaceholder.json +1 -0
- package/src/routes/props/Carousel.json +1 -0
- package/src/routes/props/CarouselTransition.json +1 -0
- package/src/routes/props/Checkbox.json +1 -0
- package/src/routes/props/Chevron.json +1 -0
- package/src/routes/props/ChevronDown.json +1 -0
- package/src/routes/props/ChevronLeft.json +1 -0
- package/src/routes/props/ChevronRight.json +1 -0
- package/src/routes/props/ChevronUp.json +1 -0
- package/src/routes/props/CloseButton.json +1 -0
- package/src/routes/props/DarkMode.json +1 -0
- package/src/routes/props/Datepicker.json +1 -0
- package/src/routes/props/DescriptionList.json +1 -0
- package/src/routes/props/Dot.json +1 -0
- package/src/routes/props/Drawer.json +1 -0
- package/src/routes/props/Dropdown.json +1 -0
- package/src/routes/props/DropdownDivider.json +1 -0
- package/src/routes/props/DropdownHeader.json +1 -0
- package/src/routes/props/DropdownItem.json +1 -0
- package/src/routes/props/Dropzone.json +1 -0
- package/src/routes/props/Fileupload.json +1 -0
- package/src/routes/props/FloatingLabelInput.json +1 -0
- package/src/routes/props/Footer.json +1 -0
- package/src/routes/props/FooterBrand.json +1 -0
- package/src/routes/props/FooterCopyright.json +1 -0
- package/src/routes/props/FooterIcon.json +1 -0
- package/src/routes/props/FooterLink.json +1 -0
- package/src/routes/props/FooterLinkGroup.json +1 -0
- package/src/routes/props/Frame.json +1 -0
- package/src/routes/props/Group.json +1 -0
- package/src/routes/props/GroupItem.json +1 -0
- package/src/routes/props/Heading.json +1 -0
- package/src/routes/props/Helper.json +1 -0
- package/src/routes/props/Hr.json +1 -0
- package/src/routes/props/Iconinput.json +1 -0
- package/src/routes/props/ImagePlaceholder.json +1 -0
- package/src/routes/props/Img.json +1 -0
- package/src/routes/props/Indicator.json +1 -0
- package/src/routes/props/InformationCircle.json +1 -0
- package/src/routes/props/Input.json +1 -0
- package/src/routes/props/InputAddon.json +1 -0
- package/src/routes/props/Kbd.json +1 -0
- package/src/routes/props/Label.json +1 -0
- package/src/routes/props/Layout.json +1 -0
- package/src/routes/props/Li.json +1 -0
- package/src/routes/props/List.json +1 -0
- package/src/routes/props/ListPlaceholder.json +1 -0
- package/src/routes/props/Listgroup.json +1 -0
- package/src/routes/props/ListgroupItem.json +1 -0
- package/src/routes/props/Mark.json +1 -0
- package/src/routes/props/MegaMenu.json +1 -0
- package/src/routes/props/Menu.json +1 -0
- package/src/routes/props/Modal.json +1 -0
- package/src/routes/props/NavBrand.json +1 -0
- package/src/routes/props/NavDropdown.json +1 -0
- package/src/routes/props/NavHamburger.json +1 -0
- package/src/routes/props/NavLi.json +1 -0
- package/src/routes/props/NavUl.json +1 -0
- package/src/routes/props/Navbar.json +1 -0
- package/src/routes/props/NumberInput.json +1 -0
- package/src/routes/props/P.json +1 -0
- package/src/routes/props/Pagination.json +1 -0
- package/src/routes/props/PaginationItem.json +1 -0
- package/src/routes/props/Placeholder.json +1 -0
- package/src/routes/props/Popover.json +1 -0
- package/src/routes/props/Popper.json +1 -0
- package/src/routes/props/Progressbar.json +1 -0
- package/src/routes/props/Radio.json +1 -0
- package/src/routes/props/Range.json +1 -0
- package/src/routes/props/Rating.json +1 -0
- package/src/routes/props/RatingComment.json +1 -0
- package/src/routes/props/Review.json +1 -0
- package/src/routes/props/ScoreRating.json +1 -0
- package/src/routes/props/Search.json +1 -0
- package/src/routes/props/Secondary.json +1 -0
- package/src/routes/props/Select.json +1 -0
- package/src/routes/props/Sidebar.json +1 -0
- package/src/routes/props/SidebarBrand.json +1 -0
- package/src/routes/props/SidebarCta.json +1 -0
- package/src/routes/props/SidebarDropdownItem.json +1 -0
- package/src/routes/props/SidebarDropdownWrapper.json +1 -0
- package/src/routes/props/SidebarGroup.json +1 -0
- package/src/routes/props/SidebarItem.json +1 -0
- package/src/routes/props/SidebarWrapper.json +1 -0
- package/src/routes/props/Skeleton.json +1 -0
- package/src/routes/props/Slide.json +1 -0
- package/src/routes/props/Span.json +1 -0
- package/src/routes/props/Spinner.json +1 -0
- package/src/routes/props/Star.json +1 -0
- package/src/routes/props/TabHead.json +1 -0
- package/src/routes/props/TabHeadItem.json +1 -0
- package/src/routes/props/TabItem.json +1 -0
- package/src/routes/props/Table.json +1 -0
- package/src/routes/props/TableBodyCell.json +1 -0
- package/src/routes/props/TableBodyRow.json +1 -0
- package/src/routes/props/TableHead.json +1 -0
- package/src/routes/props/TableSearch.json +1 -0
- package/src/routes/props/Tabs.json +1 -0
- package/src/routes/props/TestimonialPlaceholder.json +1 -0
- package/src/routes/props/TextPlaceholder.json +1 -0
- package/src/routes/props/Textarea.json +1 -0
- package/src/routes/props/Thumbnail.json +1 -0
- package/src/routes/props/Timeline.json +1 -0
- package/src/routes/props/TimelineHorizontal.json +1 -0
- package/src/routes/props/TimelineItem.json +1 -0
- package/src/routes/props/TimelineItemHorizontal.json +1 -0
- package/src/routes/props/TimelineItemVertical.json +1 -0
- package/src/routes/props/Toast.json +1 -0
- package/src/routes/props/Toggle.json +1 -0
- package/src/routes/props/Toolbar.json +1 -0
- package/src/routes/props/ToolbarButton.json +1 -0
- package/src/routes/props/Tooltip.json +1 -0
- package/src/routes/props/Ul.json +1 -0
- package/src/routes/props/UserCircle.json +1 -0
- package/src/routes/props/Video.json +1 -0
- package/src/routes/props/VideoPlaceholder.json +1 -0
- package/src/routes/props/VoiceSearch.json +1 -0
- package/src/routes/props/WidgetPlaceholder.json +1 -0
- package/src/routes/props/Wrapper.json +1 -0
- package/src/routes/props/backdrop.json +1 -0
- package/src/routes/typography/[slug]/+page.js +12 -0
- package/src/routes/typography/[slug]/+page.svelte +6 -0
- package/src/routes/typography/blockquote.md +249 -0
- package/src/routes/typography/heading.md +299 -0
- package/src/routes/typography/hr.md +151 -0
- package/src/routes/typography/image.md +259 -0
- package/src/routes/typography/link.md +159 -0
- package/src/routes/typography/list.md +487 -0
- package/src/routes/typography/paragraph.md +433 -0
- package/src/routes/typography/text.md +367 -0
- package/src/routes/utilities/[slug]/+page.js +12 -0
- package/src/routes/utilities/[slug]/+page.svelte +6 -0
- package/src/routes/utilities/close-button.md +76 -0
- package/src/routes/utilities/colors.md +90 -0
- package/src/routes/utilities/label.md +65 -0
- package/src/routes/utilities/toolbar.md +186 -0
- package/src/routes/utils/CompoDescription.svelte +7 -0
- package/src/routes/utils/ExampleDiv.svelte +10 -0
- package/src/routes/utils/ExampleWrapper.svelte +22 -0
- package/src/routes/utils/GitHubSource.svelte +18 -0
- package/src/routes/utils/Htwo.svelte +29 -0
- package/src/routes/utils/MetaTag.svelte +40 -0
- package/src/routes/utils/TableDefaultRow.svelte +73 -0
- package/src/routes/utils/TableProp.svelte +25 -0
- package/src/routes/utils/index.ts +91 -0
- package/static/images/carousel/cosmic-timetraveler-pYyOZ8q7AII-unsplash.webp +0 -0
- package/static/images/carousel/cristina-gottardi-CSpjU6hYo_0-unsplash.webp +0 -0
- package/static/images/carousel/johannes-plenio-RwHv7LgeC7s-unsplash.webp +0 -0
- package/static/images/carousel/jonatan-pie-3l3RwQdHRHg-unsplash.webp +0 -0
- package/static/images/carousel/mark-harpur-K2s_YE031CA-unsplash.webp +0 -0
- package/static/images/carousel/pietro-de-grandi-T7K4aEPoGGk-unsplash.webp +0 -0
- package/static/images/carousel/sergey-pesterev-tMvuB9se2uQ-unsplash.webp +0 -0
- package/static/images/carousel/solotravelgoals-7kLufxYoqWk-unsplash.webp +0 -0
- package/static/images/carousel-1.svg +4 -0
- package/static/images/carousel-2.svg +4 -0
- package/static/images/carousel-3.svg +4 -0
- package/static/images/carousel-4.svg +4 -0
- package/static/images/carousel-5.svg +4 -0
- package/static/images/colors.webp +0 -0
- package/static/images/components/accordion-dark.svg +40 -0
- package/static/images/components/accordion.svg +40 -0
- package/static/images/components/alerts-dark.svg +11 -0
- package/static/images/components/alerts.svg +11 -0
- package/static/images/components/avatar-dark.svg +117 -0
- package/static/images/components/avatar.svg +117 -0
- package/static/images/components/badges-dark.svg +5 -0
- package/static/images/components/badges.svg +5 -0
- package/static/images/components/blockquote-dark.svg +8 -0
- package/static/images/components/blockquote.svg +8 -0
- package/static/images/components/breadcrumbs-dark.svg +7 -0
- package/static/images/components/breadcrumbs.svg +7 -0
- package/static/images/components/button-group-dark.svg +10 -0
- package/static/images/components/button-group.svg +10 -0
- package/static/images/components/buttons-dark.svg +10 -0
- package/static/images/components/buttons.svg +10 -0
- package/static/images/components/cards-dark.svg +31 -0
- package/static/images/components/cards.svg +32 -0
- package/static/images/components/carousel-dark.svg +13 -0
- package/static/images/components/carousel.svg +13 -0
- package/static/images/components/checkbox.svg +14 -0
- package/static/images/components/datepicker-dark.svg +67 -0
- package/static/images/components/datepicker.svg +67 -0
- package/static/images/components/drawer-dark.svg +33 -0
- package/static/images/components/drawer.svg +33 -0
- package/static/images/components/dropdown-dark.svg +35 -0
- package/static/images/components/dropdown.svg +35 -0
- package/static/images/components/file-input-dark.svg +59 -0
- package/static/images/components/file-input.svg +46 -0
- package/static/images/components/floating-label-dark.svg +11 -0
- package/static/images/components/floating-label.svg +11 -0
- package/static/images/components/footer-dark.svg +52 -0
- package/static/images/components/footer.svg +50 -0
- package/static/images/components/forms-dark.svg +64 -0
- package/static/images/components/forms.svg +64 -0
- package/static/images/components/heading-dark.svg +5 -0
- package/static/images/components/heading.svg +5 -0
- package/static/images/components/hr-dark.svg +7 -0
- package/static/images/components/hr.svg +7 -0
- package/static/images/components/image-dark.svg +6 -0
- package/static/images/components/image.svg +6 -0
- package/static/images/components/input-field-dark.svg +65 -0
- package/static/images/components/input-field.svg +66 -0
- package/static/images/components/keyboard-dark.svg +460 -0
- package/static/images/components/keyboard.svg +462 -0
- package/static/images/components/link-dark.svg +4 -0
- package/static/images/components/link.svg +4 -0
- package/static/images/components/list-dark.svg +26 -0
- package/static/images/components/list-group-dark.svg +33 -0
- package/static/images/components/list-group.svg +53 -0
- package/static/images/components/list.svg +26 -0
- package/static/images/components/mega-menu-dark.svg +72 -0
- package/static/images/components/mega-menu.svg +72 -0
- package/static/images/components/modal-dark.svg +32 -0
- package/static/images/components/modal.svg +33 -0
- package/static/images/components/navbar-dark.svg +78 -0
- package/static/images/components/navbar.svg +78 -0
- package/static/images/components/pagination-dark.svg +50 -0
- package/static/images/components/pagination.svg +50 -0
- package/static/images/components/paragraph-dark.svg +13 -0
- package/static/images/components/paragraph.svg +13 -0
- package/static/images/components/popover-dark.svg +18 -0
- package/static/images/components/popover.svg +17 -0
- package/static/images/components/progress-dark.svg +10 -0
- package/static/images/components/progress.svg +10 -0
- package/static/images/components/radio-dark.svg +14 -0
- package/static/images/components/radio.svg +12 -0
- package/static/images/components/range-slider-dark.svg +38 -0
- package/static/images/components/range-slider.svg +38 -0
- package/static/images/components/rating-dark.svg +29 -0
- package/static/images/components/rating.svg +29 -0
- package/static/images/components/search-input-dark.svg +82 -0
- package/static/images/components/search-input.svg +82 -0
- package/static/images/components/select-dark.svg +64 -0
- package/static/images/components/select.svg +64 -0
- package/static/images/components/sidebar-dark.svg +17 -0
- package/static/images/components/sidebar.svg +18 -0
- package/static/images/components/skeleton-dark.svg +11 -0
- package/static/images/components/skeleton.svg +11 -0
- package/static/images/components/spinner-dark.svg +6 -0
- package/static/images/components/spinner.svg +6 -0
- package/static/images/components/table-dark.svg +42 -0
- package/static/images/components/table.svg +42 -0
- package/static/images/components/tabs-dark.svg +10 -0
- package/static/images/components/tabs.svg +10 -0
- package/static/images/components/text-dark.svg +11 -0
- package/static/images/components/text.svg +11 -0
- package/static/images/components/textarea-dark.svg +16 -0
- package/static/images/components/textarea.svg +16 -0
- package/static/images/components/timeline-dark.svg +20 -0
- package/static/images/components/timeline.svg +20 -0
- package/static/images/components/toast-dark.svg +49 -0
- package/static/images/components/toast.svg +49 -0
- package/static/images/components/toggle-dark.svg +12 -0
- package/static/images/components/toggle.svg +12 -0
- package/static/images/components/tooltips-dark.svg +7 -0
- package/static/images/components/tooltips.svg +7 -0
- package/static/images/components/typography-dark.svg +13 -0
- package/static/images/components/typography.svg +13 -0
- package/static/images/components/video-dark.svg +4 -0
- package/static/images/components/video.svg +4 -0
- package/static/images/examples/content-gallery-3.png +0 -0
- package/static/images/examples/image-1.jpg +0 -0
- package/static/images/examples/image-1@2x.jpg +0 -0
- package/static/images/examples/image-2@2x.jpg +0 -0
- package/static/images/examples/image-3@2x.jpg +0 -0
- package/static/images/examples/image-4@2x.jpg +0 -0
- package/static/images/favicon.png +0 -0
- package/static/images/favicon.svg +49 -0
- package/static/images/flowbite-svelte-icon-logo.svg +49 -0
- package/static/images/flowbite-svelte-icon.svg +49 -0
- package/static/images/flowbite-svelte-og-image.png +0 -0
- package/static/images/flowbite-svelte.png +0 -0
- package/static/images/image-1.jpeg +0 -0
- package/static/images/image-1.png +0 -0
- package/static/images/image-1.webp +0 -0
- package/static/images/image-2.jpeg +0 -0
- package/static/images/image-2.png +0 -0
- package/static/images/image-2.webp +0 -0
- package/static/images/image-4.jpeg +0 -0
- package/static/images/image-4.png +0 -0
- package/static/images/image-4.webp +0 -0
- package/static/images/italy.png +0 -0
- package/static/images/nature-1.jpeg +0 -0
- package/static/images/office1.webp +0 -0
- package/static/images/product-1.webp +0 -0
- package/static/images/profile-picture-1.webp +0 -0
- package/static/images/profile-picture-2.webp +0 -0
- package/static/images/profile-picture-3.webp +0 -0
- package/static/images/profile-picture-4.webp +0 -0
- package/static/images/profile-picture-5.webp +0 -0
- package/static/site.webmanifest +9 -0
- package/static/videos/flowbite.mp4 +0 -0
- package/svelte.config.js +24 -0
- package/tailwind.config.cjs +88 -0
- package/tests/components.spec.ts +176 -0
- package/tests/extend.spec.ts +13 -0
- package/tests/forms.spec.ts +62 -0
- package/tests/page.spec.ts +31 -0
- package/tests/redirect.spec.ts +176 -0
- package/tests/typography.spec.ts +52 -0
- package/tests/utilities.spec.ts +22 -0
- package/tsconfig.json +17 -0
- package/vite.config.ts +19 -0
- package/accordions/Accordion.svelte +0 -24
- package/accordions/Accordion.svelte.d.ts +0 -30
- package/accordions/AccordionItem.svelte +0 -44
- package/accordions/AccordionItem.svelte.d.ts +0 -25
- package/alerts/Alert.svelte +0 -47
- package/alerts/Alert.svelte.d.ts +0 -32
- package/avatar/Avatar.svelte +0 -39
- package/avatar/Avatar.svelte.d.ts +0 -27
- package/avatar/Dot.svelte +0 -34
- package/avatar/Dot.svelte.d.ts +0 -23
- package/avatar/Placeholder.svelte +0 -15
- package/avatar/Placeholder.svelte.d.ts +0 -16
- package/badges/Badge.svelte +0 -51
- package/badges/Badge.svelte.d.ts +0 -26
- package/breadcrumbs/Breadcrumb.svelte +0 -13
- package/breadcrumbs/Breadcrumb.svelte.d.ts +0 -22
- package/breadcrumbs/BreadcrumbItem.svelte +0 -44
- package/breadcrumbs/BreadcrumbItem.svelte.d.ts +0 -24
- package/buttongroups/ButtonGroup.svelte +0 -10
- package/buttongroups/ButtonGroup.svelte.d.ts +0 -21
- package/buttons/Button.svelte +0 -111
- package/buttons/Button.svelte.d.ts +0 -35
- package/cards/Card.svelte +0 -40
- package/cards/Card.svelte.d.ts +0 -25
- package/carousels/Caption.svelte +0 -7
- package/carousels/Caption.svelte.d.ts +0 -17
- package/carousels/Carousel.svelte +0 -138
- package/carousels/Carousel.svelte.d.ts +0 -30
- package/carousels/CarouselTransition.svelte +0 -161
- package/carousels/CarouselTransition.svelte.d.ts +0 -32
- package/carousels/Indicator.svelte +0 -11
- package/carousels/Indicator.svelte.d.ts +0 -20
- package/carousels/Slide.svelte +0 -9
- package/carousels/Slide.svelte.d.ts +0 -19
- package/carousels/Thumbnail.svelte +0 -23
- package/carousels/Thumbnail.svelte.d.ts +0 -23
- package/darkmode/DarkMode.svelte +0 -34
- package/darkmode/DarkMode.svelte.d.ts +0 -16
- package/datepicker/Calender.svelte.d.ts +0 -19
- package/datepicker/Datepicker.svelte +0 -70
- package/datepicker/Datepicker.svelte.d.ts +0 -25
- package/drawer/Drawer.svelte +0 -74
- package/drawer/Drawer.svelte.d.ts +0 -37
- package/dropdowns/Dropdown.svelte +0 -32
- package/dropdowns/Dropdown.svelte.d.ts +0 -24
- package/dropdowns/DropdownDivider.svelte +0 -5
- package/dropdowns/DropdownDivider.svelte.d.ts +0 -17
- package/dropdowns/DropdownHeader.svelte +0 -13
- package/dropdowns/DropdownHeader.svelte.d.ts +0 -20
- package/dropdowns/DropdownItem.svelte +0 -29
- package/dropdowns/DropdownItem.svelte.d.ts +0 -29
- package/footer/Footer.svelte +0 -21
- package/footer/Footer.svelte.d.ts +0 -20
- package/footer/FooterBrand.svelte +0 -20
- package/footer/FooterBrand.svelte.d.ts +0 -26
- package/footer/FooterCopyright.svelte +0 -20
- package/footer/FooterCopyright.svelte.d.ts +0 -22
- package/footer/FooterIcon.svelte +0 -14
- package/footer/FooterIcon.svelte.d.ts +0 -22
- package/footer/FooterLink.svelte +0 -13
- package/footer/FooterLink.svelte.d.ts +0 -22
- package/footer/FooterLinkGroup.svelte +0 -7
- package/footer/FooterLinkGroup.svelte.d.ts +0 -19
- package/forms/Checkbox.svelte +0 -52
- package/forms/Checkbox.svelte.d.ts +0 -36
- package/forms/Dropzone.svelte +0 -26
- package/forms/Dropzone.svelte.d.ts +0 -30
- package/forms/Fileupload.svelte +0 -27
- package/forms/Fileupload.svelte.d.ts +0 -31
- package/forms/FloatingLabelInput.svelte +0 -106
- package/forms/FloatingLabelInput.svelte.d.ts +0 -36
- package/forms/Helper.svelte +0 -14
- package/forms/Helper.svelte.d.ts +0 -20
- package/forms/Iconinput.svelte +0 -81
- package/forms/Iconinput.svelte.d.ts +0 -39
- package/forms/Input.svelte +0 -82
- package/forms/Input.svelte.d.ts +0 -45
- package/forms/InputAddon.svelte +0 -29
- package/forms/InputAddon.svelte.d.ts +0 -19
- package/forms/Label.svelte +0 -26
- package/forms/Label.svelte.d.ts +0 -21
- package/forms/NumberInput.svelte +0 -7
- package/forms/NumberInput.svelte.d.ts +0 -17
- package/forms/Radio.svelte +0 -45
- package/forms/Radio.svelte.d.ts +0 -38
- package/forms/RadioInline.svelte.d.ts +0 -23
- package/forms/Range.svelte +0 -22
- package/forms/Range.svelte.d.ts +0 -24
- package/forms/Search.svelte +0 -54
- package/forms/Search.svelte.d.ts +0 -33
- package/forms/Select.svelte +0 -25
- package/forms/Select.svelte.d.ts +0 -27
- package/forms/SimpleSearch.svelte +0 -20
- package/forms/SimpleSearch.svelte.d.ts +0 -18
- package/forms/Textarea.svelte +0 -48
- package/forms/Textarea.svelte.d.ts +0 -32
- package/forms/Toggle.svelte +0 -32
- package/forms/Toggle.svelte.d.ts +0 -25
- package/forms/VoiceSearch.svelte +0 -63
- package/forms/VoiceSearch.svelte.d.ts +0 -28
- package/index.d.ts +0 -129
- package/index.js +0 -165
- package/kbd/ArrowKeyDown.svelte +0 -15
- package/kbd/ArrowKeyDown.svelte.d.ts +0 -17
- package/kbd/ArrowKeyLeft.svelte +0 -15
- package/kbd/ArrowKeyLeft.svelte.d.ts +0 -17
- package/kbd/ArrowKeyRight.svelte +0 -15
- package/kbd/ArrowKeyRight.svelte.d.ts +0 -17
- package/kbd/ArrowKeyUp.svelte +0 -15
- package/kbd/ArrowKeyUp.svelte.d.ts +0 -17
- package/kbd/Kbd.svelte +0 -7
- package/kbd/Kbd.svelte.d.ts +0 -19
- package/list-group/Listgroup.svelte +0 -18
- package/list-group/Listgroup.svelte.d.ts +0 -23
- package/list-group/ListgroupItem.svelte +0 -62
- package/list-group/ListgroupItem.svelte.d.ts +0 -35
- package/megamenu/MegaMenu.svelte +0 -42
- package/megamenu/MegaMenu.svelte.d.ts +0 -27
- package/modals/Modal.svelte +0 -132
- package/modals/Modal.svelte.d.ts +0 -30
- package/navbar/Menu.svelte +0 -36
- package/navbar/Menu.svelte.d.ts +0 -22
- package/navbar/NavBrand.svelte +0 -7
- package/navbar/NavBrand.svelte.d.ts +0 -19
- package/navbar/NavDropdown.svelte +0 -59
- package/navbar/NavDropdown.svelte.d.ts +0 -35
- package/navbar/NavHamburger.svelte +0 -9
- package/navbar/NavHamburger.svelte.d.ts +0 -19
- package/navbar/NavLi.svelte +0 -28
- package/navbar/NavLi.svelte.d.ts +0 -33
- package/navbar/NavUl.svelte +0 -28
- package/navbar/NavUl.svelte.d.ts +0 -21
- package/navbar/Navbar.svelte +0 -17
- package/navbar/Navbar.svelte.d.ts +0 -25
- package/paginations/Pagination.svelte +0 -36
- package/paginations/Pagination.svelte.d.ts +0 -26
- package/paginations/PaginationItem.svelte +0 -24
- package/paginations/PaginationItem.svelte.d.ts +0 -29
- package/popover/Popover.svelte +0 -18
- package/popover/Popover.svelte.d.ts +0 -23
- package/progressbars/Progressbar.svelte +0 -34
- package/progressbars/Progressbar.svelte.d.ts +0 -23
- package/ratings/AdvancedRating.svelte +0 -24
- package/ratings/AdvancedRating.svelte.d.ts +0 -28
- package/ratings/Rating.svelte +0 -34
- package/ratings/Rating.svelte.d.ts +0 -27
- package/ratings/RatingComment.svelte +0 -64
- package/ratings/RatingComment.svelte.d.ts +0 -39
- package/ratings/Review.svelte +0 -64
- package/ratings/Review.svelte.d.ts +0 -29
- package/ratings/ScoreRating.svelte +0 -52
- package/ratings/ScoreRating.svelte.d.ts +0 -36
- package/ratings/Star.svelte +0 -36
- package/ratings/Star.svelte.d.ts +0 -22
- package/sidebars/Sidebar.svelte +0 -7
- package/sidebars/Sidebar.svelte.d.ts +0 -19
- package/sidebars/SidebarBrand.svelte +0 -11
- package/sidebars/SidebarBrand.svelte.d.ts +0 -21
- package/sidebars/SidebarCta.svelte +0 -21
- package/sidebars/SidebarCta.svelte.d.ts +0 -23
- package/sidebars/SidebarDropdownItem.svelte +0 -23
- package/sidebars/SidebarDropdownItem.svelte.d.ts +0 -31
- package/sidebars/SidebarDropdownWrapper.svelte +0 -45
- package/sidebars/SidebarDropdownWrapper.svelte.d.ts +0 -26
- package/sidebars/SidebarGroup.svelte +0 -12
- package/sidebars/SidebarGroup.svelte.d.ts +0 -21
- package/sidebars/SidebarItem.svelte +0 -30
- package/sidebars/SidebarItem.svelte.d.ts +0 -35
- package/sidebars/SidebarWrapper.svelte +0 -7
- package/sidebars/SidebarWrapper.svelte.d.ts +0 -19
- package/skeleton/CardPlaceholder.svelte +0 -44
- package/skeleton/CardPlaceholder.svelte.d.ts +0 -18
- package/skeleton/ImagePlaceholder.svelte +0 -32
- package/skeleton/ImagePlaceholder.svelte.d.ts +0 -18
- package/skeleton/ListPlaceholder.svelte +0 -42
- package/skeleton/ListPlaceholder.svelte.d.ts +0 -17
- package/skeleton/Skeleton.svelte +0 -13
- package/skeleton/Skeleton.svelte.d.ts +0 -17
- package/skeleton/TestimonialPlaceholder.svelte +0 -25
- package/skeleton/TestimonialPlaceholder.svelte.d.ts +0 -17
- package/skeleton/TextPlaceholder.svelte +0 -37
- package/skeleton/TextPlaceholder.svelte.d.ts +0 -17
- package/skeleton/VideoPlaceholder.svelte +0 -20
- package/skeleton/VideoPlaceholder.svelte.d.ts +0 -18
- package/skeleton/WidgetPlaceholder.svelte +0 -18
- package/skeleton/WidgetPlaceholder.svelte.d.ts +0 -17
- package/spinners/Spinner.svelte +0 -46
- package/spinners/Spinner.svelte.d.ts +0 -22
- package/tables/Table.svelte +0 -31
- package/tables/Table.svelte.d.ts +0 -24
- package/tables/TableBody.svelte.d.ts +0 -27
- package/tables/TableBodyCell.svelte +0 -14
- package/tables/TableBodyCell.svelte.d.ts +0 -19
- package/tables/TableBodyRow.svelte +0 -39
- package/tables/TableBodyRow.svelte.d.ts +0 -19
- package/tables/TableHead.svelte +0 -37
- package/tables/TableHead.svelte.d.ts +0 -19
- package/tables/TableHeadCell.svelte +0 -6
- package/tables/TableHeadCell.svelte.d.ts +0 -18
- package/tables/TableSearch.svelte +0 -55
- package/tables/TableSearch.svelte.d.ts +0 -24
- package/tabs/TabHead.svelte +0 -27
- package/tabs/TabHead.svelte.d.ts +0 -20
- package/tabs/TabHeadItem.svelte +0 -56
- package/tabs/TabHeadItem.svelte.d.ts +0 -34
- package/tabs/TabItem.svelte +0 -53
- package/tabs/TabItem.svelte.d.ts +0 -34
- package/tabs/Tabs.svelte +0 -50
- package/tabs/Tabs.svelte.d.ts +0 -33
- package/timelines/Activity.svelte +0 -6
- package/timelines/Activity.svelte.d.ts +0 -18
- package/timelines/ActivityItem.svelte +0 -29
- package/timelines/ActivityItem.svelte.d.ts +0 -17
- package/timelines/Group.svelte +0 -11
- package/timelines/Group.svelte.d.ts +0 -20
- package/timelines/GroupItem.svelte +0 -49
- package/timelines/GroupItem.svelte.d.ts +0 -17
- package/timelines/Timeline.svelte +0 -17
- package/timelines/Timeline.svelte.d.ts +0 -19
- package/timelines/TimelineHorizontal.svelte +0 -6
- package/timelines/TimelineHorizontal.svelte.d.ts +0 -18
- package/timelines/TimelineItem.svelte +0 -125
- package/timelines/TimelineItem.svelte.d.ts +0 -22
- package/timelines/TimelineItemHorizontal.svelte +0 -55
- package/timelines/TimelineItemHorizontal.svelte.d.ts +0 -21
- package/timelines/TimelineItemVertical.svelte +0 -33
- package/timelines/TimelineItemVertical.svelte.d.ts +0 -20
- package/toasts/Toast.svelte +0 -39
- package/toasts/Toast.svelte.d.ts +0 -25
- package/toolbar/Toolbar.svelte +0 -57
- package/toolbar/Toolbar.svelte.d.ts +0 -21
- package/toolbar/ToolbarButton.svelte +0 -44
- package/toolbar/ToolbarButton.svelte.d.ts +0 -24
- package/toolbar/ToolbarGroup.svelte +0 -9
- package/toolbar/ToolbarGroup.svelte.d.ts +0 -16
- package/tooltips/Tooltip.svelte +0 -23
- package/tooltips/Tooltip.svelte.d.ts +0 -22
- package/types.d.ts +0 -225
- package/types.js +0 -1
- package/typography/A.svelte +0 -9
- package/typography/A.svelte.d.ts +0 -21
- package/typography/Blockquote.svelte +0 -44
- package/typography/Blockquote.svelte.d.ts +0 -26
- package/typography/DescriptionList.svelte +0 -10
- package/typography/DescriptionList.svelte.d.ts +0 -21
- package/typography/Heading.svelte +0 -20
- package/typography/Heading.svelte.d.ts +0 -21
- package/typography/Hr.svelte +0 -24
- package/typography/Hr.svelte.d.ts +0 -26
- package/typography/Img.svelte +0 -30
- package/typography/Img.svelte.d.ts +0 -26
- package/typography/Layout.svelte +0 -10
- package/typography/Layout.svelte.d.ts +0 -21
- package/typography/Li.svelte +0 -9
- package/typography/Li.svelte.d.ts +0 -20
- package/typography/List.svelte +0 -23
- package/typography/List.svelte.d.ts +0 -25
- package/typography/Mark.svelte +0 -9
- package/typography/Mark.svelte.d.ts +0 -21
- package/typography/P.svelte +0 -75
- package/typography/P.svelte.d.ts +0 -30
- package/typography/Secondary.svelte +0 -8
- package/typography/Secondary.svelte.d.ts +0 -20
- package/typography/Span.svelte +0 -17
- package/typography/Span.svelte.d.ts +0 -27
- package/typography/Ul.svelte +0 -20
- package/typography/Ul.svelte.d.ts +0 -21
- package/utils/Chevron.svelte +0 -26
- package/utils/Chevron.svelte.d.ts +0 -20
- package/utils/ChevronDown.svelte +0 -36
- package/utils/ChevronDown.svelte.d.ts +0 -22
- package/utils/ChevronLeft.svelte +0 -36
- package/utils/ChevronLeft.svelte.d.ts +0 -22
- package/utils/ChevronRight.svelte +0 -36
- package/utils/ChevronRight.svelte.d.ts +0 -22
- package/utils/ChevronUp.svelte +0 -36
- package/utils/ChevronUp.svelte.d.ts +0 -22
- package/utils/CloseButton.svelte +0 -52
- package/utils/CloseButton.svelte.d.ts +0 -23
- package/utils/Frame.svelte +0 -108
- package/utils/Frame.svelte.d.ts +0 -35
- package/utils/InformationCircle.svelte +0 -37
- package/utils/InformationCircle.svelte.d.ts +0 -22
- package/utils/Popper.svelte +0 -139
- package/utils/Popper.svelte.d.ts +0 -28
- package/utils/UserCircle.svelte +0 -37
- package/utils/UserCircle.svelte.d.ts +0 -22
- package/utils/Wrapper.svelte +0 -10
- package/utils/Wrapper.svelte.d.ts +0 -22
- package/utils/backdrop.d.ts +0 -6
- package/utils/backdrop.js +0 -90
- package/utils/clickOutside.d.ts +0 -3
- package/utils/clickOutside.js +0 -15
- package/utils/createEventDispatcher.d.ts +0 -1
- package/utils/focusTrap.d.ts +0 -3
- package/utils/generateId.d.ts +0 -1
- package/video/Video.svelte +0 -22
- package/video/Video.svelte.d.ts +0 -23
|
@@ -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_2159_3028)">
|
|
3
|
+
<rect x="7" y="8" width="205" height="50" rx="8" fill="#1C64F2"/>
|
|
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.293C186.714 30.1055 186.968 30.0002 187.233 30.0002C187.498 30.0002 187.753 30.1055 187.94 30.293L191.233 33.586L194.526 30.293C194.618 30.1974 194.729 30.1213 194.851 30.0689C194.973 30.0164 195.104 29.9889 195.237 29.9877C195.369 29.9866 195.501 30.0119 195.624 30.0621C195.747 30.1124 195.859 30.1867 195.952 30.2806C196.046 30.3745 196.121 30.4861 196.171 30.609C196.221 30.7319 196.246 30.8636 196.245 30.9964C196.244 31.1291 196.217 31.2604 196.164 31.3824C196.112 31.5044 196.036 31.6147 195.94 31.707L191.94 35.707C191.753 35.8944 191.498 35.9997 191.233 35.9997C190.968 35.9997 190.714 35.8944 190.526 35.707L186.526 31.707C186.339 31.5194 186.233 31.2651 186.233 31C186.233 30.7348 186.339 30.4805 186.526 30.293V30.293Z" fill="white"/>
|
|
8
|
+
<g filter="url(#filter0_dd_2159_3028)">
|
|
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.5714" y="86" width="13.5714" height="3" rx="1.5" fill="#9CA3AF"/>
|
|
12
|
+
<rect x="76.1428" 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.5714" y="107" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
|
|
19
|
+
<rect x="76.1428" y="107" width="13.5714" height="10" rx="2" fill="#1C64F2"/>
|
|
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.5714" y="139" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
|
|
26
|
+
<rect x="76.1428" 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.5714" y="171" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
|
|
33
|
+
<rect x="76.1428" 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.5714" y="203" width="13.5714" height="10" rx="2" fill="#9CA3AF"/>
|
|
40
|
+
<rect x="76.1428" 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_2159_3028" 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_2159_3028"/>
|
|
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_2159_3028" result="effect2_dropShadow_2159_3028"/>
|
|
61
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2159_3028" result="shape"/>
|
|
62
|
+
</filter>
|
|
63
|
+
<clipPath id="clip0_2159_3028">
|
|
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_1864_2015)">
|
|
3
|
+
<rect x="7" y="8" width="205" height="50" rx="8" fill="#1A56DB"/>
|
|
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.293C186.714 30.1055 186.968 30.0002 187.233 30.0002C187.498 30.0002 187.753 30.1055 187.94 30.293L191.233 33.586L194.526 30.293C194.618 30.1974 194.729 30.1213 194.851 30.0689C194.973 30.0164 195.104 29.9889 195.237 29.9877C195.369 29.9866 195.501 30.0119 195.624 30.0621C195.747 30.1124 195.859 30.1867 195.952 30.2806C196.046 30.3745 196.121 30.4861 196.171 30.609C196.221 30.7319 196.246 30.8636 196.245 30.9964C196.244 31.1291 196.217 31.2604 196.164 31.3824C196.112 31.5044 196.036 31.6147 195.94 31.707L191.94 35.707C191.753 35.8944 191.498 35.9997 191.233 35.9997C190.968 35.9997 190.714 35.8944 190.526 35.707L186.526 31.707C186.339 31.5194 186.233 31.2651 186.233 31C186.233 30.7348 186.339 30.4805 186.526 30.293V30.293Z" fill="white"/>
|
|
8
|
+
<g filter="url(#filter0_dd_1864_2015)">
|
|
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.5714" y="86" width="13.5714" height="3" rx="1.5" fill="#E5E7EB"/>
|
|
12
|
+
<rect x="76.1428" 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.5714" y="107" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
|
|
19
|
+
<rect x="76.1428" y="107" width="13.5714" height="10" rx="2" fill="#1A56DB"/>
|
|
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.5714" y="139" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
|
|
26
|
+
<rect x="76.1428" 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.5714" y="171" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
|
|
33
|
+
<rect x="76.1428" 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.5714" y="203" width="13.5714" height="10" rx="2" fill="#E5E7EB"/>
|
|
40
|
+
<rect x="76.1428" 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_1864_2015" 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_1864_2015"/>
|
|
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_1864_2015" result="effect2_dropShadow_1864_2015"/>
|
|
61
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1864_2015" result="shape"/>
|
|
62
|
+
</filter>
|
|
63
|
+
<clipPath id="clip0_1864_2015">
|
|
64
|
+
<rect width="220" height="240" fill="white"/>
|
|
65
|
+
</clipPath>
|
|
66
|
+
</defs>
|
|
67
|
+
</svg>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<svg width="378" height="240" viewBox="0 0 378 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.25" y="0.25" width="120.5" height="239.5" fill="#374151"/>
|
|
3
|
+
<rect x="12" y="12" width="54" height="5" rx="1" fill="#D1D5DB"/>
|
|
4
|
+
<rect x="12" y="33" width="30" height="3" rx="1" fill="#D1D5DB"/>
|
|
5
|
+
<rect x="12.5" y="40.5" width="96" height="14" rx="3.5" fill="#4B5563"/>
|
|
6
|
+
<rect x="19" y="46" width="54" height="3" rx="1" fill="#9CA3AF"/>
|
|
7
|
+
<rect x="12.5" y="40.5" width="96" height="14" rx="3.5" stroke="#6B7280"/>
|
|
8
|
+
<rect x="12" y="63" width="22" height="3" rx="1" fill="#D1D5DB"/>
|
|
9
|
+
<rect x="12.5" y="70.5" width="96" height="34" rx="3.5" fill="#4B5563"/>
|
|
10
|
+
<rect x="19" y="76" width="36" height="3" rx="1" fill="#9CA3AF"/>
|
|
11
|
+
<rect x="12.5" y="70.5" width="96" height="34" rx="3.5" stroke="#6B7280"/>
|
|
12
|
+
<rect x="12" y="113" width="36" height="3" rx="1" fill="#D1D5DB"/>
|
|
13
|
+
<rect x="12.5" y="120.5" width="96" height="14" rx="3.5" fill="#4B5563"/>
|
|
14
|
+
<rect x="19" y="126" width="33" height="3" rx="1" fill="#9CA3AF"/>
|
|
15
|
+
<rect x="12.5" y="120.5" width="96" height="14" rx="3.5" stroke="#6B7280"/>
|
|
16
|
+
<rect x="12" y="147" width="97" height="16" rx="3" fill="#1C64F2"/>
|
|
17
|
+
<rect x="24" y="152" width="6" height="6" rx="3" fill="white"/>
|
|
18
|
+
<rect x="37" y="153" width="60" height="4" rx="2" fill="white"/>
|
|
19
|
+
<rect x="41" y="223" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
20
|
+
<rect x="58" y="223" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
21
|
+
<rect x="75" y="223" width="5" height="5" rx="2.5" fill="#9CA3AF"/>
|
|
22
|
+
<rect x="0.25" y="0.25" width="120.5" height="239.5" stroke="#4B5563" stroke-width="0.5"/>
|
|
23
|
+
<rect x="154" y="52" width="101" height="8" rx="3" fill="#9CA3AF"/>
|
|
24
|
+
<rect x="154" y="72" width="203" height="8" rx="3" fill="#6B7280"/>
|
|
25
|
+
<rect x="154" y="88" width="221" height="8" rx="3" fill="#6B7280"/>
|
|
26
|
+
<rect x="154" y="104" width="177" height="8" rx="3" fill="#6B7280"/>
|
|
27
|
+
<rect x="154" y="120" width="210" height="8" rx="3" fill="#6B7280"/>
|
|
28
|
+
<rect x="154" y="140" width="203" height="8" rx="3" fill="#6B7280"/>
|
|
29
|
+
<rect x="154" y="156" width="221" height="8" rx="3" fill="#6B7280"/>
|
|
30
|
+
<rect x="154" y="172" width="203" height="8" rx="3" fill="#6B7280"/>
|
|
31
|
+
<rect x="154" y="188" width="213" height="8" rx="3" fill="#6B7280"/>
|
|
32
|
+
</svg>
|
|
33
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<svg width="378" height="240" viewBox="0 0 378 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.25" y="0.25" width="120.5" height="239.5" rx="1.75" fill="#FAFAFA"/>
|
|
3
|
+
<rect x="12" y="12" width="54" height="5" rx="1" fill="#9CA3AF"/>
|
|
4
|
+
<rect x="12" y="33" width="30" height="3" rx="1" fill="#9CA3AF"/>
|
|
5
|
+
<rect x="12.5" y="40.5" width="96" height="14" rx="3.5" fill="white"/>
|
|
6
|
+
<rect x="19" y="46" width="54" height="3" rx="1" fill="#D1D5DB"/>
|
|
7
|
+
<rect x="12.5" y="40.5" width="96" height="14" rx="3.5" stroke="#E4E4E7"/>
|
|
8
|
+
<rect x="12" y="63" width="22" height="3" rx="1" fill="#9CA3AF"/>
|
|
9
|
+
<rect x="12.5" y="70.5" width="96" height="34" rx="3.5" fill="white"/>
|
|
10
|
+
<rect x="19" y="76" width="36" height="3" rx="1" fill="#D1D5DB"/>
|
|
11
|
+
<rect x="12.5" y="70.5" width="96" height="34" rx="3.5" stroke="#E4E4E7"/>
|
|
12
|
+
<rect x="12" y="113" width="36" height="3" rx="1" fill="#9CA3AF"/>
|
|
13
|
+
<rect x="12.5" y="120.5" width="96" height="14" rx="3.5" fill="white"/>
|
|
14
|
+
<rect x="19" y="126" width="33" height="3" rx="1" fill="#D1D5DB"/>
|
|
15
|
+
<rect x="12.5" y="120.5" width="96" height="14" rx="3.5" stroke="#E4E4E7"/>
|
|
16
|
+
<rect x="12" y="147" width="97" height="16" rx="3" fill="#1C64F2"/>
|
|
17
|
+
<rect x="24" y="152" width="6" height="6" rx="3" fill="white"/>
|
|
18
|
+
<rect x="37" y="153" width="60" height="4" rx="2" fill="white"/>
|
|
19
|
+
<rect x="41" y="223" width="5" height="5" rx="2.5" fill="#D1D5DB"/>
|
|
20
|
+
<rect x="58" y="223" width="5" height="5" rx="2.5" fill="#D1D5DB"/>
|
|
21
|
+
<rect x="75" y="223" width="5" height="5" rx="2.5" fill="#D1D5DB"/>
|
|
22
|
+
<rect x="0.25" y="0.25" width="120.5" height="239.5" rx="1.75" stroke="#E5E7EB" stroke-width="0.5"/>
|
|
23
|
+
<rect x="154" y="52" width="101" height="8" rx="3" fill="#D1D5DB"/>
|
|
24
|
+
<rect x="154" y="72" width="203" height="8" rx="3" fill="#E5E7EB"/>
|
|
25
|
+
<rect x="154" y="88" width="221" height="8" rx="3" fill="#E5E7EB"/>
|
|
26
|
+
<rect x="154" y="104" width="177" height="8" rx="3" fill="#E5E7EB"/>
|
|
27
|
+
<rect x="154" y="120" width="210" height="8" rx="3" fill="#E5E7EB"/>
|
|
28
|
+
<rect x="154" y="140" width="203" height="8" rx="3" fill="#E5E7EB"/>
|
|
29
|
+
<rect x="154" y="156" width="221" height="8" rx="3" fill="#E5E7EB"/>
|
|
30
|
+
<rect x="154" y="172" width="203" height="8" rx="3" fill="#E5E7EB"/>
|
|
31
|
+
<rect x="154" y="188" width="213" height="8" rx="3" fill="#E5E7EB"/>
|
|
32
|
+
</svg>
|
|
33
|
+
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<svg width="240" height="270" viewBox="0 0 240 270" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="17" y="10" width="205" height="50" rx="8" fill="#1C64F2"/>
|
|
3
|
+
<rect x="41" y="28" width="141.044" height="14" rx="2" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M197.337 32.2931C197.525 32.1056 197.779 32.0003 198.044 32.0003C198.309 32.0003 198.564 32.1056 198.751 32.2931L202.044 35.5861L205.337 32.2931C205.429 32.1976 205.54 32.1214 205.662 32.069C205.784 32.0166 205.915 31.989 206.048 31.9878C206.181 31.9867 206.312 32.012 206.435 32.0623C206.558 32.1125 206.67 32.1868 206.764 32.2807C206.858 32.3746 206.932 32.4862 206.982 32.6091C207.032 32.732 207.058 32.8637 207.056 32.9965C207.055 33.1293 207.028 33.2605 206.975 33.3825C206.923 33.5045 206.847 33.6148 206.751 33.7071L202.751 37.7071C202.564 37.8946 202.309 37.9999 202.044 37.9999C201.779 37.9999 201.525 37.8946 201.337 37.7071L197.337 33.7071C197.15 33.5196 197.044 33.2652 197.044 33.0001C197.044 32.7349 197.15 32.4806 197.337 32.2931V32.2931Z" fill="white"/>
|
|
5
|
+
<g filter="url(#filter0_dd_2159_2825)">
|
|
6
|
+
<rect x="17" y="72" width="205" height="188" rx="8" fill="#374151"/>
|
|
7
|
+
<circle cx="41" cy="98" r="6" fill="#6B7280"/>
|
|
8
|
+
<rect x="59" y="93" width="143" height="10" rx="2" fill="#9CA3AF"/>
|
|
9
|
+
<circle cx="41" cy="132" r="6" fill="#6B7280"/>
|
|
10
|
+
<rect x="59" y="127" width="143" height="10" rx="2" fill="#9CA3AF"/>
|
|
11
|
+
<circle cx="41" cy="166" r="6" fill="#6B7280"/>
|
|
12
|
+
<rect x="59" y="161" width="143" height="10" rx="2" fill="#9CA3AF"/>
|
|
13
|
+
<circle cx="41" cy="200" r="6" fill="#6B7280"/>
|
|
14
|
+
<rect x="59" y="195" width="143" height="10" rx="2" fill="#9CA3AF"/>
|
|
15
|
+
<circle cx="41" cy="234" r="6" fill="#6B7280"/>
|
|
16
|
+
<rect x="59" y="229" width="143" height="10" rx="2" fill="#9CA3AF"/>
|
|
17
|
+
<rect x="17.5" y="72.5" width="204" height="187" rx="7.5" stroke="#4B5563"/>
|
|
18
|
+
</g>
|
|
19
|
+
<defs>
|
|
20
|
+
<filter id="filter0_dd_2159_2825" x="11" y="70" width="217" height="200" 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="4"/>
|
|
24
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
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_2159_2825"/>
|
|
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="2"/>
|
|
29
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
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_2159_2825" result="effect2_dropShadow_2159_2825"/>
|
|
32
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2159_2825" result="shape"/>
|
|
33
|
+
</filter>
|
|
34
|
+
</defs>
|
|
35
|
+
</svg>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<svg width="240" height="270" viewBox="0 0 240 270" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="17" y="10" width="205" height="50" rx="8" fill="#1A56DB"/>
|
|
3
|
+
<rect x="41" y="28" width="141.044" height="14" rx="2" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M197.337 32.2931C197.525 32.1056 197.779 32.0003 198.044 32.0003C198.309 32.0003 198.564 32.1056 198.751 32.2931L202.044 35.5861L205.337 32.2931C205.429 32.1976 205.54 32.1214 205.662 32.069C205.784 32.0166 205.915 31.989 206.048 31.9878C206.181 31.9867 206.312 32.012 206.435 32.0623C206.558 32.1125 206.67 32.1868 206.764 32.2807C206.858 32.3746 206.932 32.4862 206.982 32.6091C207.032 32.732 207.058 32.8637 207.056 32.9965C207.055 33.1293 207.028 33.2605 206.975 33.3825C206.923 33.5045 206.847 33.6148 206.751 33.7071L202.751 37.7071C202.564 37.8946 202.309 37.9999 202.044 37.9999C201.779 37.9999 201.525 37.8946 201.337 37.7071L197.337 33.7071C197.15 33.5196 197.044 33.2652 197.044 33.0001C197.044 32.7349 197.15 32.4806 197.337 32.2931V32.2931Z" fill="white"/>
|
|
5
|
+
<g filter="url(#filter0_dd_1864_1983)">
|
|
6
|
+
<rect x="17" y="72" width="205" height="188" rx="8" fill="white"/>
|
|
7
|
+
<circle cx="41" cy="98" r="6" fill="#E5E7EB"/>
|
|
8
|
+
<rect x="59" y="93" width="143" height="10" rx="2" fill="#E5E7EB"/>
|
|
9
|
+
<circle cx="41" cy="132" r="6" fill="#E5E7EB"/>
|
|
10
|
+
<rect x="59" y="127" width="143" height="10" rx="2" fill="#E5E7EB"/>
|
|
11
|
+
<circle cx="41" cy="166" r="6" fill="#E5E7EB"/>
|
|
12
|
+
<rect x="59" y="161" width="143" height="10" rx="2" fill="#E5E7EB"/>
|
|
13
|
+
<circle cx="41" cy="200" r="6" fill="#E5E7EB"/>
|
|
14
|
+
<rect x="59" y="195" width="143" height="10" rx="2" fill="#E5E7EB"/>
|
|
15
|
+
<circle cx="41" cy="234" r="6" fill="#E5E7EB"/>
|
|
16
|
+
<rect x="59" y="229" width="143" height="10" rx="2" fill="#E5E7EB"/>
|
|
17
|
+
<rect x="17.5" y="72.5" width="204" height="187" rx="7.5" stroke="#D1D5DB"/>
|
|
18
|
+
</g>
|
|
19
|
+
<defs>
|
|
20
|
+
<filter id="filter0_dd_1864_1983" x="11" y="70" width="217" height="200" 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="4"/>
|
|
24
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
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_1864_1983"/>
|
|
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="2"/>
|
|
29
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
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_1864_1983" result="effect2_dropShadow_1864_1983"/>
|
|
32
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1864_1983" result="shape"/>
|
|
33
|
+
</filter>
|
|
34
|
+
</defs>
|
|
35
|
+
</svg>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<svg width="312" height="212" viewBox="0 0 312 212" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_d_2665_3614)">
|
|
3
|
+
<g filter="url(#filter1_dd_2665_3614)">
|
|
4
|
+
<path d="M6 10C6 5.58172 9.58172 2 14 2H83V37H14C9.58172 37 6 33.4183 6 29V10Z" fill="#4B5563"/>
|
|
5
|
+
<rect x="30" y="16" width="33" height="7" rx="2" fill="#9CA3AF"/>
|
|
6
|
+
<path d="M14 2.5H82.5V36.5H14C9.85786 36.5 6.5 33.1421 6.5 29V10C6.5 5.85786 9.85786 2.5 14 2.5Z" stroke="#4B5563"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g filter="url(#filter2_dd_2665_3614)">
|
|
9
|
+
<path d="M83 2H298C302.418 2 306 5.58172 306 10V29C306 33.4183 302.418 37 298 37H83V2Z" fill="#374151"/>
|
|
10
|
+
<rect x="101" y="16" width="150" height="7" rx="2" fill="#6B7280"/>
|
|
11
|
+
<path d="M83.5 2.5H298C302.142 2.5 305.5 5.85786 305.5 10V29C305.5 33.1421 302.142 36.5 298 36.5H83.5V2.5Z" stroke="#4B5563"/>
|
|
12
|
+
</g>
|
|
13
|
+
<rect x="6.5" y="58.5" width="299" height="144.949" rx="3.5" fill="#111928" stroke="#4B5563" stroke-dasharray="5 5"/>
|
|
14
|
+
<rect width="163.155" height="59.3855" transform="translate(74.4226 92.9743)" fill="#111928"/>
|
|
15
|
+
<path d="M148.5 116.974C147.023 116.976 145.596 116.432 144.495 115.448C143.393 114.463 142.694 113.107 142.53 111.638C142.367 110.17 142.751 108.693 143.609 107.49C144.467 106.287 145.738 105.443 147.18 105.12C146.763 103.174 147.136 101.143 148.216 99.4725C149.297 97.802 150.997 96.6292 152.942 96.2121C154.888 95.7949 156.919 96.1677 158.59 97.2483C160.26 98.329 161.433 100.029 161.85 101.974H162C163.86 101.972 165.654 102.662 167.035 103.908C168.415 105.155 169.283 106.87 169.47 108.721C169.657 110.571 169.149 112.425 168.046 113.923C166.943 115.42 165.323 116.454 163.5 116.824M160.5 112.474L156 107.974M156 107.974L151.5 112.474M156 107.974V125.974" stroke="#6B7280" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
16
|
+
<rect x="93.0591" y="139.974" width="125.882" height="4" rx="2" fill="#9CA3AF"/>
|
|
17
|
+
<rect x="81" y="148.974" width="150" height="3.3855" rx="1.69275" fill="#6B7280"/>
|
|
18
|
+
</g>
|
|
19
|
+
<defs>
|
|
20
|
+
<filter id="filter0_d_2665_3614" x="2" y="2" width="308" height="210" 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="4"/>
|
|
24
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
25
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
26
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
|
27
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3614"/>
|
|
28
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2665_3614" result="shape"/>
|
|
29
|
+
</filter>
|
|
30
|
+
<filter id="filter1_dd_2665_3614" x="0" y="0" width="89" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
31
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
32
|
+
<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"/>
|
|
33
|
+
<feOffset dy="4"/>
|
|
34
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
35
|
+
<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"/>
|
|
36
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3614"/>
|
|
37
|
+
<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"/>
|
|
38
|
+
<feOffset dy="2"/>
|
|
39
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
40
|
+
<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"/>
|
|
41
|
+
<feBlend mode="normal" in2="effect1_dropShadow_2665_3614" result="effect2_dropShadow_2665_3614"/>
|
|
42
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3614" result="shape"/>
|
|
43
|
+
</filter>
|
|
44
|
+
<filter id="filter2_dd_2665_3614" x="77" y="0" width="235" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
45
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
46
|
+
<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"/>
|
|
47
|
+
<feOffset dy="4"/>
|
|
48
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
49
|
+
<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"/>
|
|
50
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3614"/>
|
|
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="2"/>
|
|
53
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
54
|
+
<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"/>
|
|
55
|
+
<feBlend mode="normal" in2="effect1_dropShadow_2665_3614" result="effect2_dropShadow_2665_3614"/>
|
|
56
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3614" result="shape"/>
|
|
57
|
+
</filter>
|
|
58
|
+
</defs>
|
|
59
|
+
</svg>
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<svg width="312" height="204" viewBox="0 0 312 204" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_dd_2665_3604)">
|
|
3
|
+
<path d="M6 10C6 5.58172 9.58172 2 14 2H83V37H14C9.58172 37 6 33.4183 6 29V10Z" fill="#4B5563"/>
|
|
4
|
+
<rect x="30" y="16" width="33" height="7" rx="2" fill="#9CA3AF"/>
|
|
5
|
+
<path d="M14 2.5H82.5V36.5H14C9.85786 36.5 6.5 33.1421 6.5 29V10C6.5 5.85786 9.85786 2.5 14 2.5Z" stroke="#4B5563"/>
|
|
6
|
+
</g>
|
|
7
|
+
<g filter="url(#filter1_dd_2665_3604)">
|
|
8
|
+
<path d="M83 2H298C302.418 2 306 5.58172 306 10V29C306 33.4183 302.418 37 298 37H83V2Z" fill="white"/>
|
|
9
|
+
<rect x="101" y="16" width="150" height="7" rx="2" fill="#9CA3AF"/>
|
|
10
|
+
<path d="M83.5 2.5H298C302.142 2.5 305.5 5.85786 305.5 10V29C305.5 33.1421 302.142 36.5 298 36.5H83.5V2.5Z" stroke="#D1D5DB"/>
|
|
11
|
+
</g>
|
|
12
|
+
<rect x="6.5" y="58.5" width="299" height="145" rx="3.5" fill="white" stroke="#E4E4E7" stroke-dasharray="5 5"/>
|
|
13
|
+
<path d="M148.5 116.987C147.023 116.988 145.596 116.445 144.495 115.46C143.393 114.475 142.694 113.119 142.53 111.651C142.367 110.182 142.751 108.705 143.609 107.502C144.467 106.299 145.738 105.456 147.18 105.132C146.763 103.187 147.136 101.155 148.216 99.4848C149.297 97.8143 150.997 96.6415 152.942 96.2244C154.888 95.8072 156.919 96.18 158.59 97.2606C160.26 98.3413 161.433 100.041 161.85 101.987H162C163.86 101.985 165.654 102.674 167.035 103.921C168.415 105.167 169.283 106.882 169.47 108.733C169.657 110.583 169.149 112.437 168.046 113.935C166.943 115.432 165.323 116.466 163.5 116.837M160.5 112.487L156 107.987M156 107.987L151.5 112.487M156 107.987V125.987" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
14
|
+
<rect x="93.0591" y="139.987" width="125.882" height="4" rx="2" fill="#9CA3AF"/>
|
|
15
|
+
<rect x="81" y="148.987" width="150" height="3.3855" rx="1.69275" fill="#D1D5DB"/>
|
|
16
|
+
<defs>
|
|
17
|
+
<filter id="filter0_dd_2665_3604" x="0" y="0" width="89" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
18
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
19
|
+
<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"/>
|
|
20
|
+
<feOffset dy="4"/>
|
|
21
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
22
|
+
<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"/>
|
|
23
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3604"/>
|
|
24
|
+
<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"/>
|
|
25
|
+
<feOffset dy="2"/>
|
|
26
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
27
|
+
<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"/>
|
|
28
|
+
<feBlend mode="normal" in2="effect1_dropShadow_2665_3604" result="effect2_dropShadow_2665_3604"/>
|
|
29
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3604" result="shape"/>
|
|
30
|
+
</filter>
|
|
31
|
+
<filter id="filter1_dd_2665_3604" x="77" y="0" width="235" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
32
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
33
|
+
<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"/>
|
|
34
|
+
<feOffset dy="4"/>
|
|
35
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
36
|
+
<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"/>
|
|
37
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3604"/>
|
|
38
|
+
<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"/>
|
|
39
|
+
<feOffset dy="2"/>
|
|
40
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
41
|
+
<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"/>
|
|
42
|
+
<feBlend mode="normal" in2="effect1_dropShadow_2665_3604" result="effect2_dropShadow_2665_3604"/>
|
|
43
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3604" result="shape"/>
|
|
44
|
+
</filter>
|
|
45
|
+
</defs>
|
|
46
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="284" height="200" viewBox="0 0 284 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.5" y="2.5" width="283" height="47" rx="7.5" stroke="#6B7280"/>
|
|
3
|
+
<path d="M0 85C0 80.5817 3.58172 77 8 77H276C280.418 77 284 80.5817 284 85V125H0V85Z" fill="#374151"/>
|
|
4
|
+
<rect y="77" width="284" height="48" rx="8" fill="#374151"/>
|
|
5
|
+
<rect x="12" y="81" width="59" height="6" rx="2" fill="#1C64F2"/>
|
|
6
|
+
<rect y="123" width="284" height="2" fill="#4B5563"/>
|
|
7
|
+
<rect y="152" width="59" height="6" rx="2" fill="#1C64F2"/>
|
|
8
|
+
<rect y="198" width="284" height="2" fill="#4B5563"/>
|
|
9
|
+
<rect width="73" height="6" transform="translate(16)" fill="#111928"/>
|
|
10
|
+
<rect x="24" width="57" height="6" rx="2" fill="#1C64F2"/>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="284" height="200" viewBox="0 0 284 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 85C0 80.5817 3.58172 77 8 77H276C280.418 77 284 80.5817 284 85V125H0V85Z" fill="#E5E7EB"/>
|
|
3
|
+
<rect x="12" y="81" width="59" height="6" rx="2" fill="#1C64F2"/>
|
|
4
|
+
<rect y="123" width="284" height="2" fill="#D1D5DB"/>
|
|
5
|
+
<rect y="152" width="59" height="6" rx="2" fill="#1C64F2"/>
|
|
6
|
+
<rect y="198" width="284" height="2" fill="#D1D5DB"/>
|
|
7
|
+
<rect x="0.5" y="2.5" width="283" height="47" rx="7.5" fill="white"/>
|
|
8
|
+
<rect x="0.5" y="2.5" width="283" height="47" rx="7.5" stroke="#D1D5DB"/>
|
|
9
|
+
<rect width="73" height="6" transform="translate(16)" fill="white"/>
|
|
10
|
+
<rect x="24" width="57" height="6" rx="2" fill="#1C64F2"/>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<svg width="341" height="125" viewBox="0 0 341 125" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_dd_2398_3279)">
|
|
3
|
+
<rect x="7" y="3" width="327" height="31" rx="4" fill="#374151"/>
|
|
4
|
+
<rect x="19" y="15" width="36" height="7" rx="3" fill="#9CA3AF"/>
|
|
5
|
+
<rect x="176.5" y="15.5" width="28.875" height="6" rx="2" fill="#6B7280"/>
|
|
6
|
+
<rect x="215.375" y="15.5" width="28.875" height="6" rx="2" fill="#6B7280"/>
|
|
7
|
+
<rect x="254.25" y="15.5" width="28.875" height="6" rx="2" fill="#6B7280"/>
|
|
8
|
+
<rect x="293.125" y="15.5" width="28.875" height="6" rx="2" fill="#6B7280"/>
|
|
9
|
+
<rect x="6.5" y="2.5" width="328" height="32" rx="4.5" stroke="#374151"/>
|
|
10
|
+
</g>
|
|
11
|
+
<g filter="url(#filter1_dd_2398_3279)">
|
|
12
|
+
<rect x="7" y="55" width="327" height="59" rx="4" fill="#374151"/>
|
|
13
|
+
<rect x="19" y="67" width="36" height="7" rx="3" fill="#9CA3AF"/>
|
|
14
|
+
<rect x="176.5" y="67.5" width="28.875" height="6" rx="2" fill="#6B7280"/>
|
|
15
|
+
<rect x="215.375" y="67.5" width="28.875" height="6" rx="2" fill="#6B7280"/>
|
|
16
|
+
<rect x="254.25" y="67.5" width="28.875" height="6" rx="2" fill="#6B7280"/>
|
|
17
|
+
<rect x="293.125" y="67.5" width="28.875" height="6" rx="2" fill="#6B7280"/>
|
|
18
|
+
<line x1="19" y1="85.5" x2="322" y2="85.5" stroke="#4B5563"/>
|
|
19
|
+
<rect x="107" y="98" width="127" height="4" rx="2" fill="#6B7280"/>
|
|
20
|
+
<rect x="6.5" y="54.5" width="328" height="60" rx="4.5" stroke="#374151"/>
|
|
21
|
+
</g>
|
|
22
|
+
<defs>
|
|
23
|
+
<filter id="filter0_dd_2398_3279" x="0" y="0" width="341" height="45" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
24
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
25
|
+
<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"/>
|
|
26
|
+
<feOffset dy="4"/>
|
|
27
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
28
|
+
<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"/>
|
|
29
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2398_3279"/>
|
|
30
|
+
<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"/>
|
|
31
|
+
<feOffset dy="2"/>
|
|
32
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
33
|
+
<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"/>
|
|
34
|
+
<feBlend mode="normal" in2="effect1_dropShadow_2398_3279" result="effect2_dropShadow_2398_3279"/>
|
|
35
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2398_3279" result="shape"/>
|
|
36
|
+
</filter>
|
|
37
|
+
<filter id="filter1_dd_2398_3279" x="0" y="52" width="341" height="73" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
38
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
39
|
+
<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"/>
|
|
40
|
+
<feOffset dy="4"/>
|
|
41
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
42
|
+
<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"/>
|
|
43
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2398_3279"/>
|
|
44
|
+
<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"/>
|
|
45
|
+
<feOffset dy="2"/>
|
|
46
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
47
|
+
<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"/>
|
|
48
|
+
<feBlend mode="normal" in2="effect1_dropShadow_2398_3279" result="effect2_dropShadow_2398_3279"/>
|
|
49
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2398_3279" result="shape"/>
|
|
50
|
+
</filter>
|
|
51
|
+
</defs>
|
|
52
|
+
</svg>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<svg width="339" height="123" viewBox="0 0 339 123" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_dd_2398_3280)">
|
|
3
|
+
<rect x="6" y="2" width="327" height="31" rx="4" fill="#F9FAFB"/>
|
|
4
|
+
<rect x="18" y="14" width="36" height="7" rx="3" fill="#9CA3AF"/>
|
|
5
|
+
<rect x="175.5" y="14.5" width="28.875" height="6" rx="2" fill="#D1D5DB"/>
|
|
6
|
+
<rect x="214.375" y="14.5" width="28.875" height="6" rx="2" fill="#D1D5DB"/>
|
|
7
|
+
<rect x="253.25" y="14.5" width="28.875" height="6" rx="2" fill="#D1D5DB"/>
|
|
8
|
+
<rect x="292.125" y="14.5" width="28.875" height="6" rx="2" fill="#D1D5DB"/>
|
|
9
|
+
</g>
|
|
10
|
+
<g filter="url(#filter1_dd_2398_3280)">
|
|
11
|
+
<rect x="6" y="54" width="327" height="59" rx="4" fill="#F9FAFB"/>
|
|
12
|
+
<rect x="18" y="66" width="36" height="7" rx="3" fill="#9CA3AF"/>
|
|
13
|
+
<rect x="175.5" y="66.5" width="28.875" height="6" rx="2" fill="#D1D5DB"/>
|
|
14
|
+
<rect x="214.375" y="66.5" width="28.875" height="6" rx="2" fill="#D1D5DB"/>
|
|
15
|
+
<rect x="253.25" y="66.5" width="28.875" height="6" rx="2" fill="#D1D5DB"/>
|
|
16
|
+
<rect x="292.125" y="66.5" width="28.875" height="6" rx="2" fill="#D1D5DB"/>
|
|
17
|
+
<line x1="18" y1="84.5" x2="321" y2="84.5" stroke="#E5E7EB"/>
|
|
18
|
+
<rect x="106" y="97" width="127" height="4" rx="2" fill="#D1D5DB"/>
|
|
19
|
+
</g>
|
|
20
|
+
<defs>
|
|
21
|
+
<filter id="filter0_dd_2398_3280" x="0" y="0" width="339" height="43" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
22
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
23
|
+
<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"/>
|
|
24
|
+
<feOffset dy="4"/>
|
|
25
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
26
|
+
<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"/>
|
|
27
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2398_3280"/>
|
|
28
|
+
<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"/>
|
|
29
|
+
<feOffset dy="2"/>
|
|
30
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
31
|
+
<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"/>
|
|
32
|
+
<feBlend mode="normal" in2="effect1_dropShadow_2398_3280" result="effect2_dropShadow_2398_3280"/>
|
|
33
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2398_3280" result="shape"/>
|
|
34
|
+
</filter>
|
|
35
|
+
<filter id="filter1_dd_2398_3280" x="0" y="52" width="339" height="71" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
36
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
37
|
+
<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"/>
|
|
38
|
+
<feOffset dy="4"/>
|
|
39
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
40
|
+
<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"/>
|
|
41
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2398_3280"/>
|
|
42
|
+
<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"/>
|
|
43
|
+
<feOffset dy="2"/>
|
|
44
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
45
|
+
<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"/>
|
|
46
|
+
<feBlend mode="normal" in2="effect1_dropShadow_2398_3280" result="effect2_dropShadow_2398_3280"/>
|
|
47
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2398_3280" result="shape"/>
|
|
48
|
+
</filter>
|
|
49
|
+
</defs>
|
|
50
|
+
</svg>
|