flowbite-svelte 0.44.7 → 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.
- package/.env +2 -0
- package/.eslintrc.cjs +20 -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 +71 -0
- package/.github/workflows/playwright-and-lint.yaml +47 -0
- package/.prettierignore +16 -0
- package/.prettierrc +9 -0
- package/CHANGELOG.md +3858 -0
- package/CONTRIBUTING.md +66 -0
- package/dist/bottom-nav/BottomNavItem.svelte +3 -1
- package/dist/bottom-nav/BottomNavItem.svelte.d.ts +2 -0
- package/dist/bottom-nav/BottomNavItem.svelte.d.ts.map +1 -1
- package/dist/carousels/Carousel.svelte +52 -153
- package/dist/carousels/Carousel.svelte.d.ts +22 -37
- package/dist/carousels/Carousel.svelte.d.ts.map +1 -1
- package/dist/carousels/ControlButton.svelte +31 -0
- package/dist/carousels/ControlButton.svelte.d.ts +29 -0
- package/dist/carousels/ControlButton.svelte.d.ts.map +1 -0
- package/dist/carousels/Controls.svelte +17 -0
- package/dist/carousels/Controls.svelte.d.ts +23 -0
- package/dist/carousels/Controls.svelte.d.ts.map +1 -0
- package/dist/carousels/Indicators.svelte +26 -0
- package/dist/carousels/Indicators.svelte.d.ts +32 -0
- package/dist/carousels/Indicators.svelte.d.ts.map +1 -0
- package/dist/carousels/Thumbnail.svelte +6 -23
- package/dist/carousels/Thumbnail.svelte.d.ts +5 -16
- package/dist/carousels/Thumbnail.svelte.d.ts.map +1 -1
- package/dist/carousels/Thumbnails.svelte +26 -0
- package/dist/carousels/Thumbnails.svelte.d.ts +33 -0
- package/dist/carousels/Thumbnails.svelte.d.ts.map +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/tables/TableSearch.svelte +2 -2
- package/dist/tables/TableSearch.svelte.d.ts +1 -1
- package/mdsvex.config.js +18 -0
- package/package.json +18 -80
- package/playwright.config.ts +12 -0
- package/postcss.config.cjs +12 -0
- package/src/app.css +45 -0
- package/src/app.d.ts +9 -0
- package/src/app.html +28 -0
- package/src/app.postcss +55 -0
- package/src/hooks.server.js +27 -0
- package/src/lib/accordion/Accordion.svelte +61 -0
- package/src/lib/accordion/AccordionItem.svelte +120 -0
- package/src/lib/alerts/Alert.svelte +60 -0
- package/src/lib/avatar/Avatar.svelte +56 -0
- package/src/lib/avatar/Placeholder.svelte +16 -0
- package/src/lib/badges/Badge.svelte +108 -0
- package/src/lib/banner/Banner.svelte +64 -0
- package/src/lib/bottom-nav/BottomNav.svelte +76 -0
- package/src/lib/bottom-nav/BottomNavHeader.svelte +19 -0
- package/src/lib/bottom-nav/BottomNavHeaderItem.svelte +23 -0
- package/src/lib/bottom-nav/BottomNavItem.svelte +76 -0
- package/src/lib/breadcrumbs/Breadcrumb.svelte +25 -0
- package/src/lib/breadcrumbs/BreadcrumbItem.svelte +51 -0
- package/src/lib/buttongroups/ButtonGroup.svelte +22 -0
- package/src/lib/buttons/Button.svelte +100 -0
- package/src/lib/buttons/GradientButton.svelte +79 -0
- package/src/lib/cards/Card.svelte +70 -0
- package/src/lib/carousels/Carousel.svelte +166 -0
- package/src/lib/carousels/ControlButton.svelte +34 -0
- package/src/lib/carousels/Controls.svelte +21 -0
- package/src/lib/carousels/Indicators.svelte +31 -0
- package/src/lib/carousels/Thumbnail.svelte +20 -0
- package/src/lib/carousels/Thumbnails.svelte +30 -0
- package/src/lib/charts/Chart.svelte +35 -0
- package/src/lib/darkmode/DarkMode.svelte +58 -0
- package/src/lib/datepicker/Calender.svelte +3 -0
- package/src/lib/datepicker/Datepicker.svelte +66 -0
- package/src/lib/device-mockup/Android.svelte +24 -0
- package/src/lib/device-mockup/DefaultMockup.svelte +21 -0
- package/src/lib/device-mockup/DeviceMockup.svelte +235 -0
- package/src/lib/device-mockup/Ios.svelte +21 -0
- package/src/lib/device-mockup/Smartwatch.svelte +15 -0
- package/src/lib/device-mockup/Tablet.svelte +21 -0
- package/src/lib/drawer/Drawer.svelte +87 -0
- package/src/lib/dropdowns/Dropdown.svelte +81 -0
- package/src/lib/dropdowns/DropdownDivider.svelte +13 -0
- package/src/lib/dropdowns/DropdownHeader.svelte +21 -0
- package/src/lib/dropdowns/DropdownItem.svelte +47 -0
- package/src/lib/footer/Footer.svelte +18 -0
- package/src/lib/footer/FooterBrand.svelte +39 -0
- package/src/lib/footer/FooterCopyright.svelte +38 -0
- package/src/lib/footer/FooterIcon.svelte +25 -0
- package/src/lib/footer/FooterLink.svelte +26 -0
- package/src/lib/footer/FooterLinkGroup.svelte +15 -0
- package/src/lib/forms/Checkbox.svelte +70 -0
- package/src/lib/forms/Dropzone.svelte +32 -0
- package/src/lib/forms/Fileupload.svelte +21 -0
- package/src/lib/forms/FloatingLabelInput.svelte +94 -0
- package/src/lib/forms/Helper.svelte +23 -0
- package/src/lib/forms/Input.svelte +83 -0
- package/src/lib/forms/InputAddon.svelte +47 -0
- package/src/lib/forms/Label.svelte +40 -0
- package/src/lib/forms/MultiSelect.svelte +126 -0
- package/src/lib/forms/NumberInput.svelte +16 -0
- package/src/lib/forms/Radio.svelte +53 -0
- package/src/lib/forms/RadioInline.svelte +9 -0
- package/src/lib/forms/Range.svelte +24 -0
- package/src/lib/forms/Search.svelte +44 -0
- package/src/lib/forms/Select.svelte +49 -0
- package/src/lib/forms/Textarea.svelte +51 -0
- package/src/lib/forms/Toggle.svelte +56 -0
- package/src/lib/forms/VoiceSearch.svelte +57 -0
- package/src/lib/gallery/Gallery.svelte +31 -0
- package/src/lib/index.ts +228 -0
- package/src/lib/indicators/Indicator.svelte +86 -0
- package/src/lib/kbd/ArrowKeyDown.svelte +15 -0
- package/src/lib/kbd/ArrowKeyLeft.svelte +15 -0
- package/src/lib/kbd/ArrowKeyRight.svelte +15 -0
- package/src/lib/kbd/ArrowKeyUp.svelte +15 -0
- package/src/lib/kbd/Kbd.svelte +15 -0
- package/src/lib/list-group/Listgroup.svelte +45 -0
- package/src/lib/list-group/ListgroupItem.svelte +57 -0
- package/src/lib/megamenu/MegaMenu.svelte +52 -0
- package/src/lib/modals/Modal.svelte +162 -0
- package/src/lib/navbar/Menu.svelte +38 -0
- package/src/lib/navbar/NavBrand.svelte +15 -0
- package/src/lib/navbar/NavHamburger.svelte +20 -0
- package/src/lib/navbar/NavLi.svelte +37 -0
- package/src/lib/navbar/NavSidebarHamburger.svelte +20 -0
- package/src/lib/navbar/NavUl.svelte +68 -0
- package/src/lib/navbar/Navbar.svelte +42 -0
- package/src/lib/navbar/SidebarMenu.svelte +37 -0
- package/src/lib/paginations/Pagination.svelte +59 -0
- package/src/lib/paginations/PaginationItem.svelte +40 -0
- package/src/lib/popover/Popover.svelte +34 -0
- package/src/lib/progressbars/Progressbar.svelte +52 -0
- package/src/lib/ratings/AdvancedRating.svelte +45 -0
- package/src/lib/ratings/Heart.svelte +39 -0
- package/src/lib/ratings/Rating.svelte +57 -0
- package/src/lib/ratings/RatingComment.svelte +85 -0
- package/src/lib/ratings/Review.svelte +78 -0
- package/src/lib/ratings/ScoreRating.svelte +76 -0
- package/src/lib/ratings/Star.svelte +47 -0
- package/src/lib/ratings/Thumbup.svelte +39 -0
- package/src/lib/sidebars/Sidebar.svelte +40 -0
- package/src/lib/sidebars/SidebarBrand.svelte +24 -0
- package/src/lib/sidebars/SidebarCta.svelte +28 -0
- package/src/lib/sidebars/SidebarDropdownItem.svelte +26 -0
- package/src/lib/sidebars/SidebarDropdownWrapper.svelte +71 -0
- package/src/lib/sidebars/SidebarGroup.svelte +24 -0
- package/src/lib/sidebars/SidebarItem.svelte +49 -0
- package/src/lib/sidebars/SidebarWrapper.svelte +16 -0
- package/src/lib/skeleton/CardPlaceholder.svelte +48 -0
- package/src/lib/skeleton/ImagePlaceholder.svelte +31 -0
- package/src/lib/skeleton/ListPlaceholder.svelte +50 -0
- package/src/lib/skeleton/Skeleton.svelte +38 -0
- package/src/lib/skeleton/TestimonialPlaceholder.svelte +24 -0
- package/src/lib/skeleton/TextPlaceholder.svelte +60 -0
- package/src/lib/skeleton/VideoPlaceholder.svelte +33 -0
- package/src/lib/skeleton/WidgetPlaceholder.svelte +26 -0
- package/src/lib/speed-dial/SpeedDial.svelte +80 -0
- package/src/lib/speed-dial/SpeedDialButton.svelte +49 -0
- package/src/lib/spinners/Spinner.svelte +49 -0
- package/src/lib/steps/StepIndicator.svelte +75 -0
- package/src/lib/tables/Table.svelte +49 -0
- package/src/lib/tables/TableBody.svelte +14 -0
- package/src/lib/tables/TableBodyCell.svelte +22 -0
- package/src/lib/tables/TableBodyRow.svelte +50 -0
- package/src/lib/tables/TableHead.svelte +45 -0
- package/src/lib/tables/TableHeadCell.svelte +15 -0
- package/src/lib/tables/TableSearch.svelte +73 -0
- package/src/lib/tabs/TabItem.svelte +61 -0
- package/src/lib/tabs/Tabs.svelte +78 -0
- package/src/lib/timeline/Activity.svelte +16 -0
- package/src/lib/timeline/ActivityItem.svelte +59 -0
- package/src/lib/timeline/Group.svelte +27 -0
- package/src/lib/timeline/GroupItem.svelte +59 -0
- package/src/lib/timeline/Timeline.svelte +25 -0
- package/src/lib/timeline/TimelineHorizontal.svelte +17 -0
- package/src/lib/timeline/TimelineItem.svelte +116 -0
- package/src/lib/timeline/TimelineItemHorizontal.svelte +72 -0
- package/src/lib/timeline/TimelineItemVertical.svelte +44 -0
- package/src/lib/toasts/Toast.svelte +99 -0
- package/src/lib/toolbar/Toolbar.svelte +52 -0
- package/src/lib/toolbar/ToolbarButton.svelte +67 -0
- package/src/lib/toolbar/ToolbarGroup.svelte +20 -0
- package/src/lib/tooltips/Tooltip.svelte +42 -0
- package/src/lib/types.ts +163 -0
- package/src/lib/typography/A.svelte +20 -0
- package/src/lib/typography/Blockquote.svelte +51 -0
- package/src/lib/typography/DescriptionList.svelte +22 -0
- package/src/lib/typography/Heading.svelte +28 -0
- package/src/lib/typography/Hr.svelte +37 -0
- package/src/lib/typography/Img.svelte +39 -0
- package/src/lib/typography/Layout.svelte +21 -0
- package/src/lib/typography/Li.svelte +19 -0
- package/src/lib/typography/List.svelte +33 -0
- package/src/lib/typography/Mark.svelte +20 -0
- package/src/lib/typography/P.svelte +102 -0
- package/src/lib/typography/Secondary.svelte +18 -0
- package/src/lib/typography/Span.svelte +35 -0
- package/src/lib/utils/CloseButton.svelte +19 -0
- package/src/lib/utils/Frame.svelte +142 -0
- package/src/lib/utils/Popper.svelte +206 -0
- package/src/lib/utils/Wrapper.svelte +22 -0
- package/src/lib/utils/backdrop.ts +101 -0
- package/src/lib/utils/clickOutside.ts +16 -0
- package/src/lib/utils/createEventDispatcher.ts +24 -0
- package/src/lib/utils/focusTrap.js +42 -0
- package/src/lib/utils/generateId.js +5 -0
- package/src/lib/video/Video.svelte +29 -0
- package/src/routes/+error.svelte +5 -0
- package/src/routes/+layout.svelte +98 -0
- package/src/routes/+page.server.ts +18 -0
- package/src/routes/+page.svelte +55 -0
- package/src/routes/api/posts/+server.js +7 -0
- package/src/routes/component-data/A.json +10 -0
- package/src/routes/component-data/Accordion.json +12 -0
- package/src/routes/component-data/AccordionItem.json +23 -0
- package/src/routes/component-data/Activity.json +1 -0
- package/src/routes/component-data/ActivityItem.json +16 -0
- package/src/routes/component-data/AdvancedRating.json +13 -0
- package/src/routes/component-data/Alert.json +9 -0
- package/src/routes/component-data/Android.json +12 -0
- package/src/routes/component-data/ArrowKeyDown.json +1 -0
- package/src/routes/component-data/ArrowKeyLeft.json +1 -0
- package/src/routes/component-data/ArrowKeyRight.json +1 -0
- package/src/routes/component-data/ArrowKeyUp.json +1 -0
- package/src/routes/component-data/Avatar.json +15 -0
- package/src/routes/component-data/Badge.json +10 -0
- package/src/routes/component-data/Banner.json +12 -0
- package/src/routes/component-data/Blockquote.json +15 -0
- package/src/routes/component-data/BottomNav.json +13 -0
- package/src/routes/component-data/BottomNavHeader.json +9 -0
- package/src/routes/component-data/BottomNavHeaderItem.json +11 -0
- package/src/routes/component-data/BottomNavItem.json +12 -0
- package/src/routes/component-data/Breadcrumb.json +11 -0
- package/src/routes/component-data/BreadcrumbItem.json +12 -0
- package/src/routes/component-data/Button.json +14 -0
- package/src/routes/component-data/ButtonGroup.json +9 -0
- package/src/routes/component-data/Calender.json +1 -0
- package/src/routes/component-data/Card.json +13 -0
- package/src/routes/component-data/CardPlaceholder.json +9 -0
- package/src/routes/component-data/Carousel.json +11 -0
- package/src/routes/component-data/Chart.json +1 -0
- package/src/routes/component-data/Checkbox.json +14 -0
- package/src/routes/component-data/CloseButton.json +1 -0
- package/src/routes/component-data/ControlButton.json +9 -0
- package/src/routes/component-data/Controls.json +1 -0
- package/src/routes/component-data/DarkMode.json +9 -0
- package/src/routes/component-data/Datepicker.json +14 -0
- package/src/routes/component-data/DefaultMockup.json +11 -0
- package/src/routes/component-data/DescriptionList.json +10 -0
- package/src/routes/component-data/DeviceMockup.json +50 -0
- package/src/routes/component-data/Drawer.json +23 -0
- package/src/routes/component-data/Dropdown.json +13 -0
- package/src/routes/component-data/DropdownDivider.json +1 -0
- package/src/routes/component-data/DropdownHeader.json +9 -0
- package/src/routes/component-data/DropdownItem.json +10 -0
- package/src/routes/component-data/Dropzone.json +10 -0
- package/src/routes/component-data/Fileupload.json +10 -0
- package/src/routes/component-data/FloatingLabelInput.json +14 -0
- package/src/routes/component-data/Footer.json +1 -0
- package/src/routes/component-data/FooterBrand.json +15 -0
- package/src/routes/component-data/FooterCopyright.json +14 -0
- package/src/routes/component-data/FooterIcon.json +11 -0
- package/src/routes/component-data/FooterLink.json +11 -0
- package/src/routes/component-data/FooterLinkGroup.json +1 -0
- package/src/routes/component-data/Frame.json +18 -0
- package/src/routes/component-data/Gallery.json +9 -0
- package/src/routes/component-data/GradientButton.json +9 -0
- package/src/routes/component-data/Group.json +11 -0
- package/src/routes/component-data/GroupItem.json +13 -0
- package/src/routes/component-data/Heading.json +10 -0
- package/src/routes/component-data/Heart.json +14 -0
- package/src/routes/component-data/Helper.json +9 -0
- package/src/routes/component-data/Hr.json +13 -0
- package/src/routes/component-data/ImagePlaceholder.json +9 -0
- package/src/routes/component-data/Img.json +17 -0
- package/src/routes/component-data/Indicator.json +13 -0
- package/src/routes/component-data/Indicators.json +9 -0
- package/src/routes/component-data/Input.json +13 -0
- package/src/routes/component-data/InputAddon.json +1 -0
- package/src/routes/component-data/Ios.json +11 -0
- package/src/routes/component-data/Kbd.json +1 -0
- package/src/routes/component-data/Label.json +10 -0
- package/src/routes/component-data/Layout.json +10 -0
- package/src/routes/component-data/Li.json +9 -0
- package/src/routes/component-data/List.json +10 -0
- package/src/routes/component-data/ListPlaceholder.json +1 -0
- package/src/routes/component-data/Listgroup.json +10 -0
- package/src/routes/component-data/ListgroupItem.json +17 -0
- package/src/routes/component-data/Mark.json +10 -0
- package/src/routes/component-data/MegaMenu.json +11 -0
- package/src/routes/component-data/Menu.json +11 -0
- package/src/routes/component-data/Modal.json +17 -0
- package/src/routes/component-data/MultiSelect.json +11 -0
- package/src/routes/component-data/NavBrand.json +1 -0
- package/src/routes/component-data/NavHamburger.json +9 -0
- package/src/routes/component-data/NavLi.json +10 -0
- package/src/routes/component-data/NavSidebarHamburger.json +9 -0
- package/src/routes/component-data/NavUl.json +14 -0
- package/src/routes/component-data/Navbar.json +10 -0
- package/src/routes/component-data/NumberInput.json +1 -0
- package/src/routes/component-data/P.json +19 -0
- package/src/routes/component-data/Pagination.json +13 -0
- package/src/routes/component-data/PaginationItem.json +12 -0
- package/src/routes/component-data/Placeholder.json +1 -0
- package/src/routes/component-data/Popover.json +9 -0
- package/src/routes/component-data/Popper.json +17 -0
- package/src/routes/component-data/Progressbar.json +14 -0
- package/src/routes/component-data/Radio.json +13 -0
- package/src/routes/component-data/RadioInline.json +1 -0
- package/src/routes/component-data/Range.json +9 -0
- package/src/routes/component-data/Rating.json +14 -0
- package/src/routes/component-data/RatingComment.json +10 -0
- package/src/routes/component-data/Review.json +13 -0
- package/src/routes/component-data/ScoreRating.json +13 -0
- package/src/routes/component-data/Search.json +10 -0
- package/src/routes/component-data/Secondary.json +9 -0
- package/src/routes/component-data/Select.json +14 -0
- package/src/routes/component-data/Sidebar.json +11 -0
- package/src/routes/component-data/SidebarBrand.json +11 -0
- package/src/routes/component-data/SidebarCta.json +11 -0
- package/src/routes/component-data/SidebarDropdownItem.json +12 -0
- package/src/routes/component-data/SidebarDropdownWrapper.json +14 -0
- package/src/routes/component-data/SidebarGroup.json +10 -0
- package/src/routes/component-data/SidebarItem.json +12 -0
- package/src/routes/component-data/SidebarMenu.json +11 -0
- package/src/routes/component-data/SidebarWrapper.json +1 -0
- package/src/routes/component-data/Skeleton.json +9 -0
- package/src/routes/component-data/Smartwatch.json +9 -0
- package/src/routes/component-data/Span.json +16 -0
- package/src/routes/component-data/SpeedDial.json +18 -0
- package/src/routes/component-data/SpeedDialButton.json +14 -0
- package/src/routes/component-data/Spinner.json +13 -0
- package/src/routes/component-data/Star.json +14 -0
- package/src/routes/component-data/StepIndicator.json +15 -0
- package/src/routes/component-data/TabItem.json +12 -0
- package/src/routes/component-data/Table.json +14 -0
- package/src/routes/component-data/TableBody.json +1 -0
- package/src/routes/component-data/TableBodyCell.json +1 -0
- package/src/routes/component-data/TableBodyRow.json +1 -0
- package/src/routes/component-data/TableHead.json +9 -0
- package/src/routes/component-data/TableHeadCell.json +1 -0
- package/src/routes/component-data/TableSearch.json +19 -0
- package/src/routes/component-data/Tablet.json +11 -0
- package/src/routes/component-data/Tabs.json +13 -0
- package/src/routes/component-data/TestimonialPlaceholder.json +1 -0
- package/src/routes/component-data/TextPlaceholder.json +9 -0
- package/src/routes/component-data/Textarea.json +11 -0
- package/src/routes/component-data/Thumbnail.json +10 -0
- package/src/routes/component-data/Thumbnails.json +9 -0
- package/src/routes/component-data/Thumbup.json +14 -0
- package/src/routes/component-data/Timeline.json +1 -0
- package/src/routes/component-data/TimelineHorizontal.json +1 -0
- package/src/routes/component-data/TimelineItem.json +10 -0
- package/src/routes/component-data/TimelineItemHorizontal.json +19 -0
- package/src/routes/component-data/TimelineItemVertical.json +13 -0
- package/src/routes/component-data/Toast.json +15 -0
- package/src/routes/component-data/Toggle.json +12 -0
- package/src/routes/component-data/Toolbar.json +9 -0
- package/src/routes/component-data/ToolbarButton.json +12 -0
- package/src/routes/component-data/ToolbarGroup.json +1 -0
- package/src/routes/component-data/Tooltip.json +9 -0
- package/src/routes/component-data/Video.json +12 -0
- package/src/routes/component-data/VideoPlaceholder.json +9 -0
- package/src/routes/component-data/VoiceSearch.json +16 -0
- package/src/routes/component-data/WidgetPlaceholder.json +1 -0
- package/src/routes/component-data/Wrapper.json +10 -0
- package/src/routes/component-data/backdrop.json +9 -0
- package/src/routes/component-data/clickOutside.json +1 -0
- package/src/routes/component-data/createEventDispatcher.json +1 -0
- package/src/routes/component-data/focusTrap.json +1 -0
- package/src/routes/component-data/generateId.json +1 -0
- package/src/routes/component-data/index.json +1 -0
- package/src/routes/component-data/types.json +1 -0
- package/src/routes/docs/+layout.js +10 -0
- package/src/routes/docs/+layout.svelte +74 -0
- package/src/routes/docs/components/[slug]/+page.js +13 -0
- package/src/routes/docs/components/[slug]/+page.svelte +6 -0
- package/src/routes/docs/components/accordion.md +315 -0
- package/src/routes/docs/components/alert.md +342 -0
- package/src/routes/docs/components/avatar.md +215 -0
- package/src/routes/docs/components/badge.md +269 -0
- package/src/routes/docs/components/banner.md +166 -0
- package/src/routes/docs/components/bottom-navigation.md +397 -0
- package/src/routes/docs/components/breadcrumb.md +112 -0
- package/src/routes/docs/components/button-group.md +198 -0
- package/src/routes/docs/components/button.md +314 -0
- package/src/routes/docs/components/card.md +423 -0
- package/src/routes/docs/components/carousel.md +242 -0
- package/src/routes/docs/components/darkmode.md +111 -0
- package/src/routes/docs/components/device-mockups.md +212 -0
- package/src/routes/docs/components/drawer.md +638 -0
- package/src/routes/docs/components/dropdown.md +748 -0
- package/src/routes/docs/components/footer.md +268 -0
- package/src/routes/docs/components/forms.md +254 -0
- package/src/routes/docs/components/gallery.md +230 -0
- package/src/routes/docs/components/imageData/+server.js +43 -0
- package/src/routes/docs/components/indicators.md +273 -0
- package/src/routes/docs/components/kbd.md +248 -0
- package/src/routes/docs/components/list-group.md +157 -0
- package/src/routes/docs/components/mega-menu.md +298 -0
- package/src/routes/docs/components/modal.md +413 -0
- package/src/routes/docs/components/navbar.md +342 -0
- package/src/routes/docs/components/pagination.md +350 -0
- package/src/routes/docs/components/popover.md +388 -0
- package/src/routes/docs/components/progress.md +170 -0
- package/src/routes/docs/components/rating.md +326 -0
- package/src/routes/docs/components/sidebar.md +568 -0
- package/src/routes/docs/components/skeleton.md +165 -0
- package/src/routes/docs/components/speed-dial.md +523 -0
- package/src/routes/docs/components/spinner.md +117 -0
- package/src/routes/docs/components/tab.md +341 -0
- package/src/routes/docs/components/table.md +871 -0
- package/src/routes/docs/components/timeline.md +267 -0
- package/src/routes/docs/components/toast.md +362 -0
- package/src/routes/docs/components/tooltip.md +156 -0
- package/src/routes/docs/components/typography.md +158 -0
- package/src/routes/docs/components/video.md +125 -0
- package/src/routes/docs/examples/[slug]/+page.js +13 -0
- package/src/routes/docs/examples/[slug]/+page.svelte +6 -0
- package/src/routes/docs/examples/sidebar-layout.md +20 -0
- package/src/routes/docs/examples/snapshot.md +59 -0
- package/src/routes/docs/examples/testsnap.svelte +49 -0
- package/src/routes/docs/experimental/[slug]/+page.js +13 -0
- package/src/routes/docs/experimental/[slug]/+page.svelte +6 -0
- package/src/routes/docs/experimental/datepicker.md +131 -0
- package/src/routes/docs/extend/CheckCircle.svelte +3 -0
- package/src/routes/docs/extend/[slug]/+page.js +13 -0
- package/src/routes/docs/extend/[slug]/+page.svelte +6 -0
- package/src/routes/docs/extend/flowbite-svelte-blocks.md +28 -0
- package/src/routes/docs/extend/flowbite-svelte-starter.md +34 -0
- package/src/routes/docs/extend/icons.md +204 -0
- package/src/routes/docs/extend/step-indicator.md +162 -0
- package/src/routes/docs/forms/[slug]/+page.js +13 -0
- package/src/routes/docs/forms/[slug]/+page.svelte +6 -0
- package/src/routes/docs/forms/checkbox.md +329 -0
- package/src/routes/docs/forms/file-input.md +171 -0
- package/src/routes/docs/forms/floating-label.md +176 -0
- package/src/routes/docs/forms/input-field.md +398 -0
- package/src/routes/docs/forms/radio.md +303 -0
- package/src/routes/docs/forms/range.md +110 -0
- package/src/routes/docs/forms/search-input.md +133 -0
- package/src/routes/docs/forms/select.md +280 -0
- package/src/routes/docs/forms/textarea.md +142 -0
- package/src/routes/docs/forms/toggle.md +86 -0
- package/src/routes/docs/pages/[slug]/+page.js +13 -0
- package/src/routes/docs/pages/[slug]/+page.svelte +6 -0
- package/src/routes/docs/pages/colors.md +152 -0
- package/src/routes/docs/pages/compiler-speed.md +116 -0
- package/src/routes/docs/pages/customization.md +103 -0
- package/src/routes/docs/pages/how-to-contribute.md +138 -0
- package/src/routes/docs/pages/ide-support.md +19 -0
- package/src/routes/docs/pages/introduction.md +131 -0
- package/src/routes/docs/pages/license.md +22 -0
- package/src/routes/docs/pages/quickstart.md +128 -0
- package/src/routes/docs/pages/typescript.md +25 -0
- package/src/routes/docs/plugins/[slug]/+page.js +13 -0
- package/src/routes/docs/plugins/[slug]/+page.svelte +6 -0
- package/src/routes/docs/plugins/charts.md +990 -0
- package/src/routes/docs/typography/[slug]/+page.js +13 -0
- package/src/routes/docs/typography/[slug]/+page.svelte +6 -0
- package/src/routes/docs/typography/blockquote.md +214 -0
- package/src/routes/docs/typography/heading.md +270 -0
- package/src/routes/docs/typography/hr.md +115 -0
- package/src/routes/docs/typography/image.md +244 -0
- package/src/routes/docs/typography/link.md +147 -0
- package/src/routes/docs/typography/list.md +358 -0
- package/src/routes/docs/typography/paragraph.md +265 -0
- package/src/routes/docs/typography/text.md +340 -0
- package/src/routes/docs/utilities/[slug]/+page.js +13 -0
- package/src/routes/docs/utilities/[slug]/+page.svelte +6 -0
- package/src/routes/docs/utilities/close-button.md +42 -0
- package/src/routes/docs/utilities/label.md +41 -0
- package/src/routes/docs/utilities/toolbar.md +157 -0
- package/src/routes/landing/CTA.svelte +98 -0
- package/src/routes/landing/Components.svelte +42 -0
- package/src/routes/landing/Contributors.svelte +55 -0
- package/src/routes/landing/DesignFigma.svelte +39 -0
- package/src/routes/landing/Featured.svelte +33 -0
- package/src/routes/landing/GetStarted.svelte +23 -0
- package/src/routes/landing/Hero.svelte +38 -0
- package/src/routes/landing/SocialProof.svelte +80 -0
- package/src/routes/landing/utils/A.svelte +5 -0
- package/src/routes/landing/utils/H2.svelte +1 -0
- package/src/routes/landing/utils/Row.svelte +16 -0
- package/src/routes/landing/utils/Section.svelte +9 -0
- package/src/routes/layouts/component/+page.svelte +44 -0
- package/src/routes/layouts/component/Anchor.svelte +29 -0
- package/src/routes/layouts/component/code.svelte +1 -0
- package/src/routes/layouts/component/h1.svelte +0 -0
- package/src/routes/layouts/component/h2.svelte +5 -0
- package/src/routes/layouts/component/h3.svelte +5 -0
- package/src/routes/layouts/testLayout/+page.svelte +5 -0
- package/src/routes/utils/AlgoliaSearch.svelte +22 -0
- package/src/routes/utils/CompoAttributesViewer.svelte +78 -0
- package/src/routes/utils/CompoCard.svelte +36 -0
- package/src/routes/utils/CompoDescription.svelte +7 -0
- package/src/routes/utils/CopyCliboardInput.svelte +45 -0
- package/src/routes/utils/DocBadge.svelte +7 -0
- package/src/routes/utils/DocBadgeList.svelte +10 -0
- package/src/routes/utils/ExampleDarkMode.svelte +16 -0
- package/src/routes/utils/ExampleWrapper.svelte +143 -0
- package/src/routes/utils/Footer.svelte +64 -0
- package/src/routes/utils/GitHubSource.svelte +13 -0
- package/src/routes/utils/GitHubSourceList.svelte +21 -0
- package/src/routes/utils/MetaTag.svelte +42 -0
- package/src/routes/utils/Newsletter.svelte +52 -0
- package/src/routes/utils/PageHeadSection.svelte +20 -0
- package/src/routes/utils/Paging.svelte +60 -0
- package/src/routes/utils/TableDefaultRow.svelte +81 -0
- package/src/routes/utils/TableProp.svelte +41 -0
- package/src/routes/utils/Toc.svelte +55 -0
- package/src/routes/utils/ToolbarLink.svelte +12 -0
- package/src/routes/utils/data.json +48 -0
- package/src/routes/utils/icons/Angular.svelte +3 -0
- package/src/routes/utils/icons/ArrowLeft.svelte +3 -0
- package/src/routes/utils/icons/ArrowRight.svelte +3 -0
- package/src/routes/utils/icons/Check.svelte +3 -0
- package/src/routes/utils/icons/China.svelte +9 -0
- package/src/routes/utils/icons/Clipboard.svelte +3 -0
- package/src/routes/utils/icons/CoinbaseWallet.svelte +4 -0
- package/src/routes/utils/icons/Combinator.svelte +35 -0
- package/src/routes/utils/icons/Community.svelte +5 -0
- package/src/routes/utils/icons/Dev.svelte +9 -0
- package/src/routes/utils/icons/Discord.svelte +5 -0
- package/src/routes/utils/icons/Dribble.svelte +3 -0
- package/src/routes/utils/icons/Figma.svelte +14 -0
- package/src/routes/utils/icons/FlowbiteLogo.svelte +49 -0
- package/src/routes/utils/icons/Fortmatic.svelte +4 -0
- package/src/routes/utils/icons/Germany.svelte +5 -0
- package/src/routes/utils/icons/GitHub.svelte +13 -0
- package/src/routes/utils/icons/Hunt.svelte +17 -0
- package/src/routes/utils/icons/Italy.svelte +7 -0
- package/src/routes/utils/icons/Mail.svelte +4 -0
- package/src/routes/utils/icons/MetaMask.svelte +31 -0
- package/src/routes/utils/icons/Moon.svelte +3 -0
- package/src/routes/utils/icons/Npm.svelte +3 -0
- package/src/routes/utils/icons/OperaWallet.svelte +17 -0
- package/src/routes/utils/icons/Quote.svelte +3 -0
- package/src/routes/utils/icons/React.svelte +4 -0
- package/src/routes/utils/icons/Reddit.svelte +23 -0
- package/src/routes/utils/icons/Sun.svelte +7 -0
- package/src/routes/utils/icons/Usa.svelte +31 -0
- package/src/routes/utils/icons/Vue.svelte +3 -0
- package/src/routes/utils/icons/WalletConnect.svelte +18 -0
- package/src/routes/utils/icons/YouTube.svelte +3 -0
- package/src/routes/utils/icons/YouTubeFull.svelte +17 -0
- package/src/routes/utils/index.ts +146 -0
- package/src/routes/utils/mdsvex.d.ts +8 -0
- package/static/images/alert-prop.png +0 -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/code-example-dark.png +0 -0
- package/static/images/code-example.png +0 -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/alert-dark.svg +11 -0
- package/static/images/components/alert.svg +11 -0
- package/static/images/components/avatar-dark.svg +117 -0
- package/static/images/components/avatar.svg +117 -0
- package/static/images/components/badge-dark.svg +5 -0
- package/static/images/components/badge.svg +5 -0
- package/static/images/components/banner-dark.svg +34 -0
- package/static/images/components/banner.svg +33 -0
- package/static/images/components/bottom-navigation-dark.svg +44 -0
- package/static/images/components/bottom-navigation.svg +43 -0
- package/static/images/components/breadcrumb-dark.svg +7 -0
- package/static/images/components/breadcrumb.svg +7 -0
- package/static/images/components/button-dark.svg +10 -0
- package/static/images/components/button-group-dark.svg +10 -0
- package/static/images/components/button-group.svg +10 -0
- package/static/images/components/button.svg +10 -0
- package/static/images/components/card-dark.svg +31 -0
- package/static/images/components/card.svg +32 -0
- package/static/images/components/carousel-dark.svg +13 -0
- package/static/images/components/carousel.svg +13 -0
- package/static/images/components/charts-dark.svg +29 -0
- package/static/images/components/charts.svg +29 -0
- package/static/images/components/darkmode-dark.svg +7 -0
- package/static/images/components/darkmode.svg +3 -0
- package/static/images/components/device-mockups-dark.svg +17 -0
- package/static/images/components/device-mockups.svg +17 -0
- package/static/images/components/drawer-dark.svg +32 -0
- package/static/images/components/drawer.svg +32 -0
- package/static/images/components/dropdown-dark.svg +35 -0
- package/static/images/components/dropdown.svg +35 -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/gallery-dark.svg +14 -0
- package/static/images/components/gallery.svg +14 -0
- package/static/images/components/indicators-dark.svg +38 -0
- package/static/images/components/indicators.svg +38 -0
- package/static/images/components/jumbotron-dark.svg +13 -0
- package/static/images/components/jumbotron.svg +13 -0
- package/static/images/components/kbd-dark.svg +460 -0
- package/static/images/components/kbd.svg +462 -0
- package/static/images/components/list-group-dark.svg +58 -0
- package/static/images/components/list-group.svg +58 -0
- package/static/images/components/mega-menu-dark.svg +71 -0
- package/static/images/components/mega-menu.svg +71 -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/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/rating-dark.svg +29 -0
- package/static/images/components/rating.svg +29 -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 +10 -0
- package/static/images/components/skeleton.svg +10 -0
- package/static/images/components/speed-dial-dark.svg +69 -0
- package/static/images/components/speed-dial.svg +69 -0
- package/static/images/components/spinner-dark.svg +6 -0
- package/static/images/components/spinner.svg +6 -0
- package/static/images/components/stepper-dark.svg +11 -0
- package/static/images/components/stepper.svg +10 -0
- package/static/images/components/tab-dark.svg +10 -0
- package/static/images/components/tab.svg +10 -0
- package/static/images/components/table-dark.svg +47 -0
- package/static/images/components/table.svg +47 -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/tooltip-dark.svg +7 -0
- package/static/images/components/tooltip.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/eugene.jpg +0 -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/experimental/datepicker-dark.svg +67 -0
- package/static/images/experimental/datepicker.svg +67 -0
- package/static/images/favicon.png +0 -0
- package/static/images/favicon.svg +49 -0
- package/static/images/figma-dark.png +0 -0
- package/static/images/figma.png +0 -0
- package/static/images/flowbite-svelte-blocks-optimized.png +0 -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/forms/checkbox-dark.svg +14 -0
- package/static/images/forms/checkbox.svg +14 -0
- package/static/images/forms/file-input-dark.svg +59 -0
- package/static/images/forms/file-input.svg +46 -0
- package/static/images/forms/floating-label-dark.svg +11 -0
- package/static/images/forms/floating-label.svg +11 -0
- package/static/images/forms/input-field-dark.svg +65 -0
- package/static/images/forms/input-field.svg +66 -0
- package/static/images/forms/radio-dark.svg +14 -0
- package/static/images/forms/radio.svg +12 -0
- package/static/images/forms/range-dark.svg +38 -0
- package/static/images/forms/range.svg +38 -0
- package/static/images/forms/search-input-dark.svg +82 -0
- package/static/images/forms/search-input.svg +82 -0
- package/static/images/forms/select-dark.svg +64 -0
- package/static/images/forms/select.svg +64 -0
- package/static/images/forms/textarea-dark.svg +16 -0
- package/static/images/forms/textarea.svg +16 -0
- package/static/images/forms/toggle-dark.svg +12 -0
- package/static/images/forms/toggle.svg +12 -0
- package/static/images/gallery-dark.png +0 -0
- package/static/images/gallery.png +0 -0
- package/static/images/graphs-dark.png +0 -0
- package/static/images/graphs.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/images/sveltekit-sidebar-layout-optimized.png +0 -0
- package/static/images/tailwind-code-dark.png +0 -0
- package/static/images/tailwind-code.png +0 -0
- package/static/images/typography/blockquote-dark.svg +8 -0
- package/static/images/typography/blockquote.svg +8 -0
- package/static/images/typography/heading-dark.svg +5 -0
- package/static/images/typography/heading.svg +5 -0
- package/static/images/typography/hr-dark.svg +7 -0
- package/static/images/typography/hr.svg +7 -0
- package/static/images/typography/image-dark.svg +6 -0
- package/static/images/typography/image.svg +6 -0
- package/static/images/typography/link-dark.svg +4 -0
- package/static/images/typography/link.svg +4 -0
- package/static/images/typography/list-dark.svg +26 -0
- package/static/images/typography/list.svg +26 -0
- package/static/images/typography/paragraph-dark.svg +13 -0
- package/static/images/typography/paragraph.svg +13 -0
- package/static/images/typography/text-dark.svg +11 -0
- package/static/images/typography/text.svg +11 -0
- package/static/site.webmanifest +12 -0
- package/static/styles/docs.css +537 -0
- package/static/videos/compo-doc.gif +0 -0
- package/static/videos/flowbite.mp4 +0 -0
- package/svelte.config.js +28 -0
- package/tailwind.config.cjs +89 -0
- package/tests/components.spec.ts +199 -0
- package/tests/examples.spec.ts +11 -0
- package/tests/extend.spec.ts +19 -0
- package/tests/forms.spec.ts +62 -0
- package/tests/page.spec.ts +46 -0
- package/tests/plugins.spec.ts +7 -0
- package/tests/redirect.spec.ts +175 -0
- package/tests/typography.spec.ts +52 -0
- package/tests/utilities.spec.ts +22 -0
- package/tsconfig.json +21 -0
- package/vite.config.ts +22 -0
- package/vite.config.ts.timestamp-1692816833518-844de2c3e2008.mjs +22 -0
- package/dist/carousels/Caption.svelte +0 -17
- package/dist/carousels/Caption.svelte.d.ts +0 -26
- package/dist/carousels/Caption.svelte.d.ts.map +0 -1
- package/dist/carousels/CarouselTransition.svelte +0 -174
- package/dist/carousels/CarouselTransition.svelte.d.ts +0 -68
- package/dist/carousels/CarouselTransition.svelte.d.ts.map +0 -1
- package/dist/carousels/Indicator.svelte +0 -20
- package/dist/carousels/Indicator.svelte.d.ts +0 -28
- package/dist/carousels/Indicator.svelte.d.ts.map +0 -1
- package/dist/carousels/Slide.svelte +0 -23
- package/dist/carousels/Slide.svelte.d.ts +0 -30
- package/dist/carousels/Slide.svelte.d.ts.map +0 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,3858 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
### [0.44.9](https://github.com/themesberg/flowbite-svelte/compare/v0.44.8...v0.44.9) (2023-09-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* Adds exact prop to BottomNavItem ([#1036](https://github.com/themesberg/flowbite-svelte/issues/1036)) ([ceeaac2](https://github.com/themesberg/flowbite-svelte/commit/ceeaac2aee25a6f3bc7a8dc87fbfcec40595ded5))
|
|
11
|
+
* export types file ([42eb222](https://github.com/themesberg/flowbite-svelte/commit/42eb2229a3671c2d39e79db3fe8fa1c4f0d9b6c0))
|
|
12
|
+
* new API for Carousel ([#1032](https://github.com/themesberg/flowbite-svelte/issues/1032)) ([59da5ed](https://github.com/themesberg/flowbite-svelte/commit/59da5edbaea85bd1e570349768f2de9d14292166))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* TableSearch pl-10 posision ([a974201](https://github.com/themesberg/flowbite-svelte/commit/a974201e465ca8791ad554798644f87beaaa5a45))
|
|
18
|
+
|
|
19
|
+
### [0.44.8](https://github.com/themesberg/flowbite-svelte/compare/v0.44.7...v0.44.8) (2023-09-04)
|
|
20
|
+
|
|
21
|
+
### [0.44.7](https://github.com/themesberg/flowbite-svelte/compare/v0.44.6...v0.44.7) (2023-09-04)
|
|
22
|
+
|
|
23
|
+
### [0.44.6](https://github.com/themesberg/flowbite-svelte/compare/v0.44.5...v0.44.6) (2023-09-04)
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
- add classInput and classDvgDiv to Tablesearch ([98122e0](https://github.com/themesberg/flowbite-svelte/commit/98122e0045fa5309654e45e43723d04b28e7a3b6))
|
|
28
|
+
|
|
29
|
+
### [0.44.5](https://github.com/themesberg/flowbite-svelte/compare/v0.44.4...v0.44.5) (2023-09-03)
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
- add CompoAttributesViewer and replaced it for props, events, and slots ([#1010](https://github.com/themesberg/flowbite-svelte/issues/1010)) ([a2ba343](https://github.com/themesberg/flowbite-svelte/commit/a2ba343681acb91112a5bc53c606f73e70a8773b))
|
|
34
|
+
- add touch/mouse swipe gesture handling to Carousel component. ([35d0ba1](https://github.com/themesberg/flowbite-svelte/commit/35d0ba1956336e9d0a560b7c55fe9d859ec9fe77))
|
|
35
|
+
- update component data rendering ([#1015](https://github.com/themesberg/flowbite-svelte/issues/1015)) ([6b20551](https://github.com/themesberg/flowbite-svelte/commit/6b205510a83e78b3cd23fb04528138d5921d586b))
|
|
36
|
+
|
|
37
|
+
### Bug Fixes
|
|
38
|
+
|
|
39
|
+
- add $$resProps to Spinner ([#1000](https://github.com/themesberg/flowbite-svelte/issues/1000)) ([1dd97cd](https://github.com/themesberg/flowbite-svelte/commit/1dd97cd2ffc7ac5b78f43e7ea3d7bc7ee1c74fb3))
|
|
40
|
+
- ads position since it does not show unless you refres the browser ([#1019](https://github.com/themesberg/flowbite-svelte/issues/1019)) ([e140d32](https://github.com/themesberg/flowbite-svelte/commit/e140d324682d636d5d7eba6b1e4075397323a390))
|
|
41
|
+
- ads to markdown files ([#1020](https://github.com/themesberg/flowbite-svelte/issues/1020)) ([062dfaf](https://github.com/themesberg/flowbite-svelte/commit/062dfaf53fe42ab82a6f5f20a12ad28a957dd1ff))
|
|
42
|
+
- Carousel compo ([eeaef97](https://github.com/themesberg/flowbite-svelte/commit/eeaef977402f185c5c4d164ba1f6c51a63206572))
|
|
43
|
+
- move charts to plugins dir ([#1012](https://github.com/themesberg/flowbite-svelte/issues/1012)) ([4609497](https://github.com/themesberg/flowbite-svelte/commit/4609497334f15737151472bd951444c4064343cb))
|
|
44
|
+
- Multiselect interactivity and form bug fixes ([#982](https://github.com/themesberg/flowbite-svelte/issues/982)) ([a919c21](https://github.com/themesberg/flowbite-svelte/commit/a919c21378501b823a86279c798f882128c94ac4))
|
|
45
|
+
- Multiselect interactivity and form bug fixes ([#982](https://github.com/themesberg/flowbite-svelte/issues/982)) ([3872270](https://github.com/themesberg/flowbite-svelte/commit/3872270d2ef77d17b9a1cc85099bddb6094e980c))
|
|
46
|
+
- playwright-and-lint.yaml update test:integration ([#1005](https://github.com/themesberg/flowbite-svelte/issues/1005)) ([6695c24](https://github.com/themesberg/flowbite-svelte/commit/6695c24a4a07bed6f55ac196405fe02e67f4cb9c))
|
|
47
|
+
- Remove mistaken unused import of Timeline. Cleanup debug console.log() message. ([03e6455](https://github.com/themesberg/flowbite-svelte/commit/03e64550eab3451f6bd90a62338a7d553c36b9e0))
|
|
48
|
+
|
|
49
|
+
### [0.44.4](https://github.com/themesberg/flowbite-svelte/compare/v0.44.3...v0.44.4) (2023-08-21)
|
|
50
|
+
|
|
51
|
+
### Bug Fixes
|
|
52
|
+
|
|
53
|
+
- package.json scripts update ([5ac3acd](https://github.com/themesberg/flowbite-svelte/commit/5ac3acd1c37374a7ed0af6199c820cb652801f5d))
|
|
54
|
+
|
|
55
|
+
### [0.44.3](https://github.com/themesberg/flowbite-svelte/compare/v0.44.2...v0.44.3) (2023-08-21)
|
|
56
|
+
|
|
57
|
+
### Features
|
|
58
|
+
|
|
59
|
+
- remove script dir, install svelte-lib-helpers and update script… ([#1004](https://github.com/themesberg/flowbite-svelte/issues/1004)) ([bc8780d](https://github.com/themesberg/flowbite-svelte/commit/bc8780d0da6d4a21933ff8b143e815aff0a2e694))
|
|
60
|
+
|
|
61
|
+
### [0.44.2](https://github.com/themesberg/flowbite-svelte/compare/v0.44.1...v0.44.2) (2023-08-18)
|
|
62
|
+
|
|
63
|
+
### [0.44.1](https://github.com/themesberg/flowbite-svelte/compare/v0.43.3...v0.44.1) (2023-08-18)
|
|
64
|
+
|
|
65
|
+
### Features
|
|
66
|
+
|
|
67
|
+
- chart component ([#998](https://github.com/themesberg/flowbite-svelte/issues/998)) ([08e09e3](https://github.com/themesberg/flowbite-svelte/commit/08e09e338c56b00c843ed76fc6cc1167fcae2e11))
|
|
68
|
+
|
|
69
|
+
### Bug Fixes
|
|
70
|
+
|
|
71
|
+
- add primary to Toast interface $$Props ([#993](https://github.com/themesberg/flowbite-svelte/issues/993)) ([3c48faa](https://github.com/themesberg/flowbite-svelte/commit/3c48faa5798ec6a8e0e328f82c0e84df227855ba))
|
|
72
|
+
|
|
73
|
+
### [0.43.3](https://github.com/themesberg/flowbite-svelte/compare/v0.43.2...v0.43.3) (2023-08-17)
|
|
74
|
+
|
|
75
|
+
### Features
|
|
76
|
+
|
|
77
|
+
- bottomnav components update ([#989](https://github.com/themesberg/flowbite-svelte/issues/989)) ([c7d898f](https://github.com/themesberg/flowbite-svelte/commit/c7d898f553b0e59dbc92c78cb712dc5244310b05))
|
|
78
|
+
|
|
79
|
+
### [0.43.2](https://github.com/themesberg/flowbite-svelte/compare/v0.43.1...v0.43.2) (2023-08-14)
|
|
80
|
+
|
|
81
|
+
### Bug Fixes
|
|
82
|
+
|
|
83
|
+
- [#977](https://github.com/themesberg/flowbite-svelte/issues/977) ([#979](https://github.com/themesberg/flowbite-svelte/issues/979)) ([a84f4e7](https://github.com/themesberg/flowbite-svelte/commit/a84f4e77d25245fbf00d6d66e58997480065b4d1))
|
|
84
|
+
|
|
85
|
+
### [0.43.1](https://github.com/themesberg/flowbite-svelte/compare/v0.41.2...v0.43.1) (2023-08-09)
|
|
86
|
+
|
|
87
|
+
### Features
|
|
88
|
+
|
|
89
|
+
- update carousel components ([f809b63](https://github.com/themesberg/flowbite-svelte/commit/f809b63400143255ca56e77d6ff0806c797cbc50))
|
|
90
|
+
|
|
91
|
+
### Bug Fixes
|
|
92
|
+
|
|
93
|
+
- Clicking on dropzone component triggers onsubmit event on parent form [#906](https://github.com/themesberg/flowbite-svelte/issues/906) ([6a2a26d](https://github.com/themesberg/flowbite-svelte/commit/6a2a26da2e9b8f1b9511799184b907a2e3918487))
|
|
94
|
+
|
|
95
|
+
## 0.42.0 (2023-08-07)
|
|
96
|
+
|
|
97
|
+
### ⚠ BREAKING CHANGES
|
|
98
|
+
|
|
99
|
+
- change the Tabs component props
|
|
100
|
+
|
|
101
|
+
- Revert "feat: change tabs variant to styles"
|
|
102
|
+
|
|
103
|
+
This reverts commit c949b82f02f8adad2a2d172e602ce5774ae3bca6.
|
|
104
|
+
|
|
105
|
+
- update sveltekit 1.0.1
|
|
106
|
+
- Tooltip changed in accordance to new Popper implementation.
|
|
107
|
+
|
|
108
|
+
* Tooltip examples corrected
|
|
109
|
+
* Avatar example corrected
|
|
110
|
+
|
|
111
|
+
- change node version to 0.16.16 since new playwright and sveltekit require it, https://github.com/sveltejs/kit/issues/5842
|
|
112
|
+
- add datepicker
|
|
113
|
+
- update dependencies and vite. script dev, build preview and test work
|
|
114
|
+
- Footer component updated
|
|
115
|
+
- Button component API update
|
|
116
|
+
- new Table components
|
|
117
|
+
- Dropdown has a new structure
|
|
118
|
+
- read the doc how to use them
|
|
119
|
+
- change from type to btnType
|
|
120
|
+
- Navbar, PillTab uses href for link.
|
|
121
|
+
|
|
122
|
+
### Features
|
|
123
|
+
|
|
124
|
+
- [#966](https://github.com/themesberg/flowbite-svelte/issues/966) ([#968](https://github.com/themesberg/flowbite-svelte/issues/968)) ([2b4503a](https://github.com/themesberg/flowbite-svelte/commit/2b4503a148f74b3982e3c4f65c2b19d11c13fbfc))
|
|
125
|
+
- add {...39090restProps} to ButtonGroup ([9744917](https://github.com/themesberg/flowbite-svelte/commit/9744917f9a036771e1ec285f43de56502e776a3d))
|
|
126
|
+
- add {...39090restProps} to ButtonGroupItem ([6af6066](https://github.com/themesberg/flowbite-svelte/commit/6af6066928200750036b5f19e2711383f02ccfa3))
|
|
127
|
+
- add || ^4.0.0 to peerDependencies ([1211eb8](https://github.com/themesberg/flowbite-svelte/commit/1211eb83cc7f54570363300f744c16bd41962460))
|
|
128
|
+
- add $$slots.arrowdown and arrowup for user icons ([3fa53de](https://github.com/themesberg/flowbite-svelte/commit/3fa53de11239fe93e2ae9e28e5bdf3ee3ccc1f69))
|
|
129
|
+
- add 66464props.class and 66464restProps to all Badge components ([e466faf](https://github.com/themesberg/flowbite-svelte/commit/e466faf85b3cdba5f125866ee71b1308ce223d4b))
|
|
130
|
+
- add AccordionFlush component ([e2d297d](https://github.com/themesberg/flowbite-svelte/commit/e2d297def8272347a68fe39e3296d07d1bd2b436))
|
|
131
|
+
- add active class to BottomNav and BottomNavItem ([0d5d9e3](https://github.com/themesberg/flowbite-svelte/commit/0d5d9e3ff42d312105f5209ec4d91771bb8e40d7))
|
|
132
|
+
- add active color to InteractiveTabs and InteractiveTabHead component ([7995e21](https://github.com/themesberg/flowbite-svelte/commit/7995e210f98325350b055a43199fa4d7750ea225))
|
|
133
|
+
- add active to SidebarItem component and an example in the page ([af80c2b](https://github.com/themesberg/flowbite-svelte/commit/af80c2b7c1d81e711bba0faca959e6501b31257c))
|
|
134
|
+
- add additional classes where components has more than one twMerge ([77769cc](https://github.com/themesberg/flowbite-svelte/commit/77769cc2dc67ffc61997c62e8f1107f4d2bc1bab))
|
|
135
|
+
- add alerts/animation ([d103ad1](https://github.com/themesberg/flowbite-svelte/commit/d103ad1faa1671a9ec8ba8daf8b7a97c390fcd46))
|
|
136
|
+
- add always open, color, flush, and arrow style to Accordion component ([e435bb6](https://github.com/themesberg/flowbite-svelte/commit/e435bb6cb29cbc778409379484a996a9d8fad76b))
|
|
137
|
+
- add avatar component ([de31744](https://github.com/themesberg/flowbite-svelte/commit/de31744b366d0dc1fd5f4f23e1d165245d6d0ca8))
|
|
138
|
+
- add avatar page ([862cdce](https://github.com/themesberg/flowbite-svelte/commit/862cdce1bc3ef323d9195cc22f7f6310cdb5f1dd))
|
|
139
|
+
- add Badge with icon only to badge-icon page ([1e1e64b](https://github.com/themesberg/flowbite-svelte/commit/1e1e64baba808ae47af66e70c5ad9bfbc2123d0f))
|
|
140
|
+
- add bgColor and bgOpacity to Drawer component ([8dc01fb](https://github.com/themesberg/flowbite-svelte/commit/8dc01fb9ec82b14d5f893d1255b646630e205ce2))
|
|
141
|
+
- add bind:group to Radio component ([386ab02](https://github.com/themesberg/flowbite-svelte/commit/386ab0246d0a3a7ae60416c6f9979501f4c434af))
|
|
142
|
+
- add bind:value to Iconinput ([87616e2](https://github.com/themesberg/flowbite-svelte/commit/87616e2222611bfabd77c3f7699c5f716015e420))
|
|
143
|
+
- add Blockquote ([89cbfbd](https://github.com/themesberg/flowbite-svelte/commit/89cbfbdf56e7beca90b00cf4c9c033789b2a2ba5))
|
|
144
|
+
- add button colored shadows ([96e20c5](https://github.com/themesberg/flowbite-svelte/commit/96e20c568f2fcc7d51e9a430fcb0007f02290bd2))
|
|
145
|
+
- add button to Thumbnail and move the on:click event listener to button ([c9119c7](https://github.com/themesberg/flowbite-svelte/commit/c9119c7bcf772215b63f546761f28f6fd2a271ef))
|
|
146
|
+
- add carousel components ([846a99d](https://github.com/themesberg/flowbite-svelte/commit/846a99dde2f45246493fac99790c220da257eefd))
|
|
147
|
+
- add Checkbox, CheckboxInline, and checkbox page ([baab944](https://github.com/themesberg/flowbite-svelte/commit/baab944e588645bb2fbe751fd5a2beb00b8f6e77))
|
|
148
|
+
- add ChevronUp to SidebarDropdownWrapper ([032d540](https://github.com/themesberg/flowbite-svelte/commit/032d540b347ab30ddcdcddff8c0963290ce0c904))
|
|
149
|
+
- add classActive to BottomNav ([06bf5dc](https://github.com/themesberg/flowbite-svelte/commit/06bf5dc2d284c475c81ae6a379831aaeb42c028d))
|
|
150
|
+
- add classPlaceholder to avatar component ([d4bc2d7](https://github.com/themesberg/flowbite-svelte/commit/d4bc2d70c87e879fa188831eb524a45ca2d43ab1))
|
|
151
|
+
- add cli page ([5e24f5b](https://github.com/themesberg/flowbite-svelte/commit/5e24f5bda80db8b970300841d4f916f7e2e2c2ff))
|
|
152
|
+
- add close on body, add close another dropdown and open own ([addabf8](https://github.com/themesberg/flowbite-svelte/commit/addabf81ccb322e6a482f3baa0687b443914674b))
|
|
153
|
+
- add Codeflow link ([#572](https://github.com/themesberg/flowbite-svelte/issues/572)) ([c76b265](https://github.com/themesberg/flowbite-svelte/commit/c76b265aded62df0553d9a579f8b0ee6f756c528))
|
|
154
|
+
- add color and size to Toggle component ([6595bb3](https://github.com/themesberg/flowbite-svelte/commit/6595bb38d95ae42862d134fee979ae97b66ab911))
|
|
155
|
+
- add color, gradient, shadow, and outline props to speed-dial ([#636](https://github.com/themesberg/flowbite-svelte/issues/636)) ([563a7ee](https://github.com/themesberg/flowbite-svelte/commit/563a7eecdf69301da232aa7ccd6734e49dc87f4c))
|
|
156
|
+
- add custom color to Alert component and update props ([2e2a71b](https://github.com/themesberg/flowbite-svelte/commit/2e2a71b4fb83bca28a1bf6b107f4163acbb6b011))
|
|
157
|
+
- add custom slide controllers to carousel ([8a2a329](https://github.com/themesberg/flowbite-svelte/commit/8a2a329da816bd7d5fff357790d584dbce2aec31))
|
|
158
|
+
- add datepicker ([a8b70e6](https://github.com/themesberg/flowbite-svelte/commit/a8b70e67b61e4e038520cc66238861e368716e60))
|
|
159
|
+
- add datepicker ([32f8889](https://github.com/themesberg/flowbite-svelte/commit/32f88899256bed9effe6b23b4d24cd8380ce2aff))
|
|
160
|
+
- add datepicker examples ([590ec66](https://github.com/themesberg/flowbite-svelte/commit/590ec660f27e43b18c588d44c0899aa16a3fc870))
|
|
161
|
+
- add datepicker examples ([68e2462](https://github.com/themesberg/flowbite-svelte/commit/68e2462567838816ef116c3ed5b389e8de52f643))
|
|
162
|
+
- add DescriptionList, List, Span components ([495b61e](https://github.com/themesberg/flowbite-svelte/commit/495b61eb0d81eb9ae06a34fa981dd42a81983ea6))
|
|
163
|
+
- add disabled and classes to InteractiveTabHead component ([869fb1b](https://github.com/themesberg/flowbite-svelte/commit/869fb1b34f5a0e5a254cdc09b25195bf621a25d6))
|
|
164
|
+
- add disabled to InteractiveTabs ([f5ca0fe](https://github.com/themesberg/flowbite-svelte/commit/f5ca0fe858a50ef2c017ed6ec266c0012166b5f9))
|
|
165
|
+
- add disabling only outside click but not backdrop ([#390](https://github.com/themesberg/flowbite-svelte/issues/390)) ([ebb6a1f](https://github.com/themesberg/flowbite-svelte/commit/ebb6a1f81d005ef19e432b7395ff7e17599c0b4f))
|
|
166
|
+
- add Dropzone ([bb69872](https://github.com/themesberg/flowbite-svelte/commit/bb698721e07c489f1d1900012e60204e0af12e5a))
|
|
167
|
+
- add events to components ([d24e023](https://github.com/themesberg/flowbite-svelte/commit/d24e023ba671b9976e2c0df3529a66b15e251cea))
|
|
168
|
+
- add events to NavLi and NavDropdown ([02e4032](https://github.com/themesberg/flowbite-svelte/commit/02e403211c93d8e81457e1006e21341f4deed352))
|
|
169
|
+
- add events to tableheadcell and tablebodycell components ([#761](https://github.com/themesberg/flowbite-svelte/issues/761)) ([cb056aa](https://github.com/themesberg/flowbite-svelte/commit/cb056aaeaa01044241ad6fa7e700256b28cb5834))
|
|
170
|
+
- add export divClass to Toast for user custom CSS ([7625c01](https://github.com/themesberg/flowbite-svelte/commit/7625c017af9a91920880b3d9c09d8f02924178e5))
|
|
171
|
+
- add fetchMarkdownPosts in utils/index ([#333](https://github.com/themesberg/flowbite-svelte/issues/333)) ([b604c0c](https://github.com/themesberg/flowbite-svelte/commit/b604c0c31c99b743817d814b3b043c42ccfaf14c))
|
|
172
|
+
- add fileupload multiple files and sizes ([81ab128](https://github.com/themesberg/flowbite-svelte/commit/81ab1284902e9e89bf08725a74b22394aae57244))
|
|
173
|
+
- add focus on load to Input component ([5d0c7fb](https://github.com/themesberg/flowbite-svelte/commit/5d0c7fb7750aac2dc0df2ddd24a7c11cd66404c6))
|
|
174
|
+
- add forms Checkbox, Fileupload, FloatingLabelInput, Iconinput, Input, Radio, Select, Textarea, and Toggle ([39f390f](https://github.com/themesberg/flowbite-svelte/commit/39f390f38146194a33f0bdf7f2badb54e8e14d67))
|
|
175
|
+
- add forms Textarea, Select, Toggle ([7aed286](https://github.com/themesberg/flowbite-svelte/commit/7aed2864ec4f8d4869faff5e939b00fbd3b1ed8d))
|
|
176
|
+
- add gallery components and page ([#618](https://github.com/themesberg/flowbite-svelte/issues/618)) ([8c3b1f3](https://github.com/themesberg/flowbite-svelte/commit/8c3b1f3ff37eb8da4616001d7a3a510a6848cb76))
|
|
177
|
+
- add H1, H2, A, P, Higlight components ([3f80473](https://github.com/themesberg/flowbite-svelte/commit/3f804731e6a093c1e34f8b3be6289f930c372a96))
|
|
178
|
+
- add Heading and removed H1 and H2 ([b2be994](https://github.com/themesberg/flowbite-svelte/commit/b2be9945c39bcbfe23a0df53348ce768c5958255))
|
|
179
|
+
- add highlight to Span component and update heading page ([d47121b](https://github.com/themesberg/flowbite-svelte/commit/d47121ba47e6c6e3dfdd366128f51da77a966e0f))
|
|
180
|
+
- add Hr component and page ([f289c1e](https://github.com/themesberg/flowbite-svelte/commit/f289c1ebd6cfcbcfde87b28ce3108abaf54248ca))
|
|
181
|
+
- add icon components rather than import a library ([9dffb40](https://github.com/themesberg/flowbite-svelte/commit/9dffb400607d8bb4dd98e877e466956157016ff7))
|
|
182
|
+
- add iconColor to sidebar and sidebardropdown components ([9b239ba](https://github.com/themesberg/flowbite-svelte/commit/9b239bacd455436c9ab056a730574d3d3404e517))
|
|
183
|
+
- add Iconinput click handler example ([d815212](https://github.com/themesberg/flowbite-svelte/commit/d8152126236e839d3d7bc6e035d0afa432d96856))
|
|
184
|
+
- add IconTabs, FullWidthTabs, InteractiveTabHead, and TabContent ([445e0f7](https://github.com/themesberg/flowbite-svelte/commit/445e0f780857ab3d8902e65da31a6becccb5b366))
|
|
185
|
+
- add IconTabs, FullWidthTabs, InteractiveTabHead, and TabContent pages ([960523e](https://github.com/themesberg/flowbite-svelte/commit/960523e36406a24a685d46a9770e87d85deef0d8))
|
|
186
|
+
- add id to typograpy components ([64cbe1b](https://github.com/themesberg/flowbite-svelte/commit/64cbe1b6f2cbe43fdf5cb71a0d82e3a5caad1586))
|
|
187
|
+
- add Img component, images, and page ([b2aec04](https://github.com/themesberg/flowbite-svelte/commit/b2aec047694aab0bbcbc58d93af8c021e27d4f96))
|
|
188
|
+
- add Img page and examples ([ed3d83f](https://github.com/themesberg/flowbite-svelte/commit/ed3d83f34e195d67e3c7a334d1226d0876441f47))
|
|
189
|
+
- add ImgDropdown ([30e9d01](https://github.com/themesberg/flowbite-svelte/commit/30e9d01dcd51559f6771ebaeef57100cf198c452))
|
|
190
|
+
- add initialTheme to DarkMode component ([#776](https://github.com/themesberg/flowbite-svelte/issues/776)) ([5110499](https://github.com/themesberg/flowbite-svelte/commit/51104993239b410305e956b1af2204b4e3d37d66))
|
|
191
|
+
- add IteractiveTabHead and TabContent and its page ([72d1e7b](https://github.com/themesberg/flowbite-svelte/commit/72d1e7b7131f6e5009124637f371ad7625cd2283))
|
|
192
|
+
- add kbd component and page ([66c1f2e](https://github.com/themesberg/flowbite-svelte/commit/66c1f2ec9c516da147c7eca9e8cb11c3eea2e1e2))
|
|
193
|
+
- add labelInsideClass to progressbar component ([fe20cd7](https://github.com/themesberg/flowbite-svelte/commit/fe20cd7f693f21e052dc5adb3fd3eb4bcfa80b76))
|
|
194
|
+
- add Layout component ([2204586](https://github.com/themesberg/flowbite-svelte/commit/22045861703bf3e46cc7900e15c4db64d5246c50))
|
|
195
|
+
- add link examples ([b129251](https://github.com/themesberg/flowbite-svelte/commit/b12925106d6ffe482dfbde5623925f72abe8a577))
|
|
196
|
+
- add links page ([cdb2566](https://github.com/themesberg/flowbite-svelte/commit/cdb2566640bc5153e4d310dc2306aaafe432f5de))
|
|
197
|
+
- add loop to carousel components ([0ae0d66](https://github.com/themesberg/flowbite-svelte/commit/0ae0d66aaf74c7b588978ce88ab7c5117ee4a4e2))
|
|
198
|
+
- add Mark and TextGradient ([343e719](https://github.com/themesberg/flowbite-svelte/commit/343e719406bc146639882f97bbeafbc2de9514cb))
|
|
199
|
+
- add md files in components folder ([8d7e05a](https://github.com/themesberg/flowbite-svelte/commit/8d7e05a0098437ac7ddd3f9122a2c23f481e54cd))
|
|
200
|
+
- add mockups in package.json ([cfc32d5](https://github.com/themesberg/flowbite-svelte/commit/cfc32d5bb7822fda5c6170285a9f31bd907842df))
|
|
201
|
+
- add new Navbar with dropdown demo ([d48b42f](https://github.com/themesberg/flowbite-svelte/commit/d48b42f15da7155e396702011fe70e7cb5898eb5))
|
|
202
|
+
- add offset position props to Drawer and example in the drawer page ([680d358](https://github.com/themesberg/flowbite-svelte/commit/680d358ef3d55df202ae2bcaf5deb9c3e6834c18))
|
|
203
|
+
- add on change event dispatch to select ([bda74a6](https://github.com/themesberg/flowbite-svelte/commit/bda74a619530567d06d1badc600a3f663711b179))
|
|
204
|
+
- add on:click to A component ([0828612](https://github.com/themesberg/flowbite-svelte/commit/08286129bfc70d0bbe52df01c431ae3fb9f2ea13))
|
|
205
|
+
- add on:click to ButtonGroupItem ([f3229de](https://github.com/themesberg/flowbite-svelte/commit/f3229dedfced6dcb4114a47370bb144bf4a07ae3))
|
|
206
|
+
- add on:click to forms/Toggle component ([3b9ba37](https://github.com/themesberg/flowbite-svelte/commit/3b9ba3730421fa7096efee80225c60038ad903b9))
|
|
207
|
+
- add on:contextmenu ([#506](https://github.com/themesberg/flowbite-svelte/issues/506)) ([75ad596](https://github.com/themesberg/flowbite-svelte/commit/75ad59695188e36e0af52487e041c15a7b6fd845))
|
|
208
|
+
- add on:input to textarea ([#518](https://github.com/themesberg/flowbite-svelte/issues/518)) ([318ffbf](https://github.com/themesberg/flowbite-svelte/commit/318ffbf676366fcc7bd08c538270800d90ce5189))
|
|
209
|
+
- add outline button ([aa14b26](https://github.com/themesberg/flowbite-svelte/commit/aa14b267ec1bf283ca3684fa956776b6ce4e6932))
|
|
210
|
+
- add outlineStyle white for loader ([7769c19](https://github.com/themesberg/flowbite-svelte/commit/7769c19df48cac833fa08ce659ebfa651160bbf5))
|
|
211
|
+
- add pagination components and page ([5d00ea2](https://github.com/themesberg/flowbite-svelte/commit/5d00ea2c3152965e77dde9218e28e0f84c0f0854))
|
|
212
|
+
- add pagination examples ([#503](https://github.com/themesberg/flowbite-svelte/issues/503)) ([93e48e3](https://github.com/themesberg/flowbite-svelte/commit/93e48e354a731216213e4ba38bf12e462880d58a))
|
|
213
|
+
- add PaperAirplane icon ([90d2543](https://github.com/themesberg/flowbite-svelte/commit/90d25435eb9cc68b38febaba41b5782efb755981))
|
|
214
|
+
- add paragraphs page ([db973a3](https://github.com/themesberg/flowbite-svelte/commit/db973a3929bfdc8c4dd48338cc114bdc2c808fb8))
|
|
215
|
+
- add placement to Drawer component ([1b91e52](https://github.com/themesberg/flowbite-svelte/commit/1b91e52618da8935b326a69161d01f0cc7739158))
|
|
216
|
+
- add pointerEvent prop to Iconinput to show/hide cursor ([dffa324](https://github.com/themesberg/flowbite-svelte/commit/dffa3247856c7245ecb8a67554ce77b797fe8627))
|
|
217
|
+
- add popover related files ([8b5050b](https://github.com/themesberg/flowbite-svelte/commit/8b5050b0e9f6e45533b858c7aa392463cfb6cc91))
|
|
218
|
+
- add positioning to Toasts ([a88f641](https://github.com/themesberg/flowbite-svelte/commit/a88f641731efc52d55c6474a8f9696598fd339cc))
|
|
219
|
+
- add primary to Checkbox ([b6063c6](https://github.com/themesberg/flowbite-svelte/commit/b6063c6925bd036676061d80a8c9ed78efda6f5c))
|
|
220
|
+
- add Progressbar component ([43cfe09](https://github.com/themesberg/flowbite-svelte/commit/43cfe096f7be589d8449ab495ac7e44d5eb460a5))
|
|
221
|
+
- add radio label with a link to radio form ([2c3fe6f](https://github.com/themesberg/flowbite-svelte/commit/2c3fe6f9b24a7364a61fc534163c87a157afff12))
|
|
222
|
+
- add RadioItem and RadioInline for colors, inline, helper text ([9fc2812](https://github.com/themesberg/flowbite-svelte/commit/9fc281268f8008023e5a8d501893b8761ba8a5ef))
|
|
223
|
+
- add range input ([215439f](https://github.com/themesberg/flowbite-svelte/commit/215439fc529856ecc8c72965cd39d7aff12d3eb7))
|
|
224
|
+
- add rating count and update app.css ([e5d642b](https://github.com/themesberg/flowbite-svelte/commit/e5d642b4a246c1716db8461e6ecbc26a7abad9d0))
|
|
225
|
+
- add Rating, AdvancedRating, and ScoreRating components ([8c91712](https://github.com/themesberg/flowbite-svelte/commit/8c91712d703364948b00c387a2b3f1d42be6159f))
|
|
226
|
+
- add related components ([5018baa](https://github.com/themesberg/flowbite-svelte/commit/5018baaf2b34dec951a1564caae6c4b6941bcdbc))
|
|
227
|
+
- add related components ([d01f355](https://github.com/themesberg/flowbite-svelte/commit/d01f35530418b370f42f349b10049792310fd4d5))
|
|
228
|
+
- add Review component ([67af517](https://github.com/themesberg/flowbite-svelte/commit/67af517e32dfc19c6079e5d1925a234f0162cc34))
|
|
229
|
+
- add Review component ([d41b11d](https://github.com/themesberg/flowbite-svelte/commit/d41b11d4ef00d1d6d0d824d4fcdc9c964a78a7d2))
|
|
230
|
+
- add Review component, page, and prop ([4446e1e](https://github.com/themesberg/flowbite-svelte/commit/4446e1eba3706e291f0cb3812b4ffb61df48eb46))
|
|
231
|
+
- add role to ChevronLeft ([0fc996e](https://github.com/themesberg/flowbite-svelte/commit/0fc996e9414471366fc7d18315434b6e4778aa85))
|
|
232
|
+
- add role to DropdownItem ([663ee33](https://github.com/themesberg/flowbite-svelte/commit/663ee3369b69fd7557963da10be2a8dac1ae2aed))
|
|
233
|
+
- add role to Menu compo ([7a76025](https://github.com/themesberg/flowbite-svelte/commit/7a760257a43fb0e0638f00531813fdb84f0f36db))
|
|
234
|
+
- add role to Modal ([ea79fff](https://github.com/themesberg/flowbite-svelte/commit/ea79fffea37ea32681a42afeb1dd500207953335))
|
|
235
|
+
- add role to NavUl and NavLi ([08732dd](https://github.com/themesberg/flowbite-svelte/commit/08732dda1247ce68f2218a9e742ecc6e54f28f68))
|
|
236
|
+
- add role to Star, Button, Heart, Thumbup, ChevronDown, CehvronRight, ChevronUp, InformationCirlc, and UserCircle components ([82337b2](https://github.com/themesberg/flowbite-svelte/commit/82337b2aac57730046a08a42f4272b8b82c22552))
|
|
237
|
+
- add role to TableBodyCell and change td to svelte:element ([67de66c](https://github.com/themesberg/flowbite-svelte/commit/67de66c010567cccb4a4e9781ab71c23e9b72021))
|
|
238
|
+
- add Search component ([c9874ad](https://github.com/themesberg/flowbite-svelte/commit/c9874ada31fbf20c74a882ee6392e9a7cc8ecc36))
|
|
239
|
+
- add search on home page ([3cba1fd](https://github.com/themesberg/flowbite-svelte/commit/3cba1fd3d61d934c78046841551bcb7b702b8597))
|
|
240
|
+
- add server hooks to redirect component pages and add redirect.spec test ([9e2cb72](https://github.com/themesberg/flowbite-svelte/commit/9e2cb72653cb2de16f77c30d73bd69a69bd73bd5))
|
|
241
|
+
- add sidebar component and its page ([5b5dd66](https://github.com/themesberg/flowbite-svelte/commit/5b5dd6666b7f558ad33365f3981834d18b63d5de))
|
|
242
|
+
- add sidebar page ([d217ddd](https://github.com/themesberg/flowbite-svelte/commit/d217ddd7f375fdb5c82cee36a2f6637a0936d515))
|
|
243
|
+
- add simeple search component ([945c27b](https://github.com/themesberg/flowbite-svelte/commit/945c27b5299ae52f9c160cbda74a0b0540d98be8))
|
|
244
|
+
- add size to Iconinput component ([f041953](https://github.com/themesberg/flowbite-svelte/commit/f04195350a179d55a7315a127d5b116deaac1f41))
|
|
245
|
+
- add size to Rating component ([7c2784e](https://github.com/themesberg/flowbite-svelte/commit/7c2784efff60877014c14a8acc7760f845671100))
|
|
246
|
+
- add skeleton components and page ([cf1f421](https://github.com/themesberg/flowbite-svelte/commit/cf1f421964a7122c77cf2b27615f4837ec3cf687))
|
|
247
|
+
- add slot and {...70121restProps} to all button components ([c98057c](https://github.com/themesberg/flowbite-svelte/commit/c98057cd6ee39053660378dad2b0bdb6970e18da))
|
|
248
|
+
- add slot to EcommerceCard ([d777c87](https://github.com/themesberg/flowbite-svelte/commit/d777c87d3097998e840a9e2ed79cafc036c74713))
|
|
249
|
+
- add SpeedDial component ([a959c5e](https://github.com/themesberg/flowbite-svelte/commit/a959c5edd96e56145453f0558f19be7f7a7fa8b5))
|
|
250
|
+
- add step indicator component ([#545](https://github.com/themesberg/flowbite-svelte/issues/545)) ([549ad61](https://github.com/themesberg/flowbite-svelte/commit/549ad616adc829b5482da20abf9f4ef3e78aa44b))
|
|
251
|
+
- add sticky footer, add $$props.class to all skeleton components ([1fad8dc](https://github.com/themesberg/flowbite-svelte/commit/1fad8dc9d8c0bc1428daeada82f44accc5f7e9a0))
|
|
252
|
+
- add sticky navbar ([4010ea8](https://github.com/themesberg/flowbite-svelte/commit/4010ea85483cf0c5a26275fe710ed34e4142846e))
|
|
253
|
+
- add svelet component to interactive tab ([b9ecd77](https://github.com/themesberg/flowbite-svelte/commit/b9ecd77be462f33e1a1f4a38f4047a0d7d2827e1))
|
|
254
|
+
- add svelte snapshot example ([#598](https://github.com/themesberg/flowbite-svelte/issues/598)) ([35da46d](https://github.com/themesberg/flowbite-svelte/commit/35da46d847b333308bcd21ff89834a7a1ded783e))
|
|
255
|
+
- add table search ([72664ee](https://github.com/themesberg/flowbite-svelte/commit/72664eed118587b445f931c57f1def7bf87056f6))
|
|
256
|
+
- add tables page ([670e210](https://github.com/themesberg/flowbite-svelte/commit/670e210dd964a02c6b71b091b29e6bf617265d5b))
|
|
257
|
+
- add Tabs component for all tab ([758e2e7](https://github.com/themesberg/flowbite-svelte/commit/758e2e743eb845c7190a7c6c2a9888c67c46db73))
|
|
258
|
+
- add target and {...$$restProps} to all footer components ([#405](https://github.com/themesberg/flowbite-svelte/issues/405)) ([c045aa7](https://github.com/themesberg/flowbite-svelte/commit/c045aa76dc209471f278eb98f0ec566c61e957f2))
|
|
259
|
+
- add tests ([ae48ebf](https://github.com/themesberg/flowbite-svelte/commit/ae48ebfd853ddc9f18de1e095b193ed8462a3045))
|
|
260
|
+
- add Text decoration examples to text page ([fe074cd](https://github.com/themesberg/flowbite-svelte/commit/fe074cd2a36d780333444f276de69edec51649d5))
|
|
261
|
+
- add Textsize to Badge and Button components. ([17b2238](https://github.com/themesberg/flowbite-svelte/commit/17b22383cc08c6cf6fe691d1cf804bfddf55cfe3))
|
|
262
|
+
- add timeline pages ([2fb5117](https://github.com/themesberg/flowbite-svelte/commit/2fb511786cc6e7404e9187d62384e5c5a4e0ff95))
|
|
263
|
+
- add Toast component ([1ee43ff](https://github.com/themesberg/flowbite-svelte/commit/1ee43ff5553498f2495e9bf47b65d020dbf26436))
|
|
264
|
+
- add Toast page ([e9d0f7b](https://github.com/themesberg/flowbite-svelte/commit/e9d0f7b1f861ee920d31019d4a1d1d60caa28599))
|
|
265
|
+
- add Tooltip custom CSS ([1466d16](https://github.com/themesberg/flowbite-svelte/commit/1466d16fff312ccdb22e1c282f49b7b156121d57))
|
|
266
|
+
- add transition slide to navbar ([da3d34a](https://github.com/themesberg/flowbite-svelte/commit/da3d34a34d209b599440225baa92d440ff291e03))
|
|
267
|
+
- add transition slide to navbar ([755ae7f](https://github.com/themesberg/flowbite-svelte/commit/755ae7f39823f9cdbcea375722eadabcc80d385a))
|
|
268
|
+
- add transition to SidebarDropdownWrapper ([#590](https://github.com/themesberg/flowbite-svelte/issues/590)) ([36f4971](https://github.com/themesberg/flowbite-svelte/commit/36f49711aece1535e78804d785a841d11f8e0459))
|
|
269
|
+
- add twMerge to timeline components ([e993e72](https://github.com/themesberg/flowbite-svelte/commit/e993e72c1524bbd4c64e61d48cd3307a8a833ec4))
|
|
270
|
+
- add type to ButtonGroupItem ([1aefa6b](https://github.com/themesberg/flowbite-svelte/commit/1aefa6bd85acabc05b9ba8016b8e1f46bd55baef))
|
|
271
|
+
- add type.ts for COLORS. ([1e2e2a2](https://github.com/themesberg/flowbite-svelte/commit/1e2e2a2d56ea9fb8b14f6421755de2dbcadfa7e9))
|
|
272
|
+
- add types to Button components ([eee5386](https://github.com/themesberg/flowbite-svelte/commit/eee538637c521d8a3493b37ff98ee41af5516ae2))
|
|
273
|
+
- add typescript to Alerts components. ([b081883](https://github.com/themesberg/flowbite-svelte/commit/b0818837974088962279bfe3c05ed37d6b224551))
|
|
274
|
+
- add typescript to badges and buttons. ([e51560e](https://github.com/themesberg/flowbite-svelte/commit/e51560e8b3e8debdd0d7427b645c6abadac01807))
|
|
275
|
+
- add Typescript to buttongroup components. ([688e247](https://github.com/themesberg/flowbite-svelte/commit/688e247bda802c76def0ecec7baa669415bf7e9a))
|
|
276
|
+
- add Typescript to footer components. ([ad049e4](https://github.com/themesberg/flowbite-svelte/commit/ad049e4f26204935e838bdad1fdc23ae68aaf95a))
|
|
277
|
+
- add typescript to modal components. ([333eb82](https://github.com/themesberg/flowbite-svelte/commit/333eb82557fba97a85805d522c1f175c7398658f))
|
|
278
|
+
- add Typescript to navbar components. ([18a71b8](https://github.com/themesberg/flowbite-svelte/commit/18a71b8b9dd55578ef2e50f5915d1655144cfff4))
|
|
279
|
+
- add Typescript to spinner and tooltip components. ([531d79a](https://github.com/themesberg/flowbite-svelte/commit/531d79af20455d4ffe58f3bd944cbea79cc229dd))
|
|
280
|
+
- add Typescript to tab components. ([0d36bfb](https://github.com/themesberg/flowbite-svelte/commit/0d36bfbe05f6ecd62ea1f5dc796954ff4c1b96ae))
|
|
281
|
+
- add typography page ([52923fb](https://github.com/themesberg/flowbite-svelte/commit/52923fb66b55fed20c876ef7b9348fccadde04a3))
|
|
282
|
+
- add Ul, Li, Span component ([86d8b66](https://github.com/themesberg/flowbite-svelte/commit/86d8b661f2524f25162a99b6d3b8df761a85b01b))
|
|
283
|
+
- add underline and decoratio class to Span ([f3b11a9](https://github.com/themesberg/flowbite-svelte/commit/f3b11a92b3782c27e09f25c894a81402661b73d3))
|
|
284
|
+
- add User review, User testimonial, Paragraph context, Blockquote icon to typography/blockquote page ([73143ba](https://github.com/themesberg/flowbite-svelte/commit/73143bad816f6b3249fff3486d3b8569f45fde7f))
|
|
285
|
+
- add voice search component ([8e6e610](https://github.com/themesberg/flowbite-svelte/commit/8e6e6101fb54c5307a4d3e32cf61042308532cae))
|
|
286
|
+
- alerts more functions, changed API ([a2306fb](https://github.com/themesberg/flowbite-svelte/commit/a2306fb2a980a140da51f4f36ac299a5ce33c1c8))
|
|
287
|
+
- alerts with lists ([5ad5f3c](https://github.com/themesberg/flowbite-svelte/commit/5ad5f3cfb6b8f68464475b11086f85b0d60cc068))
|
|
288
|
+
- allow customization of body class in Modal component ([#945](https://github.com/themesberg/flowbite-svelte/issues/945)) ([72514ec](https://github.com/themesberg/flowbite-svelte/commit/72514ec631712d2c6bf9b94515f0a76b23759706))
|
|
289
|
+
- allow customization of innerWrapperClass for Textarea ([#929](https://github.com/themesberg/flowbite-svelte/issues/929)) ([8869fbf](https://github.com/themesberg/flowbite-svelte/commit/8869fbfe36dd012ff653b5dba522119927897e2a))
|
|
290
|
+
- avatar w/tooltip / initials ([6b9a333](https://github.com/themesberg/flowbite-svelte/commit/6b9a333c96f3485b33a2fdeecc113138452acca0))
|
|
291
|
+
- badges new features ([775ecbc](https://github.com/themesberg/flowbite-svelte/commit/775ecbc04df58cd7c2517d103c963e7add92b5f6))
|
|
292
|
+
- Button component API update ([934ff9b](https://github.com/themesberg/flowbite-svelte/commit/934ff9b6fdb63fa8f10bb93a1ed1ef1afaf95421))
|
|
293
|
+
- button group ([bb95b98](https://github.com/themesberg/flowbite-svelte/commit/bb95b98c0e4b70f3958c778ac2dc8367c67df8d7))
|
|
294
|
+
- can add own search function to TableSearch component ([514c7f7](https://github.com/themesberg/flowbite-svelte/commit/514c7f71ba0ff48637ff37051c9e453a40a56f11))
|
|
295
|
+
- cards - re-written ([1084f38](https://github.com/themesberg/flowbite-svelte/commit/1084f38514e4cac5662ae6b969dde27e829ea24e))
|
|
296
|
+
- cards - re-written ([52716e0](https://github.com/themesberg/flowbite-svelte/commit/52716e08ac0f4446e3c7160fc3dc83e515201d7d))
|
|
297
|
+
- cards - wip ([0948c89](https://github.com/themesberg/flowbite-svelte/commit/0948c89a124662b7c5c238350df341e0956dac8a))
|
|
298
|
+
- change Navbar component structure ([81b83fb](https://github.com/themesberg/flowbite-svelte/commit/81b83fb6805412b85ecf23186ccf50b4c737bdd4))
|
|
299
|
+
- change node version to 0.16.16 since new playwright and sveltekit require it, https://github.com/sveltejs/kit/issues/5842 ([6175c2c](https://github.com/themesberg/flowbite-svelte/commit/6175c2cb54c60829eb329bce90772e59b888063f))
|
|
300
|
+
- combine Accordionflush and AccordionItem ([e53fa64](https://github.com/themesberg/flowbite-svelte/commit/e53fa6421ca747ed46d6432b67715b3eedf4cbba))
|
|
301
|
+
- **config:** fix default bg-primary-50 color ([7d89f57](https://github.com/themesberg/flowbite-svelte/commit/7d89f572b934f3da843bca3f4f162939c1bb2768))
|
|
302
|
+
- create utilities/closebutton, label, and toolbar ([3ad9775](https://github.com/themesberg/flowbite-svelte/commit/3ad9775ffbed66908cbaa82845b86151e179d534))
|
|
303
|
+
- darkmode fix for refreshing a browser ([#784](https://github.com/themesberg/flowbite-svelte/issues/784)) ([aac2187](https://github.com/themesberg/flowbite-svelte/commit/aac218711967ba63ee139ef7f5370dd43993c709))
|
|
304
|
+
- datepicker update. It needs rel=external for the link from sidebar menu and index page ([6fed169](https://github.com/themesberg/flowbite-svelte/commit/6fed169402be79c0e0eba9a93766be5f0587ef41))
|
|
305
|
+
- default input ids to sequentially-generated strings ([3527cc6](https://github.com/themesberg/flowbite-svelte/commit/3527cc6991c8c119aa604c89fed45436b9f4fb2c))
|
|
306
|
+
- dependencies update ([b1866b8](https://github.com/themesberg/flowbite-svelte/commit/b1866b8dc5ecc55cc0c343d663537439664cf7a8))
|
|
307
|
+
- devicemockup ([#778](https://github.com/themesberg/flowbite-svelte/issues/778)) ([fec1f4c](https://github.com/themesberg/flowbite-svelte/commit/fec1f4caa5da33259766312dda95a7fdaeb291eb))
|
|
308
|
+
- **docs:** improve docs components ([#889](https://github.com/themesberg/flowbite-svelte/issues/889)) ([0b82e2f](https://github.com/themesberg/flowbite-svelte/commit/0b82e2f1f08f047969a7f1b7c06b3982b3abca03))
|
|
309
|
+
- documenting components ([#801](https://github.com/themesberg/flowbite-svelte/issues/801)) ([80daafb](https://github.com/themesberg/flowbite-svelte/commit/80daafb221f49410d861d6efe5652b977faba513))
|
|
310
|
+
- drawer on progress ([027c6de](https://github.com/themesberg/flowbite-svelte/commit/027c6de72ff563df34a5d56fbe9d8ea571440ff8))
|
|
311
|
+
- dropdown as Popper + fixes ([67fdf78](https://github.com/themesberg/flowbite-svelte/commit/67fdf7837f36d63b3683e0b6f6e78fbf91f6bf23))
|
|
312
|
+
- dropdown button ([f6347f2](https://github.com/themesberg/flowbite-svelte/commit/f6347f280cbfc552d001aa22128026174b46a6f3))
|
|
313
|
+
- dropdown new version ([f17dbff](https://github.com/themesberg/flowbite-svelte/commit/f17dbff9139a80d0629913315fd4e594e99c9f40))
|
|
314
|
+
- enhance DarkMode ([#437](https://github.com/themesberg/flowbite-svelte/issues/437)) ([9afd3e1](https://github.com/themesberg/flowbite-svelte/commit/9afd3e11bec5bc4416537d7d371f970dd414a394))
|
|
315
|
+
- export open in speeddial ([#960](https://github.com/themesberg/flowbite-svelte/issues/960)) ([7dff563](https://github.com/themesberg/flowbite-svelte/commit/7dff5630dfd482a828c45611f129c432b94908de))
|
|
316
|
+
- favicon and logo update ([6c317a9](https://github.com/themesberg/flowbite-svelte/commit/6c317a967d5a0b8acdf19e7d8a74fe059407c34f))
|
|
317
|
+
- fixing standard-version ([cd316e4](https://github.com/themesberg/flowbite-svelte/commit/cd316e412171689e04ec435dfc31abd89b7cbe1d))
|
|
318
|
+
- focus trap for modals ([08604ac](https://github.com/themesberg/flowbite-svelte/commit/08604ac3475f28a5a35c037e47ecfc13ee13b877))
|
|
319
|
+
- Footer component updated ([c144ba6](https://github.com/themesberg/flowbite-svelte/commit/c144ba67bc7bf883066c9de2afaca21f1dc82bf3))
|
|
320
|
+
- form buttons tinted removed ([5c2d619](https://github.com/themesberg/flowbite-svelte/commit/5c2d619c8c5ade960e2b3a59c20b809a40174829))
|
|
321
|
+
- frame abstraction ([47e4126](https://github.com/themesberg/flowbite-svelte/commit/47e4126fa02ff6b9c93d3ee7e17fee79195ac1d3))
|
|
322
|
+
- GetStarted element ([#681](https://github.com/themesberg/flowbite-svelte/issues/681)) ([cd381b7](https://github.com/themesberg/flowbite-svelte/commit/cd381b75c4589582eba7b5d4e945ca78f2884ec6))
|
|
323
|
+
- home page cta ([#689](https://github.com/themesberg/flowbite-svelte/issues/689)) ([76d7eb5](https://github.com/themesberg/flowbite-svelte/commit/76d7eb5454fb04c3e7d2a6e048dc46e870050902))
|
|
324
|
+
- indicator comp ([#532](https://github.com/themesberg/flowbite-svelte/issues/532)) ([57ce4fc](https://github.com/themesberg/flowbite-svelte/commit/57ce4fcdce3965921c0f6edf71f6ae42c2d42b40))
|
|
325
|
+
- **input:** update blue to primary color focus ([f155ec5](https://github.com/themesberg/flowbite-svelte/commit/f155ec588fc52e30383368b2700dbb28be3bbb6d))
|
|
326
|
+
- list group rewritten - API changed ([86c97dc](https://github.com/themesberg/flowbite-svelte/commit/86c97dc54581f634baed601c609e9d90c6c4611b))
|
|
327
|
+
- make <TableHead> slot more flexible ([#527](https://github.com/themesberg/flowbite-svelte/issues/527)) ([33803f2](https://github.com/themesberg/flowbite-svelte/commit/33803f23ce90f9425417f6417c70bc6928337bbe))
|
|
328
|
+
- make AccordionItem transitions customizable ([0b49c35](https://github.com/themesberg/flowbite-svelte/commit/0b49c35a803b4ba3523c4d11845460c1958f9167))
|
|
329
|
+
- make button styles reactive ([d74dd9b](https://github.com/themesberg/flowbite-svelte/commit/d74dd9b37c58716e33ca72ce5058b557a6b43ced))
|
|
330
|
+
- make Select receive custom options ([#514](https://github.com/themesberg/flowbite-svelte/issues/514)) ([a58b410](https://github.com/themesberg/flowbite-svelte/commit/a58b410a3ffce29432907457baeae8c20977ef42))
|
|
331
|
+
- make tr and td clickable ([#452](https://github.com/themesberg/flowbite-svelte/issues/452)) ([3bc7f9e](https://github.com/themesberg/flowbite-svelte/commit/3bc7f9e227e3bfe70b0c184eae132abafd071760))
|
|
332
|
+
- mdsvexamples ([fc542a0](https://github.com/themesberg/flowbite-svelte/commit/fc542a0b6d09067fa62ae92ed44cb08408c19ad0))
|
|
333
|
+
- megamenu - code skel ([d02c5c7](https://github.com/themesberg/flowbite-svelte/commit/d02c5c78a5360f623ffe3fb3659265d679e43426))
|
|
334
|
+
- megamenu - wip ([02bbabc](https://github.com/themesberg/flowbite-svelte/commit/02bbabcdda0f924aefa2829a94e3b822bdb0bbf6))
|
|
335
|
+
- megamenu + examples ([2f24a26](https://github.com/themesberg/flowbite-svelte/commit/2f24a268dfe474da45a654d6a4bd128f4175ae44))
|
|
336
|
+
- merging jjagielka-buttons ([94ffdcb](https://github.com/themesberg/flowbite-svelte/commit/94ffdcba071488d0d56492c3a1fdb148afdb9450))
|
|
337
|
+
- modal - crypto ([47cf678](https://github.com/themesberg/flowbite-svelte/commit/47cf678ef2a7bf10c842e367a37e2aedebe7a8fc))
|
|
338
|
+
- modal - crypto + html ([26475ed](https://github.com/themesberg/flowbite-svelte/commit/26475edd98a2c73fbe02580fefb4c8455e25f1bb))
|
|
339
|
+
- modal - re-written ([4dd27af](https://github.com/themesberg/flowbite-svelte/commit/4dd27afd996328fcdc6c19895e1a6a6beef2c772))
|
|
340
|
+
- modal - re-written ([1c6a93d](https://github.com/themesberg/flowbite-svelte/commit/1c6a93dfe332a7f65058d25a4a68e542d15e9a21))
|
|
341
|
+
- modal block background scroll ([f3eb627](https://github.com/themesberg/flowbite-svelte/commit/f3eb62732dc899d6f1483d9f86a5c644c8d2edd2))
|
|
342
|
+
- modal internal scrolling ([7ca08ea](https://github.com/themesberg/flowbite-svelte/commit/7ca08ea939e0116241c564738ec237bd501ca32c))
|
|
343
|
+
- more alert options ([7071490](https://github.com/themesberg/flowbite-svelte/commit/7071490d458312c3f0833097c10829b20a34919a))
|
|
344
|
+
- more Frame inheritance ([bb72d69](https://github.com/themesberg/flowbite-svelte/commit/bb72d6952386bd0f6dec4711795e3591a6837c02))
|
|
345
|
+
- new sidebar structure ([bf35b3e](https://github.com/themesberg/flowbite-svelte/commit/bf35b3e230b9d2f9b27d2e9576c70a3db47bc48c))
|
|
346
|
+
- new tab components and page ([7c53437](https://github.com/themesberg/flowbite-svelte/commit/7c534377c31384b609774db19b0bace7fee3d5cb))
|
|
347
|
+
- new Table components ([b2d4c8c](https://github.com/themesberg/flowbite-svelte/commit/b2d4c8cca892da8e18fd0e2f688ccc9280bc8df8))
|
|
348
|
+
- newsletter form ([#674](https://github.com/themesberg/flowbite-svelte/issues/674)) ([89df011](https://github.com/themesberg/flowbite-svelte/commit/89df011c684bf8829b3f15c38fec4b727d62303d))
|
|
349
|
+
- pagination ([#395](https://github.com/themesberg/flowbite-svelte/issues/395)) ([4792988](https://github.com/themesberg/flowbite-svelte/commit/479298855936bdc0e917788bbe1e00d8f62cbbe2))
|
|
350
|
+
- pagination large ([#895](https://github.com/themesberg/flowbite-svelte/issues/895)) ([a5cd87a](https://github.com/themesberg/flowbite-svelte/commit/a5cd87a2bfed6ce25c39969be401458dda2259c3))
|
|
351
|
+
- permanent option ([cceeb1b](https://github.com/themesberg/flowbite-svelte/commit/cceeb1b21995e4b386e61fa90256c7b3a304326e))
|
|
352
|
+
- popover ([c41ddc4](https://github.com/themesberg/flowbite-svelte/commit/c41ddc408f3696e05ee66de4922b95ee5cee1a08))
|
|
353
|
+
- popover finalization ([c71481e](https://github.com/themesberg/flowbite-svelte/commit/c71481ec18e2850488d86cfdb583587eae4a19b2))
|
|
354
|
+
- popper reloaded ([a4b851e](https://github.com/themesberg/flowbite-svelte/commit/a4b851e2409356a90fd6aaae62db327b505bdcb2))
|
|
355
|
+
- popper reloaded part 2 ([2482870](https://github.com/themesberg/flowbite-svelte/commit/2482870842386c8c1e5824869ce7822b8682e8a0))
|
|
356
|
+
- prev/next buttons ([#675](https://github.com/themesberg/flowbite-svelte/issues/675)) ([590e423](https://github.com/themesberg/flowbite-svelte/commit/590e423396a9d42ad56593f9131b2107ad1ec2fe))
|
|
357
|
+
- range - clean up ([79d35ca](https://github.com/themesberg/flowbite-svelte/commit/79d35ca127094efb20e12ad3e14635cf607edddc))
|
|
358
|
+
- replace all components classnames to twMerge ([6d0ec87](https://github.com/themesberg/flowbite-svelte/commit/6d0ec8703bff2af91be1e656eb1f71b6f42ea920))
|
|
359
|
+
- replace classnames to twMerge and twJoin ([342ae23](https://github.com/themesberg/flowbite-svelte/commit/342ae231b3552fc11f44b0fa9c9bc968d7193672))
|
|
360
|
+
- replace classnames to twMerge and twJoin upto Card ([6ab1278](https://github.com/themesberg/flowbite-svelte/commit/6ab1278cf9e5c45e7be2b2a532f0f469116aa3d3))
|
|
361
|
+
- replace classnames to twMerge and twJoin upto Footer ([799fd01](https://github.com/themesberg/flowbite-svelte/commit/799fd011c3246a220492ca59c84716b935e6aea1))
|
|
362
|
+
- replace classnames to twMerge upto Progressbar ([a2ba25b](https://github.com/themesberg/flowbite-svelte/commit/a2ba25b566a0049025f8f6f7c5f7046e0b8dfdae))
|
|
363
|
+
- replace classnames to twMerge upto TableSearch ([1307d58](https://github.com/themesberg/flowbite-svelte/commit/1307d589f82e7c20079640cbe90bc29e0c33e57b))
|
|
364
|
+
- replace classnames to twMerge upto Toggle ([57890a6](https://github.com/themesberg/flowbite-svelte/commit/57890a66018c884940f981f5da78f9068e5c1833))
|
|
365
|
+
- **routes:** padding updates. ([6053bad](https://github.com/themesberg/flowbite-svelte/commit/6053bad6e08582bda616e3022607aa9d0995e7b9))
|
|
366
|
+
- run svelte-migrate ([d4d7c48](https://github.com/themesberg/flowbite-svelte/commit/d4d7c48fbf7fab165e6cc491d52085ab5503ebbb))
|
|
367
|
+
- select input [#50](https://github.com/themesberg/flowbite-svelte/issues/50) ([8cea993](https://github.com/themesberg/flowbite-svelte/commit/8cea993344f1427f83ab46f29a9bc1613c67960c))
|
|
368
|
+
- slightly shorter version of redirection hooks ([#673](https://github.com/themesberg/flowbite-svelte/issues/673)) ([635e1e3](https://github.com/themesberg/flowbite-svelte/commit/635e1e38e2ac83d82982ff048d2a2f230c483389))
|
|
369
|
+
- social proof ([#686](https://github.com/themesberg/flowbite-svelte/issues/686)) ([4567ee2](https://github.com/themesberg/flowbite-svelte/commit/4567ee2209263eb1aed2ddd712b8de651e044641))
|
|
370
|
+
- start working drawer ([55a0ebf](https://github.com/themesberg/flowbite-svelte/commit/55a0ebfcb29743ad1b5222cad41b6ccf8610582b))
|
|
371
|
+
- sveltekit update to 1.5.6 ([#571](https://github.com/themesberg/flowbite-svelte/issues/571)) ([c24c639](https://github.com/themesberg/flowbite-svelte/commit/c24c63950471f831bc4fdec37e9aa767f6f64c96))
|
|
372
|
+
- table search on progress ([9cff21d](https://github.com/themesberg/flowbite-svelte/commit/9cff21d7ffbeb351b95601a85abe826323c68f9d))
|
|
373
|
+
- textarea ([47d51be](https://github.com/themesberg/flowbite-svelte/commit/47d51be427b056793cf64e4089cf4a4a7ba310d7))
|
|
374
|
+
- textarea / fix ([93cdb01](https://github.com/themesberg/flowbite-svelte/commit/93cdb019326ebcaddd3482c5e41c8a635461ac67))
|
|
375
|
+
- toast fine tune ([f3ee6f3](https://github.com/themesberg/flowbite-svelte/commit/f3ee6f382aa3a004a8efdbed75f215b9dfe59b4e))
|
|
376
|
+
- toolbar ([f02ff55](https://github.com/themesberg/flowbite-svelte/commit/f02ff558fa938913c32117ff51b46bdd6088e38a))
|
|
377
|
+
- toolbar w/html ([93116c3](https://github.com/themesberg/flowbite-svelte/commit/93116c34b4063eb9d166d85ef3dd7e20126fa29e))
|
|
378
|
+
- tooltips new API ([d9dacf9](https://github.com/themesberg/flowbite-svelte/commit/d9dacf9f65e85be93a3458dd5359d614a0dd12a0))
|
|
379
|
+
- trim number of components ([#709](https://github.com/themesberg/flowbite-svelte/issues/709)) ([8723242](https://github.com/themesberg/flowbite-svelte/commit/87232427dc255cda4a11dc2fef5228c124cfc4ee))
|
|
380
|
+
- typescript types for frame subclasses ([#731](https://github.com/themesberg/flowbite-svelte/issues/731)) ([6dd9877](https://github.com/themesberg/flowbite-svelte/commit/6dd9877a7b667e895c02b79e86a2c3ce88eb608c))
|
|
381
|
+
- upate Footer components ([1704c86](https://github.com/themesberg/flowbite-svelte/commit/1704c8631c33f1c9dbdefaaf2f180084da645fdd))
|
|
382
|
+
- update Breadcrumb components ([b35a970](https://github.com/themesberg/flowbite-svelte/commit/b35a9701ae08f795e37c55b92d24805d02a19b96))
|
|
383
|
+
- update dependencies and vite. script dev, build preview and test work ([bf1b837](https://github.com/themesberg/flowbite-svelte/commit/bf1b83788d7f3ec53c2d5e5c85a825606cbce38f))
|
|
384
|
+
- update docs and remove classnames from package.json ([9ef819b](https://github.com/themesberg/flowbite-svelte/commit/9ef819b24e2188c39d40d84ea60778ea42815a8a))
|
|
385
|
+
- update Dropzone and docs ([2467d22](https://github.com/themesberg/flowbite-svelte/commit/2467d222b7c172a8985ad6c8b6d683564ec07dc5))
|
|
386
|
+
- update floating label component ([d04caf9](https://github.com/themesberg/flowbite-svelte/commit/d04caf981a0cbbed37a82df1899d4584908b9171))
|
|
387
|
+
- update heroicons ([9a96fca](https://github.com/themesberg/flowbite-svelte/commit/9a96fca12b1e3adc61088a56ae2c3d3ad65ceb67))
|
|
388
|
+
- update Navbar components ([66170da](https://github.com/themesberg/flowbite-svelte/commit/66170dab34128dbe510131f2cd75a9123e06bdfe))
|
|
389
|
+
- update Rating component ([#772](https://github.com/themesberg/flowbite-svelte/issues/772)) ([0d9636f](https://github.com/themesberg/flowbite-svelte/commit/0d9636fa119a77a01f8ab30ff9f38aaa5753e914))
|
|
390
|
+
- update Sidebar components ([4f15325](https://github.com/themesberg/flowbite-svelte/commit/4f153257b519d4cbbb405a357e4c6ee7ebe30249))
|
|
391
|
+
- update svelte to 3.47.0 ([2c51f1c](https://github.com/themesberg/flowbite-svelte/commit/2c51f1c21907f7a977249e3dfe7c2fe46dd85553))
|
|
392
|
+
- update sveltekit 1.0.1 ([9b812c8](https://github.com/themesberg/flowbite-svelte/commit/9b812c861b25ef338574e91c95de3a1c0219f3b5))
|
|
393
|
+
- upgrade deps ([5a61709](https://github.com/themesberg/flowbite-svelte/commit/5a61709c7d748af7e9f5dcc73e4c49b30c5a9e44))
|
|
394
|
+
- video component and page ([27cd7df](https://github.com/themesberg/flowbite-svelte/commit/27cd7df226dde37e8a598b6693ae8278671d5782))
|
|
395
|
+
- working on datepicker ([4fedccf](https://github.com/themesberg/flowbite-svelte/commit/4fedccfc3f04308b53712cc87849098a7e502d2a))
|
|
396
|
+
- working on drawer ([07a8e02](https://github.com/themesberg/flowbite-svelte/commit/07a8e02ceac450e7e7ceeb2ad9b98bfac7c7c1cf))
|
|
397
|
+
- working on Tabs ([201c124](https://github.com/themesberg/flowbite-svelte/commit/201c124e33bed0d1b13cfe2e3f6ba5ea0bfc6c1c))
|
|
398
|
+
- wrapper added ([024b8e6](https://github.com/themesberg/flowbite-svelte/commit/024b8e6a8db1e4961b1d26df67728cc0fb8b3025))
|
|
399
|
+
|
|
400
|
+
### Bug Fixes
|
|
401
|
+
|
|
402
|
+
- [#144](https://github.com/themesberg/flowbite-svelte/issues/144) ChevronLeft fix ([016940b](https://github.com/themesberg/flowbite-svelte/commit/016940b36c6782c2481d8ff6c489c2808945d674))
|
|
403
|
+
- [#165](https://github.com/themesberg/flowbite-svelte/issues/165) toggle bind:group bind:checked ([3ca4010](https://github.com/themesberg/flowbite-svelte/commit/3ca40109f13e31afa76e02c96d387ff476880e52))
|
|
404
|
+
- [#177](https://github.com/themesberg/flowbite-svelte/issues/177) export visible/autohide ([2127151](https://github.com/themesberg/flowbite-svelte/commit/2127151550a778d35bee5eb3b2b77f38423f50e4))
|
|
405
|
+
- [#200](https://github.com/themesberg/flowbite-svelte/issues/200) undefined in tooltips ([4ed2ec0](https://github.com/themesberg/flowbite-svelte/commit/4ed2ec04945676cbc3e40011fb7790d1de18d8db))
|
|
406
|
+
- [#226](https://github.com/themesberg/flowbite-svelte/issues/226) for double on:click in DropdownItem ([c125d2d](https://github.com/themesberg/flowbite-svelte/commit/c125d2d02e3818cedb83994e930ca5cc7075571c))
|
|
407
|
+
- [#266](https://github.com/themesberg/flowbite-svelte/issues/266) change {id} to {...$$restProps} ([b02822f](https://github.com/themesberg/flowbite-svelte/commit/b02822f273fe5b14613ec77e39285078a740cda0))
|
|
408
|
+
- [#273](https://github.com/themesberg/flowbite-svelte/issues/273) remove number from select value type ([529510b](https://github.com/themesberg/flowbite-svelte/commit/529510bc50e561b544175a350390d7f32291727c))
|
|
409
|
+
- [#274](https://github.com/themesberg/flowbite-svelte/issues/274) change the links to singular for blocks components ([7378935](https://github.com/themesberg/flowbite-svelte/commit/73789353f4d598722db88cecb595303e8d60ac31))
|
|
410
|
+
- [#281](https://github.com/themesberg/flowbite-svelte/issues/281) ([5f79a5e](https://github.com/themesberg/flowbite-svelte/commit/5f79a5e27e23f568ae8e82d3ee974eea93eaccab))
|
|
411
|
+
- [#376](https://github.com/themesberg/flowbite-svelte/issues/376) ([#378](https://github.com/themesberg/flowbite-svelte/issues/378)) ([8b4c2e3](https://github.com/themesberg/flowbite-svelte/commit/8b4c2e3200c73448aa34f921738e8ea8d10ee538))
|
|
412
|
+
- [#379](https://github.com/themesberg/flowbite-svelte/issues/379) ([#380](https://github.com/themesberg/flowbite-svelte/issues/380)) ([0019915](https://github.com/themesberg/flowbite-svelte/commit/001991546e3e7376a02c17481784c5a5636d6ed7))
|
|
413
|
+
- [#530](https://github.com/themesberg/flowbite-svelte/issues/530) ([16c6650](https://github.com/themesberg/flowbite-svelte/commit/16c66504d42a378705a120fae5a6ca147a776bd4))
|
|
414
|
+
- [#534](https://github.com/themesberg/flowbite-svelte/issues/534) list group typing ([#805](https://github.com/themesberg/flowbite-svelte/issues/805)) ([95861f4](https://github.com/themesberg/flowbite-svelte/commit/95861f4f046c5c6b4127dd5f5120581346531831))
|
|
415
|
+
- [#774](https://github.com/themesberg/flowbite-svelte/issues/774) ([#822](https://github.com/themesberg/flowbite-svelte/issues/822)) ([b1bca6b](https://github.com/themesberg/flowbite-svelte/commit/b1bca6b6483bf9e345ef3a60fa5f9d545ee77527))
|
|
416
|
+
- [#781](https://github.com/themesberg/flowbite-svelte/issues/781) tooltip arrow ([#804](https://github.com/themesberg/flowbite-svelte/issues/804)) ([2bd8938](https://github.com/themesberg/flowbite-svelte/commit/2bd8938d6b864f9294ee897c1ce6edc4b8ec08ab))
|
|
417
|
+
- [#818](https://github.com/themesberg/flowbite-svelte/issues/818) ([#821](https://github.com/themesberg/flowbite-svelte/issues/821)) ([4050456](https://github.com/themesberg/flowbite-svelte/commit/4050456f270abb335b96b5cf65a0ea7eed200fdd))
|
|
418
|
+
- [#836](https://github.com/themesberg/flowbite-svelte/issues/836) ([c727c98](https://github.com/themesberg/flowbite-svelte/commit/c727c982cff9c28251a052b2bda1fee496fd62a6))
|
|
419
|
+
- [#905](https://github.com/themesberg/flowbite-svelte/issues/905) ([#913](https://github.com/themesberg/flowbite-svelte/issues/913)) ([85d8d43](https://github.com/themesberg/flowbite-svelte/commit/85d8d43b7b69c3d9050a56dca6d947f4dcc047b2))
|
|
420
|
+
- [#909](https://github.com/themesberg/flowbite-svelte/issues/909) ([#911](https://github.com/themesberg/flowbite-svelte/issues/911)) ([ac4cd25](https://github.com/themesberg/flowbite-svelte/commit/ac4cd252924f15f241ac63bff4fb0b17583c3b21))
|
|
421
|
+
- [#909](https://github.com/themesberg/flowbite-svelte/issues/909) ([#911](https://github.com/themesberg/flowbite-svelte/issues/911)) ([85b10d1](https://github.com/themesberg/flowbite-svelte/commit/85b10d16c430fea282e4cdb977003a710e6c552b))
|
|
422
|
+
- [#910](https://github.com/themesberg/flowbite-svelte/issues/910) ([#912](https://github.com/themesberg/flowbite-svelte/issues/912)) ([ccaa4b6](https://github.com/themesberg/flowbite-svelte/commit/ccaa4b6772a3d8b24aba0a8fc4a1e25c148f9e86))
|
|
423
|
+
- [#931](https://github.com/themesberg/flowbite-svelte/issues/931) ([#932](https://github.com/themesberg/flowbite-svelte/issues/932)) ([0f2db6a](https://github.com/themesberg/flowbite-svelte/commit/0f2db6a2cd4dd1edac04696ca9de29f08262ee0c))
|
|
424
|
+
- [#931](https://github.com/themesberg/flowbite-svelte/issues/931) ([#932](https://github.com/themesberg/flowbite-svelte/issues/932)) ([d56bc55](https://github.com/themesberg/flowbite-svelte/commit/d56bc5561f33d2f7b8c9df647b28b222b0ea6a47))
|
|
425
|
+
- [#937](https://github.com/themesberg/flowbite-svelte/issues/937) ([#943](https://github.com/themesberg/flowbite-svelte/issues/943)) ([c4030df](https://github.com/themesberg/flowbite-svelte/commit/c4030dfabc926da218dd02447bd37af39061256e))
|
|
426
|
+
- [#937](https://github.com/themesberg/flowbite-svelte/issues/937) ([#943](https://github.com/themesberg/flowbite-svelte/issues/943)) ([442ab65](https://github.com/themesberg/flowbite-svelte/commit/442ab650ca14fd75094dcb85f2774f714be4394b))
|
|
427
|
+
- [#952](https://github.com/themesberg/flowbite-svelte/issues/952) multiselect ([#954](https://github.com/themesberg/flowbite-svelte/issues/954)) ([cd37db1](https://github.com/themesberg/flowbite-svelte/commit/cd37db16d97884171f059273be9c62f260777c9b))
|
|
428
|
+
- [#958](https://github.com/themesberg/flowbite-svelte/issues/958) ([#959](https://github.com/themesberg/flowbite-svelte/issues/959)) ([e238349](https://github.com/themesberg/flowbite-svelte/commit/e238349576f535122e87f09ded63a76b831ffc98))
|
|
429
|
+
- {'...'} to '...' ([3f262a8](https://github.com/themesberg/flowbite-svelte/commit/3f262a83fa1d3ba8394fbe23024104c8ab86f783))
|
|
430
|
+
- +layout.server ([#808](https://github.com/themesberg/flowbite-svelte/issues/808)) ([cf1e551](https://github.com/themesberg/flowbite-svelte/commit/cf1e551690de641ec493933581ac1fc36e124d1d))
|
|
431
|
+
- $$props.class ([#890](https://github.com/themesberg/flowbite-svelte/issues/890)) ([8d90322](https://github.com/themesberg/flowbite-svelte/commit/8d90322eb0fbddfb626f9f3b89c53afcf5bacfc7))
|
|
432
|
+
- $$restProps before $$props.class ([9378cf5](https://github.com/themesberg/flowbite-svelte/commit/9378cf5349446ec8355317e98e462e379350a697))
|
|
433
|
+
- 28115props.class returns undefined if class is not given ([c1d4ab8](https://github.com/themesberg/flowbite-svelte/commit/c1d4ab8eb6b379078a3fb3fc51952d94c31cf452))
|
|
434
|
+
- 683restProps for toolbarbutton ([6ce830c](https://github.com/themesberg/flowbite-svelte/commit/6ce830c2657c6727835ded2b01728c8830a1a7d2))
|
|
435
|
+
- A11y fix for all alt taking out picture for img tag ([a247c32](https://github.com/themesberg/flowbite-svelte/commit/a247c32171543450647877a0f7192e63ee64fbb5))
|
|
436
|
+
- accordion gap ([#735](https://github.com/themesberg/flowbite-svelte/issues/735)) ([431b532](https://github.com/themesberg/flowbite-svelte/commit/431b5323a49530c6791579d71dae30312c46cb8e))
|
|
437
|
+
- accordion slots + docs ([#349](https://github.com/themesberg/flowbite-svelte/issues/349)) ([78a2542](https://github.com/themesberg/flowbite-svelte/commit/78a25427e31f61ba86ce825d9127515326448afa))
|
|
438
|
+
- add {39090props.class || ''} {...39090restProps} to Sidebar components ([7ea5815](https://github.com/themesberg/flowbite-svelte/commit/7ea5815d939dd6041a3a9e965127ea61736d5849))
|
|
439
|
+
- add {68013props.class} to footer components ([2701bf2](https://github.com/themesberg/flowbite-svelte/commit/2701bf23fea1250946379d38e517d04a0978ca14))
|
|
440
|
+
- add '' to string types ([387363a](https://github.com/themesberg/flowbite-svelte/commit/387363a3b3668dc66a7790331927e1c1641e4de6))
|
|
441
|
+
- add "tailwind-merge": "^1.13.1" to dependencies ([9b5757e](https://github.com/themesberg/flowbite-svelte/commit/9b5757e25c12b0394f08aa5476e21312d858c6c7))
|
|
442
|
+
- add {4126props.class || ''} to Navbar nav ([39a50fe](https://github.com/themesberg/flowbite-svelte/commit/39a50fe2a4296856d9fa97082f1807e6e1ddc0e8))
|
|
443
|
+
- add {41578props.class ? 41578props.class : ''} to AccordionItem component ([b90ee19](https://github.com/themesberg/flowbite-svelte/commit/b90ee19dc8a82a801eba01901eb6f2dbf3c9df1a))
|
|
444
|
+
- add 100% to pre tag ([3c8eaf2](https://github.com/themesberg/flowbite-svelte/commit/3c8eaf257697c48121cc79496885e05309b302bc))
|
|
445
|
+
- add 32997restProps to Iconinput ([34c8ad5](https://github.com/themesberg/flowbite-svelte/commit/34c8ad5dc0ca6c1ce39c6281c185274fd0f49ca7))
|
|
446
|
+
- add a space in front of from /index ([32beb0e](https://github.com/themesberg/flowbite-svelte/commit/32beb0e9d3fd7c9c92e34ccc8d690a9f8361c780))
|
|
447
|
+
- add all props to pages ([7716db1](https://github.com/themesberg/flowbite-svelte/commit/7716db1d73d2f0046542ad748c00ea0dfc90d417))
|
|
448
|
+
- add anchors to h2 tags ([7673c72](https://github.com/themesberg/flowbite-svelte/commit/7673c72ee801bb6b3673f6a6e9259ec265f03a0c))
|
|
449
|
+
- add auto-install-peers=true to .npmrc ([fd439d0](https://github.com/themesberg/flowbite-svelte/commit/fd439d0613ec2a39e747936cf1bd9f557e2cb093))
|
|
450
|
+
- add bind directives to form components ([c8284b2](https://github.com/themesberg/flowbite-svelte/commit/c8284b2545932bb2c8d2fe483bda92189bc6303f))
|
|
451
|
+
- add bind:checked to Checkbox ([7cfcf67](https://github.com/themesberg/flowbite-svelte/commit/7cfcf67b52a1496f57f8ef31b4205464f9eb82a0))
|
|
452
|
+
- add bind:checked to Toggle ([18a34ea](https://github.com/themesberg/flowbite-svelte/commit/18a34eaaf65539bf176da642b4a04f644265f647))
|
|
453
|
+
- add Breadcrumb to md files ([6ea1d24](https://github.com/themesberg/flowbite-svelte/commit/6ea1d246ef2ed47f87ec764634fad6729700d286))
|
|
454
|
+
- add btnLabel=Read more ([0730167](https://github.com/themesberg/flowbite-svelte/commit/073016733d50fddc70e78e38520eabf0a912236c))
|
|
455
|
+
- add button role if it is a link ([e481587](https://github.com/themesberg/flowbite-svelte/commit/e481587edfb3236aae6f76a285ebe51bfc6ae260))
|
|
456
|
+
- add button role if pag item is link ([0192784](https://github.com/themesberg/flowbite-svelte/commit/019278438c84d594c8b7d352a340a38bb49f4934))
|
|
457
|
+
- add button role to multiselect svg ([13cf560](https://github.com/themesberg/flowbite-svelte/commit/13cf560cf49f138b4e375563fd6522cacba23899))
|
|
458
|
+
- add buttonClass to AccordionItem ([8387244](https://github.com/themesberg/flowbite-svelte/commit/83872440ebb872843a0f016f7fb576d156295b96))
|
|
459
|
+
- add carbon ([#602](https://github.com/themesberg/flowbite-svelte/issues/602)) ([0ed5ebc](https://github.com/themesberg/flowbite-svelte/commit/0ed5ebc1b3bf94749f833ee5a3aa14e0802b89bd))
|
|
460
|
+
- add childClass and ulClass to SidebarDropdown ([8754489](https://github.com/themesberg/flowbite-svelte/commit/875448911cbf0e427f51a08b51d5f160974b159b))
|
|
461
|
+
- add classes to card components ([183889d](https://github.com/themesberg/flowbite-svelte/commit/183889d22706de29ba0bd373f5a9a9563b260587))
|
|
462
|
+
- add classOptions type to classes object ([2d7131b](https://github.com/themesberg/flowbite-svelte/commit/2d7131b25a5f6766c2cadc2b2034cc3cf68b9528))
|
|
463
|
+
- add cli to sidebar menu ([9259073](https://github.com/themesberg/flowbite-svelte/commit/9259073f61349bfe53f407be5824262500164696))
|
|
464
|
+
- add CloseButton to index and change import from $lib ([cc8fe25](https://github.com/themesberg/flowbite-svelte/commit/cc8fe2504474f6a0fbefb5474ef5cf798f6a28a8))
|
|
465
|
+
- add createprops, scripts gen:props and package ([0fa07af](https://github.com/themesberg/flowbite-svelte/commit/0fa07af6a55819cf1d72d2f14ded5c400d7386db))
|
|
466
|
+
- add custom to Footer ([22f8f43](https://github.com/themesberg/flowbite-svelte/commit/22f8f430ae9a21acbbd95300b8633531d9a6dc5f))
|
|
467
|
+
- add default as to dropdown and modal Stores ([4fc6ee0](https://github.com/themesberg/flowbite-svelte/commit/4fc6ee0f754f5db15c6345c61b016aff4bc92ac7))
|
|
468
|
+
- add default empty string to helper ([b1c2467](https://github.com/themesberg/flowbite-svelte/commit/b1c24675f1106be3c5252e033a1bfe4b000ff3f8))
|
|
469
|
+
- add default style to TabHeadItem and TabHead and removed {tabStyle} from default example in tab page ([a9025c4](https://github.com/themesberg/flowbite-svelte/commit/a9025c432d57fe6896ab20249d711ff7739c9f1c))
|
|
470
|
+
- add default value to opacity and space of paragraph element ([16f0729](https://github.com/themesberg/flowbite-svelte/commit/16f07295a2d23a3860ace75fab345c0d3452181b))
|
|
471
|
+
- add device-mockups svg images ([#779](https://github.com/themesberg/flowbite-svelte/issues/779)) ([5ce3506](https://github.com/themesberg/flowbite-svelte/commit/5ce3506374e2cf1b19cf2d13faf28c742355fcb3))
|
|
472
|
+
- add divClass to Card components and set empty string to string type ([a2cd8c4](https://github.com/themesberg/flowbite-svelte/commit/a2cd8c417837fdb57613243da1355fb8ca0237df))
|
|
473
|
+
- add docLayout ([e86309b](https://github.com/themesberg/flowbite-svelte/commit/e86309b7de16a24eed8b4c0dd244637bda402fa8))
|
|
474
|
+
- add engines node version >=16.0.0 to package.json ([5f859be](https://github.com/themesberg/flowbite-svelte/commit/5f859be127ee5d541a9a49535f71eedbc5ea5137))
|
|
475
|
+
- add esbuild@0.16.8 and update other dependencies ([f32d1be](https://github.com/themesberg/flowbite-svelte/commit/f32d1beea8b402652242fdeaf1007885e74c12cd))
|
|
476
|
+
- add event forwarding to Frame component in Card component. ([6ce4b6b](https://github.com/themesberg/flowbite-svelte/commit/6ce4b6b12f099a0a9600b9be34ed02ac6557ebf2))
|
|
477
|
+
- add eventhandler to label (mouse, drag, etc.) ([#433](https://github.com/themesberg/flowbite-svelte/issues/433)) ([6e4d9d1](https://github.com/themesberg/flowbite-svelte/commit/6e4d9d158c27ebb13f9a964d4bbfea17bba068cc))
|
|
478
|
+
- add events to IconInput and on:input to Input components ([6668918](https://github.com/themesberg/flowbite-svelte/commit/66689185cd6cdf94ab66e1ff05ba33fbcaf6be0f))
|
|
479
|
+
- add export to modal closeModal function ([d69ec07](https://github.com/themesberg/flowbite-svelte/commit/d69ec07fd8276322aa9feb3e234e6b93f89bc842))
|
|
480
|
+
- add footer/footerLayout.svelte ([954f434](https://github.com/themesberg/flowbite-svelte/commit/954f43447f5ff0acd59b27cb6902ae642f313535))
|
|
481
|
+
- add GetStarted ([d1c0424](https://github.com/themesberg/flowbite-svelte/commit/d1c042470ff943884c77ccd4917eac399f9ba072))
|
|
482
|
+
- add handleAlert to Alert component ([bd82de3](https://github.com/themesberg/flowbite-svelte/commit/bd82de36be389de61d4c11348d081e9637dd51b1))
|
|
483
|
+
- add headerClass to Card components ([7bc41be](https://github.com/themesberg/flowbite-svelte/commit/7bc41be268c8fd5c8d7d2cbe04b65bcafac408d1))
|
|
484
|
+
- add height to Input-field dropdown demo ([b43f8fc](https://github.com/themesberg/flowbite-svelte/commit/b43f8fcaa1142035c92251d845590d0f682db59b))
|
|
485
|
+
- add how to change dark mode color ([20e2fdc](https://github.com/themesberg/flowbite-svelte/commit/20e2fdc00d5301fd9051c89f9e6f2f89a63a5dcd))
|
|
486
|
+
- add href prop to jjagielka avatars and fix doc ([ea97577](https://github.com/themesberg/flowbite-svelte/commit/ea975779365d8a9d8b6fd2fe22e36d94636957f2))
|
|
487
|
+
- add html block to text page ([37e910a](https://github.com/themesberg/flowbite-svelte/commit/37e910ae269099865865580d419b8dd05dccb7a8))
|
|
488
|
+
- add icon page ([0f5c966](https://github.com/themesberg/flowbite-svelte/commit/0f5c96626954d4174d10b99f2934365628f2ec08))
|
|
489
|
+
- add id for anchor to small modal page ([5a6d1e1](https://github.com/themesberg/flowbite-svelte/commit/5a6d1e1ac65c6d9f97e8841ac0aaa5e5112d6f9b))
|
|
490
|
+
- add ignore to modal ([cedf9f1](https://github.com/themesberg/flowbite-svelte/commit/cedf9f18c60dc0f8db03b56e6c456a0121367f41))
|
|
491
|
+
- add indcator to index ([#535](https://github.com/themesberg/flowbite-svelte/issues/535)) ([f6fcef6](https://github.com/themesberg/flowbite-svelte/commit/f6fcef63638a5edcf4c3f8d2b965789d5ad85be1))
|
|
492
|
+
- add Input to form index ([00ec469](https://github.com/themesberg/flowbite-svelte/commit/00ec46911c2748fb9224cf91ae68b3dca1c02dd7))
|
|
493
|
+
- add justify-center ([f16e410](https://github.com/themesberg/flowbite-svelte/commit/f16e41001aee98e510a5cc88956fe40c11b83fe8))
|
|
494
|
+
- add layout to all modules ([81bb8f3](https://github.com/themesberg/flowbite-svelte/commit/81bb8f3363b618f467421197a60df57ff003dcdb))
|
|
495
|
+
- add listbox role to multiselect ([66ed95e](https://github.com/themesberg/flowbite-svelte/commit/66ed95e96bb5526b7b0a6840fa92ed9b51de1850))
|
|
496
|
+
- add main: index.js to package.json ([ce82350](https://github.com/themesberg/flowbite-svelte/commit/ce823503b9ef21abf5d751ae7f3606e26db3d2c7))
|
|
497
|
+
- add modalId prop for Modal ([b2f8187](https://github.com/themesberg/flowbite-svelte/commit/b2f81872f7b5d5fdf1cc6d33be06b66b197027c3))
|
|
498
|
+
- add modals/modalLayout.svelte ([3cd9321](https://github.com/themesberg/flowbite-svelte/commit/3cd93216e968d46c9b7dddce3a02d6cb5739ef84))
|
|
499
|
+
- add npm and node to packages.josn engines for vercel test ([52e61fa](https://github.com/themesberg/flowbite-svelte/commit/52e61faf5152817af07adbf7a4947b90f61ef7fb))
|
|
500
|
+
- add on:change to Input component requested by https://github.com/themesberg/flowbite-svelte/pull/127 ([af5e64d](https://github.com/themesberg/flowbite-svelte/commit/af5e64d84b45f424b6166ff4fa1b5634a6f387d0))
|
|
501
|
+
- add on:change to Radio ([074bd16](https://github.com/themesberg/flowbite-svelte/commit/074bd1677ced075971173c8abf1cf15387026efd))
|
|
502
|
+
- add option role with aria-selected ([d4d5561](https://github.com/themesberg/flowbite-svelte/commit/d4d556192d7c9baada02fb42fb2734afd1eed7f7))
|
|
503
|
+
- add other dir ([dc5e73f](https://github.com/themesberg/flowbite-svelte/commit/dc5e73feaa44c3fc7f020967f2e342b08bafccdf))
|
|
504
|
+
- add padding to w-full ([e1008c9](https://github.com/themesberg/flowbite-svelte/commit/e1008c9620f18b42664059595ae3fe1e421e097b))
|
|
505
|
+
- add pagination link and img ([eedf394](https://github.com/themesberg/flowbite-svelte/commit/eedf394e7eeccf15880722c59863f826c30ed018))
|
|
506
|
+
- add primary to button and starUpClass and starDownClass to rating ([#745](https://github.com/themesberg/flowbite-svelte/issues/745)) ([da09182](https://github.com/themesberg/flowbite-svelte/commit/da091824d218f04bf4127f43c51a056abf0855fc))
|
|
507
|
+
- add props to accordions/icon-accordion ([ad8b3d4](https://github.com/themesberg/flowbite-svelte/commit/ad8b3d42d620d73324f12bc0aca18d8cb9befce9))
|
|
508
|
+
- add props to Darkmode page ([be1081b](https://github.com/themesberg/flowbite-svelte/commit/be1081b46a200ec5b175c0abbb393f08bf66d8e9))
|
|
509
|
+
- add props to Darkmode page ([6038868](https://github.com/themesberg/flowbite-svelte/commit/6038868d9ca380433083e879a82ddca84252ea58))
|
|
510
|
+
- add props using script ([64a303b](https://github.com/themesberg/flowbite-svelte/commit/64a303b25bb90a315a4dd6eef80b100ad935a8a7))
|
|
511
|
+
- add props.class to Spinner ([3fe4f8b](https://github.com/themesberg/flowbite-svelte/commit/3fe4f8b20d7d89b2230b23904b0671cec900684d))
|
|
512
|
+
- add redirect to all other directories ([6ca9ce0](https://github.com/themesberg/flowbite-svelte/commit/6ca9ce0c38c2a417fc1bcd88520e609a0e1b2b0e))
|
|
513
|
+
- add References ([75fb9fc](https://github.com/themesberg/flowbite-svelte/commit/75fb9fca879212594e10a545b0b497e0932cf2ab))
|
|
514
|
+
- add rel external to sidebar menu datepicker ([d9693e8](https://github.com/themesberg/flowbite-svelte/commit/d9693e88528e27b408f4380f40e4a18c79aa169c))
|
|
515
|
+
- add rel=external and / to links to form page ([a237d18](https://github.com/themesberg/flowbite-svelte/commit/a237d1811eb1d6d6f3af545f109c71b8cadbd014))
|
|
516
|
+
- add relative class to Hr component ([d8c6fbf](https://github.com/themesberg/flowbite-svelte/commit/d8c6fbf367a43b7c13ea55a56ae9c9f0b94fa96e))
|
|
517
|
+
- add right round corner to FullWidthTabs ([adaf72f](https://github.com/themesberg/flowbite-svelte/commit/adaf72fd01499ec8e73cdac1cf1b50054a2d8ead))
|
|
518
|
+
- add role prop to frame ([53c816f](https://github.com/themesberg/flowbite-svelte/commit/53c816f4136a3efde1d5ea80f7908994a0e621c8))
|
|
519
|
+
- add role to drawer ([d40f812](https://github.com/themesberg/flowbite-svelte/commit/d40f8127265fc397bef0b8868c3771f4d47a2230))
|
|
520
|
+
- add role to sidebar menu svg ([1c3fd48](https://github.com/themesberg/flowbite-svelte/commit/1c3fd4843391581874a3852989cfe20219c8636f))
|
|
521
|
+
- add script to pull props ([c40cc64](https://github.com/themesberg/flowbite-svelte/commit/c40cc6413da61f2c101426bd23d896f6a311b59f))
|
|
522
|
+
- add shrink-0 to prevent toggle UI from shrinking on small screen sizes ([#885](https://github.com/themesberg/flowbite-svelte/issues/885)) ([81c65bd](https://github.com/themesberg/flowbite-svelte/commit/81c65bde22a3f12ad3980658a9e919c6fd92898d))
|
|
523
|
+
- add SidebarItem to Sidebar component ([a3a9654](https://github.com/themesberg/flowbite-svelte/commit/a3a965498817449cc90bdb20d9babe4f000e4466))
|
|
524
|
+
- add SimpleSearch to index.ts ([64a8f49](https://github.com/themesberg/flowbite-svelte/commit/64a8f496a22948874dac2695e96ba397e53026b5))
|
|
525
|
+
- add sitemap footer darkmode ([72fe322](https://github.com/themesberg/flowbite-svelte/commit/72fe3227e472187101c12ef89e10ada77624fc25))
|
|
526
|
+
- add slots.paragraph directive to Card component ([a839754](https://github.com/themesberg/flowbite-svelte/commit/a839754a0c08b8675fa7d5f349c7a150f19d3510))
|
|
527
|
+
- add svelte inspector and update dependencies ([aa530f4](https://github.com/themesberg/flowbite-svelte/commit/aa530f4f8c33493a949bf0c52c279c06042a1897))
|
|
528
|
+
- add svelte-ignore a11y-click-events ([b021c83](https://github.com/themesberg/flowbite-svelte/commit/b021c839282c9f1ab7f25418de1e1cedeb9ef433))
|
|
529
|
+
- add svelte-ignore a11y-click-events to Button compo ([1c960ee](https://github.com/themesberg/flowbite-svelte/commit/1c960ee7bbbdf4750bc784e5dd10117b85f54156))
|
|
530
|
+
- add Table color hover and example ([b49c139](https://github.com/themesberg/flowbite-svelte/commit/b49c139c6d09a4563d462b35a5c49da605006d79))
|
|
531
|
+
- add Tooltips and Forms to index ([1bdf941](https://github.com/themesberg/flowbite-svelte/commit/1bdf9411f8164e81fb24cd22e4fccb7b97d9c95c))
|
|
532
|
+
- add track to video component for A11y ([ef69a83](https://github.com/themesberg/flowbite-svelte/commit/ef69a83325ab11e4d3548e5e28033ae9e02bfe40))
|
|
533
|
+
- add two missing colors for <Table> ([#537](https://github.com/themesberg/flowbite-svelte/issues/537)) ([ac558fb](https://github.com/themesberg/flowbite-svelte/commit/ac558fb267d3aaa87773ca23b5104e4c231443ba))
|
|
534
|
+
- add types ./dist/index.d.ts to package.json ([7a88a7c](https://github.com/themesberg/flowbite-svelte/commit/7a88a7c052bf65c0944b4f16fb7e622f217711d5))
|
|
535
|
+
- add Typescript to List component ([208c539](https://github.com/themesberg/flowbite-svelte/commit/208c5392699e7a378ce3034f3c79f83bee001e8b))
|
|
536
|
+
- add ulClass and childClass in SidebarItem's SidebarDropdown ([2e0f46b](https://github.com/themesberg/flowbite-svelte/commit/2e0f46b6c65037e4a40bba688936af99839bd863))
|
|
537
|
+
- add user slot to navbar default and dropdown ([1c81c10](https://github.com/themesberg/flowbite-svelte/commit/1c81c108ada0b7240501087cf7a0a4c7a077b69d))
|
|
538
|
+
- Added events to BottomNavHeaderItem ([#941](https://github.com/themesberg/flowbite-svelte/issues/941)) ([b65f371](https://github.com/themesberg/flowbite-svelte/commit/b65f371702320d0388ac6a01e00fb13bac3ce246))
|
|
539
|
+
- Added events to BottomNavHeaderItem ([#941](https://github.com/themesberg/flowbite-svelte/issues/941)) ([ebdcbeb](https://github.com/themesberg/flowbite-svelte/commit/ebdcbebed7737b26ff0552e964149b8de05771d4))
|
|
540
|
+
- Added z-50 to dropdown container so it always stays on top ([#942](https://github.com/themesberg/flowbite-svelte/issues/942)) ([e3de343](https://github.com/themesberg/flowbite-svelte/commit/e3de343fae29257e8588c8515eaaa5e6521a2488))
|
|
541
|
+
- Alert component ([2d828a2](https://github.com/themesberg/flowbite-svelte/commit/2d828a23e39dbd87bc6e5d788aa4e516386d2bf5))
|
|
542
|
+
- alert more tweaks ([444b340](https://github.com/themesberg/flowbite-svelte/commit/444b340f3a211f02572675b94624da4ae5d90c63))
|
|
543
|
+
- alert props ([#760](https://github.com/themesberg/flowbite-svelte/issues/760)) ([90c3055](https://github.com/themesberg/flowbite-svelte/commit/90c305596f07c4c9da970dee3ec78a5fff3e83f8))
|
|
544
|
+
- alert tweaks ([0c93b3c](https://github.com/themesberg/flowbite-svelte/commit/0c93b3c27d8911cd4709f78c554f68e524cc06d4))
|
|
545
|
+
- Alert, GradientButton and Footer ([ccd2954](https://github.com/themesberg/flowbite-svelte/commit/ccd2954c444681e50a8b065ce25f2d3b484f7faa))
|
|
546
|
+
- alerts dismissable button color ([779e863](https://github.com/themesberg/flowbite-svelte/commit/779e863a6b321ea84ae65484b05ed6cd7d73ccd9))
|
|
547
|
+
- alerts with list color removal ([f940441](https://github.com/themesberg/flowbite-svelte/commit/f940441098e4f033b6dd405d0cb774e6d8b5030e))
|
|
548
|
+
- app.css restored ([e40bc80](https://github.com/themesberg/flowbite-svelte/commit/e40bc80cace759b434bc889c1d143533de032345))
|
|
549
|
+
- auth components ([3a846cd](https://github.com/themesberg/flowbite-svelte/commit/3a846cd5cc45cd415e2a4d30f2cea22c0b29ebf6))
|
|
550
|
+
- autoclose=false (default) ([#417](https://github.com/themesberg/flowbite-svelte/issues/417)) ([32c1782](https://github.com/themesberg/flowbite-svelte/commit/32c1782ee8c8aae7b2b9c4e1d7bafe3adf1e467a))
|
|
551
|
+
- avatar default href ([#462](https://github.com/themesberg/flowbite-svelte/issues/462)) ([1ad8999](https://github.com/themesberg/flowbite-svelte/commit/1ad899993ae3cf1f18e975766549718dc65ed50b))
|
|
552
|
+
- avatar dot alignment ([2273c0c](https://github.com/themesberg/flowbite-svelte/commit/2273c0ceb82cc634558e7e88aff295c722d73c9f))
|
|
553
|
+
- avatar placholder missing href ([#475](https://github.com/themesberg/flowbite-svelte/issues/475)) ([6ad52e6](https://github.com/themesberg/flowbite-svelte/commit/6ad52e6c121599758a5c6bf4079bdffcd3199421))
|
|
554
|
+
- Avatar tooltip example ([ff7c1af](https://github.com/themesberg/flowbite-svelte/commit/ff7c1af20306609f77831ff1d2632700a9f596da))
|
|
555
|
+
- background context added ([52c8dd5](https://github.com/themesberg/flowbite-svelte/commit/52c8dd5693f3d890e7b875ae1b0435c5a7313876))
|
|
556
|
+
- bind:files for fileinput ([#474](https://github.com/themesberg/flowbite-svelte/issues/474)) ([585ba09](https://github.com/themesberg/flowbite-svelte/commit/585ba09f210bcb6b11a43ef005b742e999890dbf))
|
|
557
|
+
- blockquote page formating ([1641d45](https://github.com/themesberg/flowbite-svelte/commit/1641d45bdc032c01cd201967bf362d9f8a19a422))
|
|
558
|
+
- border color on popup examples ([#969](https://github.com/themesberg/flowbite-svelte/issues/969)) ([049d1a3](https://github.com/themesberg/flowbite-svelte/commit/049d1a3604d1b9c44719f9b998c611b1ea633073))
|
|
559
|
+
- breadcrumb and add rel=external to pages in the forms dir. ([509d72a](https://github.com/themesberg/flowbite-svelte/commit/509d72ae703a0d844653da87aea9119a90cc1018))
|
|
560
|
+
- BREAKING CHANGE for timeline components ([8b30105](https://github.com/themesberg/flowbite-svelte/commit/8b30105060d150d632ea6fbfac8e1f5639f82546))
|
|
561
|
+
- button size ([#623](https://github.com/themesberg/flowbite-svelte/issues/623)) ([f845373](https://github.com/themesberg/flowbite-svelte/commit/f845373bb75d4a908386753049174b526cebf5dd))
|
|
562
|
+
- buttongroup divider ([f5bedaf](https://github.com/themesberg/flowbite-svelte/commit/f5bedafa9a0b36f4a42a54e8c37593d7ee9d8916))
|
|
563
|
+
- buttongroup, ctacard types update. ([4a2d3aa](https://github.com/themesberg/flowbite-svelte/commit/4a2d3aa9a8269b198faf996132d96437e39bff17))
|
|
564
|
+
- buttons - transparency for outline ([6ae3d0f](https://github.com/themesberg/flowbite-svelte/commit/6ae3d0ff767e307ae5a4968f7b3c9a52dbb324f4))
|
|
565
|
+
- buttons - update sizes and force round ([22284ad](https://github.com/themesberg/flowbite-svelte/commit/22284ada79396136f8dce288de87112e74e6f82a))
|
|
566
|
+
- buttons fine tuning ([353f631](https://github.com/themesberg/flowbite-svelte/commit/353f6312557fbef802e4e0b61d3638ab4190d2e3))
|
|
567
|
+
- buttons fine tuning ([9f4c927](https://github.com/themesberg/flowbite-svelte/commit/9f4c927fb8303e7e65163ecd6413cdb834d1a4f3))
|
|
568
|
+
- buttons redesign ([c0316ff](https://github.com/themesberg/flowbite-svelte/commit/c0316ff61fde6bf52166e3f0c0b30dacad4941c0))
|
|
569
|
+
- call updatePosition and floatingMiddleware functions in onMount ([b905101](https://github.com/themesberg/flowbite-svelte/commit/b905101f9cdfc9573e455200a2e28ad5766705e1))
|
|
570
|
+
- card - restProps ([#373](https://github.com/themesberg/flowbite-svelte/issues/373)) ([a7331fc](https://github.com/themesberg/flowbite-svelte/commit/a7331fcd5915e6142a99859113776ce74a72529a))
|
|
571
|
+
- card breadcrumb_title ([1ac4820](https://github.com/themesberg/flowbite-svelte/commit/1ac4820ac2553a3c812fced3b9d627e56a9d5ec2))
|
|
572
|
+
- card padding-x in mobile view ([#358](https://github.com/themesberg/flowbite-svelte/issues/358)) ([639457f](https://github.com/themesberg/flowbite-svelte/commit/639457f5efc54f38fda9288aa9cf017c2d0f883d))
|
|
573
|
+
- cards layout on index.md pages ([2080f8e](https://github.com/themesberg/flowbite-svelte/commit/2080f8ee29163a8ad5208f37c95ebf498be92c39))
|
|
574
|
+
- cards/index.md, buttons ([9b2ca39](https://github.com/themesberg/flowbite-svelte/commit/9b2ca3914681439e667b5b6026f6c6e22b56b6fd))
|
|
575
|
+
- change a to A component ([dc92c3f](https://github.com/themesberg/flowbite-svelte/commit/dc92c3f699986f6679805350f3a88effc0e2a0c8))
|
|
576
|
+
- change a to A component ([33a8015](https://github.com/themesberg/flowbite-svelte/commit/33a8015ae3e7b3969359bcd67ba47bb53c7f7dad))
|
|
577
|
+
- change BreadcrumbItem home for all pages ([f5f895f](https://github.com/themesberg/flowbite-svelte/commit/f5f895f6157b03e435975c5735329f8dfc984485))
|
|
578
|
+
- change btnType to type in Button components ([310d2d8](https://github.com/themesberg/flowbite-svelte/commit/310d2d8f5bd00f3339b59749e79c67d39717f652))
|
|
579
|
+
- change from ./package/index.js to index.js for main in package.json ([785fe2c](https://github.com/themesberg/flowbite-svelte/commit/785fe2cd88feded7a2872e85248c84b001c1e3b4))
|
|
580
|
+
- change from # to / for href ([b79fd81](https://github.com/themesberg/flowbite-svelte/commit/b79fd8112d2fb15657058dd0184b113228d8a6aa))
|
|
581
|
+
- change from const to let navDivClass ([ffdcd9f](https://github.com/themesberg/flowbite-svelte/commit/ffdcd9fa2cde37a13103e493905d6076f61e5df6))
|
|
582
|
+
- change from fly to fade and a longer duration for Accordion custom transitions ([3d105f4](https://github.com/themesberg/flowbite-svelte/commit/3d105f4783dec6f3c42677a6aa151aac4e334f72))
|
|
583
|
+
- change from import { CloseButton } from $lib to import CloseButton from "../utils/CloseButton.svelte" in lib dir ([4eb4346](https://github.com/themesberg/flowbite-svelte/commit/4eb4346a2c4679d58c00309e0cb1a28304888a72))
|
|
584
|
+
- change from link to href in ButtonGroup components. ([b84e765](https://github.com/themesberg/flowbite-svelte/commit/b84e765d3a216c69a84589ec5da47b5521932b89))
|
|
585
|
+
- change from sitename to name in Navbar ([bee6d24](https://github.com/themesberg/flowbite-svelte/commit/bee6d24b79cd607c3a621f3651a285339ff326d9))
|
|
586
|
+
- change function clickOutside to arrow function ([71e71e0](https://github.com/themesberg/flowbite-svelte/commit/71e71e0e482ad9939f9d135b1608b5cc8d31d899))
|
|
587
|
+
- change href=# to href=/ in popover page ([f885a92](https://github.com/themesberg/flowbite-svelte/commit/f885a924706e477349c975641fc6fba0b4df45e5))
|
|
588
|
+
- change js to ts and add ts in index.js ([7b3bb20](https://github.com/themesberg/flowbite-svelte/commit/7b3bb206f2db09efc3e6c4d3d85117a1d6946a4e))
|
|
589
|
+
- change ml-2 after get access to ml-1 ([b8ffc2c](https://github.com/themesberg/flowbite-svelte/commit/b8ffc2ca5016737da2d40ed5b83d4ef5fdc07e08))
|
|
590
|
+
- change mr-4 to mr-2 in SidebarDropdown component ([2961555](https://github.com/themesberg/flowbite-svelte/commit/296155587bf2fa35d081b5373ad941a804d4170a))
|
|
591
|
+
- change option role for multiselect ([601945f](https://github.com/themesberg/flowbite-svelte/commit/601945f3772e565eb0d099ac38495f6fb40d7afc))
|
|
592
|
+
- change p tag from text-base to text-lg ([2372629](https://github.com/themesberg/flowbite-svelte/commit/237262993ae65f79088d8442bd09db998145a132))
|
|
593
|
+
- change p tag with text-lg. remove my-4 from div tag ([3c26640](https://github.com/themesberg/flowbite-svelte/commit/3c2664005c4f2a4bc6e3308a3d54b4a5fc2de79a))
|
|
594
|
+
- change package.json>engines>node to 16.0.0 since Verce does not accept. But use local node v16.16.0 for playwright test ([08130e9](https://github.com/themesberg/flowbite-svelte/commit/08130e988c1243b6a248737ed604223c694d5981))
|
|
595
|
+
- change prop btnType and btnColor ([2580c50](https://github.com/themesberg/flowbite-svelte/commit/2580c50584e1193dd901c5614fa60f780271dc37))
|
|
596
|
+
- change prop type to btnType in all button components ([c86c097](https://github.com/themesberg/flowbite-svelte/commit/c86c097882ab8d0a2d656f3f5376c6c2ffeb7a7b))
|
|
597
|
+
- change svelte to html in md file ([97adbbf](https://github.com/themesberg/flowbite-svelte/commit/97adbbf9a0070b5d8d3ee0604222e70d3d14df67))
|
|
598
|
+
- change svelte-kit sync && svelte-package to vite build ([cd7cd5e](https://github.com/themesberg/flowbite-svelte/commit/cd7cd5e971ba4f6c547984daf3a5f37656343b28))
|
|
599
|
+
- change ts to js ([8e284dc](https://github.com/themesberg/flowbite-svelte/commit/8e284dc2b3d81b674e95fdbe14aafbb04f21df11))
|
|
600
|
+
- change ts to js and removed types from modalStores and dropdownStores ([89e88e2](https://github.com/themesberg/flowbite-svelte/commit/89e88e2a53b4a791b608459dd05bafff6f81f2ae))
|
|
601
|
+
- change ts to js for svelte/store files ([625b285](https://github.com/themesberg/flowbite-svelte/commit/625b285c9ed4bc807774c20b9385fe8d8c59c6c5))
|
|
602
|
+
- change ts to js for tabStore and changed file name to tabStores ([f46efd4](https://github.com/themesberg/flowbite-svelte/commit/f46efd46b64126dcadc331bd57b881dc32a0c13c))
|
|
603
|
+
- change type string to typeof SvelteComponent ([277c3e2](https://github.com/themesberg/flowbite-svelte/commit/277c3e24201088aa051726ae16f2e12f66a8a69e))
|
|
604
|
+
- change type to buttonType in button components. Added auth components. ([1078e44](https://github.com/themesberg/flowbite-svelte/commit/1078e44cc21703fd8d150401e40f551ce21cf4f1))
|
|
605
|
+
- change width limit to >=1024 in Responsive component ([e95c10f](https://github.com/themesberg/flowbite-svelte/commit/e95c10f59422b18408a73c7780767371420cb80e))
|
|
606
|
+
- change z-50 to z-10 for DropdownDefault ([71d4640](https://github.com/themesberg/flowbite-svelte/commit/71d4640e613c671e11c972d8ceee3721b6c568cc))
|
|
607
|
+
- checkbox group ([#427](https://github.com/themesberg/flowbite-svelte/issues/427)) ([58c6660](https://github.com/themesberg/flowbite-svelte/commit/58c66600abcb943c730dbd64e6e4ca920bc06f8e))
|
|
608
|
+
- checkbox initial checked ([#434](https://github.com/themesberg/flowbite-svelte/issues/434)) ([43663cf](https://github.com/themesberg/flowbite-svelte/commit/43663cf165f249c7e3fa7e7dc8ccfaccc7e467a6))
|
|
609
|
+
- Checkbox on:click position ([cfb1c65](https://github.com/themesberg/flowbite-svelte/commit/cfb1c658ae971bb689cd4e01f797ccc5c11db991))
|
|
610
|
+
- Checkbox spacing ([9f989d7](https://github.com/themesberg/flowbite-svelte/commit/9f989d7c0f59cacab8673d05e0abe27cc5906d42))
|
|
611
|
+
- chevronup thickness ([dc9016b](https://github.com/themesberg/flowbite-svelte/commit/dc9016bfce4a9e664a1bf6fa79a747764b35f911))
|
|
612
|
+
- chnage footer pages from link to href ([6762872](https://github.com/themesberg/flowbite-svelte/commit/67628722c684000248ad02fc778b14eb9dc66f0f))
|
|
613
|
+
- clean up & remove ExampleDiv, GitHubSource, and CompoDescription ([#639](https://github.com/themesberg/flowbite-svelte/issues/639)) ([113df27](https://github.com/themesberg/flowbite-svelte/commit/113df2716cde7f0c3e0c7aa904bafdc3ece15cd1))
|
|
614
|
+
- clean up import from utils for docs ([b50126d](https://github.com/themesberg/flowbite-svelte/commit/b50126d2f78e7613e48008b46c0bd77cdc7471fa))
|
|
615
|
+
- clean up ref ([9e8427b](https://github.com/themesberg/flowbite-svelte/commit/9e8427bdbe7ee397a8c5c123a75e48abca298781))
|
|
616
|
+
- color flicker when changing theme using DarkMode ([#353](https://github.com/themesberg/flowbite-svelte/issues/353)) ([7e1daf1](https://github.com/themesberg/flowbite-svelte/commit/7e1daf14b1b91b0f3c0dac55c38e28fee42c4878))
|
|
617
|
+
- commit after reset ([c3ee849](https://github.com/themesberg/flowbite-svelte/commit/c3ee8494fffac749a1e32cbeba1cf722ba6cb578))
|
|
618
|
+
- copy from flowbite-svelte-new ([5a400fc](https://github.com/themesberg/flowbite-svelte/commit/5a400fce508c53e57eec6f5e40ba5c468ef79481))
|
|
619
|
+
- correction in using style and color ([7ebbc5f](https://github.com/themesberg/flowbite-svelte/commit/7ebbc5fcac75fea0f9c19c51b6ea5dc8dfb241c8))
|
|
620
|
+
- create Coinbase, Fortmatic, Metamask, OperaWallet, and WalletConnect component ([f8eabc5](https://github.com/themesberg/flowbite-svelte/commit/f8eabc5b23b8c0d9fab75deca393858952406660))
|
|
621
|
+
- create icon slot for Alert so that users can add svg or svelte component ([45244ec](https://github.com/themesberg/flowbite-svelte/commit/45244ec05f99298d150751209980dce519873163))
|
|
622
|
+
- create MetaTag component ([#406](https://github.com/themesberg/flowbite-svelte/issues/406)) ([4d09e4a](https://github.com/themesberg/flowbite-svelte/commit/4d09e4acd14e04a07b3c01408de1be718b4eef1e))
|
|
623
|
+
- create new props files ([0a6fd33](https://github.com/themesberg/flowbite-svelte/commit/0a6fd334321bbedd2eecebb5e4f2456ddb19fd3b))
|
|
624
|
+
- CTA should have tinted background ([#708](https://github.com/themesberg/flowbite-svelte/issues/708)) ([ecb5c4c](https://github.com/themesberg/flowbite-svelte/commit/ecb5c4c12db278fccb8c02b84298ba2ef90b18df))
|
|
625
|
+
- dark text color for input validation ([#513](https://github.com/themesberg/flowbite-svelte/issues/513)) ([7b145d6](https://github.com/themesberg/flowbite-svelte/commit/7b145d68f224151fa45c2b651a2b49351e13cf67))
|
|
626
|
+
- dark-mode in examples ([#683](https://github.com/themesberg/flowbite-svelte/issues/683)) ([cde56c4](https://github.com/themesberg/flowbite-svelte/commit/cde56c44a9b20e806655f427fff32990db03f0f3))
|
|
627
|
+
- darkmode flicker ([#811](https://github.com/themesberg/flowbite-svelte/issues/811)) ([94b1f6b](https://github.com/themesberg/flowbite-svelte/commit/94b1f6bd9fb7341a9b3791633daf2217e2c3017d))
|
|
628
|
+
- darkmode page typo ([367311d](https://github.com/themesberg/flowbite-svelte/commit/367311d0adf9b6011d5510728a17aa58625afdb0))
|
|
629
|
+
- demo page bugs ([542b88a](https://github.com/themesberg/flowbite-svelte/commit/542b88a386fdc34acf904b589215441e65b8fb69))
|
|
630
|
+
- demo page issues ([268db3c](https://github.com/themesberg/flowbite-svelte/commit/268db3ca3db363ee8bbd6eec69d9f622350050ee))
|
|
631
|
+
- demo page text dark mode, dropdown error ([fa46244](https://github.com/themesberg/flowbite-svelte/commit/fa46244d3871bdc5a9cd5bed0f4a3e8b0fc6d3fd))
|
|
632
|
+
- dependencies update ([#685](https://github.com/themesberg/flowbite-svelte/issues/685)) ([f017a73](https://github.com/themesberg/flowbite-svelte/commit/f017a738fc38633e8b95ea135b8438b7f67f8554))
|
|
633
|
+
- DeviceMockup class ([94064d0](https://github.com/themesberg/flowbite-svelte/commit/94064d0c28766118db639e5d61181dff58e6756d))
|
|
634
|
+
- doc footer update ([4507cb6](https://github.com/themesberg/flowbite-svelte/commit/4507cb6cc8a4f2c2d50c455b81314fe9eb50e61a))
|
|
635
|
+
- docs corrections ([f208323](https://github.com/themesberg/flowbite-svelte/commit/f208323ac1457b88572aaae37531e6b3da1055de))
|
|
636
|
+
- docs corrections 2 ([5adb4d8](https://github.com/themesberg/flowbite-svelte/commit/5adb4d816591d7bc9aff2e549fc364c80e650b4b))
|
|
637
|
+
- docs fixes due to dropdown api change ([869f8d7](https://github.com/themesberg/flowbite-svelte/commit/869f8d7bdea3a7ba97702e31b52f0e33fce3c911))
|
|
638
|
+
- docs for radio ([add38b2](https://github.com/themesberg/flowbite-svelte/commit/add38b26fd4669a591916b7fa42e107868cc90a1))
|
|
639
|
+
- docs typo - tooltip type ([#956](https://github.com/themesberg/flowbite-svelte/issues/956)) ([cde7b8e](https://github.com/themesberg/flowbite-svelte/commit/cde7b8e9a5c8cbccfa6d4f6ed0c59e9aa8ea6f6f))
|
|
640
|
+
- documentation typos ([942c3b2](https://github.com/themesberg/flowbite-svelte/commit/942c3b2a2624aec3ba4d34cfab2c1098d41cd362))
|
|
641
|
+
- done type check for all pages ([d91b018](https://github.com/themesberg/flowbite-svelte/commit/d91b018c3a66a6ac4cef2317651e1821083ab033))
|
|
642
|
+
- double scrollbar in docs ([#447](https://github.com/themesberg/flowbite-svelte/issues/447)) ([75efab3](https://github.com/themesberg/flowbite-svelte/commit/75efab37b6057469a35ec592c659438c3cf8047c))
|
|
643
|
+
- Drawer placement right ([4fe9283](https://github.com/themesberg/flowbite-svelte/commit/4fe928380f4bb95c59e311e7ccc3a8ae49fda89d))
|
|
644
|
+
- Dropdown has a new structure ([2c5d7b0](https://github.com/themesberg/flowbite-svelte/commit/2c5d7b0a7ac6e93074d11c986835e1f24dd5e00e))
|
|
645
|
+
- dropdown open/close api ([d2aa6f7](https://github.com/themesberg/flowbite-svelte/commit/d2aa6f71e7e804d474eb46e58030097d9bd9962f))
|
|
646
|
+
- dropdown open/close api - docs ([f299c28](https://github.com/themesberg/flowbite-svelte/commit/f299c284a4ef3c9539e17677b815f60dd8d1e6f2))
|
|
647
|
+
- dropdown page ([d3d4827](https://github.com/themesberg/flowbite-svelte/commit/d3d48276e27cc18300de1b1cc2a26ce05de733d8))
|
|
648
|
+
- Dropdown page ([30bb2cf](https://github.com/themesberg/flowbite-svelte/commit/30bb2cf9cbbe2ec9514ce415c43b6555747b541d))
|
|
649
|
+
- dropdown page add dark:text-white to MenuButton and change to color:green for Avatar ([900feca](https://github.com/themesberg/flowbite-svelte/commit/900feca1d8f4e617821c6a4ccf3687839a302cf0))
|
|
650
|
+
- dropdown search ([4416a31](https://github.com/themesberg/flowbite-svelte/commit/4416a312756331f6dd04b1d5fe5dd61b764fd38d))
|
|
651
|
+
- DropdownItem as li only when childe of ul ([add2f16](https://github.com/themesberg/flowbite-svelte/commit/add2f166883df2c237197f3327ad331dd0a1617d))
|
|
652
|
+
- **DropdownItem:** remove redundant part after else ([4182d5c](https://github.com/themesberg/flowbite-svelte/commit/4182d5c970b3a683b47e228f4881585f4ca77d3b))
|
|
653
|
+
- dropdowns events docs ([a6d86b6](https://github.com/themesberg/flowbite-svelte/commit/a6d86b671a5c481288a20c1fe68cfcfe0faea880))
|
|
654
|
+
- dropdowns tweaks ([ad797ca](https://github.com/themesberg/flowbite-svelte/commit/ad797ca4a4a60abd7723b3b1415e70fb6e1328a6))
|
|
655
|
+
- **dropzone:** fixes dragging file over the input ([#919](https://github.com/themesberg/flowbite-svelte/issues/919)) ([5f02261](https://github.com/themesberg/flowbite-svelte/commit/5f02261a36a22e48e4f0fa3c5a0fe47f65eb2ccc))
|
|
656
|
+
- duplicated lines in app.postcss ([1eb255a](https://github.com/themesberg/flowbite-svelte/commit/1eb255a30f57213eaa7c8d3e14cb7ac704c25f82))
|
|
657
|
+
- enable scrolling in modals (fixes [#23](https://github.com/themesberg/flowbite-svelte/issues/23)) ([8e60319](https://github.com/themesberg/flowbite-svelte/commit/8e603198988a3a03a56414f4e26143bb54ff0c92))
|
|
658
|
+
- error fix for deployment ([be684a8](https://github.com/themesberg/flowbite-svelte/commit/be684a8057c08a7c07f3f6c370114d008dc2182e))
|
|
659
|
+
- event forwarding for numberinput ([#596](https://github.com/themesberg/flowbite-svelte/issues/596)) ([5d67a83](https://github.com/themesberg/flowbite-svelte/commit/5d67a833aa6ff769b85ca79c52b29de56690a2aa))
|
|
660
|
+
- events for gradient button ([#967](https://github.com/themesberg/flowbite-svelte/issues/967)) ([fda337b](https://github.com/themesberg/flowbite-svelte/commit/fda337ba28ad6081bb15ab93108b699d8ab001c0))
|
|
661
|
+
- export dropdownIdStore in index.js ([4c897d9](https://github.com/themesberg/flowbite-svelte/commit/4c897d973a88e7d1863e28c49a1675110649252f))
|
|
662
|
+
- export dropdownStores in index.js ([f4b7f6c](https://github.com/themesberg/flowbite-svelte/commit/f4b7f6c6e5fcc118e5279ed61e017477c657fa0b))
|
|
663
|
+
- export slide params ([#516](https://github.com/themesberg/flowbite-svelte/issues/516)) ([c8dd81d](https://github.com/themesberg/flowbite-svelte/commit/c8dd81d5493b908a903648104f0371ac143c1167))
|
|
664
|
+
- few minor tweaks ([#541](https://github.com/themesberg/flowbite-svelte/issues/541)) ([2289e4d](https://github.com/themesberg/flowbite-svelte/commit/2289e4d1f83f272db5c092cd09469147a4878ff8))
|
|
665
|
+
- few more to 'npm run check' ([#738](https://github.com/themesberg/flowbite-svelte/issues/738)) ([ae33d4a](https://github.com/themesberg/flowbite-svelte/commit/ae33d4ab5d0cdc6649295e3f3fe1ae0063fe86d3))
|
|
666
|
+
- field name change for ListGroupItemType ([da93d46](https://github.com/themesberg/flowbite-svelte/commit/da93d460c864e0a94f803420f73dbf976e185fee))
|
|
667
|
+
- fix template literal in DropdownNavbar component ([f4946df](https://github.com/themesberg/flowbite-svelte/commit/f4946df68292481359521ac090bf33e7c0808ba4))
|
|
668
|
+
- fixing the tab page layout problem ([bc3b7bf](https://github.com/themesberg/flowbite-svelte/commit/bc3b7bf32100abbbab3fede7fa6a912ff81d00f6))
|
|
669
|
+
- flitering ([#370](https://github.com/themesberg/flowbite-svelte/issues/370)) ([e8ac071](https://github.com/themesberg/flowbite-svelte/commit/e8ac07134518a373949da3fadc4f63c656fe2d59))
|
|
670
|
+
- floatinginput type changes ([#436](https://github.com/themesberg/flowbite-svelte/issues/436)) ([5af9ecf](https://github.com/themesberg/flowbite-svelte/commit/5af9ecf598800e4cbcf27e413ba0b63d82926219))
|
|
671
|
+
- fluid setting for Navbar ([#563](https://github.com/themesberg/flowbite-svelte/issues/563)) ([4311bbb](https://github.com/themesberg/flowbite-svelte/commit/4311bbba0bd590d66b388f6c0f8e688b1bd85a1c))
|
|
672
|
+
- folder names without s and update tests ([4e9c9ce](https://github.com/themesberg/flowbite-svelte/commit/4e9c9ce69e06b1a8e4394c3920c75606894c06d3))
|
|
673
|
+
- Footer components update. ([6434844](https://github.com/themesberg/flowbite-svelte/commit/64348445b08aebdf2bd992deb801845b538a62e1))
|
|
674
|
+
- FooterCopyright remove space after {by} ([#578](https://github.com/themesberg/flowbite-svelte/issues/578)) ([da7a681](https://github.com/themesberg/flowbite-svelte/commit/da7a681a828b1eeab9bebedcf60ad24d55a5e7f6))
|
|
675
|
+
- for [#165](https://github.com/themesberg/flowbite-svelte/issues/165) and [#170](https://github.com/themesberg/flowbite-svelte/issues/170) and changed $$restProps.class to $$props.class ([99399b8](https://github.com/themesberg/flowbite-svelte/commit/99399b8aebdec68bc5c52641ed768dc601fe36a2))
|
|
676
|
+
- forms components moved all export variables before function ([13d518b](https://github.com/themesberg/flowbite-svelte/commit/13d518b58f5aa09a0dcb4de439860afb1d84e3d0))
|
|
677
|
+
- forward input event ([#627](https://github.com/themesberg/flowbite-svelte/issues/627)) ([22d20db](https://github.com/themesberg/flowbite-svelte/commit/22d20dbb6845e5ed0d7188e304c406a5c8cb8758))
|
|
678
|
+
- generate a unique id for each star so fill can be different ([#793](https://github.com/themesberg/flowbite-svelte/issues/793)) ([cf59ed2](https://github.com/themesberg/flowbite-svelte/commit/cf59ed251bbbf17b3172decd5b74535499cef452))
|
|
679
|
+
- getting started page update ([fe95d00](https://github.com/themesberg/flowbite-svelte/commit/fe95d00d767b742d8307b17fdfb57e994bdd2300))
|
|
680
|
+
- git reset --hard 344845b4 and update getting-started ([a941ed8](https://github.com/themesberg/flowbite-svelte/commit/a941ed8169872a39bd37e809db718f09156fbbc2))
|
|
681
|
+
- github issue template ([b6b8fd4](https://github.com/themesberg/flowbite-svelte/commit/b6b8fd46aa7491e29935fe62ca5dc617513ee5ee))
|
|
682
|
+
- github issue template 2 ([343c102](https://github.com/themesberg/flowbite-svelte/commit/343c102ee1901c8d14fc75ab06a0fe28ac594a98))
|
|
683
|
+
- github issue template 3 ([e8c6a1b](https://github.com/themesberg/flowbite-svelte/commit/e8c6a1b7d148d0137ca0e395bf5904e3a2ed408c))
|
|
684
|
+
- github issue template 4 ([5565625](https://github.com/themesberg/flowbite-svelte/commit/5565625e343c197bd4d903878a2955eaae08b788))
|
|
685
|
+
- github workflow comment out pnpm cache ([5284b8c](https://github.com/themesberg/flowbite-svelte/commit/5284b8c3c1b43b7f7d28f0800dc2cddcc0ff9d9c))
|
|
686
|
+
- GitHubSource change tree to blob ([69f0e15](https://github.com/themesberg/flowbite-svelte/commit/69f0e15b7dcafa8018e23ee33c8c7e2bb2e8ebd6))
|
|
687
|
+
- GitHubSource links ([8d4e976](https://github.com/themesberg/flowbite-svelte/commit/8d4e9760255daf81546dca91d0abb0843a1a2a5c))
|
|
688
|
+
- h-10 w-10 to h-8 w-8. ([071e018](https://github.com/themesberg/flowbite-svelte/commit/071e018be6cb508521b536f9303e5c6c889f112e))
|
|
689
|
+
- h1 and h2 ([2c5be7c](https://github.com/themesberg/flowbite-svelte/commit/2c5be7cf97d9f330773b90123f878a1349e7cdf8))
|
|
690
|
+
- h3 change, modal page update ([945762f](https://github.com/themesberg/flowbite-svelte/commit/945762f325736ac316a7d1cb68d546f0c8acd982))
|
|
691
|
+
- header blocking anchor links ([af6d2d6](https://github.com/themesberg/flowbite-svelte/commit/af6d2d6eb9bb630e58e76fd214f8a14f0435dc2f))
|
|
692
|
+
- Heading and P update ([2313e3e](https://github.com/themesberg/flowbite-svelte/commit/2313e3e5ecb38ee69839a26b12b7c41cc099f75e))
|
|
693
|
+
- Heading to the original code ([5604da5](https://github.com/themesberg/flowbite-svelte/commit/5604da5f348420f8878e44d591e9a8704b23e4a0))
|
|
694
|
+
- heros update ([89b8755](https://github.com/themesberg/flowbite-svelte/commit/89b87555fee018361058d888916b8e1cb774c145))
|
|
695
|
+
- homepage ([dedf355](https://github.com/themesberg/flowbite-svelte/commit/dedf355835cf8b60aeb68a94b0e47a2034bea358))
|
|
696
|
+
- hover on gradient outline button ([#742](https://github.com/themesberg/flowbite-svelte/issues/742)) ([6d7da15](https://github.com/themesberg/flowbite-svelte/commit/6d7da15de9d5a3f9e2b85a05944d148967019bcf))
|
|
697
|
+
- Htwo for typography pages ([0921539](https://github.com/themesberg/flowbite-svelte/commit/0921539d06e54f89d9e9dd52c70cdbc81b62dd3e))
|
|
698
|
+
- Iconinput click handler example ([2f5afc7](https://github.com/themesberg/flowbite-svelte/commit/2f5afc7554a7bb43d231cc39001ea31b9deafd1c))
|
|
699
|
+
- Iconinput has unused export property value when I install it ([b19afc9](https://github.com/themesberg/flowbite-svelte/commit/b19afc9284aa2c92c5a15b89de9dc9111652f0f7))
|
|
700
|
+
- image path. ([003e80f](https://github.com/themesberg/flowbite-svelte/commit/003e80f6215bc1a1b7766574983b5314e885ef3e))
|
|
701
|
+
- improved focustrap ([#354](https://github.com/themesberg/flowbite-svelte/issues/354)) ([fb17cd3](https://github.com/themesberg/flowbite-svelte/commit/fb17cd357e748df4b1d95060bcbecf7b406d3f03))
|
|
702
|
+
- incorrect aria-expanded in <h2> ([#604](https://github.com/themesberg/flowbite-svelte/issues/604)) ([f562e91](https://github.com/themesberg/flowbite-svelte/commit/f562e91e42fae6e76c5d042e6b19b34f7c0d7692))
|
|
703
|
+
- index blocks names, e.g. Tooltips to Tooltip ([5f902b2](https://github.com/themesberg/flowbite-svelte/commit/5f902b22043838a3e3413679632c9516ea81b906))
|
|
704
|
+
- index button colors ([3a65ce3](https://github.com/themesberg/flowbite-svelte/commit/3a65ce318248fd2d81585119723dbdc8fec3ec0c))
|
|
705
|
+
- index page add padding px-8 ([01d29a1](https://github.com/themesberg/flowbite-svelte/commit/01d29a17883a8ba94fb4370aafb398a97b1adee3))
|
|
706
|
+
- index page space ([6ab9a19](https://github.com/themesberg/flowbite-svelte/commit/6ab9a19e004fc19ba3bd696acedbc5bbc0ced966))
|
|
707
|
+
- index page. ([bb71658](https://github.com/themesberg/flowbite-svelte/commit/bb71658bc5852218ba563b66e0a18737314e3807))
|
|
708
|
+
- index page. ([54928dd](https://github.com/themesberg/flowbite-svelte/commit/54928dd868f0c3425f09e794fccf0238afa7347e))
|
|
709
|
+
- index page. ([0f0f2c3](https://github.com/themesberg/flowbite-svelte/commit/0f0f2c32468f5d7faa304409f30714b8a9c8c8bd))
|
|
710
|
+
- initial dark mode ([#924](https://github.com/themesberg/flowbite-svelte/issues/924)) ([103bf6a](https://github.com/themesberg/flowbite-svelte/commit/103bf6a7ab1eb24003c09ac93fff574d4ae170ad))
|
|
711
|
+
- initial refresh fix ([#693](https://github.com/themesberg/flowbite-svelte/issues/693)) ([7479934](https://github.com/themesberg/flowbite-svelte/commit/7479934dc83bdbe0197fac7c0dbe7d817bf1d6e5))
|
|
712
|
+
- inline script in <DarkMode> ([#610](https://github.com/themesberg/flowbite-svelte/issues/610)) ([7ac48ba](https://github.com/themesberg/flowbite-svelte/commit/7ac48ba643f87b92ad51a6b540b14741bc6fd229))
|
|
713
|
+
- Input and Radio components ([fd49114](https://github.com/themesberg/flowbite-svelte/commit/fd49114e343c3a66c7ef257ba41d5354b99707d1))
|
|
714
|
+
- Input component move let padding before using it ([4fac17c](https://github.com/themesberg/flowbite-svelte/commit/4fac17cab3ebf67eb2ed4502356bbd5b5eb9aea1))
|
|
715
|
+
- input component value type to any ([#730](https://github.com/themesberg/flowbite-svelte/issues/730)) ([048caa0](https://github.com/themesberg/flowbite-svelte/commit/048caa0ddd2418e3feff4963f0540b269eb7cb27))
|
|
716
|
+
- input icons ([#350](https://github.com/themesberg/flowbite-svelte/issues/350)) ([7b72712](https://github.com/themesberg/flowbite-svelte/commit/7b727121b3b730eb552200c1de36f3cdc45f7977))
|
|
717
|
+
- input label margin on empty labels ([e08bb0d](https://github.com/themesberg/flowbite-svelte/commit/e08bb0d5caaf10b2c14a852cc68047be7c9e6fdc))
|
|
718
|
+
- input number workaround ([#351](https://github.com/themesberg/flowbite-svelte/issues/351)) ([e4cb012](https://github.com/themesberg/flowbite-svelte/commit/e4cb01221c3b4334a2c860aa32ccee06df2fe41d))
|
|
719
|
+
- Input padding uses p-4, p-2.5 and p-2 depends on the size ([632bd5d](https://github.com/themesberg/flowbite-svelte/commit/632bd5d550b0268a93eec91598b35a854a45c081))
|
|
720
|
+
- input type ([7bcd4dd](https://github.com/themesberg/flowbite-svelte/commit/7bcd4dd3d59729cdbf768b13876baab9426fe9a0))
|
|
721
|
+
- **Input:** Use a reactive spread instead of custom action to set Input `type` attribute ([#921](https://github.com/themesberg/flowbite-svelte/issues/921)) ([165e273](https://github.com/themesberg/flowbite-svelte/commit/165e273357efa57d35e8f7a268ad5bc5e725d565))
|
|
722
|
+
- interactive card dropdown position ([33a2b7d](https://github.com/themesberg/flowbite-svelte/commit/33a2b7d995418974e6303f4cf74435052c510f5a))
|
|
723
|
+
- issue [#790](https://github.com/themesberg/flowbite-svelte/issues/790) ([#802](https://github.com/themesberg/flowbite-svelte/issues/802)) ([9c79555](https://github.com/themesberg/flowbite-svelte/commit/9c7955578463904c1e066d7f04cd676a1e856e01))
|
|
724
|
+
- issue 786 ([#803](https://github.com/themesberg/flowbite-svelte/issues/803)) ([3e348ba](https://github.com/themesberg/flowbite-svelte/commit/3e348badc30779c8da222c3ee361afe5b14d6e95))
|
|
725
|
+
- issue783 ([#809](https://github.com/themesberg/flowbite-svelte/issues/809)) ([112bd25](https://github.com/themesberg/flowbite-svelte/commit/112bd25f7903da72332159fdc5edf6aad1e7536d))
|
|
726
|
+
- issue812 ([#814](https://github.com/themesberg/flowbite-svelte/issues/814)) ([c74c026](https://github.com/themesberg/flowbite-svelte/commit/c74c026e7bfd8d3a6f5ed0fe39de2a42b0e6c9b2))
|
|
727
|
+
- layout and index page ([7db0e00](https://github.com/themesberg/flowbite-svelte/commit/7db0e00d1094d4d03a7386fd96c13c5b2ee09f6f))
|
|
728
|
+
- layout and Toc padding ([6a67345](https://github.com/themesberg/flowbite-svelte/commit/6a6734545429c7228a1bf3cbc58f7e4739dbfe65))
|
|
729
|
+
- layout logo ([1a78683](https://github.com/themesberg/flowbite-svelte/commit/1a78683e734bf0dae58fe704bd652fcef196dae9))
|
|
730
|
+
- layout width ([e17969e](https://github.com/themesberg/flowbite-svelte/commit/e17969ec2c6f2938ed1a7c7b8f083bd3da6801e8))
|
|
731
|
+
- li classes cascaded from ul ([#593](https://github.com/themesberg/flowbite-svelte/issues/593)) ([90a4c74](https://github.com/themesberg/flowbite-svelte/commit/90a4c74fa8e9a95b652f67525fbaee67f40d6f0b))
|
|
732
|
+
- link color ([6bca5d4](https://github.com/themesberg/flowbite-svelte/commit/6bca5d4fa366fca0adb4c3424edf1ada1f1e6d95))
|
|
733
|
+
- link removed from card img if there is no link ([f1d1c33](https://github.com/themesberg/flowbite-svelte/commit/f1d1c331467f21ae2bb7717edd44339357b5579f))
|
|
734
|
+
- links in DesignFigma ([22a40ea](https://github.com/themesberg/flowbite-svelte/commit/22a40ea13e202bb7a9b21ba2d94c53f2468649ba))
|
|
735
|
+
- links in form index ([1149aa2](https://github.com/themesberg/flowbite-svelte/commit/1149aa2f7411ceb9a3e29ce3c6c3d446634f09a9))
|
|
736
|
+
- list group item padding ([#469](https://github.com/themesberg/flowbite-svelte/issues/469)) ([d945978](https://github.com/themesberg/flowbite-svelte/commit/d945978f38e82953c1ddd703b2fd7c9086768ffa))
|
|
737
|
+
- List in cards page to Listgroup ([b8e05f4](https://github.com/themesberg/flowbite-svelte/commit/b8e05f4f97fbbb0236872b2b5f18f0928c34ad55))
|
|
738
|
+
- ListgroupItem button type ([#549](https://github.com/themesberg/flowbite-svelte/issues/549)) ([6b74d73](https://github.com/themesberg/flowbite-svelte/commit/6b74d738efc887b46fe0fc0eea473e617aa386ca))
|
|
739
|
+
- lock file ([b24ac8d](https://github.com/themesberg/flowbite-svelte/commit/b24ac8d52ab7a87c2d52a0e189988dc949f2f5d5))
|
|
740
|
+
- lock file ([6144fd3](https://github.com/themesberg/flowbite-svelte/commit/6144fd3da66eeec36ab663938cf59dce0b3a156d))
|
|
741
|
+
- logo ([c28e9f3](https://github.com/themesberg/flowbite-svelte/commit/c28e9f3683140e1bb12f4667e26e5d7805d4ddb9))
|
|
742
|
+
- make disabled button unclickable ([df1c66d](https://github.com/themesberg/flowbite-svelte/commit/df1c66d08e6090a66cff12d2d41f6b72a93324dc))
|
|
743
|
+
- markdown code block in all-modals ([dc35107](https://github.com/themesberg/flowbite-svelte/commit/dc35107dee67620e035ca5e07cd5e2ecf95fdd12))
|
|
744
|
+
- megamenu centered in small screen ([713aa9a](https://github.com/themesberg/flowbite-svelte/commit/713aa9ab5d1c390291bb61910f9eae4b68d5981e))
|
|
745
|
+
- megamenu fullscreen position ([eaf0729](https://github.com/themesberg/flowbite-svelte/commit/eaf07294a728b524f2873df26f8250d23682dd81))
|
|
746
|
+
- menu for small screen ([4fd100a](https://github.com/themesberg/flowbite-svelte/commit/4fd100a03c172b10a7dbe9ce92b5cbb8fcec8cbd))
|
|
747
|
+
- merge confilicts ([f25ffca](https://github.com/themesberg/flowbite-svelte/commit/f25ffcab80e46fd961226b9e54fdf59958b09a96))
|
|
748
|
+
- merge confilicts ([1ec380a](https://github.com/themesberg/flowbite-svelte/commit/1ec380ad36b17c55c31a65c1fd8d682eab969e70))
|
|
749
|
+
- merge confilicts ([c1890ca](https://github.com/themesberg/flowbite-svelte/commit/c1890caefd7ae588a5a732df378c1136d8e6647b))
|
|
750
|
+
- merge confilicts ([be6253e](https://github.com/themesberg/flowbite-svelte/commit/be6253e21cb28eda7f1d4ed9ef12bc03c5cab249))
|
|
751
|
+
- merge confilicts ([67d4a7c](https://github.com/themesberg/flowbite-svelte/commit/67d4a7c38ba442a4dd95feec3de67e203491f41e))
|
|
752
|
+
- merge confilicts ([a583351](https://github.com/themesberg/flowbite-svelte/commit/a58335145393a95b89975717f524611a9ff9acda))
|
|
753
|
+
- merge confilicts ([2e0fc09](https://github.com/themesberg/flowbite-svelte/commit/2e0fc09867d3c1b996b19cfec9a5f62ca479e45d))
|
|
754
|
+
- merge confilicts ([0cd644a](https://github.com/themesberg/flowbite-svelte/commit/0cd644a7589712032b2bfcb3ed17729fbe1e75cd))
|
|
755
|
+
- merge confilicts ([ad380a6](https://github.com/themesberg/flowbite-svelte/commit/ad380a618af8cbcc2edf8fe45273a0e22023a636))
|
|
756
|
+
- merge confilicts ([aa32cae](https://github.com/themesberg/flowbite-svelte/commit/aa32caec08bb84b17df59736d170e2fb328d6fe9))
|
|
757
|
+
- merge confilicts ([2365a23](https://github.com/themesberg/flowbite-svelte/commit/2365a2328d3d9be9341648a7e58f5b8fc7abe9ea))
|
|
758
|
+
- merge confilicts ([375294a](https://github.com/themesberg/flowbite-svelte/commit/375294a7ce5057a9478e0ef55f0331e3ac5fdb08))
|
|
759
|
+
- merge conflict ([fa3c5d8](https://github.com/themesberg/flowbite-svelte/commit/fa3c5d8d205bc7211334f19c0ec6ec7c57fdd754))
|
|
760
|
+
- merge conflict fix with Hetarth02-main ([914c1f9](https://github.com/themesberg/flowbite-svelte/commit/914c1f95f80dfbd73542d68d39622d79bed1ea04))
|
|
761
|
+
- merge conflicts ([0514548](https://github.com/themesberg/flowbite-svelte/commit/0514548ab7d7ca54337434114ac8f2b9239f5e5d))
|
|
762
|
+
- merging conflict update mega-menu, package.json, paragraph.md ([7de7bc0](https://github.com/themesberg/flowbite-svelte/commit/7de7bc00b78b1dee90aafba809ef235fd262017c))
|
|
763
|
+
- meta tag by adding type, url, and appId ([#399](https://github.com/themesberg/flowbite-svelte/issues/399)) ([6f9f423](https://github.com/themesberg/flowbite-svelte/commit/6f9f423b294bbc54bdae152f659e029e5e8a1f76))
|
|
764
|
+
- migrate to sveltekit 1.0.0 ([434ec99](https://github.com/themesberg/flowbite-svelte/commit/434ec998e1f96ab5e35eda6c6c78f6db2279aa4e))
|
|
765
|
+
- minor fixes / fine tuning ([57c1cf7](https://github.com/themesberg/flowbite-svelte/commit/57c1cf7f1bd461c417be1fd925766c045d72c015))
|
|
766
|
+
- missing 683restProps ([0d52fd1](https://github.com/themesberg/flowbite-svelte/commit/0d52fd1b4168c8cc707c174dc2c18f532cf2e93c))
|
|
767
|
+
- missing dropdown example ([#388](https://github.com/themesberg/flowbite-svelte/issues/388)) ([69ba822](https://github.com/themesberg/flowbite-svelte/commit/69ba822ef1f3710bdccbaf31006a94e1e3d19aae))
|
|
768
|
+
- missing Popper ([ff4b0e7](https://github.com/themesberg/flowbite-svelte/commit/ff4b0e772e228f03c1024e222fcc91e63adc23ba))
|
|
769
|
+
- Modal and Button compo ([5f3128a](https://github.com/themesberg/flowbite-svelte/commit/5f3128aaf26f7383ec32135411ea1607a566d114))
|
|
770
|
+
- modal arrow keys ([#369](https://github.com/themesberg/flowbite-svelte/issues/369)) ([2a8bc1c](https://github.com/themesberg/flowbite-svelte/commit/2a8bc1c156c66a3dc0569312343b6f6b65a051ea))
|
|
771
|
+
- modal layout ([#526](https://github.com/themesberg/flowbite-svelte/issues/526)) ([6b25019](https://github.com/themesberg/flowbite-svelte/commit/6b250190f25feefe21191b3d8cab709fe28c6908))
|
|
772
|
+
- modal update ([#791](https://github.com/themesberg/flowbite-svelte/issues/791)) ([2bd095f](https://github.com/themesberg/flowbite-svelte/commit/2bd095f1f197783f0c4161bda3c22ebd6008859a))
|
|
773
|
+
- more ts check corrections ([#740](https://github.com/themesberg/flowbite-svelte/issues/740)) ([f95f1d4](https://github.com/themesberg/flowbite-svelte/commit/f95f1d44da76fbaa9d49fec1a52c000e5509617c))
|
|
774
|
+
- mousenter ([c3ee1cc](https://github.com/themesberg/flowbite-svelte/commit/c3ee1cc24867be96860faa32e322b6fe7c41592a))
|
|
775
|
+
- move @docsearch/js to devDependencies ([168a79f](https://github.com/themesberg/flowbite-svelte/commit/168a79fce52050b437fbde32c95bf17329616b21))
|
|
776
|
+
- move @floating-ui/dom from dependencies to devDependencies ([6668ec8](https://github.com/themesberg/flowbite-svelte/commit/6668ec8ca1559366ad0cbc223c9c91e3337ceb22))
|
|
777
|
+
- move @floating-ui/dom, classnames, svelte-heros, @popperjs/core from devDpendencies to dependencies ([ee5d31a](https://github.com/themesberg/flowbite-svelte/commit/ee5d31af1b23e00e565c2a60b354b85f2beb54d1))
|
|
778
|
+
- move all index.svelte to index.md and add breadcrumb ([c691d92](https://github.com/themesberg/flowbite-svelte/commit/c691d92fe5b47dafb2d1f5bc4dee39dc3a5c61b8))
|
|
779
|
+
- move from @codewithshin/svelte-sidebar to svelte-sidebar-menu ([4584351](https://github.com/themesberg/flowbite-svelte/commit/45843519c11eda6de199fc213374d0d293432255))
|
|
780
|
+
- move props to the end of page ([b4bc1c2](https://github.com/themesberg/flowbite-svelte/commit/b4bc1c21418d1dd3140fcb9433575e76aaa8ba49))
|
|
781
|
+
- move Responsive component from layout to all pages ([381ee20](https://github.com/themesberg/flowbite-svelte/commit/381ee20922335f0c535c06c21a107ebc38849693))
|
|
782
|
+
- move step indicator to extend ([000dec3](https://github.com/themesberg/flowbite-svelte/commit/000dec3688b5d9535a21a36207de42ca26336f1b))
|
|
783
|
+
- move transitions to local ([f060cba](https://github.com/themesberg/flowbite-svelte/commit/f060cba164501e0810934b88e8f4e22a784eeca6))
|
|
784
|
+
- moved @codewithshin/svelte-heroicons to dependencies ([5639d70](https://github.com/themesberg/flowbite-svelte/commit/5639d70d85fc829bc3827f0cbc82e01c56d644a2))
|
|
785
|
+
- moved p-tag and h3 tag css to app.css ([cb3d08e](https://github.com/themesberg/flowbite-svelte/commit/cb3d08edb98d96cadad9975e20488af55f4fa344))
|
|
786
|
+
- moved src/routes to main. ([b851974](https://github.com/themesberg/flowbite-svelte/commit/b851974782e9eb442434d57db0deee4021f26db6))
|
|
787
|
+
- multi-dropdown detach ([3ad1abb](https://github.com/themesberg/flowbite-svelte/commit/3ad1abb66e0fcb4ea53db8e0180e28b568e98aa6))
|
|
788
|
+
- **multi-select:** pre-select values fix ([#892](https://github.com/themesberg/flowbite-svelte/issues/892)) ([e399248](https://github.com/themesberg/flowbite-svelte/commit/e399248dc4503f37b281535acbfa965f3f88ecec))
|
|
789
|
+
- navbar in mobile view width ([7f283f3](https://github.com/themesberg/flowbite-svelte/commit/7f283f363ff5fc70430db83bddde3af24e94aa9a))
|
|
790
|
+
- navbar page ([d0a704e](https://github.com/themesberg/flowbite-svelte/commit/d0a704e658d86090e38a3d0feadaf89cccb401a6))
|
|
791
|
+
- navbar updates ([468839b](https://github.com/themesberg/flowbite-svelte/commit/468839bd2efee738787b428ef902cecee3f70e12))
|
|
792
|
+
- navbar-li undefined ([#595](https://github.com/themesberg/flowbite-svelte/issues/595)) ([ab5d080](https://github.com/themesberg/flowbite-svelte/commit/ab5d080c7f214b81a748a812bd487d8d22af8895))
|
|
793
|
+
- no dropdown docs ([4f92d9b](https://github.com/themesberg/flowbite-svelte/commit/4f92d9b56a53677bed7264b6f044e64a10c42c7e))
|
|
794
|
+
- no href on <a> buttons ([ab13df8](https://github.com/themesberg/flowbite-svelte/commit/ab13df85aeac5368383bb708c9cb3146e418066f))
|
|
795
|
+
- no triggers error ([83075e1](https://github.com/themesberg/flowbite-svelte/commit/83075e1a969bdf93a520bd9e35b339e36bf4f325))
|
|
796
|
+
- npm run check corrections ([#517](https://github.com/themesberg/flowbite-svelte/issues/517)) ([f1f89e3](https://github.com/themesberg/flowbite-svelte/commit/f1f89e30221fd3bb63fed174fe825a46f780d1c7))
|
|
797
|
+
- npm run check fixes ([#484](https://github.com/themesberg/flowbite-svelte/issues/484)) ([be4f0f6](https://github.com/themesberg/flowbite-svelte/commit/be4f0f6270b93296d8e2cd3eab60ef77fc621261))
|
|
798
|
+
- og:image and twitter:image to replace spaces with - ([#441](https://github.com/themesberg/flowbite-svelte/issues/441)) ([25ad6d0](https://github.com/themesberg/flowbite-svelte/commit/25ad6d09816e1df3a5a8ddd9a901186d2a36f4ee))
|
|
799
|
+
- on:click for Toggle, Checkbox and Radio ([48710b5](https://github.com/themesberg/flowbite-svelte/commit/48710b59c9a9096ec95dfa26d1764a312552b49e))
|
|
800
|
+
- optional Frame transition' ([#385](https://github.com/themesberg/flowbite-svelte/issues/385)) ([e7fc8db](https://github.com/themesberg/flowbite-svelte/commit/e7fc8db0f920e3bd907ce9fcf1c532885da193af))
|
|
801
|
+
- package.json format ([f836a5c](https://github.com/themesberg/flowbite-svelte/commit/f836a5c733cc57240040aa9821732056ccbcee24))
|
|
802
|
+
- package.json format ([675928b](https://github.com/themesberg/flowbite-svelte/commit/675928beda860ef099cd6cc72f2acef2e0159b07))
|
|
803
|
+
- package.json scripts update ([7d1d8b9](https://github.com/themesberg/flowbite-svelte/commit/7d1d8b932a198284ae72948249ef379a6594bd18))
|
|
804
|
+
- package.json scripts update ([b32d810](https://github.com/themesberg/flowbite-svelte/commit/b32d810eb8ebb9787f62c4ed76766ff77510c5c7))
|
|
805
|
+
- package.json scripts update ([b3467ba](https://github.com/themesberg/flowbite-svelte/commit/b3467ba3f16c46f4801642dbf15cf07ad7b9618d))
|
|
806
|
+
- padding ([5e4eb4e](https://github.com/themesberg/flowbite-svelte/commit/5e4eb4e97e282b36a62b662b5a24393f0a57b13a))
|
|
807
|
+
- padding issues with dropdown ([6a48d4d](https://github.com/themesberg/flowbite-svelte/commit/6a48d4dc6a262fc62aa2d9b4c6233bf1cee4b741))
|
|
808
|
+
- padding issues with dropdown ([8e8c2d4](https://github.com/themesberg/flowbite-svelte/commit/8e8c2d4bed3e85e95c28e936c513489e6d975e8f))
|
|
809
|
+
- pagination for darkmode ([#507](https://github.com/themesberg/flowbite-svelte/issues/507)) ([9175627](https://github.com/themesberg/flowbite-svelte/commit/917562790bc05a1a0679c11266ee7d23531c865f))
|
|
810
|
+
- paragraph page ([98b2dab](https://github.com/themesberg/flowbite-svelte/commit/98b2dabe767cc3e8afa652bd0706dd590997bba6))
|
|
811
|
+
- pink color ([e4551b5](https://github.com/themesberg/flowbite-svelte/commit/e4551b54e0b56c07bae45d2bddb1b2930a20fe72))
|
|
812
|
+
- placement and padding ([169c749](https://github.com/themesberg/flowbite-svelte/commit/169c749004d16d9b7c1aef46448608beefd3caf7))
|
|
813
|
+
- playwright and lint yaml 1.36.0 ([b0fbeb0](https://github.com/themesberg/flowbite-svelte/commit/b0fbeb0908c70cdb46e51ed581fac1f4d2885a4d))
|
|
814
|
+
- playwright and lint yaml 1.36.0 ([4c96d64](https://github.com/themesberg/flowbite-svelte/commit/4c96d6497224cbfc30bbb4cdfedf6fd4f44d1f47))
|
|
815
|
+
- playwright v1.34.0 in workflow ([e12c5ff](https://github.com/themesberg/flowbite-svelte/commit/e12c5ff81f0af3b74b6424fb63845649d80ac8cb))
|
|
816
|
+
- popover html ([d49f808](https://github.com/themesberg/flowbite-svelte/commit/d49f808b8a05bd735a9f90c661710dddfd163cad))
|
|
817
|
+
- position and classes ([caa1f13](https://github.com/themesberg/flowbite-svelte/commit/caa1f136e964503ff1976c7de7c006615038489b))
|
|
818
|
+
- position update for dropdown and imgdropdown components ([1aef255](https://github.com/themesberg/flowbite-svelte/commit/1aef2559e187458c89f4ad40acbbc8c94719b7ae))
|
|
819
|
+
- programatic popper open merged ([86f9874](https://github.com/themesberg/flowbite-svelte/commit/86f9874e1c2390e3571b6df96acfa61af23fd865))
|
|
820
|
+
- props and update them ([#715](https://github.com/themesberg/flowbite-svelte/issues/715)) ([3f952b4](https://github.com/themesberg/flowbite-svelte/commit/3f952b41852f5a2b7662e4718a10bab225e060a6))
|
|
821
|
+
- props update ([4c109c8](https://github.com/themesberg/flowbite-svelte/commit/4c109c84913bfe09ac8d4d6a7dd2265a0243eefa))
|
|
822
|
+
- props update ([2feb352](https://github.com/themesberg/flowbite-svelte/commit/2feb3520eb74eb5f7ef0c0688e288723a7d7ee40))
|
|
823
|
+
- props using vite named import ([#347](https://github.com/themesberg/flowbite-svelte/issues/347)) ([7072e03](https://github.com/themesberg/flowbite-svelte/commit/7072e03b7ec8bac2e3d74d53f87c54dab772e159))
|
|
824
|
+
- props, types, and default are added to component pages ([50912cd](https://github.com/themesberg/flowbite-svelte/commit/50912cd17b99f2ea3489584d2afc3eee84af3eb6))
|
|
825
|
+
- props, types, and default are added to component pages ([58f0e7d](https://github.com/themesberg/flowbite-svelte/commit/58f0e7de7f67edf9fcd8308da4cf07d0878d1869))
|
|
826
|
+
- radio.md - dropdown ([#425](https://github.com/themesberg/flowbite-svelte/issues/425)) ([12d2d03](https://github.com/themesberg/flowbite-svelte/commit/12d2d03098a3647040280b20474d657e8f8dca2b))
|
|
827
|
+
- rating component update ([#773](https://github.com/themesberg/flowbite-svelte/issues/773)) ([f031395](https://github.com/themesberg/flowbite-svelte/commit/f031395353208a1bade6148dbafd11c9c1632afc))
|
|
828
|
+
- RatingComment component ([032aa24](https://github.com/themesberg/flowbite-svelte/commit/032aa24925f082459992104d5040804e0d532153))
|
|
829
|
+
- rebase merge conflict Alert.svelte ([38df84a](https://github.com/themesberg/flowbite-svelte/commit/38df84a21124d3d3c3c1d716ff21bd678b156b09))
|
|
830
|
+
- refresh dev environment ([3a1b452](https://github.com/themesberg/flowbite-svelte/commit/3a1b452f925e14b2d159456c8f1f50b2972ae52b))
|
|
831
|
+
- reinstall after removing lock file ([45ef63c](https://github.com/themesberg/flowbite-svelte/commit/45ef63cc25129c62c6b78477a563a111d1745f32))
|
|
832
|
+
- reinstall dependencies ([0876852](https://github.com/themesberg/flowbite-svelte/commit/08768528dd8df368052503e6ebe4a4e68fd348d3))
|
|
833
|
+
- reinstall dependencies ([8ee47f8](https://github.com/themesberg/flowbite-svelte/commit/8ee47f8466e44091c9b91995ad70ebf67dca0f29))
|
|
834
|
+
- removal of iconinput ([#476](https://github.com/themesberg/flowbite-svelte/issues/476)) ([2da0912](https://github.com/themesberg/flowbite-svelte/commit/2da0912b15199d6dbbcedae0db672b0a7d61a9fd))
|
|
835
|
+
- remove \_\_layout from pages dir ([7224e31](https://github.com/themesberg/flowbite-svelte/commit/7224e31b66009bd6fcf207e8da1f69ccec159728))
|
|
836
|
+
- remove // [@ts-ignore](https://github.com/ts-ignore) ([ea82a2b](https://github.com/themesberg/flowbite-svelte/commit/ea82a2bc22085bad26967a82d078d8ab86b2477d))
|
|
837
|
+
- remove |local from Frame componentso that toast transitions work ([6da412c](https://github.com/themesberg/flowbite-svelte/commit/6da412c0665f27a6f9dd33bbf89758c4a924d239))
|
|
838
|
+
- remove a pipe from MetaTags titleTemplate ([6ad56c0](https://github.com/themesberg/flowbite-svelte/commit/6ad56c0a4c918b7322f102c6043ab34e549f026f))
|
|
839
|
+
- remove activeTabvalue from TabWrapper and let:tabId vrom tab page examples ([ee1b444](https://github.com/themesberg/flowbite-svelte/commit/ee1b444cd552de4cd0c13e4356159ce44a864024))
|
|
840
|
+
- remove bind: from TabWrapper bind:activeTabValue ([0269b3a](https://github.com/themesberg/flowbite-svelte/commit/0269b3ac4daf31cebec6f215983bfb4e99a118e3))
|
|
841
|
+
- remove button margin ([9cc1795](https://github.com/themesberg/flowbite-svelte/commit/9cc179505bd77ed775fee1879415f191f36b4764))
|
|
842
|
+
- remove custom from Button component ([6114f4c](https://github.com/themesberg/flowbite-svelte/commit/6114f4c9f5d9ad0848d5e7c000db6c4c9661ad39))
|
|
843
|
+
- remove Datepicker from index ([f08230c](https://github.com/themesberg/flowbite-svelte/commit/f08230c84d29f172f1a30a6194e2694eb65f3e3e))
|
|
844
|
+
- remove debris from the last PR ([902a172](https://github.com/themesberg/flowbite-svelte/commit/902a1722ea11375df3d7670c0bd25ddc7fec504a))
|
|
845
|
+
- remove duplicate theme from tailwind.config ([5d0ebe5](https://github.com/themesberg/flowbite-svelte/commit/5d0ebe5ab587e489498bba825527d613cddb2eaf))
|
|
846
|
+
- remove EcommerceCard and SignInCard ([7e6b2b6](https://github.com/themesberg/flowbite-svelte/commit/7e6b2b689a86cb47df080908ef3217345361667a))
|
|
847
|
+
- remove Figma from image page ([0276b51](https://github.com/themesberg/flowbite-svelte/commit/0276b517fc828e77bfd383be122b514bb0793da0))
|
|
848
|
+
- remove flowbite-svelte ([23af736](https://github.com/themesberg/flowbite-svelte/commit/23af7360f881847d9837e7cb502c6419bf69a0aa))
|
|
849
|
+
- remove flowbite-svelte-blocks page, add a link ([2b9e3d3](https://github.com/themesberg/flowbite-svelte/commit/2b9e3d3f72731ace8abb563e28e98309dbc58b3b))
|
|
850
|
+
- remove h-4 w-4 from Iconinput example in the input-field page ([4d5f396](https://github.com/themesberg/flowbite-svelte/commit/4d5f396ea80389b88ec6a8437228d5dbadd46877))
|
|
851
|
+
- remove heros from cards page ([c46f0b3](https://github.com/themesberg/flowbite-svelte/commit/c46f0b3f9a16793f12d68fd3d1b9e973dd1f7b4a))
|
|
852
|
+
- remove heros from megamenu and list-group page ([9980b7d](https://github.com/themesberg/flowbite-svelte/commit/9980b7d98668c0356217dd3aac810c52cd5e0e51))
|
|
853
|
+
- remove heros from popover page ([eeff79f](https://github.com/themesberg/flowbite-svelte/commit/eeff79f53733a8f5cbb480eead692f111f96b07c))
|
|
854
|
+
- remove heros from sidebars page ([a3981a0](https://github.com/themesberg/flowbite-svelte/commit/a3981a09b6b36dcbcb90cfad789bee6a10dae9a1))
|
|
855
|
+
- remove heros from: ([57f6928](https://github.com/themesberg/flowbite-svelte/commit/57f69282190f5d33d7ac17c6adeab36b89184f47))
|
|
856
|
+
- remove heros from: ([7055f4c](https://github.com/themesberg/flowbite-svelte/commit/7055f4c5ddaa91e15cabaf7d1112a149cf81374d))
|
|
857
|
+
- remove heros icon from Carousel ([2c7d4c9](https://github.com/themesberg/flowbite-svelte/commit/2c7d4c9a6edc1a4dd4005e5dcf46fec8b5dc0a52))
|
|
858
|
+
- remove heros icons from ([203f14c](https://github.com/themesberg/flowbite-svelte/commit/203f14c578e57429892e0df41452abbdef1b3a4e))
|
|
859
|
+
- remove heros icons from buttons page ([ec81a39](https://github.com/themesberg/flowbite-svelte/commit/ec81a393f438e2285d36ed7fea787af956c6f128))
|
|
860
|
+
- remove heros icons from checkbox page ([1ed983c](https://github.com/themesberg/flowbite-svelte/commit/1ed983c2b230e6309ae6882972176480f8060487))
|
|
861
|
+
- remove heros icons from select and toggle pages ([fba7660](https://github.com/themesberg/flowbite-svelte/commit/fba7660c1bf08c47a9d0200db545f0b1fce457a9))
|
|
862
|
+
- remove hidescript for more lines than set up ([0e98e3c](https://github.com/themesberg/flowbite-svelte/commit/0e98e3ccafb0cc609f74f9adebf5f4cb66df9886))
|
|
863
|
+
- remove Home icons from all pages ([7ac0e7a](https://github.com/themesberg/flowbite-svelte/commit/7ac0e7aa3edc5486d597a61775a5694c76b4bb35))
|
|
864
|
+
- remove layout and page content ([92609e5](https://github.com/themesberg/flowbite-svelte/commit/92609e5a8dd85b22daaf12dda526331184bb4e74))
|
|
865
|
+
- remove log message in Avatar Dot ([#567](https://github.com/themesberg/flowbite-svelte/issues/567)) ([1c808c7](https://github.com/themesberg/flowbite-svelte/commit/1c808c7e21c72b7bda604852fe8e75eebcb6992a))
|
|
866
|
+
- remove main: index.js ([879d810](https://github.com/themesberg/flowbite-svelte/commit/879d8108c34f563e19ae4cd9b89eb95391083235))
|
|
867
|
+
- remove NavDropdown ([5c77f68](https://github.com/themesberg/flowbite-svelte/commit/5c77f68c097498a8ecbe10eaf5c8a8e3c1d2b187))
|
|
868
|
+
- remove new buttons ([7066f08](https://github.com/themesberg/flowbite-svelte/commit/7066f082605421142a0fe4cc91cb65f2aa8e7ebb))
|
|
869
|
+
- remove old tab components ([a61dd72](https://github.com/themesberg/flowbite-svelte/commit/a61dd728d1eb01bdbfeb61ff3adf8f96d7a1fbde))
|
|
870
|
+
- remove package-lock, pnpm-lock and node_modules and reinstall ([a8985ea](https://github.com/themesberg/flowbite-svelte/commit/a8985ea2fdb7c18eb23e61dd163e65da98a53ae4))
|
|
871
|
+
- remove package-lock.json and add package-lock.json to .gitignore ([b1f0fc4](https://github.com/themesberg/flowbite-svelte/commit/b1f0fc4c8d093668676b27fd845d1f89c2812a52))
|
|
872
|
+
- remove peerDependencies ([#810](https://github.com/themesberg/flowbite-svelte/issues/810)) ([e940033](https://github.com/themesberg/flowbite-svelte/commit/e94003300ff016ffe565a167e45714b9091ce495))
|
|
873
|
+
- remove radio, search etc from InputType ([ed95418](https://github.com/themesberg/flowbite-svelte/commit/ed9541808da054b383c6addff55907d955dad32f))
|
|
874
|
+
- remove rel=external from \_\_layout since it doesn't show the sidemenu ([a0cee08](https://github.com/themesberg/flowbite-svelte/commit/a0cee08e3312a66bdc1a4e070ca45abb0fdc7a84))
|
|
875
|
+
- remove svelte-collapse from Accordion component ([7b8a642](https://github.com/themesberg/flowbite-svelte/commit/7b8a642284947c7b8c6bbabecad2ddb2cc1f3d04))
|
|
876
|
+
- remove svelte-flag-icons from devDependencies ([8f48867](https://github.com/themesberg/flowbite-svelte/commit/8f488677958313a2debaa3f953314d6452a63013))
|
|
877
|
+
- remove svelte-sidebar-menu ([2820488](https://github.com/themesberg/flowbite-svelte/commit/28204885bbefcb826e073a1e6b7127a0b488b752))
|
|
878
|
+
- remove svelte:component from FooterIcon ([0406128](https://github.com/themesberg/flowbite-svelte/commit/04061286046845c7f5c34f56ef89013d4a610aee))
|
|
879
|
+
- remove SvelteKit app session and page ([7eaa3db](https://github.com/themesberg/flowbite-svelte/commit/7eaa3dbfc7f0e2fcf5ef6be4045843fc92b354a5))
|
|
880
|
+
- remove SvelteKit app/stores page and session from Navbar ([09428df](https://github.com/themesberg/flowbite-svelte/commit/09428df9f46b16b07595ed16c08697c61c0099a5))
|
|
881
|
+
- remove TabHead and TabHeadItem ([c255797](https://github.com/themesberg/flowbite-svelte/commit/c25579742f17a822f8f2a2c325da2c7c98c375cc))
|
|
882
|
+
- remove tabId from TabWrapper component ([5f46d23](https://github.com/themesberg/flowbite-svelte/commit/5f46d238ff1c81c1c66c1542565aa589f97cf530))
|
|
883
|
+
- remove TextGradient and Underline ([cb7b2d7](https://github.com/themesberg/flowbite-svelte/commit/cb7b2d753f110cad4677f990d60a11154e38ac93))
|
|
884
|
+
- remove Toc from layout since it needs to be updated ([2ea41a0](https://github.com/themesberg/flowbite-svelte/commit/2ea41a0c82bb8a7f583a001c1c5f598ac5855102))
|
|
885
|
+
- remove transition for navbar ([4f078d0](https://github.com/themesberg/flowbite-svelte/commit/4f078d038b1b1babe216f55e937e0a1e64e2a7a5))
|
|
886
|
+
- remove transition for NavUl ([6a29a1d](https://github.com/themesberg/flowbite-svelte/commit/6a29a1d82ef3e5e6a7afcf68dd953f8830562e05))
|
|
887
|
+
- remove type CrumbType ([4269359](https://github.com/themesberg/flowbite-svelte/commit/4269359c1bddb37fea064cab4dc31b3ea30772ee))
|
|
888
|
+
- remove unused components and update props ([#642](https://github.com/themesberg/flowbite-svelte/issues/642)) ([e6a4fb5](https://github.com/themesberg/flowbite-svelte/commit/e6a4fb5c63888e1aa90229414d5814e9a3c5fe27))
|
|
889
|
+
- remove unused icon prop ([10e8c81](https://github.com/themesberg/flowbite-svelte/commit/10e8c81dae9e0470ef875fc95dd7d89decdae732))
|
|
890
|
+
- remove unused imports ([acb58b9](https://github.com/themesberg/flowbite-svelte/commit/acb58b9144948feeb3c1c14b41a71d2122187340))
|
|
891
|
+
- remove utils/OptsButton ([04ebd83](https://github.com/themesberg/flowbite-svelte/commit/04ebd83aae8a3f3efabac8f3f144b65fabb04da1))
|
|
892
|
+
- remove workflows/release-please.yml ([30a3682](https://github.com/themesberg/flowbite-svelte/commit/30a3682d3652e779e5e4325edbf7b66ad02a8428))
|
|
893
|
+
- removed $app/env browser from Tooltip component ([604a1e0](https://github.com/themesberg/flowbite-svelte/commit/604a1e075c6333c5532e04916a20500a31fb4716))
|
|
894
|
+
- removed bg and text from CloseButton to keep transparency ([b5d36ee](https://github.com/themesberg/flowbite-svelte/commit/b5d36eec584f89a46d59346995b79b9b0d0fd906))
|
|
895
|
+
- removed console.log ([f0f7ee9](https://github.com/themesberg/flowbite-svelte/commit/f0f7ee96bc48310ed245c00678960ac9d2eaa05b))
|
|
896
|
+
- removed drawer component and page from the main ([5cf77f0](https://github.com/themesberg/flowbite-svelte/commit/5cf77f008aff26e64bd210a3bdf60e5f25aebc89))
|
|
897
|
+
- removed duplicated folder "alert" ([#734](https://github.com/themesberg/flowbite-svelte/issues/734)) ([4c8f32a](https://github.com/themesberg/flowbite-svelte/commit/4c8f32aad85593bd9a2666ec0d22c77e41463291))
|
|
898
|
+
- removed gradient outline examples since Flowbite site does not have them ([56ac6b4](https://github.com/themesberg/flowbite-svelte/commit/56ac6b4a57512a0d0a086c26a0f179e114af7690))
|
|
899
|
+
- removed Home icon from BreadcrumbItem ([66f00dd](https://github.com/themesberg/flowbite-svelte/commit/66f00dd9e024d97c2b9766e30b03b775f227c672))
|
|
900
|
+
- removed Ol component ([569f2e3](https://github.com/themesberg/flowbite-svelte/commit/569f2e3a51a59abba641c669949b4b5372c56a01))
|
|
901
|
+
- removed prismjs from package.json and layouts ([dd9ad11](https://github.com/themesberg/flowbite-svelte/commit/dd9ad110193e176ad8127f9c556105d3da854b26))
|
|
902
|
+
- rename index.js to index.ts ([216db5a](https://github.com/themesberg/flowbite-svelte/commit/216db5a42abff31b85644daacd441355da7805b8))
|
|
903
|
+
- rename List to Listgroup and ListItem to ListgroupItem ([1b70110](https://github.com/themesberg/flowbite-svelte/commit/1b7011062a729452604b3a0dd1ed54f28ab49132))
|
|
904
|
+
- reset to 4e86918 ([c04f892](https://github.com/themesberg/flowbite-svelte/commit/c04f8923e535a6c8fe1a7ea1df8cbeaeec2c5446))
|
|
905
|
+
- restProps for NumberInput ([#382](https://github.com/themesberg/flowbite-svelte/issues/382)) ([d1acb7f](https://github.com/themesberg/flowbite-svelte/commit/d1acb7f1b22a69acfc0f1ab6d2859c2a7d8a082c))
|
|
906
|
+
- restucturing Navbar components ([3f4fa07](https://github.com/themesberg/flowbite-svelte/commit/3f4fa076fe3cb5c0ca2a0a3e3b88e47aba7078af))
|
|
907
|
+
- revert package:publish ([515e9f4](https://github.com/themesberg/flowbite-svelte/commit/515e9f416f44754aa4794e2baca3ac3401b59100))
|
|
908
|
+
- revert Tooltip component ([9cedc68](https://github.com/themesberg/flowbite-svelte/commit/9cedc68014a7114c0e15691c26081bb9f5af88af))
|
|
909
|
+
- reverting Alert ([ccda53a](https://github.com/themesberg/flowbite-svelte/commit/ccda53ad474e0c6a39ffa6297555485f08ea9b5d))
|
|
910
|
+
- Review component and review in the ratings page ([afe6972](https://github.com/themesberg/flowbite-svelte/commit/afe69726d08a3cad7de7f29db131909816bc9c3e))
|
|
911
|
+
- scripts build update ([ed3d086](https://github.com/themesberg/flowbite-svelte/commit/ed3d086767e2e444ee716b511b1a57aabf630dea))
|
|
912
|
+
- search on:input ([#408](https://github.com/themesberg/flowbite-svelte/issues/408)) ([4c1e514](https://github.com/themesberg/flowbite-svelte/commit/4c1e514297aaf786535d6411ba4a53e8037e0f90))
|
|
913
|
+
- select types ([#508](https://github.com/themesberg/flowbite-svelte/issues/508)) ([3ea30a9](https://github.com/themesberg/flowbite-svelte/commit/3ea30a9d336187f36f63f559fbef3b0a7dde5f23))
|
|
914
|
+
- select.md ([e6c3cf3](https://github.com/themesberg/flowbite-svelte/commit/e6c3cf3495002a4e150514491453cf6a64cb3ffe))
|
|
915
|
+
- set the default values of space and color of paragraph element to undefined ([0d54908](https://github.com/themesberg/flowbite-svelte/commit/0d549081235b1691017c0d3ae802fe71b48c4016))
|
|
916
|
+
- show the top of page after navigation ([b3be37b](https://github.com/themesberg/flowbite-svelte/commit/b3be37b761a8a656413e1b34da73c6a251ab4010))
|
|
917
|
+
- sidebar activeUrl example ([4387644](https://github.com/themesberg/flowbite-svelte/commit/43876441726e70eb582c20778a6231ed03f963d7))
|
|
918
|
+
- sidebar activeUrl update by adding docs/ ([#754](https://github.com/themesberg/flowbite-svelte/issues/754)) ([467b060](https://github.com/themesberg/flowbite-svelte/commit/467b060f2da047d11d227db0f4bfe86fb848b749))
|
|
919
|
+
- sidebar menu ([0853344](https://github.com/themesberg/flowbite-svelte/commit/08533446aa8cf4fd820f3a085a945fb030e13056))
|
|
920
|
+
- sidebar menu covers screen and it doesn't allow to click any links ([879c886](https://github.com/themesberg/flowbite-svelte/commit/879c886b5134908f1e4e9365c13df9bae372acd0))
|
|
921
|
+
- sidebar z-10 to z-30 for front page ([79b5adc](https://github.com/themesberg/flowbite-svelte/commit/79b5adc075633b2fb4904f7b907b0d8e50dc28a3))
|
|
922
|
+
- sidebar z-50 to z-10 for modals ([4b76f75](https://github.com/themesberg/flowbite-svelte/commit/4b76f75650bb5670117c4959cb6b622f639242db))
|
|
923
|
+
- sidebars and forms {...$$restProps} position updates ([d983225](https://github.com/themesberg/flowbite-svelte/commit/d983225a4e4c7526bf7bee3a7cd51ecc6035bba8))
|
|
924
|
+
- SignInCard type update ([55c824a](https://github.com/themesberg/flowbite-svelte/commit/55c824aa08727eb3f07c12fc589158e7cc94fd5f))
|
|
925
|
+
- snapshot page ([#603](https://github.com/themesberg/flowbite-svelte/issues/603)) ([f9ecfed](https://github.com/themesberg/flowbite-svelte/commit/f9ecfedbc834530f5abab79f3d3b06e2c2c811a4))
|
|
926
|
+
- snapshot page update 2 ([#605](https://github.com/themesberg/flowbite-svelte/issues/605)) ([e7b36e6](https://github.com/themesberg/flowbite-svelte/commit/e7b36e6ad579bfe642747f6ce2624d129397e49a))
|
|
927
|
+
- spacing ([6f6e99c](https://github.com/themesberg/flowbite-svelte/commit/6f6e99cec7209a70f9e09b362714f37525c45a53))
|
|
928
|
+
- spinner fill and colour were back to front. ([83e6ec7](https://github.com/themesberg/flowbite-svelte/commit/83e6ec75cec5aade59570337a829938e46bcdfa3))
|
|
929
|
+
- style for links ([040ff2e](https://github.com/themesberg/flowbite-svelte/commit/040ff2ea183d21836e8f3e5dddb5879cf9324a69))
|
|
930
|
+
- sveltekit, vite, and other dependencies update ([#482](https://github.com/themesberg/flowbite-svelte/issues/482)) ([231e4da](https://github.com/themesberg/flowbite-svelte/commit/231e4daddc7095446a42f82f35f224ca9b9e209f))
|
|
931
|
+
- tab page timeline ([ab598a5](https://github.com/themesberg/flowbite-svelte/commit/ab598a59a3d373f14740a42bbaec3cb276eed34b))
|
|
932
|
+
- Table component ([88eb6f2](https://github.com/themesberg/flowbite-svelte/commit/88eb6f2271728e448b4ca7b1a4dd2b89ea6c6e97))
|
|
933
|
+
- TableBodyRow color and border ([#539](https://github.com/themesberg/flowbite-svelte/issues/539)) ([d52920f](https://github.com/themesberg/flowbite-svelte/commit/d52920fe869183639788607475b148c80fe283fa))
|
|
934
|
+
- test script branch ([e3d5264](https://github.com/themesberg/flowbite-svelte/commit/e3d52645892d5e03fa354b70ccdd6517d50a1918))
|
|
935
|
+
- textarea docs ([133b933](https://github.com/themesberg/flowbite-svelte/commit/133b9334841ac13d82c3a86bc24b3375de0972ff))
|
|
936
|
+
- TextPlaceHolder remove w-full ([e3ec175](https://github.com/themesberg/flowbite-svelte/commit/e3ec175bc3ec366a5e027feb5e21721fdd223243))
|
|
937
|
+
- to original Carousel ([5e979ae](https://github.com/themesberg/flowbite-svelte/commit/5e979ae8b58403cdf91b82b236a8e730f02d9cb1))
|
|
938
|
+
- to original Carousel ([198270f](https://github.com/themesberg/flowbite-svelte/commit/198270f623e4c0806a59cf3f9f5dd89430ddc0db))
|
|
939
|
+
- toast transitions ([6659682](https://github.com/themesberg/flowbite-svelte/commit/6659682250ab9d2337f06c2b424431366cf9ced0))
|
|
940
|
+
- toc issues ([13a459e](https://github.com/themesberg/flowbite-svelte/commit/13a459ec6cc3c8768698c5525012f2b53ae94b5c))
|
|
941
|
+
- toc more selective ([fb457a2](https://github.com/themesberg/flowbite-svelte/commit/fb457a26b595652f0f59d08915cfae3267361899))
|
|
942
|
+
- toc stickiness ([#330](https://github.com/themesberg/flowbite-svelte/issues/330)) ([21a0409](https://github.com/themesberg/flowbite-svelte/commit/21a0409bd34323b2858f43952ef6de45982b262d))
|
|
943
|
+
- toggle initial checked ([#442](https://github.com/themesberg/flowbite-svelte/issues/442)) ([7b0b0b0](https://github.com/themesberg/flowbite-svelte/commit/7b0b0b0cfd0b40e6688af0a2a748453b16a4fd5a))
|
|
944
|
+
- Toggle props and typo update ([9a40224](https://github.com/themesberg/flowbite-svelte/commit/9a40224fc26bfefd9d28ec5d364bf4d7430da6f0))
|
|
945
|
+
- tooltip style ([#759](https://github.com/themesberg/flowbite-svelte/issues/759)) ([813d1fa](https://github.com/themesberg/flowbite-svelte/commit/813d1fab8092662a2d2f51e95cf387e3352e6ff9))
|
|
946
|
+
- tooltips/popovers ([d18721c](https://github.com/themesberg/flowbite-svelte/commit/d18721cc4229f5eb1f4dccbbd34dda65f6a07aac))
|
|
947
|
+
- top navbar margin top ([d9c83b4](https://github.com/themesberg/flowbite-svelte/commit/d9c83b46bcd0c67d176ad60b0cbd3089a62471ab))
|
|
948
|
+
- transition func must return TransitionConfig ([18bffdb](https://github.com/themesberg/flowbite-svelte/commit/18bffdb6829267bb78b33e2f247d707575504ee9))
|
|
949
|
+
- transitions in drawer ([#881](https://github.com/themesberg/flowbite-svelte/issues/881)) ([90319b3](https://github.com/themesberg/flowbite-svelte/commit/90319b3d5237ca896c5ea971f77c776d678ebb05))
|
|
950
|
+
- transitions in frame ([#883](https://github.com/themesberg/flowbite-svelte/issues/883)) ([079ca87](https://github.com/themesberg/flowbite-svelte/commit/079ca8795814e7c3b482cfb27ddfec5fd23fc683))
|
|
951
|
+
- ts errors ([#464](https://github.com/themesberg/flowbite-svelte/issues/464)) ([ca723d4](https://github.com/themesberg/flowbite-svelte/commit/ca723d489e1861f6f702da90f9645139979261df))
|
|
952
|
+
- ts item type in megamenu ([c0ee437](https://github.com/themesberg/flowbite-svelte/commit/c0ee437ba3f04142e276f09e9f7301800828301f))
|
|
953
|
+
- ts types for Popper ([#362](https://github.com/themesberg/flowbite-svelte/issues/362)) ([4a22230](https://github.com/themesberg/flowbite-svelte/commit/4a22230d66d780cb2d5c189266f97c87c251b70a))
|
|
954
|
+
- type and layout footer padding fix ([999d291](https://github.com/themesberg/flowbite-svelte/commit/999d29158fde736dbf4e19c9545fff6ba41dc7e7))
|
|
955
|
+
- typescript declarations for import.meta.glob ([#736](https://github.com/themesberg/flowbite-svelte/issues/736)) ([ef10a06](https://github.com/themesberg/flowbite-svelte/commit/ef10a06785c38504d7b7dd75fccae245c6fa2188))
|
|
956
|
+
- typescript name for label, href for link. ([9d0f147](https://github.com/themesberg/flowbite-svelte/commit/9d0f147f78e9d50f7bf6e589be9965e105f4c835))
|
|
957
|
+
- typo ([c9f71f2](https://github.com/themesberg/flowbite-svelte/commit/c9f71f294bfaeea90b50d503b99b49b344ba8921))
|
|
958
|
+
- typo ([ec6f019](https://github.com/themesberg/flowbite-svelte/commit/ec6f019501acf4ba2fb105b8cc04a6d347d0dcf1))
|
|
959
|
+
- typo ([4479464](https://github.com/themesberg/flowbite-svelte/commit/4479464736800552c1c05ce6b793459e8df6ef7f))
|
|
960
|
+
- typo and update bug_report.yml ([#787](https://github.com/themesberg/flowbite-svelte/issues/787)) ([4ee8a92](https://github.com/themesberg/flowbite-svelte/commit/4ee8a92c5809ea9047141eae7d3aa62b2b8879f4))
|
|
961
|
+
- typo CardPlaceholder ([71bea4d](https://github.com/themesberg/flowbite-svelte/commit/71bea4d98b5046d866aa2ded2e00cc30e4b44b61))
|
|
962
|
+
- typo cli page ([1a46882](https://github.com/themesberg/flowbite-svelte/commit/1a46882da779e386d01d858215345f018aa65270))
|
|
963
|
+
- typo form and from ([f17012d](https://github.com/themesberg/flowbite-svelte/commit/f17012db645030cf15ee62c28076f136ff28bed0))
|
|
964
|
+
- Typo in AccordionItem.svelte ([#741](https://github.com/themesberg/flowbite-svelte/issues/741)) ([149c3b7](https://github.com/themesberg/flowbite-svelte/commit/149c3b7d2ae10d56ce430df386a7a220a59167b2))
|
|
965
|
+
- typo in docs ([#645](https://github.com/themesberg/flowbite-svelte/issues/645)) ([d010eef](https://github.com/themesberg/flowbite-svelte/commit/d010eef360a32460eff383e585cd14cd31ee3bfa))
|
|
966
|
+
- update @codewithshin/svelte-sidebar ([91cff9a](https://github.com/themesberg/flowbite-svelte/commit/91cff9a0f123f6cb8d3798a7059d6057fd74ba82))
|
|
967
|
+
- update about and getting-started page ([6eabc6b](https://github.com/themesberg/flowbite-svelte/commit/6eabc6b492f1a4170af6c9f40b2c4858ecea8f4f))
|
|
968
|
+
- update about page and add type-list page ([d560b4b](https://github.com/themesberg/flowbite-svelte/commit/d560b4ba026f4cdcb0cddbff99589b5af55fe6c5))
|
|
969
|
+
- update AccordionItem class ([3713cc0](https://github.com/themesberg/flowbite-svelte/commit/3713cc023e21c014fbf6a1bf6acadf5b67b03ee1))
|
|
970
|
+
- update accordions/default page ([175a753](https://github.com/themesberg/flowbite-svelte/commit/175a753626f0b9a489352018939935e00a897832))
|
|
971
|
+
- update Alert and workflows playwright version ([670516d](https://github.com/themesberg/flowbite-svelte/commit/670516da7f979153e2d4c1b72313f8f2ac0f3bfa))
|
|
972
|
+
- update Alert color type ([fd819fb](https://github.com/themesberg/flowbite-svelte/commit/fd819fb59d2d01f900ad76449afabfa22de6d5b1))
|
|
973
|
+
- update Alert component ([92ade7a](https://github.com/themesberg/flowbite-svelte/commit/92ade7ae51d039823f61bb90b3b9e0cc6d46d033))
|
|
974
|
+
- update all dependencies ([d7ae979](https://github.com/themesberg/flowbite-svelte/commit/d7ae979973ba092f36236fe877b98314a0328a42))
|
|
975
|
+
- update all modal pages ([de11239](https://github.com/themesberg/flowbite-svelte/commit/de112398289e42b08144a2704db3c766a50a3840))
|
|
976
|
+
- update auth login component ([02bd514](https://github.com/themesberg/flowbite-svelte/commit/02bd514d9f7b65c6d9019bad5ccc654313388a7c))
|
|
977
|
+
- update badge component's style and doc ([#531](https://github.com/themesberg/flowbite-svelte/issues/531)) ([ce9af8c](https://github.com/themesberg/flowbite-svelte/commit/ce9af8cff8f6979f625b00fd165aa2ffadc41604))
|
|
978
|
+
- update bug_report.yml ([221f224](https://github.com/themesberg/flowbite-svelte/commit/221f224920c69fb281c8b4fd2844a22fbe657c72))
|
|
979
|
+
- update bug_report.yml ([c527971](https://github.com/themesberg/flowbite-svelte/commit/c52797111863fd3e52e7c3dae9473e22cd84923a))
|
|
980
|
+
- update bug_report.yml by adding REPL template link ([3c8140d](https://github.com/themesberg/flowbite-svelte/commit/3c8140dffdedb3a41ee0ea9b546da92866fceefb))
|
|
981
|
+
- update Button color types ([974df12](https://github.com/themesberg/flowbite-svelte/commit/974df12eaf2d796676700df09f2ee83d24ffc328))
|
|
982
|
+
- update button colors ([542ad32](https://github.com/themesberg/flowbite-svelte/commit/542ad32ccd6cf260c454dcac9d717662381e146b))
|
|
983
|
+
- update Button component ([330aae9](https://github.com/themesberg/flowbite-svelte/commit/330aae91c6c1b19cbbd1f35177f5e4bac9de3904))
|
|
984
|
+
- update Button component ([6f89d90](https://github.com/themesberg/flowbite-svelte/commit/6f89d90a33b7456e1736cd7b28b0b09bcb77e5a2))
|
|
985
|
+
- update Button outline ([6f419c3](https://github.com/themesberg/flowbite-svelte/commit/6f419c38a365fbfb3a466ec81eedc6fcd5fa9a75))
|
|
986
|
+
- update ButtonGroup components ([72fa977](https://github.com/themesberg/flowbite-svelte/commit/72fa9779438d5344fd30014fa00e1fe9f779f432))
|
|
987
|
+
- update ButtonGroupItem border ([365b6d2](https://github.com/themesberg/flowbite-svelte/commit/365b6d2b21b903a8b15057a9bb009e0d3d65e884))
|
|
988
|
+
- update Card component ([732ba60](https://github.com/themesberg/flowbite-svelte/commit/732ba60848e12cf3ca040f5f62087141dfa211dd))
|
|
989
|
+
- update card page ([0fd6e0e](https://github.com/themesberg/flowbite-svelte/commit/0fd6e0eeb8a42e6f51f0ac8465803ea40100bd55))
|
|
990
|
+
- update carousel page ([27c621b](https://github.com/themesberg/flowbite-svelte/commit/27c621b5f7a97896635ddbc2aa9cccf624275e80))
|
|
991
|
+
- update checkbox page ([aa45560](https://github.com/themesberg/flowbite-svelte/commit/aa455604516ef6a4b73193d4898f7f2a5365baca))
|
|
992
|
+
- update checkbox, add Label and Helper components, update checkbox page ([07de620](https://github.com/themesberg/flowbite-svelte/commit/07de6208e256cb364d9ae1ed02b321168119514d))
|
|
993
|
+
- update createprops and update props ([0739b92](https://github.com/themesberg/flowbite-svelte/commit/0739b9296caddcba85f849b222e6548a961dbd34))
|
|
994
|
+
- update darkmode link ([e91ddd4](https://github.com/themesberg/flowbite-svelte/commit/e91ddd4417643b0cba304868ec15505b0fabb30b))
|
|
995
|
+
- update deps ([d204667](https://github.com/themesberg/flowbite-svelte/commit/d20466715709bd4817277bb6eeaed8f1cb0c4002))
|
|
996
|
+
- update Dropdown components ([4dd3254](https://github.com/themesberg/flowbite-svelte/commit/4dd3254b037be1db5718c4a03662e7cf455a4ee6))
|
|
997
|
+
- update dropdown creating Dropdown, DropdownDivider, DropdownHeader, DropdownItem ([58db150](https://github.com/themesberg/flowbite-svelte/commit/58db150ee321f849ece954f43213e09a3634e191))
|
|
998
|
+
- update DropdownNavbar using NavDropdown ([8061789](https://github.com/themesberg/flowbite-svelte/commit/806178993f8029cac9e1989c2f1de795cb60b4bd))
|
|
999
|
+
- update for [#165](https://github.com/themesberg/flowbite-svelte/issues/165) and [#170](https://github.com/themesberg/flowbite-svelte/issues/170) ([ff43f26](https://github.com/themesberg/flowbite-svelte/commit/ff43f265b163d2c3ac7a145772e18a95326c0651))
|
|
1000
|
+
- update for flowbite-svelte-icon v0.2.1 ([fbbe4b1](https://github.com/themesberg/flowbite-svelte/commit/fbbe4b104dc0c41708e4bc3442c86096019bead4))
|
|
1001
|
+
- update for lighthouse ([e81850d](https://github.com/themesberg/flowbite-svelte/commit/e81850db1d00851f2f8b3a1320ef7658f0654674))
|
|
1002
|
+
- update forms page ([1718c57](https://github.com/themesberg/flowbite-svelte/commit/1718c574cbf27943a746d114c511c2b634e7c1fd))
|
|
1003
|
+
- update forms page ([c29c921](https://github.com/themesberg/flowbite-svelte/commit/c29c9211f4f28149fcbafe44550d2ba716f12d4b))
|
|
1004
|
+
- update forms/index page ([bda7cc2](https://github.com/themesberg/flowbite-svelte/commit/bda7cc29fc6fe4274032436004ded20e89ce1a9b))
|
|
1005
|
+
- update from index.ts to index.js in vite.config.ts ([a7978dd](https://github.com/themesberg/flowbite-svelte/commit/a7978dd854ded3238aa522b5ee47ebc2f0865cf9))
|
|
1006
|
+
- update h1 for breadcrumb ([8bfef6a](https://github.com/themesberg/flowbite-svelte/commit/8bfef6a93f69dbbf4fb667ba0d177059181b6cdb))
|
|
1007
|
+
- update h1 in index pages ([e4d1a52](https://github.com/themesberg/flowbite-svelte/commit/e4d1a5284c5ce5f1d981e377263f97c2a2d00485))
|
|
1008
|
+
- update home page ([1698549](https://github.com/themesberg/flowbite-svelte/commit/1698549517b8dd4dc56cfb8d784fb64a54ff9981))
|
|
1009
|
+
- update Htwo using scroll-mt-20 ([2006490](https://github.com/themesberg/flowbite-svelte/commit/200649069a05c6df4ed0e269d3479526092afe01))
|
|
1010
|
+
- update icon class in TabHeadItem for Tabs with icons ([e94b344](https://github.com/themesberg/flowbite-svelte/commit/e94b3449826e84146b877e00e458885e08606ec5))
|
|
1011
|
+
- update Iconinput ([2b4a7b5](https://github.com/themesberg/flowbite-svelte/commit/2b4a7b55f7db35f3e5b0cc042aa27a84ff741194))
|
|
1012
|
+
- update index.js by adding .js to all store files ([1b1adcd](https://github.com/themesberg/flowbite-svelte/commit/1b1adcdd11dba6c3f37507f91f17795a9f605e25))
|
|
1013
|
+
- update Input component ([94df473](https://github.com/themesberg/flowbite-svelte/commit/94df473935baaa4f22124ceb0d6501a1359bd4b4))
|
|
1014
|
+
- update InputType in Input components ([e9df0cc](https://github.com/themesberg/flowbite-svelte/commit/e9df0cc0989eb89f83b8ebced319e58ccc108446))
|
|
1015
|
+
- update internal links ([3e13890](https://github.com/themesberg/flowbite-svelte/commit/3e13890f7320e04a32aa8ea1aed6e77c0b155678))
|
|
1016
|
+
- update layouts for breadcrumb ([1c07955](https://github.com/themesberg/flowbite-svelte/commit/1c07955215fe7a48e3e5573c5c657d59978b5fe4))
|
|
1017
|
+
- update links ([980ff51](https://github.com/themesberg/flowbite-svelte/commit/980ff511f5c75c0a47c1f5378f952054c3c44e9a))
|
|
1018
|
+
- update links, flowbite svelte link, sitemap links, white for dark mode ([024b079](https://github.com/themesberg/flowbite-svelte/commit/024b079c161678f2a683736a97d4431f8d8a5279))
|
|
1019
|
+
- update main nav. add transition to carousel ([3a9f572](https://github.com/themesberg/flowbite-svelte/commit/3a9f5723af8f54ef58c6902af5599114cc81fb86))
|
|
1020
|
+
- update menu and tabs/index ([d48d335](https://github.com/themesberg/flowbite-svelte/commit/d48d335833d904ccb30edda1d1dd6f86e83fc9ee))
|
|
1021
|
+
- update meta images width and height ([#400](https://github.com/themesberg/flowbite-svelte/issues/400)) ([f97c01a](https://github.com/themesberg/flowbite-svelte/commit/f97c01a361714daca951c16fa7a2293988abd983))
|
|
1022
|
+
- update navbar ([7cdfa05](https://github.com/themesberg/flowbite-svelte/commit/7cdfa0525499faca856632278f5cb6b6c4213e75))
|
|
1023
|
+
- update Navbar ([57d50fc](https://github.com/themesberg/flowbite-svelte/commit/57d50fc256f07dc236e02f38aa87bc1e7d9166be))
|
|
1024
|
+
- update Navbar components ([57a7205](https://github.com/themesberg/flowbite-svelte/commit/57a7205e3c5db1dcec4f677878b2001fde749c67))
|
|
1025
|
+
- update navbar index page by adding flex items-center md:order-2 ([efc0209](https://github.com/themesberg/flowbite-svelte/commit/efc0209c87d063157f225476f0b8e5beb04ed36f))
|
|
1026
|
+
- update package:publish script ([8ec3669](https://github.com/themesberg/flowbite-svelte/commit/8ec36699099e0672263f4c44fecd07e3d8ec6313))
|
|
1027
|
+
- update package.json ([a77e3e5](https://github.com/themesberg/flowbite-svelte/commit/a77e3e57f58ac95dda547cc9a410a2aaa4559fe8))
|
|
1028
|
+
- update package.json and clean up lib/index ([e37a45e](https://github.com/themesberg/flowbite-svelte/commit/e37a45e81f07f7f98f4ef7c7b569e203bf63582a))
|
|
1029
|
+
- update package.json in order to move src/routes to main. ([eaf78dc](https://github.com/themesberg/flowbite-svelte/commit/eaf78dcf5a11bda3343058eb69a4a8fbdbe444c5))
|
|
1030
|
+
- update pnpm-lock ([4926a47](https://github.com/themesberg/flowbite-svelte/commit/4926a47bd529601b1a0709533fee2b5291e59eb8))
|
|
1031
|
+
- update progressbars/index ([c36dbcd](https://github.com/themesberg/flowbite-svelte/commit/c36dbcdaa98e4236a8a9bd8a63aebca4443ea741))
|
|
1032
|
+
- update prop names for Alert ([3775700](https://github.com/themesberg/flowbite-svelte/commit/377570061f48de43af44c5f87f46b049f4d87341))
|
|
1033
|
+
- update props ([cb92b47](https://github.com/themesberg/flowbite-svelte/commit/cb92b47bd79f8833aea263d106675881a6fcd456))
|
|
1034
|
+
- update props ([#749](https://github.com/themesberg/flowbite-svelte/issues/749)) ([445c07e](https://github.com/themesberg/flowbite-svelte/commit/445c07ebadf2432bc6c005a7e78ac7660f6abf40))
|
|
1035
|
+
- update props and types page ([#331](https://github.com/themesberg/flowbite-svelte/issues/331)) ([0be5900](https://github.com/themesberg/flowbite-svelte/commit/0be59006c6bf79df210838b21a17d3dfd18213ac))
|
|
1036
|
+
- update props dir files ([e52cfcb](https://github.com/themesberg/flowbite-svelte/commit/e52cfcbba6ce7fae124803f670ba280e95c96e85))
|
|
1037
|
+
- update props table and github links ([0a184d1](https://github.com/themesberg/flowbite-svelte/commit/0a184d11469729e2697ea91117ad487e2b6e3741))
|
|
1038
|
+
- update RadioItem props ([fd2f9a0](https://github.com/themesberg/flowbite-svelte/commit/fd2f9a0c4b3854c3a644710a4cb1df238e1a6af2))
|
|
1039
|
+
- update range page ([edbf37f](https://github.com/themesberg/flowbite-svelte/commit/edbf37f7b2c6ef0109d15bf1e76dcd52bf2b9b05))
|
|
1040
|
+
- update rating page for AdvancedRating ([f1dc978](https://github.com/themesberg/flowbite-svelte/commit/f1dc978b5775e0089cc6c8aa1fac1c5ed8b97dca))
|
|
1041
|
+
- update README ([adfdea2](https://github.com/themesberg/flowbite-svelte/commit/adfdea2744736b57d28b70e1dfd03c9c8c4164fe))
|
|
1042
|
+
- update README ([e186aa4](https://github.com/themesberg/flowbite-svelte/commit/e186aa4d5531aa8a9062f315e4a2a3e1936aa763))
|
|
1043
|
+
- update sidebar dropdown, all modal components ([11c0e1d](https://github.com/themesberg/flowbite-svelte/commit/11c0e1d3c2770b5bcefb924749c9b3e4f1448ceb))
|
|
1044
|
+
- update sidebar menu to close after clicking a link ([ae9a36c](https://github.com/themesberg/flowbite-svelte/commit/ae9a36c2d9705c664de91a6870b7603ccffbece2))
|
|
1045
|
+
- update sidebar menu to close it when you click outside of the sidebar ([30c6026](https://github.com/themesberg/flowbite-svelte/commit/30c6026f8f5fec945e97de18585f5665ca6ddbae))
|
|
1046
|
+
- update skeleton components ([b1ffbc7](https://github.com/themesberg/flowbite-svelte/commit/b1ffbc789536f0e6be4bcca3e4083466c62fe85e))
|
|
1047
|
+
- update skeleton components ([6c49370](https://github.com/themesberg/flowbite-svelte/commit/6c49370ef244234373d4b87cb1a60e4aebdbf86f))
|
|
1048
|
+
- update styling ([8a6c49b](https://github.com/themesberg/flowbite-svelte/commit/8a6c49b6352fcfdf6fed4430693b3941e154c069))
|
|
1049
|
+
- update Svelte-Heros icon for Rating component ([d1c03fa](https://github.com/themesberg/flowbite-svelte/commit/d1c03fa4a0cb4b2cd4ccfe956d7d36ebd4161ed4))
|
|
1050
|
+
- update svelte-sidebar-menu ([59b37b5](https://github.com/themesberg/flowbite-svelte/commit/59b37b5a8f3bea06ecd8b8fdf5cc5ac5967dd149))
|
|
1051
|
+
- update svelte-sidebar-menu ([f6fb17f](https://github.com/themesberg/flowbite-svelte/commit/f6fb17f3ea37ea0fd0a489dc3e167849d372e367))
|
|
1052
|
+
- update svelte-sidebar-menu and \_\_layout ([9314f7a](https://github.com/themesberg/flowbite-svelte/commit/9314f7ac55204505f4cffe2e166b36c474a92985))
|
|
1053
|
+
- update svelte-sidebar-menu to 0.8.4 ([3b07355](https://github.com/themesberg/flowbite-svelte/commit/3b073553c392f4adb47254beb49769d4e150eaa4))
|
|
1054
|
+
- update svelte-sidebar-menu version ([1106d16](https://github.com/themesberg/flowbite-svelte/commit/1106d161d06244d5db61641babc7691d28388fbd))
|
|
1055
|
+
- update svelte-simples ([f958721](https://github.com/themesberg/flowbite-svelte/commit/f9587219ff3da038ee76c6d3b8483dfb2dddc856))
|
|
1056
|
+
- update Tabel component, add TableHead, TableBody, TableHeadCell, TabelRow ([09b7ad9](https://github.com/themesberg/flowbite-svelte/commit/09b7ad971a2d5ba01eca463e251f2c078a86b708))
|
|
1057
|
+
- update tabStores import link ([b856b9f](https://github.com/themesberg/flowbite-svelte/commit/b856b9f7ab7932b7e3f6bf5e181a15bc192d702f))
|
|
1058
|
+
- update test for /buttons/setup page ([90daabb](https://github.com/themesberg/flowbite-svelte/commit/90daabbad3d921e5938c990f3099bd268df4aebf))
|
|
1059
|
+
- update timeline and home page ([112b08e](https://github.com/themesberg/flowbite-svelte/commit/112b08e9ef990f36b0a62057d28b914529d8a616))
|
|
1060
|
+
- update Timeline components ([4b47d6b](https://github.com/themesberg/flowbite-svelte/commit/4b47d6b5d09abad3b2d8fc29c2b38287726c44d7))
|
|
1061
|
+
- update Tooltip component ([df80539](https://github.com/themesberg/flowbite-svelte/commit/df8053996f8ea67d96ee5e70976a61f13e7df2ec))
|
|
1062
|
+
- update Tooltip component ([d0cc06e](https://github.com/themesberg/flowbite-svelte/commit/d0cc06e991e5677463a5625b4abaee2a6edef3fc))
|
|
1063
|
+
- update tooltips/light ([94ad280](https://github.com/themesberg/flowbite-svelte/commit/94ad280e2296946bf11386e56824aeeef49c962b))
|
|
1064
|
+
- update tsconfig.json ([ff4b3da](https://github.com/themesberg/flowbite-svelte/commit/ff4b3dacb420558c0beb627a75d9668e8fad88f9))
|
|
1065
|
+
- update workflows playwright version ([faafd96](https://github.com/themesberg/flowbite-svelte/commit/faafd96286140631447f1d88d24b0b3e477181e5))
|
|
1066
|
+
- use encodeURIComponent for MetaTag component to encode spaces ([671a865](https://github.com/themesberg/flowbite-svelte/commit/671a8656eb7f5fff6f8c84ea6146f78b5fb8f0b0))
|
|
1067
|
+
- use json file to pull props for tooltip/default ([076be6c](https://github.com/themesberg/flowbite-svelte/commit/076be6c65c0d40b2e88e0070c9983ef99b8f3b28))
|
|
1068
|
+
- use reactive spread ([#927](https://github.com/themesberg/flowbite-svelte/issues/927)) ([a743782](https://github.com/themesberg/flowbite-svelte/commit/a743782a0430680dea1ce072664494db886834fd))
|
|
1069
|
+
- use relative paths instead of $lib alias inside of lib ([96e9d6b](https://github.com/themesberg/flowbite-svelte/commit/96e9d6bacb81761a26b0e43215c53ae24deffc73))
|
|
1070
|
+
- use svelte-sidebar Responsive for all layouts ([dc9ed0d](https://github.com/themesberg/flowbite-svelte/commit/dc9ed0dbd7b99cbdc199f222dc6e68c4dd1a317f))
|
|
1071
|
+
- use vite to import a file as text ([#342](https://github.com/themesberg/flowbite-svelte/issues/342)) ([07ac592](https://github.com/themesberg/flowbite-svelte/commit/07ac592b0a06cda8afd71d918145693a0834b4f3))
|
|
1072
|
+
- using classnames dynamic class name for Footer ([52e17c7](https://github.com/themesberg/flowbite-svelte/commit/52e17c7dd8ad2599d1f41bc938930db615459b63))
|
|
1073
|
+
- Utterances link update to themesberg ([584da7e](https://github.com/themesberg/flowbite-svelte/commit/584da7ecf8a755814b436998e3567b7ea46c35d9))
|
|
1074
|
+
- various minor fixes ([9ac3296](https://github.com/themesberg/flowbite-svelte/commit/9ac3296635db9e7af2a45cc928477ac15e831dc4))
|
|
1075
|
+
- video component and page ([cc8dcb5](https://github.com/themesberg/flowbite-svelte/commit/cc8dcb54843ecff1f9aacc82d9139aedf7d6e0c1))
|
|
1076
|
+
- vite.config.ts update ([72f8a25](https://github.com/themesberg/flowbite-svelte/commit/72f8a251221ce78a4452c8ead17ce2abb35cbb00))
|
|
1077
|
+
- window is undefined ([b752882](https://github.com/themesberg/flowbite-svelte/commit/b752882ad0f0f6a7c196223649463903453f48d6))
|
|
1078
|
+
- window is undefined/2 ([4c0ca77](https://github.com/themesberg/flowbite-svelte/commit/4c0ca77eddfae2a04d10bc1ea3dc53671864b181))
|
|
1079
|
+
- workaround for scroll to anchor ([#923](https://github.com/themesberg/flowbite-svelte/issues/923)) ([01acc0d](https://github.com/themesberg/flowbite-svelte/commit/01acc0dbb31ae9775ce819dd6f1ec58b66b76bb2))
|
|
1080
|
+
- workaround for scroll to anchor ([#923](https://github.com/themesberg/flowbite-svelte/issues/923)) ([0091171](https://github.com/themesberg/flowbite-svelte/commit/0091171a7544b90ced1492039518d4932d62a3a6))
|
|
1081
|
+
- wrong label class name ([39735b3](https://github.com/themesberg/flowbite-svelte/commit/39735b3a85285bd69d064aef22145d60d278da46))
|
|
1082
|
+
|
|
1083
|
+
- Merge branch 'jjagielka-tooltip' ([1c37601](https://github.com/themesberg/flowbite-svelte/commit/1c3760139e24569287891c1ca3f67f2e0e3b9168))
|
|
1084
|
+
- accordion color option ([#948](https://github.com/themesberg/flowbite-svelte/issues/948)) ([9c2305b](https://github.com/themesberg/flowbite-svelte/commit/9c2305bb6168e7b658489a8b0055deaad241fd0f))
|
|
1085
|
+
|
|
1086
|
+
### [0.41.2](https://github.com/themesberg/flowbite-svelte/compare/v0.41.0...v0.41.2) (2023-08-06)
|
|
1087
|
+
|
|
1088
|
+
## [0.41.0](https://github.com/themesberg/flowbite-svelte/compare/v0.40.2...v0.41.0) (2023-08-06)
|
|
1089
|
+
|
|
1090
|
+
### ⚠ BREAKING CHANGES
|
|
1091
|
+
|
|
1092
|
+
- change the Tabs component props
|
|
1093
|
+
|
|
1094
|
+
- Revert "feat: change tabs variant to styles"
|
|
1095
|
+
|
|
1096
|
+
This reverts commit c949b82f02f8adad2a2d172e602ce5774ae3bca6.
|
|
1097
|
+
|
|
1098
|
+
### Features
|
|
1099
|
+
|
|
1100
|
+
- [#966](https://github.com/themesberg/flowbite-svelte/issues/966) ([#968](https://github.com/themesberg/flowbite-svelte/issues/968)) ([2b4503a](https://github.com/themesberg/flowbite-svelte/commit/2b4503a148f74b3982e3c4f65c2b19d11c13fbfc))
|
|
1101
|
+
- export open in speeddial ([#960](https://github.com/themesberg/flowbite-svelte/issues/960)) ([7dff563](https://github.com/themesberg/flowbite-svelte/commit/7dff5630dfd482a828c45611f129c432b94908de))
|
|
1102
|
+
|
|
1103
|
+
### Bug Fixes
|
|
1104
|
+
|
|
1105
|
+
- [#952](https://github.com/themesberg/flowbite-svelte/issues/952) multiselect ([#954](https://github.com/themesberg/flowbite-svelte/issues/954)) ([cd37db1](https://github.com/themesberg/flowbite-svelte/commit/cd37db16d97884171f059273be9c62f260777c9b))
|
|
1106
|
+
- [#958](https://github.com/themesberg/flowbite-svelte/issues/958) ([#959](https://github.com/themesberg/flowbite-svelte/issues/959)) ([e238349](https://github.com/themesberg/flowbite-svelte/commit/e238349576f535122e87f09ded63a76b831ffc98))
|
|
1107
|
+
- border color on popup examples ([#969](https://github.com/themesberg/flowbite-svelte/issues/969)) ([049d1a3](https://github.com/themesberg/flowbite-svelte/commit/049d1a3604d1b9c44719f9b998c611b1ea633073))
|
|
1108
|
+
- docs typo - tooltip type ([#956](https://github.com/themesberg/flowbite-svelte/issues/956)) ([cde7b8e](https://github.com/themesberg/flowbite-svelte/commit/cde7b8e9a5c8cbccfa6d4f6ed0c59e9aa8ea6f6f))
|
|
1109
|
+
- events for gradient button ([#967](https://github.com/themesberg/flowbite-svelte/issues/967)) ([fda337b](https://github.com/themesberg/flowbite-svelte/commit/fda337ba28ad6081bb15ab93108b699d8ab001c0))
|
|
1110
|
+
|
|
1111
|
+
- accordion color option ([#948](https://github.com/themesberg/flowbite-svelte/issues/948)) ([9c2305b](https://github.com/themesberg/flowbite-svelte/commit/9c2305bb6168e7b658489a8b0055deaad241fd0f))
|
|
1112
|
+
|
|
1113
|
+
### [0.40.2](https://github.com/themesberg/flowbite-svelte/compare/v0.40.1...v0.40.2) (2023-07-24)
|
|
1114
|
+
|
|
1115
|
+
### Features
|
|
1116
|
+
|
|
1117
|
+
- allow customization of body class in Modal component ([#945](https://github.com/themesberg/flowbite-svelte/issues/945)) ([72514ec](https://github.com/themesberg/flowbite-svelte/commit/72514ec631712d2c6bf9b94515f0a76b23759706))
|
|
1118
|
+
- allow customization of innerWrapperClass for Textarea ([#929](https://github.com/themesberg/flowbite-svelte/issues/929)) ([8869fbf](https://github.com/themesberg/flowbite-svelte/commit/8869fbfe36dd012ff653b5dba522119927897e2a))
|
|
1119
|
+
|
|
1120
|
+
### Bug Fixes
|
|
1121
|
+
|
|
1122
|
+
- [#937](https://github.com/themesberg/flowbite-svelte/issues/937) ([#943](https://github.com/themesberg/flowbite-svelte/issues/943)) ([442ab65](https://github.com/themesberg/flowbite-svelte/commit/442ab650ca14fd75094dcb85f2774f714be4394b))
|
|
1123
|
+
- Added events to BottomNavHeaderItem ([#941](https://github.com/themesberg/flowbite-svelte/issues/941)) ([ebdcbeb](https://github.com/themesberg/flowbite-svelte/commit/ebdcbebed7737b26ff0552e964149b8de05771d4))
|
|
1124
|
+
- Added z-50 to dropdown container so it always stays on top ([#942](https://github.com/themesberg/flowbite-svelte/issues/942)) ([e3de343](https://github.com/themesberg/flowbite-svelte/commit/e3de343fae29257e8588c8515eaaa5e6521a2488))
|
|
1125
|
+
- **dropzone:** fixes dragging file over the input ([#919](https://github.com/themesberg/flowbite-svelte/issues/919)) ([5f02261](https://github.com/themesberg/flowbite-svelte/commit/5f02261a36a22e48e4f0fa3c5a0fe47f65eb2ccc))
|
|
1126
|
+
- paragraph page ([98b2dab](https://github.com/themesberg/flowbite-svelte/commit/98b2dabe767cc3e8afa652bd0706dd590997bba6))
|
|
1127
|
+
|
|
1128
|
+
### [0.40.1](https://github.com/themesberg/flowbite-svelte/compare/v0.39.3...v0.40.1) (2023-07-17)
|
|
1129
|
+
|
|
1130
|
+
### Bug Fixes
|
|
1131
|
+
|
|
1132
|
+
- [#931](https://github.com/themesberg/flowbite-svelte/issues/931) ([#932](https://github.com/themesberg/flowbite-svelte/issues/932)) ([d56bc55](https://github.com/themesberg/flowbite-svelte/commit/d56bc5561f33d2f7b8c9df647b28b222b0ea6a47))
|
|
1133
|
+
|
|
1134
|
+
### [0.39.3](https://github.com/themesberg/flowbite-svelte/compare/v0.39.2...v0.39.3) (2023-07-14)
|
|
1135
|
+
|
|
1136
|
+
### Features
|
|
1137
|
+
|
|
1138
|
+
- pagination large ([#895](https://github.com/themesberg/flowbite-svelte/issues/895)) ([a5cd87a](https://github.com/themesberg/flowbite-svelte/commit/a5cd87a2bfed6ce25c39969be401458dda2259c3))
|
|
1139
|
+
|
|
1140
|
+
### Bug Fixes
|
|
1141
|
+
|
|
1142
|
+
- [#905](https://github.com/themesberg/flowbite-svelte/issues/905) ([#913](https://github.com/themesberg/flowbite-svelte/issues/913)) ([85d8d43](https://github.com/themesberg/flowbite-svelte/commit/85d8d43b7b69c3d9050a56dca6d947f4dcc047b2))
|
|
1143
|
+
- [#909](https://github.com/themesberg/flowbite-svelte/issues/909) ([#911](https://github.com/themesberg/flowbite-svelte/issues/911)) ([85b10d1](https://github.com/themesberg/flowbite-svelte/commit/85b10d16c430fea282e4cdb977003a710e6c552b))
|
|
1144
|
+
- [#910](https://github.com/themesberg/flowbite-svelte/issues/910) ([#912](https://github.com/themesberg/flowbite-svelte/issues/912)) ([ccaa4b6](https://github.com/themesberg/flowbite-svelte/commit/ccaa4b6772a3d8b24aba0a8fc4a1e25c148f9e86))
|
|
1145
|
+
- initial dark mode ([#924](https://github.com/themesberg/flowbite-svelte/issues/924)) ([103bf6a](https://github.com/themesberg/flowbite-svelte/commit/103bf6a7ab1eb24003c09ac93fff574d4ae170ad))
|
|
1146
|
+
- **Input:** Use a reactive spread instead of custom action to set Input `type` attribute ([#921](https://github.com/themesberg/flowbite-svelte/issues/921)) ([165e273](https://github.com/themesberg/flowbite-svelte/commit/165e273357efa57d35e8f7a268ad5bc5e725d565))
|
|
1147
|
+
- playwright and lint yaml 1.36.0 ([4c96d64](https://github.com/themesberg/flowbite-svelte/commit/4c96d6497224cbfc30bbb4cdfedf6fd4f44d1f47))
|
|
1148
|
+
- use reactive spread ([#927](https://github.com/themesberg/flowbite-svelte/issues/927)) ([a743782](https://github.com/themesberg/flowbite-svelte/commit/a743782a0430680dea1ce072664494db886834fd))
|
|
1149
|
+
- workaround for scroll to anchor ([#923](https://github.com/themesberg/flowbite-svelte/issues/923)) ([0091171](https://github.com/themesberg/flowbite-svelte/commit/0091171a7544b90ced1492039518d4932d62a3a6))
|
|
1150
|
+
|
|
1151
|
+
### [0.39.2](https://github.com/themesberg/flowbite-svelte/compare/v0.39.1...v0.39.2) (2023-07-03)
|
|
1152
|
+
|
|
1153
|
+
### Features
|
|
1154
|
+
|
|
1155
|
+
- **docs:** improve docs components ([#889](https://github.com/themesberg/flowbite-svelte/issues/889)) ([0b82e2f](https://github.com/themesberg/flowbite-svelte/commit/0b82e2f1f08f047969a7f1b7c06b3982b3abca03))
|
|
1156
|
+
|
|
1157
|
+
### Bug Fixes
|
|
1158
|
+
|
|
1159
|
+
- $$props.class ([#890](https://github.com/themesberg/flowbite-svelte/issues/890)) ([8d90322](https://github.com/themesberg/flowbite-svelte/commit/8d90322eb0fbddfb626f9f3b89c53afcf5bacfc7))
|
|
1160
|
+
- add shrink-0 to prevent toggle UI from shrinking on small screen sizes ([#885](https://github.com/themesberg/flowbite-svelte/issues/885)) ([81c65bd](https://github.com/themesberg/flowbite-svelte/commit/81c65bde22a3f12ad3980658a9e919c6fd92898d))
|
|
1161
|
+
- **multi-select:** pre-select values fix ([#892](https://github.com/themesberg/flowbite-svelte/issues/892)) ([e399248](https://github.com/themesberg/flowbite-svelte/commit/e399248dc4503f37b281535acbfa965f3f88ecec))
|
|
1162
|
+
- transitions in drawer ([#881](https://github.com/themesberg/flowbite-svelte/issues/881)) ([90319b3](https://github.com/themesberg/flowbite-svelte/commit/90319b3d5237ca896c5ea971f77c776d678ebb05))
|
|
1163
|
+
- transitions in frame ([#883](https://github.com/themesberg/flowbite-svelte/issues/883)) ([079ca87](https://github.com/themesberg/flowbite-svelte/commit/079ca8795814e7c3b482cfb27ddfec5fd23fc683))
|
|
1164
|
+
|
|
1165
|
+
### [0.39.1](https://github.com/themesberg/flowbite-svelte/compare/v0.38.5...v0.39.1) (2023-06-28)
|
|
1166
|
+
|
|
1167
|
+
### Features
|
|
1168
|
+
|
|
1169
|
+
- run svelte-migrate ([d4d7c48](https://github.com/themesberg/flowbite-svelte/commit/d4d7c48fbf7fab165e6cc491d52085ab5503ebbb))
|
|
1170
|
+
- upgrade deps ([5a61709](https://github.com/themesberg/flowbite-svelte/commit/5a61709c7d748af7e9f5dcc73e4c49b30c5a9e44))
|
|
1171
|
+
|
|
1172
|
+
### Bug Fixes
|
|
1173
|
+
|
|
1174
|
+
- add button role if it is a link ([e481587](https://github.com/themesberg/flowbite-svelte/commit/e481587edfb3236aae6f76a285ebe51bfc6ae260))
|
|
1175
|
+
- add button role if pag item is link ([0192784](https://github.com/themesberg/flowbite-svelte/commit/019278438c84d594c8b7d352a340a38bb49f4934))
|
|
1176
|
+
- add button role to multiselect svg ([13cf560](https://github.com/themesberg/flowbite-svelte/commit/13cf560cf49f138b4e375563fd6522cacba23899))
|
|
1177
|
+
- add ignore to modal ([cedf9f1](https://github.com/themesberg/flowbite-svelte/commit/cedf9f18c60dc0f8db03b56e6c456a0121367f41))
|
|
1178
|
+
- add listbox role to multiselect ([66ed95e](https://github.com/themesberg/flowbite-svelte/commit/66ed95e96bb5526b7b0a6840fa92ed9b51de1850))
|
|
1179
|
+
- add option role with aria-selected ([d4d5561](https://github.com/themesberg/flowbite-svelte/commit/d4d556192d7c9baada02fb42fb2734afd1eed7f7))
|
|
1180
|
+
- add role prop to frame ([53c816f](https://github.com/themesberg/flowbite-svelte/commit/53c816f4136a3efde1d5ea80f7908994a0e621c8))
|
|
1181
|
+
- add role to drawer ([d40f812](https://github.com/themesberg/flowbite-svelte/commit/d40f8127265fc397bef0b8868c3771f4d47a2230))
|
|
1182
|
+
- add role to sidebar menu svg ([1c3fd48](https://github.com/themesberg/flowbite-svelte/commit/1c3fd4843391581874a3852989cfe20219c8636f))
|
|
1183
|
+
- change option role for multiselect ([601945f](https://github.com/themesberg/flowbite-svelte/commit/601945f3772e565eb0d099ac38495f6fb40d7afc))
|
|
1184
|
+
- move transitions to local ([f060cba](https://github.com/themesberg/flowbite-svelte/commit/f060cba164501e0810934b88e8f4e22a784eeca6))
|
|
1185
|
+
- ts item type in megamenu ([c0ee437](https://github.com/themesberg/flowbite-svelte/commit/c0ee437ba3f04142e276f09e9f7301800828301f))
|
|
1186
|
+
- typo ([c9f71f2](https://github.com/themesberg/flowbite-svelte/commit/c9f71f294bfaeea90b50d503b99b49b344ba8921))
|
|
1187
|
+
- update deps ([d204667](https://github.com/themesberg/flowbite-svelte/commit/d20466715709bd4817277bb6eeaed8f1cb0c4002))
|
|
1188
|
+
|
|
1189
|
+
### [0.38.5](https://github.com/themesberg/flowbite-svelte/compare/v0.38.4...v0.38.5) (2023-06-21)
|
|
1190
|
+
|
|
1191
|
+
### Features
|
|
1192
|
+
|
|
1193
|
+
- add twMerge to timeline components ([e993e72](https://github.com/themesberg/flowbite-svelte/commit/e993e72c1524bbd4c64e61d48cd3307a8a833ec4))
|
|
1194
|
+
|
|
1195
|
+
### [0.38.4](https://github.com/themesberg/flowbite-svelte/compare/v0.38.3...v0.38.4) (2023-06-20)
|
|
1196
|
+
|
|
1197
|
+
### [0.38.3](https://github.com/themesberg/flowbite-svelte/compare/v0.37.5...v0.38.3) (2023-06-19)
|
|
1198
|
+
|
|
1199
|
+
### Features
|
|
1200
|
+
|
|
1201
|
+
- add active class to BottomNav and BottomNavItem ([0d5d9e3](https://github.com/themesberg/flowbite-svelte/commit/0d5d9e3ff42d312105f5209ec4d91771bb8e40d7))
|
|
1202
|
+
- add additional classes where components has more than one twMerge ([77769cc](https://github.com/themesberg/flowbite-svelte/commit/77769cc2dc67ffc61997c62e8f1107f4d2bc1bab))
|
|
1203
|
+
- add classActive to BottomNav ([06bf5dc](https://github.com/themesberg/flowbite-svelte/commit/06bf5dc2d284c475c81ae6a379831aaeb42c028d))
|
|
1204
|
+
- add classPlaceholder to avatar component ([d4bc2d7](https://github.com/themesberg/flowbite-svelte/commit/d4bc2d70c87e879fa188831eb524a45ca2d43ab1))
|
|
1205
|
+
- add on:click to A component ([0828612](https://github.com/themesberg/flowbite-svelte/commit/08286129bfc70d0bbe52df01c431ae3fb9f2ea13))
|
|
1206
|
+
- add search on home page ([3cba1fd](https://github.com/themesberg/flowbite-svelte/commit/3cba1fd3d61d934c78046841551bcb7b702b8597))
|
|
1207
|
+
- replace all components classnames to twMerge ([6d0ec87](https://github.com/themesberg/flowbite-svelte/commit/6d0ec8703bff2af91be1e656eb1f71b6f42ea920))
|
|
1208
|
+
- replace classnames to twMerge and twJoin ([342ae23](https://github.com/themesberg/flowbite-svelte/commit/342ae231b3552fc11f44b0fa9c9bc968d7193672))
|
|
1209
|
+
- replace classnames to twMerge and twJoin upto Card ([6ab1278](https://github.com/themesberg/flowbite-svelte/commit/6ab1278cf9e5c45e7be2b2a532f0f469116aa3d3))
|
|
1210
|
+
- replace classnames to twMerge and twJoin upto Footer ([799fd01](https://github.com/themesberg/flowbite-svelte/commit/799fd011c3246a220492ca59c84716b935e6aea1))
|
|
1211
|
+
- replace classnames to twMerge upto Progressbar ([a2ba25b](https://github.com/themesberg/flowbite-svelte/commit/a2ba25b566a0049025f8f6f7c5f7046e0b8dfdae))
|
|
1212
|
+
- replace classnames to twMerge upto TableSearch ([1307d58](https://github.com/themesberg/flowbite-svelte/commit/1307d589f82e7c20079640cbe90bc29e0c33e57b))
|
|
1213
|
+
- replace classnames to twMerge upto Toggle ([57890a6](https://github.com/themesberg/flowbite-svelte/commit/57890a66018c884940f981f5da78f9068e5c1833))
|
|
1214
|
+
- update docs and remove classnames from package.json ([9ef819b](https://github.com/themesberg/flowbite-svelte/commit/9ef819b24e2188c39d40d84ea60778ea42815a8a))
|
|
1215
|
+
|
|
1216
|
+
### Bug Fixes
|
|
1217
|
+
|
|
1218
|
+
- add "tailwind-merge": "^1.13.1" to dependencies ([9b5757e](https://github.com/themesberg/flowbite-svelte/commit/9b5757e25c12b0394f08aa5476e21312d858c6c7))
|
|
1219
|
+
- add height to Input-field dropdown demo ([b43f8fc](https://github.com/themesberg/flowbite-svelte/commit/b43f8fcaa1142035c92251d845590d0f682db59b))
|
|
1220
|
+
- Alert, GradientButton and Footer ([ccd2954](https://github.com/themesberg/flowbite-svelte/commit/ccd2954c444681e50a8b065ce25f2d3b484f7faa))
|
|
1221
|
+
- Checkbox spacing ([9f989d7](https://github.com/themesberg/flowbite-svelte/commit/9f989d7c0f59cacab8673d05e0abe27cc5906d42))
|
|
1222
|
+
- chevronup thickness ([dc9016b](https://github.com/themesberg/flowbite-svelte/commit/dc9016bfce4a9e664a1bf6fa79a747764b35f911))
|
|
1223
|
+
- DeviceMockup class ([94064d0](https://github.com/themesberg/flowbite-svelte/commit/94064d0c28766118db639e5d61181dff58e6756d))
|
|
1224
|
+
- Input and Radio components ([fd49114](https://github.com/themesberg/flowbite-svelte/commit/fd49114e343c3a66c7ef257ba41d5354b99707d1))
|
|
1225
|
+
- remove NavDropdown ([5c77f68](https://github.com/themesberg/flowbite-svelte/commit/5c77f68c097498a8ecbe10eaf5c8a8e3c1d2b187))
|
|
1226
|
+
- update Alert and workflows playwright version ([670516d](https://github.com/themesberg/flowbite-svelte/commit/670516da7f979153e2d4c1b72313f8f2ac0f3bfa))
|
|
1227
|
+
|
|
1228
|
+
### [0.38.2](https://github.com/themesberg/flowbite-svelte/compare/v0.38.1...v0.38.2) (2023-06-14)
|
|
1229
|
+
|
|
1230
|
+
### Features
|
|
1231
|
+
|
|
1232
|
+
- add additional classes where components has more than one twMerge ([77769cc](https://github.com/themesberg/flowbite-svelte/commit/77769cc2dc67ffc61997c62e8f1107f4d2bc1bab))
|
|
1233
|
+
|
|
1234
|
+
### [0.38.1](https://github.com/themesberg/flowbite-svelte/compare/v0.34.9...v0.38.1) (2023-06-13)
|
|
1235
|
+
|
|
1236
|
+
### Features
|
|
1237
|
+
|
|
1238
|
+
- add || ^4.0.0 to peerDependencies ([1211eb8](https://github.com/themesberg/flowbite-svelte/commit/1211eb83cc7f54570363300f744c16bd41962460))
|
|
1239
|
+
- add button to Thumbnail and move the on:click event listener to button ([c9119c7](https://github.com/themesberg/flowbite-svelte/commit/c9119c7bcf772215b63f546761f28f6fd2a271ef))
|
|
1240
|
+
- add events to tableheadcell and tablebodycell components ([#761](https://github.com/themesberg/flowbite-svelte/issues/761)) ([cb056aa](https://github.com/themesberg/flowbite-svelte/commit/cb056aaeaa01044241ad6fa7e700256b28cb5834))
|
|
1241
|
+
- add initialTheme to DarkMode component ([#776](https://github.com/themesberg/flowbite-svelte/issues/776)) ([5110499](https://github.com/themesberg/flowbite-svelte/commit/51104993239b410305e956b1af2204b4e3d37d66))
|
|
1242
|
+
- add mockups in package.json ([cfc32d5](https://github.com/themesberg/flowbite-svelte/commit/cfc32d5bb7822fda5c6170285a9f31bd907842df))
|
|
1243
|
+
- add primary to Checkbox ([b6063c6](https://github.com/themesberg/flowbite-svelte/commit/b6063c6925bd036676061d80a8c9ed78efda6f5c))
|
|
1244
|
+
- add role to ChevronLeft ([0fc996e](https://github.com/themesberg/flowbite-svelte/commit/0fc996e9414471366fc7d18315434b6e4778aa85))
|
|
1245
|
+
- add role to DropdownItem ([663ee33](https://github.com/themesberg/flowbite-svelte/commit/663ee3369b69fd7557963da10be2a8dac1ae2aed))
|
|
1246
|
+
- add role to Menu compo ([7a76025](https://github.com/themesberg/flowbite-svelte/commit/7a760257a43fb0e0638f00531813fdb84f0f36db))
|
|
1247
|
+
- add role to Modal ([ea79fff](https://github.com/themesberg/flowbite-svelte/commit/ea79fffea37ea32681a42afeb1dd500207953335))
|
|
1248
|
+
- add role to NavUl and NavLi ([08732dd](https://github.com/themesberg/flowbite-svelte/commit/08732dda1247ce68f2218a9e742ecc6e54f28f68))
|
|
1249
|
+
- add role to Star, Button, Heart, Thumbup, ChevronDown, CehvronRight, ChevronUp, InformationCirlc, and UserCircle components ([82337b2](https://github.com/themesberg/flowbite-svelte/commit/82337b2aac57730046a08a42f4272b8b82c22552))
|
|
1250
|
+
- add role to TableBodyCell and change td to svelte:element ([67de66c](https://github.com/themesberg/flowbite-svelte/commit/67de66c010567cccb4a4e9781ab71c23e9b72021))
|
|
1251
|
+
- **config:** fix default bg-primary-50 color ([7d89f57](https://github.com/themesberg/flowbite-svelte/commit/7d89f572b934f3da843bca3f4f162939c1bb2768))
|
|
1252
|
+
- darkmode fix for refreshing a browser ([#784](https://github.com/themesberg/flowbite-svelte/issues/784)) ([aac2187](https://github.com/themesberg/flowbite-svelte/commit/aac218711967ba63ee139ef7f5370dd43993c709))
|
|
1253
|
+
- dependencies update ([b1866b8](https://github.com/themesberg/flowbite-svelte/commit/b1866b8dc5ecc55cc0c343d663537439664cf7a8))
|
|
1254
|
+
- devicemockup ([#778](https://github.com/themesberg/flowbite-svelte/issues/778)) ([fec1f4c](https://github.com/themesberg/flowbite-svelte/commit/fec1f4caa5da33259766312dda95a7fdaeb291eb))
|
|
1255
|
+
- documenting components ([#801](https://github.com/themesberg/flowbite-svelte/issues/801)) ([80daafb](https://github.com/themesberg/flowbite-svelte/commit/80daafb221f49410d861d6efe5652b977faba513))
|
|
1256
|
+
- GetStarted element ([#681](https://github.com/themesberg/flowbite-svelte/issues/681)) ([cd381b7](https://github.com/themesberg/flowbite-svelte/commit/cd381b75c4589582eba7b5d4e945ca78f2884ec6))
|
|
1257
|
+
- home page cta ([#689](https://github.com/themesberg/flowbite-svelte/issues/689)) ([76d7eb5](https://github.com/themesberg/flowbite-svelte/commit/76d7eb5454fb04c3e7d2a6e048dc46e870050902))
|
|
1258
|
+
- **input:** update blue to primary color focus ([f155ec5](https://github.com/themesberg/flowbite-svelte/commit/f155ec588fc52e30383368b2700dbb28be3bbb6d))
|
|
1259
|
+
- newsletter form ([#674](https://github.com/themesberg/flowbite-svelte/issues/674)) ([89df011](https://github.com/themesberg/flowbite-svelte/commit/89df011c684bf8829b3f15c38fec4b727d62303d))
|
|
1260
|
+
- prev/next buttons ([#675](https://github.com/themesberg/flowbite-svelte/issues/675)) ([590e423](https://github.com/themesberg/flowbite-svelte/commit/590e423396a9d42ad56593f9131b2107ad1ec2fe))
|
|
1261
|
+
- replace all components classnames to twMerge ([6d0ec87](https://github.com/themesberg/flowbite-svelte/commit/6d0ec8703bff2af91be1e656eb1f71b6f42ea920))
|
|
1262
|
+
- replace classnames to twMerge and twJoin ([342ae23](https://github.com/themesberg/flowbite-svelte/commit/342ae231b3552fc11f44b0fa9c9bc968d7193672))
|
|
1263
|
+
- replace classnames to twMerge and twJoin upto Card ([6ab1278](https://github.com/themesberg/flowbite-svelte/commit/6ab1278cf9e5c45e7be2b2a532f0f469116aa3d3))
|
|
1264
|
+
- replace classnames to twMerge and twJoin upto Footer ([799fd01](https://github.com/themesberg/flowbite-svelte/commit/799fd011c3246a220492ca59c84716b935e6aea1))
|
|
1265
|
+
- replace classnames to twMerge upto Progressbar ([a2ba25b](https://github.com/themesberg/flowbite-svelte/commit/a2ba25b566a0049025f8f6f7c5f7046e0b8dfdae))
|
|
1266
|
+
- replace classnames to twMerge upto TableSearch ([1307d58](https://github.com/themesberg/flowbite-svelte/commit/1307d589f82e7c20079640cbe90bc29e0c33e57b))
|
|
1267
|
+
- replace classnames to twMerge upto Toggle ([57890a6](https://github.com/themesberg/flowbite-svelte/commit/57890a66018c884940f981f5da78f9068e5c1833))
|
|
1268
|
+
- slightly shorter version of redirection hooks ([#673](https://github.com/themesberg/flowbite-svelte/issues/673)) ([635e1e3](https://github.com/themesberg/flowbite-svelte/commit/635e1e38e2ac83d82982ff048d2a2f230c483389))
|
|
1269
|
+
- social proof ([#686](https://github.com/themesberg/flowbite-svelte/issues/686)) ([4567ee2](https://github.com/themesberg/flowbite-svelte/commit/4567ee2209263eb1aed2ddd712b8de651e044641))
|
|
1270
|
+
- trim number of components ([#709](https://github.com/themesberg/flowbite-svelte/issues/709)) ([8723242](https://github.com/themesberg/flowbite-svelte/commit/87232427dc255cda4a11dc2fef5228c124cfc4ee))
|
|
1271
|
+
- typescript types for frame subclasses ([#731](https://github.com/themesberg/flowbite-svelte/issues/731)) ([6dd9877](https://github.com/themesberg/flowbite-svelte/commit/6dd9877a7b667e895c02b79e86a2c3ce88eb608c))
|
|
1272
|
+
- update docs and remove classnames from package.json ([9ef819b](https://github.com/themesberg/flowbite-svelte/commit/9ef819b24e2188c39d40d84ea60778ea42815a8a))
|
|
1273
|
+
- update Dropzone and docs ([2467d22](https://github.com/themesberg/flowbite-svelte/commit/2467d222b7c172a8985ad6c8b6d683564ec07dc5))
|
|
1274
|
+
- update Rating component ([#772](https://github.com/themesberg/flowbite-svelte/issues/772)) ([0d9636f](https://github.com/themesberg/flowbite-svelte/commit/0d9636fa119a77a01f8ab30ff9f38aaa5753e914))
|
|
1275
|
+
|
|
1276
|
+
### Bug Fixes
|
|
1277
|
+
|
|
1278
|
+
- [#534](https://github.com/themesberg/flowbite-svelte/issues/534) list group typing ([#805](https://github.com/themesberg/flowbite-svelte/issues/805)) ([95861f4](https://github.com/themesberg/flowbite-svelte/commit/95861f4f046c5c6b4127dd5f5120581346531831))
|
|
1279
|
+
- [#774](https://github.com/themesberg/flowbite-svelte/issues/774) ([#822](https://github.com/themesberg/flowbite-svelte/issues/822)) ([b1bca6b](https://github.com/themesberg/flowbite-svelte/commit/b1bca6b6483bf9e345ef3a60fa5f9d545ee77527))
|
|
1280
|
+
- [#781](https://github.com/themesberg/flowbite-svelte/issues/781) tooltip arrow ([#804](https://github.com/themesberg/flowbite-svelte/issues/804)) ([2bd8938](https://github.com/themesberg/flowbite-svelte/commit/2bd8938d6b864f9294ee897c1ce6edc4b8ec08ab))
|
|
1281
|
+
- [#818](https://github.com/themesberg/flowbite-svelte/issues/818) ([#821](https://github.com/themesberg/flowbite-svelte/issues/821)) ([4050456](https://github.com/themesberg/flowbite-svelte/commit/4050456f270abb335b96b5cf65a0ea7eed200fdd))
|
|
1282
|
+
- [#836](https://github.com/themesberg/flowbite-svelte/issues/836) ([c727c98](https://github.com/themesberg/flowbite-svelte/commit/c727c982cff9c28251a052b2bda1fee496fd62a6))
|
|
1283
|
+
- +layout.server ([#808](https://github.com/themesberg/flowbite-svelte/issues/808)) ([cf1e551](https://github.com/themesberg/flowbite-svelte/commit/cf1e551690de641ec493933581ac1fc36e124d1d))
|
|
1284
|
+
- accordion gap ([#735](https://github.com/themesberg/flowbite-svelte/issues/735)) ([431b532](https://github.com/themesberg/flowbite-svelte/commit/431b5323a49530c6791579d71dae30312c46cb8e))
|
|
1285
|
+
- add "tailwind-merge": "^1.13.1" to dependencies ([9b5757e](https://github.com/themesberg/flowbite-svelte/commit/9b5757e25c12b0394f08aa5476e21312d858c6c7))
|
|
1286
|
+
- add auto-install-peers=true to .npmrc ([fd439d0](https://github.com/themesberg/flowbite-svelte/commit/fd439d0613ec2a39e747936cf1bd9f557e2cb093))
|
|
1287
|
+
- add device-mockups svg images ([#779](https://github.com/themesberg/flowbite-svelte/issues/779)) ([5ce3506](https://github.com/themesberg/flowbite-svelte/commit/5ce3506374e2cf1b19cf2d13faf28c742355fcb3))
|
|
1288
|
+
- add event forwarding to Frame component in Card component. ([6ce4b6b](https://github.com/themesberg/flowbite-svelte/commit/6ce4b6b12f099a0a9600b9be34ed02ac6557ebf2))
|
|
1289
|
+
- add GetStarted ([d1c0424](https://github.com/themesberg/flowbite-svelte/commit/d1c042470ff943884c77ccd4917eac399f9ba072))
|
|
1290
|
+
- add height to Input-field dropdown demo ([b43f8fc](https://github.com/themesberg/flowbite-svelte/commit/b43f8fcaa1142035c92251d845590d0f682db59b))
|
|
1291
|
+
- add modalId prop for Modal ([b2f8187](https://github.com/themesberg/flowbite-svelte/commit/b2f81872f7b5d5fdf1cc6d33be06b66b197027c3))
|
|
1292
|
+
- add primary to button and starUpClass and starDownClass to rating ([#745](https://github.com/themesberg/flowbite-svelte/issues/745)) ([da09182](https://github.com/themesberg/flowbite-svelte/commit/da091824d218f04bf4127f43c51a056abf0855fc))
|
|
1293
|
+
- add svelte inspector and update dependencies ([aa530f4](https://github.com/themesberg/flowbite-svelte/commit/aa530f4f8c33493a949bf0c52c279c06042a1897))
|
|
1294
|
+
- add svelte-ignore a11y-click-events ([b021c83](https://github.com/themesberg/flowbite-svelte/commit/b021c839282c9f1ab7f25418de1e1cedeb9ef433))
|
|
1295
|
+
- add svelte-ignore a11y-click-events to Button compo ([1c960ee](https://github.com/themesberg/flowbite-svelte/commit/1c960ee7bbbdf4750bc784e5dd10117b85f54156))
|
|
1296
|
+
- alert props ([#760](https://github.com/themesberg/flowbite-svelte/issues/760)) ([90c3055](https://github.com/themesberg/flowbite-svelte/commit/90c305596f07c4c9da970dee3ec78a5fff3e83f8))
|
|
1297
|
+
- Alert, GradientButton and Footer ([ccd2954](https://github.com/themesberg/flowbite-svelte/commit/ccd2954c444681e50a8b065ce25f2d3b484f7faa))
|
|
1298
|
+
- Checkbox spacing ([9f989d7](https://github.com/themesberg/flowbite-svelte/commit/9f989d7c0f59cacab8673d05e0abe27cc5906d42))
|
|
1299
|
+
- CTA should have tinted background ([#708](https://github.com/themesberg/flowbite-svelte/issues/708)) ([ecb5c4c](https://github.com/themesberg/flowbite-svelte/commit/ecb5c4c12db278fccb8c02b84298ba2ef90b18df))
|
|
1300
|
+
- dark-mode in examples ([#683](https://github.com/themesberg/flowbite-svelte/issues/683)) ([cde56c4](https://github.com/themesberg/flowbite-svelte/commit/cde56c44a9b20e806655f427fff32990db03f0f3))
|
|
1301
|
+
- darkmode flicker ([#811](https://github.com/themesberg/flowbite-svelte/issues/811)) ([94b1f6b](https://github.com/themesberg/flowbite-svelte/commit/94b1f6bd9fb7341a9b3791633daf2217e2c3017d))
|
|
1302
|
+
- dependencies update ([#685](https://github.com/themesberg/flowbite-svelte/issues/685)) ([f017a73](https://github.com/themesberg/flowbite-svelte/commit/f017a738fc38633e8b95ea135b8438b7f67f8554))
|
|
1303
|
+
- duplicated lines in app.postcss ([1eb255a](https://github.com/themesberg/flowbite-svelte/commit/1eb255a30f57213eaa7c8d3e14cb7ac704c25f82))
|
|
1304
|
+
- few more to 'npm run check' ([#738](https://github.com/themesberg/flowbite-svelte/issues/738)) ([ae33d4a](https://github.com/themesberg/flowbite-svelte/commit/ae33d4ab5d0cdc6649295e3f3fe1ae0063fe86d3))
|
|
1305
|
+
- generate a unique id for each star so fill can be different ([#793](https://github.com/themesberg/flowbite-svelte/issues/793)) ([cf59ed2](https://github.com/themesberg/flowbite-svelte/commit/cf59ed251bbbf17b3172decd5b74535499cef452))
|
|
1306
|
+
- github workflow comment out pnpm cache ([5284b8c](https://github.com/themesberg/flowbite-svelte/commit/5284b8c3c1b43b7f7d28f0800dc2cddcc0ff9d9c))
|
|
1307
|
+
- hover on gradient outline button ([#742](https://github.com/themesberg/flowbite-svelte/issues/742)) ([6d7da15](https://github.com/themesberg/flowbite-svelte/commit/6d7da15de9d5a3f9e2b85a05944d148967019bcf))
|
|
1308
|
+
- initial refresh fix ([#693](https://github.com/themesberg/flowbite-svelte/issues/693)) ([7479934](https://github.com/themesberg/flowbite-svelte/commit/7479934dc83bdbe0197fac7c0dbe7d817bf1d6e5))
|
|
1309
|
+
- Input and Radio components ([fd49114](https://github.com/themesberg/flowbite-svelte/commit/fd49114e343c3a66c7ef257ba41d5354b99707d1))
|
|
1310
|
+
- input component value type to any ([#730](https://github.com/themesberg/flowbite-svelte/issues/730)) ([048caa0](https://github.com/themesberg/flowbite-svelte/commit/048caa0ddd2418e3feff4963f0540b269eb7cb27))
|
|
1311
|
+
- issue [#790](https://github.com/themesberg/flowbite-svelte/issues/790) ([#802](https://github.com/themesberg/flowbite-svelte/issues/802)) ([9c79555](https://github.com/themesberg/flowbite-svelte/commit/9c7955578463904c1e066d7f04cd676a1e856e01))
|
|
1312
|
+
- issue 786 ([#803](https://github.com/themesberg/flowbite-svelte/issues/803)) ([3e348ba](https://github.com/themesberg/flowbite-svelte/commit/3e348badc30779c8da222c3ee361afe5b14d6e95))
|
|
1313
|
+
- issue783 ([#809](https://github.com/themesberg/flowbite-svelte/issues/809)) ([112bd25](https://github.com/themesberg/flowbite-svelte/commit/112bd25f7903da72332159fdc5edf6aad1e7536d))
|
|
1314
|
+
- issue812 ([#814](https://github.com/themesberg/flowbite-svelte/issues/814)) ([c74c026](https://github.com/themesberg/flowbite-svelte/commit/c74c026e7bfd8d3a6f5ed0fe39de2a42b0e6c9b2))
|
|
1315
|
+
- links in DesignFigma ([22a40ea](https://github.com/themesberg/flowbite-svelte/commit/22a40ea13e202bb7a9b21ba2d94c53f2468649ba))
|
|
1316
|
+
- lock file ([b24ac8d](https://github.com/themesberg/flowbite-svelte/commit/b24ac8d52ab7a87c2d52a0e189988dc949f2f5d5))
|
|
1317
|
+
- lock file ([6144fd3](https://github.com/themesberg/flowbite-svelte/commit/6144fd3da66eeec36ab663938cf59dce0b3a156d))
|
|
1318
|
+
- Modal and Button compo ([5f3128a](https://github.com/themesberg/flowbite-svelte/commit/5f3128aaf26f7383ec32135411ea1607a566d114))
|
|
1319
|
+
- modal update ([#791](https://github.com/themesberg/flowbite-svelte/issues/791)) ([2bd095f](https://github.com/themesberg/flowbite-svelte/commit/2bd095f1f197783f0c4161bda3c22ebd6008859a))
|
|
1320
|
+
- more ts check corrections ([#740](https://github.com/themesberg/flowbite-svelte/issues/740)) ([f95f1d4](https://github.com/themesberg/flowbite-svelte/commit/f95f1d44da76fbaa9d49fec1a52c000e5509617c))
|
|
1321
|
+
- move @docsearch/js to devDependencies ([168a79f](https://github.com/themesberg/flowbite-svelte/commit/168a79fce52050b437fbde32c95bf17329616b21))
|
|
1322
|
+
- playwright v1.34.0 in workflow ([e12c5ff](https://github.com/themesberg/flowbite-svelte/commit/e12c5ff81f0af3b74b6424fb63845649d80ac8cb))
|
|
1323
|
+
- props and update them ([#715](https://github.com/themesberg/flowbite-svelte/issues/715)) ([3f952b4](https://github.com/themesberg/flowbite-svelte/commit/3f952b41852f5a2b7662e4718a10bab225e060a6))
|
|
1324
|
+
- rating component update ([#773](https://github.com/themesberg/flowbite-svelte/issues/773)) ([f031395](https://github.com/themesberg/flowbite-svelte/commit/f031395353208a1bade6148dbafd11c9c1632afc))
|
|
1325
|
+
- reinstall after removing lock file ([45ef63c](https://github.com/themesberg/flowbite-svelte/commit/45ef63cc25129c62c6b78477a563a111d1745f32))
|
|
1326
|
+
- remove debris from the last PR ([902a172](https://github.com/themesberg/flowbite-svelte/commit/902a1722ea11375df3d7670c0bd25ddc7fec504a))
|
|
1327
|
+
- remove package-lock.json and add package-lock.json to .gitignore ([b1f0fc4](https://github.com/themesberg/flowbite-svelte/commit/b1f0fc4c8d093668676b27fd845d1f89c2812a52))
|
|
1328
|
+
- remove peerDependencies ([#810](https://github.com/themesberg/flowbite-svelte/issues/810)) ([e940033](https://github.com/themesberg/flowbite-svelte/commit/e94003300ff016ffe565a167e45714b9091ce495))
|
|
1329
|
+
- removed duplicated folder "alert" ([#734](https://github.com/themesberg/flowbite-svelte/issues/734)) ([4c8f32a](https://github.com/themesberg/flowbite-svelte/commit/4c8f32aad85593bd9a2666ec0d22c77e41463291))
|
|
1330
|
+
- revert package:publish ([515e9f4](https://github.com/themesberg/flowbite-svelte/commit/515e9f416f44754aa4794e2baca3ac3401b59100))
|
|
1331
|
+
- sidebar activeUrl update by adding docs/ ([#754](https://github.com/themesberg/flowbite-svelte/issues/754)) ([467b060](https://github.com/themesberg/flowbite-svelte/commit/467b060f2da047d11d227db0f4bfe86fb848b749))
|
|
1332
|
+
- tooltip style ([#759](https://github.com/themesberg/flowbite-svelte/issues/759)) ([813d1fa](https://github.com/themesberg/flowbite-svelte/commit/813d1fab8092662a2d2f51e95cf387e3352e6ff9))
|
|
1333
|
+
- typescript declarations for import.meta.glob ([#736](https://github.com/themesberg/flowbite-svelte/issues/736)) ([ef10a06](https://github.com/themesberg/flowbite-svelte/commit/ef10a06785c38504d7b7dd75fccae245c6fa2188))
|
|
1334
|
+
- typo and update bug_report.yml ([#787](https://github.com/themesberg/flowbite-svelte/issues/787)) ([4ee8a92](https://github.com/themesberg/flowbite-svelte/commit/4ee8a92c5809ea9047141eae7d3aa62b2b8879f4))
|
|
1335
|
+
- Typo in AccordionItem.svelte ([#741](https://github.com/themesberg/flowbite-svelte/issues/741)) ([149c3b7](https://github.com/themesberg/flowbite-svelte/commit/149c3b7d2ae10d56ce430df386a7a220a59167b2))
|
|
1336
|
+
- update Alert and workflows playwright version ([670516d](https://github.com/themesberg/flowbite-svelte/commit/670516da7f979153e2d4c1b72313f8f2ac0f3bfa))
|
|
1337
|
+
- update package:publish script ([8ec3669](https://github.com/themesberg/flowbite-svelte/commit/8ec36699099e0672263f4c44fecd07e3d8ec6313))
|
|
1338
|
+
- update props ([#749](https://github.com/themesberg/flowbite-svelte/issues/749)) ([445c07e](https://github.com/themesberg/flowbite-svelte/commit/445c07ebadf2432bc6c005a7e78ac7660f6abf40))
|
|
1339
|
+
- update workflows playwright version ([faafd96](https://github.com/themesberg/flowbite-svelte/commit/faafd96286140631447f1d88d24b0b3e477181e5))
|
|
1340
|
+
|
|
1341
|
+
### [0.37.5](https://github.com/themesberg/flowbite-svelte/compare/v0.37.4...v0.37.5) (2023-06-09)
|
|
1342
|
+
|
|
1343
|
+
### Features
|
|
1344
|
+
|
|
1345
|
+
- **config:** fix default bg-primary-50 color ([7d89f57](https://github.com/themesberg/flowbite-svelte/commit/7d89f572b934f3da843bca3f4f162939c1bb2768))
|
|
1346
|
+
- **input:** update blue to primary color focus ([f155ec5](https://github.com/themesberg/flowbite-svelte/commit/f155ec588fc52e30383368b2700dbb28be3bbb6d))
|
|
1347
|
+
|
|
1348
|
+
### Bug Fixes
|
|
1349
|
+
|
|
1350
|
+
- [#836](https://github.com/themesberg/flowbite-svelte/issues/836) ([c727c98](https://github.com/themesberg/flowbite-svelte/commit/c727c982cff9c28251a052b2bda1fee496fd62a6))
|
|
1351
|
+
|
|
1352
|
+
### [0.37.4](https://github.com/themesberg/flowbite-svelte/compare/v0.37.3...v0.37.4) (2023-06-03)
|
|
1353
|
+
|
|
1354
|
+
### Features
|
|
1355
|
+
|
|
1356
|
+
- add || ^4.0.0 to peerDependencies ([1211eb8](https://github.com/themesberg/flowbite-svelte/commit/1211eb83cc7f54570363300f744c16bd41962460))
|
|
1357
|
+
- add button to Thumbnail and move the on:click event listener to button ([c9119c7](https://github.com/themesberg/flowbite-svelte/commit/c9119c7bcf772215b63f546761f28f6fd2a271ef))
|
|
1358
|
+
- add role to ChevronLeft ([0fc996e](https://github.com/themesberg/flowbite-svelte/commit/0fc996e9414471366fc7d18315434b6e4778aa85))
|
|
1359
|
+
- add role to DropdownItem ([663ee33](https://github.com/themesberg/flowbite-svelte/commit/663ee3369b69fd7557963da10be2a8dac1ae2aed))
|
|
1360
|
+
- add role to Menu compo ([7a76025](https://github.com/themesberg/flowbite-svelte/commit/7a760257a43fb0e0638f00531813fdb84f0f36db))
|
|
1361
|
+
- add role to Modal ([ea79fff](https://github.com/themesberg/flowbite-svelte/commit/ea79fffea37ea32681a42afeb1dd500207953335))
|
|
1362
|
+
- add role to NavUl and NavLi ([08732dd](https://github.com/themesberg/flowbite-svelte/commit/08732dda1247ce68f2218a9e742ecc6e54f28f68))
|
|
1363
|
+
- add role to Star, Button, Heart, Thumbup, ChevronDown, CehvronRight, ChevronUp, InformationCirlc, and UserCircle components ([82337b2](https://github.com/themesberg/flowbite-svelte/commit/82337b2aac57730046a08a42f4272b8b82c22552))
|
|
1364
|
+
- add role to TableBodyCell and change td to svelte:element ([67de66c](https://github.com/themesberg/flowbite-svelte/commit/67de66c010567cccb4a4e9781ab71c23e9b72021))
|
|
1365
|
+
- update Dropzone and docs ([2467d22](https://github.com/themesberg/flowbite-svelte/commit/2467d222b7c172a8985ad6c8b6d683564ec07dc5))
|
|
1366
|
+
|
|
1367
|
+
### Bug Fixes
|
|
1368
|
+
|
|
1369
|
+
- [#774](https://github.com/themesberg/flowbite-svelte/issues/774) ([#822](https://github.com/themesberg/flowbite-svelte/issues/822)) ([b1bca6b](https://github.com/themesberg/flowbite-svelte/commit/b1bca6b6483bf9e345ef3a60fa5f9d545ee77527))
|
|
1370
|
+
- [#818](https://github.com/themesberg/flowbite-svelte/issues/818) ([#821](https://github.com/themesberg/flowbite-svelte/issues/821)) ([4050456](https://github.com/themesberg/flowbite-svelte/commit/4050456f270abb335b96b5cf65a0ea7eed200fdd))
|
|
1371
|
+
- add auto-install-peers=true to .npmrc ([fd439d0](https://github.com/themesberg/flowbite-svelte/commit/fd439d0613ec2a39e747936cf1bd9f557e2cb093))
|
|
1372
|
+
- add svelte-ignore a11y-click-events ([b021c83](https://github.com/themesberg/flowbite-svelte/commit/b021c839282c9f1ab7f25418de1e1cedeb9ef433))
|
|
1373
|
+
- add svelte-ignore a11y-click-events to Button compo ([1c960ee](https://github.com/themesberg/flowbite-svelte/commit/1c960ee7bbbdf4750bc784e5dd10117b85f54156))
|
|
1374
|
+
- github workflow comment out pnpm cache ([5284b8c](https://github.com/themesberg/flowbite-svelte/commit/5284b8c3c1b43b7f7d28f0800dc2cddcc0ff9d9c))
|
|
1375
|
+
- Modal and Button compo ([5f3128a](https://github.com/themesberg/flowbite-svelte/commit/5f3128aaf26f7383ec32135411ea1607a566d114))
|
|
1376
|
+
- reinstall after removing lock file ([45ef63c](https://github.com/themesberg/flowbite-svelte/commit/45ef63cc25129c62c6b78477a563a111d1745f32))
|
|
1377
|
+
|
|
1378
|
+
### [0.37.3](https://github.com/themesberg/flowbite-svelte/compare/v0.37.2...v0.37.3) (2023-06-01)
|
|
1379
|
+
|
|
1380
|
+
### Bug Fixes
|
|
1381
|
+
|
|
1382
|
+
- +layout.server ([#808](https://github.com/themesberg/flowbite-svelte/issues/808)) ([cf1e551](https://github.com/themesberg/flowbite-svelte/commit/cf1e551690de641ec493933581ac1fc36e124d1d))
|
|
1383
|
+
- darkmode flicker ([#811](https://github.com/themesberg/flowbite-svelte/issues/811)) ([94b1f6b](https://github.com/themesberg/flowbite-svelte/commit/94b1f6bd9fb7341a9b3791633daf2217e2c3017d))
|
|
1384
|
+
- issue783 ([#809](https://github.com/themesberg/flowbite-svelte/issues/809)) ([112bd25](https://github.com/themesberg/flowbite-svelte/commit/112bd25f7903da72332159fdc5edf6aad1e7536d))
|
|
1385
|
+
- issue812 ([#814](https://github.com/themesberg/flowbite-svelte/issues/814)) ([c74c026](https://github.com/themesberg/flowbite-svelte/commit/c74c026e7bfd8d3a6f5ed0fe39de2a42b0e6c9b2))
|
|
1386
|
+
- remove peerDependencies ([#810](https://github.com/themesberg/flowbite-svelte/issues/810)) ([e940033](https://github.com/themesberg/flowbite-svelte/commit/e94003300ff016ffe565a167e45714b9091ce495))
|
|
1387
|
+
|
|
1388
|
+
### [0.37.2](https://github.com/themesberg/flowbite-svelte/compare/v0.37.1...v0.37.2) (2023-05-29)
|
|
1389
|
+
|
|
1390
|
+
### Features
|
|
1391
|
+
|
|
1392
|
+
- add primary to Checkbox ([b6063c6](https://github.com/themesberg/flowbite-svelte/commit/b6063c6925bd036676061d80a8c9ed78efda6f5c))
|
|
1393
|
+
|
|
1394
|
+
### Bug Fixes
|
|
1395
|
+
|
|
1396
|
+
- [#534](https://github.com/themesberg/flowbite-svelte/issues/534) list group typing ([#805](https://github.com/themesberg/flowbite-svelte/issues/805)) ([95861f4](https://github.com/themesberg/flowbite-svelte/commit/95861f4f046c5c6b4127dd5f5120581346531831))
|
|
1397
|
+
- [#781](https://github.com/themesberg/flowbite-svelte/issues/781) tooltip arrow ([#804](https://github.com/themesberg/flowbite-svelte/issues/804)) ([2bd8938](https://github.com/themesberg/flowbite-svelte/commit/2bd8938d6b864f9294ee897c1ce6edc4b8ec08ab))
|
|
1398
|
+
- issue [#790](https://github.com/themesberg/flowbite-svelte/issues/790) ([#802](https://github.com/themesberg/flowbite-svelte/issues/802)) ([9c79555](https://github.com/themesberg/flowbite-svelte/commit/9c7955578463904c1e066d7f04cd676a1e856e01))
|
|
1399
|
+
- issue 786 ([#803](https://github.com/themesberg/flowbite-svelte/issues/803)) ([3e348ba](https://github.com/themesberg/flowbite-svelte/commit/3e348badc30779c8da222c3ee361afe5b14d6e95))
|
|
1400
|
+
|
|
1401
|
+
### [0.37.1](https://github.com/themesberg/flowbite-svelte/compare/v0.36.5...v0.37.1) (2023-05-28)
|
|
1402
|
+
|
|
1403
|
+
### Features
|
|
1404
|
+
|
|
1405
|
+
- documenting components ([#801](https://github.com/themesberg/flowbite-svelte/issues/801)) ([80daafb](https://github.com/themesberg/flowbite-svelte/commit/80daafb221f49410d861d6efe5652b977faba513))
|
|
1406
|
+
|
|
1407
|
+
### Bug Fixes
|
|
1408
|
+
|
|
1409
|
+
- generate a unique id for each star so fill can be different ([#793](https://github.com/themesberg/flowbite-svelte/issues/793)) ([cf59ed2](https://github.com/themesberg/flowbite-svelte/commit/cf59ed251bbbf17b3172decd5b74535499cef452))
|
|
1410
|
+
- modal update ([#791](https://github.com/themesberg/flowbite-svelte/issues/791)) ([2bd095f](https://github.com/themesberg/flowbite-svelte/commit/2bd095f1f197783f0c4161bda3c22ebd6008859a))
|
|
1411
|
+
|
|
1412
|
+
### [0.36.5](https://github.com/themesberg/flowbite-svelte/compare/v0.36.4...v0.36.5) (2023-05-23)
|
|
1413
|
+
|
|
1414
|
+
### Bug Fixes
|
|
1415
|
+
|
|
1416
|
+
- move @docsearch/js to devDependencies ([168a79f](https://github.com/themesberg/flowbite-svelte/commit/168a79fce52050b437fbde32c95bf17329616b21))
|
|
1417
|
+
- typo and update bug_report.yml ([#787](https://github.com/themesberg/flowbite-svelte/issues/787)) ([4ee8a92](https://github.com/themesberg/flowbite-svelte/commit/4ee8a92c5809ea9047141eae7d3aa62b2b8879f4))
|
|
1418
|
+
|
|
1419
|
+
### [0.36.4](https://github.com/themesberg/flowbite-svelte/compare/v0.36.3...v0.36.4) (2023-05-21)
|
|
1420
|
+
|
|
1421
|
+
### Bug Fixes
|
|
1422
|
+
|
|
1423
|
+
- revert package:publish ([515e9f4](https://github.com/themesberg/flowbite-svelte/commit/515e9f416f44754aa4794e2baca3ac3401b59100))
|
|
1424
|
+
|
|
1425
|
+
### [0.36.3](https://github.com/themesberg/flowbite-svelte/compare/v0.36.2...v0.36.3) (2023-05-21)
|
|
1426
|
+
|
|
1427
|
+
### Features
|
|
1428
|
+
|
|
1429
|
+
- add mockups in package.json ([cfc32d5](https://github.com/themesberg/flowbite-svelte/commit/cfc32d5bb7822fda5c6170285a9f31bd907842df))
|
|
1430
|
+
- darkmode fix for refreshing a browser ([#784](https://github.com/themesberg/flowbite-svelte/issues/784)) ([aac2187](https://github.com/themesberg/flowbite-svelte/commit/aac218711967ba63ee139ef7f5370dd43993c709))
|
|
1431
|
+
- dependencies update ([b1866b8](https://github.com/themesberg/flowbite-svelte/commit/b1866b8dc5ecc55cc0c343d663537439664cf7a8))
|
|
1432
|
+
|
|
1433
|
+
### Bug Fixes
|
|
1434
|
+
|
|
1435
|
+
- add device-mockups svg images ([#779](https://github.com/themesberg/flowbite-svelte/issues/779)) ([5ce3506](https://github.com/themesberg/flowbite-svelte/commit/5ce3506374e2cf1b19cf2d13faf28c742355fcb3))
|
|
1436
|
+
- add modalId prop for Modal ([b2f8187](https://github.com/themesberg/flowbite-svelte/commit/b2f81872f7b5d5fdf1cc6d33be06b66b197027c3))
|
|
1437
|
+
- playwright v1.34.0 in workflow ([e12c5ff](https://github.com/themesberg/flowbite-svelte/commit/e12c5ff81f0af3b74b6424fb63845649d80ac8cb))
|
|
1438
|
+
- remove debris from the last PR ([902a172](https://github.com/themesberg/flowbite-svelte/commit/902a1722ea11375df3d7670c0bd25ddc7fec504a))
|
|
1439
|
+
- update package:publish script ([8ec3669](https://github.com/themesberg/flowbite-svelte/commit/8ec36699099e0672263f4c44fecd07e3d8ec6313))
|
|
1440
|
+
|
|
1441
|
+
### [0.36.2](https://github.com/themesberg/flowbite-svelte/compare/v0.35.4...v0.36.2) (2023-05-19)
|
|
1442
|
+
|
|
1443
|
+
### Features
|
|
1444
|
+
|
|
1445
|
+
- add initialTheme to DarkMode component ([#776](https://github.com/themesberg/flowbite-svelte/issues/776)) ([5110499](https://github.com/themesberg/flowbite-svelte/commit/51104993239b410305e956b1af2204b4e3d37d66))
|
|
1446
|
+
- devicemockup ([#778](https://github.com/themesberg/flowbite-svelte/issues/778)) ([fec1f4c](https://github.com/themesberg/flowbite-svelte/commit/fec1f4caa5da33259766312dda95a7fdaeb291eb))
|
|
1447
|
+
|
|
1448
|
+
### Bug Fixes
|
|
1449
|
+
|
|
1450
|
+
- rating component update ([#773](https://github.com/themesberg/flowbite-svelte/issues/773)) ([f031395](https://github.com/themesberg/flowbite-svelte/commit/f031395353208a1bade6148dbafd11c9c1632afc))
|
|
1451
|
+
|
|
1452
|
+
### [0.36.1](https://github.com/themesberg/flowbite-svelte/compare/v0.35.4...v0.36.1) (2023-05-19)
|
|
1453
|
+
|
|
1454
|
+
### Features
|
|
1455
|
+
|
|
1456
|
+
- add initialTheme to DarkMode component ([#776](https://github.com/themesberg/flowbite-svelte/issues/776)) ([5110499](https://github.com/themesberg/flowbite-svelte/commit/51104993239b410305e956b1af2204b4e3d37d66))
|
|
1457
|
+
- devicemockup ([#778](https://github.com/themesberg/flowbite-svelte/issues/778)) ([fec1f4c](https://github.com/themesberg/flowbite-svelte/commit/fec1f4caa5da33259766312dda95a7fdaeb291eb))
|
|
1458
|
+
|
|
1459
|
+
### Bug Fixes
|
|
1460
|
+
|
|
1461
|
+
- rating component update ([#773](https://github.com/themesberg/flowbite-svelte/issues/773)) ([f031395](https://github.com/themesberg/flowbite-svelte/commit/f031395353208a1bade6148dbafd11c9c1632afc))
|
|
1462
|
+
|
|
1463
|
+
### [0.35.4](https://github.com/themesberg/flowbite-svelte/compare/v0.35.3...v0.35.4) (2023-05-18)
|
|
1464
|
+
|
|
1465
|
+
### Features
|
|
1466
|
+
|
|
1467
|
+
- update Rating component ([#772](https://github.com/themesberg/flowbite-svelte/issues/772)) ([0d9636f](https://github.com/themesberg/flowbite-svelte/commit/0d9636fa119a77a01f8ab30ff9f38aaa5753e914))
|
|
1468
|
+
|
|
1469
|
+
### [0.35.3](https://github.com/themesberg/flowbite-svelte/compare/v0.35.2...v0.35.3) (2023-05-14)
|
|
1470
|
+
|
|
1471
|
+
### Features
|
|
1472
|
+
|
|
1473
|
+
- add events to tableheadcell and tablebodycell components ([#761](https://github.com/themesberg/flowbite-svelte/issues/761)) ([cb056aa](https://github.com/themesberg/flowbite-svelte/commit/cb056aaeaa01044241ad6fa7e700256b28cb5834))
|
|
1474
|
+
|
|
1475
|
+
### [0.35.2](https://github.com/themesberg/flowbite-svelte/compare/v0.35.1...v0.35.2) (2023-05-13)
|
|
1476
|
+
|
|
1477
|
+
### Bug Fixes
|
|
1478
|
+
|
|
1479
|
+
- alert props ([#760](https://github.com/themesberg/flowbite-svelte/issues/760)) ([90c3055](https://github.com/themesberg/flowbite-svelte/commit/90c305596f07c4c9da970dee3ec78a5fff3e83f8))
|
|
1480
|
+
- tooltip style ([#759](https://github.com/themesberg/flowbite-svelte/issues/759)) ([813d1fa](https://github.com/themesberg/flowbite-svelte/commit/813d1fab8092662a2d2f51e95cf387e3352e6ff9))
|
|
1481
|
+
|
|
1482
|
+
### [0.35.1](https://github.com/themesberg/flowbite-svelte/compare/v0.34.12...v0.35.1) (2023-05-11)
|
|
1483
|
+
|
|
1484
|
+
### Features
|
|
1485
|
+
|
|
1486
|
+
- typescript types for frame subclasses ([#731](https://github.com/themesberg/flowbite-svelte/issues/731)) ([6dd9877](https://github.com/themesberg/flowbite-svelte/commit/6dd9877a7b667e895c02b79e86a2c3ce88eb608c))
|
|
1487
|
+
|
|
1488
|
+
### Bug Fixes
|
|
1489
|
+
|
|
1490
|
+
- accordion gap ([#735](https://github.com/themesberg/flowbite-svelte/issues/735)) ([431b532](https://github.com/themesberg/flowbite-svelte/commit/431b5323a49530c6791579d71dae30312c46cb8e))
|
|
1491
|
+
- add primary to button and starUpClass and starDownClass to rating ([#745](https://github.com/themesberg/flowbite-svelte/issues/745)) ([da09182](https://github.com/themesberg/flowbite-svelte/commit/da091824d218f04bf4127f43c51a056abf0855fc))
|
|
1492
|
+
- add svelte inspector and update dependencies ([aa530f4](https://github.com/themesberg/flowbite-svelte/commit/aa530f4f8c33493a949bf0c52c279c06042a1897))
|
|
1493
|
+
- few more to 'npm run check' ([#738](https://github.com/themesberg/flowbite-svelte/issues/738)) ([ae33d4a](https://github.com/themesberg/flowbite-svelte/commit/ae33d4ab5d0cdc6649295e3f3fe1ae0063fe86d3))
|
|
1494
|
+
- hover on gradient outline button ([#742](https://github.com/themesberg/flowbite-svelte/issues/742)) ([6d7da15](https://github.com/themesberg/flowbite-svelte/commit/6d7da15de9d5a3f9e2b85a05944d148967019bcf))
|
|
1495
|
+
- input component value type to any ([#730](https://github.com/themesberg/flowbite-svelte/issues/730)) ([048caa0](https://github.com/themesberg/flowbite-svelte/commit/048caa0ddd2418e3feff4963f0540b269eb7cb27))
|
|
1496
|
+
- more ts check corrections ([#740](https://github.com/themesberg/flowbite-svelte/issues/740)) ([f95f1d4](https://github.com/themesberg/flowbite-svelte/commit/f95f1d44da76fbaa9d49fec1a52c000e5509617c))
|
|
1497
|
+
- removed duplicated folder "alert" ([#734](https://github.com/themesberg/flowbite-svelte/issues/734)) ([4c8f32a](https://github.com/themesberg/flowbite-svelte/commit/4c8f32aad85593bd9a2666ec0d22c77e41463291))
|
|
1498
|
+
- sidebar activeUrl update by adding docs/ ([#754](https://github.com/themesberg/flowbite-svelte/issues/754)) ([467b060](https://github.com/themesberg/flowbite-svelte/commit/467b060f2da047d11d227db0f4bfe86fb848b749))
|
|
1499
|
+
- typescript declarations for import.meta.glob ([#736](https://github.com/themesberg/flowbite-svelte/issues/736)) ([ef10a06](https://github.com/themesberg/flowbite-svelte/commit/ef10a06785c38504d7b7dd75fccae245c6fa2188))
|
|
1500
|
+
- Typo in AccordionItem.svelte ([#741](https://github.com/themesberg/flowbite-svelte/issues/741)) ([149c3b7](https://github.com/themesberg/flowbite-svelte/commit/149c3b7d2ae10d56ce430df386a7a220a59167b2))
|
|
1501
|
+
- update props ([#749](https://github.com/themesberg/flowbite-svelte/issues/749)) ([445c07e](https://github.com/themesberg/flowbite-svelte/commit/445c07ebadf2432bc6c005a7e78ac7660f6abf40))
|
|
1502
|
+
- update workflows playwright version ([faafd96](https://github.com/themesberg/flowbite-svelte/commit/faafd96286140631447f1d88d24b0b3e477181e5))
|
|
1503
|
+
|
|
1504
|
+
### [0.34.12](https://github.com/themesberg/flowbite-svelte/compare/v0.34.11...v0.34.12) (2023-05-04)
|
|
1505
|
+
|
|
1506
|
+
### Bug Fixes
|
|
1507
|
+
|
|
1508
|
+
- add event forwarding to Frame component in Card component. ([6ce4b6b](https://github.com/themesberg/flowbite-svelte/commit/6ce4b6b12f099a0a9600b9be34ed02ac6557ebf2))
|
|
1509
|
+
|
|
1510
|
+
### [0.34.11](https://github.com/themesberg/flowbite-svelte/compare/v0.34.10...v0.34.11) (2023-05-04)
|
|
1511
|
+
|
|
1512
|
+
### Bug Fixes
|
|
1513
|
+
|
|
1514
|
+
- duplicated lines in app.postcss ([1eb255a](https://github.com/themesberg/flowbite-svelte/commit/1eb255a30f57213eaa7c8d3e14cb7ac704c25f82))
|
|
1515
|
+
- remove package-lock.json and add package-lock.json to .gitignore ([b1f0fc4](https://github.com/themesberg/flowbite-svelte/commit/b1f0fc4c8d093668676b27fd845d1f89c2812a52))
|
|
1516
|
+
|
|
1517
|
+
### [0.34.10](https://github.com/themesberg/flowbite-svelte/compare/v0.34.9...v0.34.10) (2023-05-02)
|
|
1518
|
+
|
|
1519
|
+
### Features
|
|
1520
|
+
|
|
1521
|
+
- GetStarted element ([#681](https://github.com/themesberg/flowbite-svelte/issues/681)) ([cd381b7](https://github.com/themesberg/flowbite-svelte/commit/cd381b75c4589582eba7b5d4e945ca78f2884ec6))
|
|
1522
|
+
- home page cta ([#689](https://github.com/themesberg/flowbite-svelte/issues/689)) ([76d7eb5](https://github.com/themesberg/flowbite-svelte/commit/76d7eb5454fb04c3e7d2a6e048dc46e870050902))
|
|
1523
|
+
- newsletter form ([#674](https://github.com/themesberg/flowbite-svelte/issues/674)) ([89df011](https://github.com/themesberg/flowbite-svelte/commit/89df011c684bf8829b3f15c38fec4b727d62303d))
|
|
1524
|
+
- prev/next buttons ([#675](https://github.com/themesberg/flowbite-svelte/issues/675)) ([590e423](https://github.com/themesberg/flowbite-svelte/commit/590e423396a9d42ad56593f9131b2107ad1ec2fe))
|
|
1525
|
+
- slightly shorter version of redirection hooks ([#673](https://github.com/themesberg/flowbite-svelte/issues/673)) ([635e1e3](https://github.com/themesberg/flowbite-svelte/commit/635e1e38e2ac83d82982ff048d2a2f230c483389))
|
|
1526
|
+
- social proof ([#686](https://github.com/themesberg/flowbite-svelte/issues/686)) ([4567ee2](https://github.com/themesberg/flowbite-svelte/commit/4567ee2209263eb1aed2ddd712b8de651e044641))
|
|
1527
|
+
- trim number of components ([#709](https://github.com/themesberg/flowbite-svelte/issues/709)) ([8723242](https://github.com/themesberg/flowbite-svelte/commit/87232427dc255cda4a11dc2fef5228c124cfc4ee))
|
|
1528
|
+
|
|
1529
|
+
### Bug Fixes
|
|
1530
|
+
|
|
1531
|
+
- add GetStarted ([d1c0424](https://github.com/themesberg/flowbite-svelte/commit/d1c042470ff943884c77ccd4917eac399f9ba072))
|
|
1532
|
+
- CTA should have tinted background ([#708](https://github.com/themesberg/flowbite-svelte/issues/708)) ([ecb5c4c](https://github.com/themesberg/flowbite-svelte/commit/ecb5c4c12db278fccb8c02b84298ba2ef90b18df))
|
|
1533
|
+
- dark-mode in examples ([#683](https://github.com/themesberg/flowbite-svelte/issues/683)) ([cde56c4](https://github.com/themesberg/flowbite-svelte/commit/cde56c44a9b20e806655f427fff32990db03f0f3))
|
|
1534
|
+
- dependencies update ([#685](https://github.com/themesberg/flowbite-svelte/issues/685)) ([f017a73](https://github.com/themesberg/flowbite-svelte/commit/f017a738fc38633e8b95ea135b8438b7f67f8554))
|
|
1535
|
+
- initial refresh fix ([#693](https://github.com/themesberg/flowbite-svelte/issues/693)) ([7479934](https://github.com/themesberg/flowbite-svelte/commit/7479934dc83bdbe0197fac7c0dbe7d817bf1d6e5))
|
|
1536
|
+
- links in DesignFigma ([22a40ea](https://github.com/themesberg/flowbite-svelte/commit/22a40ea13e202bb7a9b21ba2d94c53f2468649ba))
|
|
1537
|
+
- lock file ([b24ac8d](https://github.com/themesberg/flowbite-svelte/commit/b24ac8d52ab7a87c2d52a0e189988dc949f2f5d5))
|
|
1538
|
+
- lock file ([6144fd3](https://github.com/themesberg/flowbite-svelte/commit/6144fd3da66eeec36ab663938cf59dce0b3a156d))
|
|
1539
|
+
- props and update them ([#715](https://github.com/themesberg/flowbite-svelte/issues/715)) ([3f952b4](https://github.com/themesberg/flowbite-svelte/commit/3f952b41852f5a2b7662e4718a10bab225e060a6))
|
|
1540
|
+
|
|
1541
|
+
### [0.34.9](https://github.com/themesberg/flowbite-svelte/compare/v0.34.8...v0.34.9) (2023-04-11)
|
|
1542
|
+
|
|
1543
|
+
### [0.34.8](https://github.com/themesberg/flowbite-svelte/compare/v0.34.7...v0.34.8) (2023-04-11)
|
|
1544
|
+
|
|
1545
|
+
### Bug Fixes
|
|
1546
|
+
|
|
1547
|
+
- add main: index.js to package.json ([ce82350](https://github.com/themesberg/flowbite-svelte/commit/ce823503b9ef21abf5d751ae7f3606e26db3d2c7))
|
|
1548
|
+
|
|
1549
|
+
### [0.34.7](https://github.com/themesberg/flowbite-svelte/compare/v0.34.6...v0.34.7) (2023-04-05)
|
|
1550
|
+
|
|
1551
|
+
### Bug Fixes
|
|
1552
|
+
|
|
1553
|
+
- typo in docs ([#645](https://github.com/themesberg/flowbite-svelte/issues/645)) ([d010eef](https://github.com/themesberg/flowbite-svelte/commit/d010eef360a32460eff383e585cd14cd31ee3bfa))
|
|
1554
|
+
|
|
1555
|
+
### [0.34.6](https://github.com/themesberg/flowbite-svelte/compare/v0.34.5...v0.34.6) (2023-04-05)
|
|
1556
|
+
|
|
1557
|
+
### Bug Fixes
|
|
1558
|
+
|
|
1559
|
+
- remove TabHead and TabHeadItem ([c255797](https://github.com/themesberg/flowbite-svelte/commit/c25579742f17a822f8f2a2c325da2c7c98c375cc))
|
|
1560
|
+
|
|
1561
|
+
### [0.34.5](https://github.com/themesberg/flowbite-svelte/compare/v0.34.4...v0.34.5) (2023-04-04)
|
|
1562
|
+
|
|
1563
|
+
### Bug Fixes
|
|
1564
|
+
|
|
1565
|
+
- clean up & remove ExampleDiv, GitHubSource, and CompoDescription ([#639](https://github.com/themesberg/flowbite-svelte/issues/639)) ([113df27](https://github.com/themesberg/flowbite-svelte/commit/113df2716cde7f0c3e0c7aa904bafdc3ece15cd1))
|
|
1566
|
+
- forward input event ([#627](https://github.com/themesberg/flowbite-svelte/issues/627)) ([22d20db](https://github.com/themesberg/flowbite-svelte/commit/22d20dbb6845e5ed0d7188e304c406a5c8cb8758))
|
|
1567
|
+
- remove unused components and update props ([#642](https://github.com/themesberg/flowbite-svelte/issues/642)) ([e6a4fb5](https://github.com/themesberg/flowbite-svelte/commit/e6a4fb5c63888e1aa90229414d5814e9a3c5fe27))
|
|
1568
|
+
- sidebar z-10 to z-30 for front page ([79b5adc](https://github.com/themesberg/flowbite-svelte/commit/79b5adc075633b2fb4904f7b907b0d8e50dc28a3))
|
|
1569
|
+
- sidebar z-50 to z-10 for modals ([4b76f75](https://github.com/themesberg/flowbite-svelte/commit/4b76f75650bb5670117c4959cb6b622f639242db))
|
|
1570
|
+
|
|
1571
|
+
### [0.34.4](https://github.com/themesberg/flowbite-svelte/compare/v0.34.3...v0.34.4) (2023-03-31)
|
|
1572
|
+
|
|
1573
|
+
### Features
|
|
1574
|
+
|
|
1575
|
+
- add color, gradient, shadow, and outline props to speed-dial ([#636](https://github.com/themesberg/flowbite-svelte/issues/636)) ([563a7ee](https://github.com/themesberg/flowbite-svelte/commit/563a7eecdf69301da232aa7ccd6734e49dc87f4c))
|
|
1576
|
+
|
|
1577
|
+
### Bug Fixes
|
|
1578
|
+
|
|
1579
|
+
- update props ([cb92b47](https://github.com/themesberg/flowbite-svelte/commit/cb92b47bd79f8833aea263d106675881a6fcd456))
|
|
1580
|
+
|
|
1581
|
+
### [0.34.3](https://github.com/themesberg/flowbite-svelte/compare/v0.34.2...v0.34.3) (2023-03-30)
|
|
1582
|
+
|
|
1583
|
+
### Bug Fixes
|
|
1584
|
+
|
|
1585
|
+
- dropdown page ([d3d4827](https://github.com/themesberg/flowbite-svelte/commit/d3d48276e27cc18300de1b1cc2a26ce05de733d8))
|
|
1586
|
+
- dropdown page add dark:text-white to MenuButton and change to color:green for Avatar ([900feca](https://github.com/themesberg/flowbite-svelte/commit/900feca1d8f4e617821c6a4ccf3687839a302cf0))
|
|
1587
|
+
- remove duplicate theme from tailwind.config ([5d0ebe5](https://github.com/themesberg/flowbite-svelte/commit/5d0ebe5ab587e489498bba825527d613cddb2eaf))
|
|
1588
|
+
- TextPlaceHolder remove w-full ([e3ec175](https://github.com/themesberg/flowbite-svelte/commit/e3ec175bc3ec366a5e027feb5e21721fdd223243))
|
|
1589
|
+
- top navbar margin top ([d9c83b4](https://github.com/themesberg/flowbite-svelte/commit/d9c83b46bcd0c67d176ad60b0cbd3089a62471ab))
|
|
1590
|
+
- typo CardPlaceholder ([71bea4d](https://github.com/themesberg/flowbite-svelte/commit/71bea4d98b5046d866aa2ded2e00cc30e4b44b61))
|
|
1591
|
+
- update props table and github links ([0a184d1](https://github.com/themesberg/flowbite-svelte/commit/0a184d11469729e2697ea91117ad487e2b6e3741))
|
|
1592
|
+
- update skeleton components ([b1ffbc7](https://github.com/themesberg/flowbite-svelte/commit/b1ffbc789536f0e6be4bcca3e4083466c62fe85e))
|
|
1593
|
+
|
|
1594
|
+
### [0.34.2](https://github.com/themesberg/flowbite-svelte/compare/v0.34.1...v0.34.2) (2023-03-21)
|
|
1595
|
+
|
|
1596
|
+
### Bug Fixes
|
|
1597
|
+
|
|
1598
|
+
- button size ([#623](https://github.com/themesberg/flowbite-svelte/issues/623)) ([f845373](https://github.com/themesberg/flowbite-svelte/commit/f845373bb75d4a908386753049174b526cebf5dd))
|
|
1599
|
+
|
|
1600
|
+
### [0.34.1](https://github.com/themesberg/flowbite-svelte/compare/v0.33.1...v0.34.1) (2023-03-18)
|
|
1601
|
+
|
|
1602
|
+
### Bug Fixes
|
|
1603
|
+
|
|
1604
|
+
- GitHubSource change tree to blob ([69f0e15](https://github.com/themesberg/flowbite-svelte/commit/69f0e15b7dcafa8018e23ee33c8c7e2bb2e8ebd6))
|
|
1605
|
+
- GitHubSource links ([8d4e976](https://github.com/themesberg/flowbite-svelte/commit/8d4e9760255daf81546dca91d0abb0843a1a2a5c))
|
|
1606
|
+
- package.json format ([f836a5c](https://github.com/themesberg/flowbite-svelte/commit/f836a5c733cc57240040aa9821732056ccbcee24))
|
|
1607
|
+
|
|
1608
|
+
### [0.32.2](https://github.com/themesberg/flowbite-svelte/compare/v0.30.6...v0.32.2) (2023-03-14)
|
|
1609
|
+
|
|
1610
|
+
### Features
|
|
1611
|
+
|
|
1612
|
+
- add svelte snapshot example ([#598](https://github.com/themesberg/flowbite-svelte/issues/598)) ([35da46d](https://github.com/themesberg/flowbite-svelte/commit/35da46d847b333308bcd21ff89834a7a1ded783e))
|
|
1613
|
+
- allow faster import ([3a17023](https://github.com/themesberg/flowbite-svelte/commit/3a1702332b62583cde1ee7dd23d8664e2546f2aa))
|
|
1614
|
+
|
|
1615
|
+
### Bug Fixes
|
|
1616
|
+
|
|
1617
|
+
- add carbon ([#602](https://github.com/themesberg/flowbite-svelte/issues/602)) ([0ed5ebc](https://github.com/themesberg/flowbite-svelte/commit/0ed5ebc1b3bf94749f833ee5a3aa14e0802b89bd))
|
|
1618
|
+
- event forwarding for numberinput ([#596](https://github.com/themesberg/flowbite-svelte/issues/596)) ([5d67a83](https://github.com/themesberg/flowbite-svelte/commit/5d67a833aa6ff769b85ca79c52b29de56690a2aa))
|
|
1619
|
+
- incorrect aria-expanded in <h2> ([#604](https://github.com/themesberg/flowbite-svelte/issues/604)) ([f562e91](https://github.com/themesberg/flowbite-svelte/commit/f562e91e42fae6e76c5d042e6b19b34f7c0d7692))
|
|
1620
|
+
- inline script in <DarkMode> ([#610](https://github.com/themesberg/flowbite-svelte/issues/610)) ([7ac48ba](https://github.com/themesberg/flowbite-svelte/commit/7ac48ba643f87b92ad51a6b540b14741bc6fd229))
|
|
1621
|
+
- navbar-li undefined ([#595](https://github.com/themesberg/flowbite-svelte/issues/595)) ([ab5d080](https://github.com/themesberg/flowbite-svelte/commit/ab5d080c7f214b81a748a812bd487d8d22af8895))
|
|
1622
|
+
- remove preceding dir name from the export ([68bdf74](https://github.com/themesberg/flowbite-svelte/commit/68bdf7485005f566d8401eec352aa0236d7d0796))
|
|
1623
|
+
- snapshot page ([#603](https://github.com/themesberg/flowbite-svelte/issues/603)) ([f9ecfed](https://github.com/themesberg/flowbite-svelte/commit/f9ecfedbc834530f5abab79f3d3b06e2c2c811a4))
|
|
1624
|
+
- snapshot page update 2 ([#605](https://github.com/themesberg/flowbite-svelte/issues/605)) ([e7b36e6](https://github.com/themesberg/flowbite-svelte/commit/e7b36e6ad579bfe642747f6ce2624d129397e49a))
|
|
1625
|
+
|
|
1626
|
+
### [0.33.1](https://github.com/themesberg/flowbite-svelte/compare/v0.32.1...v0.33.1) (2023-03-16)
|
|
1627
|
+
|
|
1628
|
+
### Bug Fixes
|
|
1629
|
+
|
|
1630
|
+
- add gallery components and page ([#618](https://github.com/themesberg/flowbite-svelte/issues/618)) ([8c3b1f3](https://github.com/themesberg/flowbite-svelte/commit/8c3b1f3ff37eb8da4616001d7a3a510a6848cb76))
|
|
1631
|
+
|
|
1632
|
+
### [0.32.1](https://github.com/themesberg/flowbite-svelte/compare/v0.31.1...v0.32.1) (2023-03-12)
|
|
1633
|
+
|
|
1634
|
+
### [0.31.1](https://github.com/themesberg/flowbite-svelte/compare/v0.30.7...v0.31.1) (2023-03-12)
|
|
1635
|
+
|
|
1636
|
+
### [0.30.7](https://github.com/themesberg/flowbite-svelte/compare/v0.30.6...v0.30.7) (2023-03-12)
|
|
1637
|
+
|
|
1638
|
+
### Features
|
|
1639
|
+
|
|
1640
|
+
- add svelte snapshot example ([#598](https://github.com/themesberg/flowbite-svelte/issues/598)) ([35da46d](https://github.com/themesberg/flowbite-svelte/commit/35da46d847b333308bcd21ff89834a7a1ded783e))
|
|
1641
|
+
|
|
1642
|
+
### Bug Fixes
|
|
1643
|
+
|
|
1644
|
+
- add carbon ([#602](https://github.com/themesberg/flowbite-svelte/issues/602)) ([0ed5ebc](https://github.com/themesberg/flowbite-svelte/commit/0ed5ebc1b3bf94749f833ee5a3aa14e0802b89bd))
|
|
1645
|
+
- event forwarding for numberinput ([#596](https://github.com/themesberg/flowbite-svelte/issues/596)) ([5d67a83](https://github.com/themesberg/flowbite-svelte/commit/5d67a833aa6ff769b85ca79c52b29de56690a2aa))
|
|
1646
|
+
- incorrect aria-expanded in <h2> ([#604](https://github.com/themesberg/flowbite-svelte/issues/604)) ([f562e91](https://github.com/themesberg/flowbite-svelte/commit/f562e91e42fae6e76c5d042e6b19b34f7c0d7692))
|
|
1647
|
+
- inline script in <DarkMode> ([#610](https://github.com/themesberg/flowbite-svelte/issues/610)) ([7ac48ba](https://github.com/themesberg/flowbite-svelte/commit/7ac48ba643f87b92ad51a6b540b14741bc6fd229))
|
|
1648
|
+
- navbar-li undefined ([#595](https://github.com/themesberg/flowbite-svelte/issues/595)) ([ab5d080](https://github.com/themesberg/flowbite-svelte/commit/ab5d080c7f214b81a748a812bd487d8d22af8895))
|
|
1649
|
+
- snapshot page ([#603](https://github.com/themesberg/flowbite-svelte/issues/603)) ([f9ecfed](https://github.com/themesberg/flowbite-svelte/commit/f9ecfedbc834530f5abab79f3d3b06e2c2c811a4))
|
|
1650
|
+
- snapshot page update 2 ([#605](https://github.com/themesberg/flowbite-svelte/issues/605)) ([e7b36e6](https://github.com/themesberg/flowbite-svelte/commit/e7b36e6ad579bfe642747f6ce2624d129397e49a))
|
|
1651
|
+
|
|
1652
|
+
### [0.30.6](https://github.com/themesberg/flowbite-svelte/compare/v0.30.5...v0.30.6) (2023-03-01)
|
|
1653
|
+
|
|
1654
|
+
### Bug Fixes
|
|
1655
|
+
|
|
1656
|
+
- li classes cascaded from ul ([#593](https://github.com/themesberg/flowbite-svelte/issues/593)) ([90a4c74](https://github.com/themesberg/flowbite-svelte/commit/90a4c74fa8e9a95b652f67525fbaee67f40d6f0b))
|
|
1657
|
+
|
|
1658
|
+
### [0.30.5](https://github.com/themesberg/flowbite-svelte/compare/v0.30.4...v0.30.5) (2023-02-27)
|
|
1659
|
+
|
|
1660
|
+
### Features
|
|
1661
|
+
|
|
1662
|
+
- add transition to SidebarDropdownWrapper ([#590](https://github.com/themesberg/flowbite-svelte/issues/590)) ([36f4971](https://github.com/themesberg/flowbite-svelte/commit/36f49711aece1535e78804d785a841d11f8e0459))
|
|
1663
|
+
|
|
1664
|
+
### [0.30.4](https://github.com/themesberg/flowbite-svelte/compare/v0.30.3...v0.30.4) (2023-02-20)
|
|
1665
|
+
|
|
1666
|
+
### Bug Fixes
|
|
1667
|
+
|
|
1668
|
+
- add types ./dist/index.d.ts to package.json ([7a88a7c](https://github.com/themesberg/flowbite-svelte/commit/7a88a7c052bf65c0944b4f16fb7e622f217711d5))
|
|
1669
|
+
|
|
1670
|
+
### [0.30.3](https://github.com/themesberg/flowbite-svelte/compare/v0.30.2...v0.30.3) (2023-02-20)
|
|
1671
|
+
|
|
1672
|
+
### Bug Fixes
|
|
1673
|
+
|
|
1674
|
+
- remove main: index.js ([879d810](https://github.com/themesberg/flowbite-svelte/commit/879d8108c34f563e19ae4cd9b89eb95391083235))
|
|
1675
|
+
- update from index.ts to index.js in vite.config.ts ([a7978dd](https://github.com/themesberg/flowbite-svelte/commit/a7978dd854ded3238aa522b5ee47ebc2f0865cf9))
|
|
1676
|
+
|
|
1677
|
+
### [0.30.2](https://github.com/themesberg/flowbite-svelte/compare/v0.30.1...v0.30.2) (2023-02-20)
|
|
1678
|
+
|
|
1679
|
+
### Bug Fixes
|
|
1680
|
+
|
|
1681
|
+
- change ts to js ([8e284dc](https://github.com/themesberg/flowbite-svelte/commit/8e284dc2b3d81b674e95fdbe14aafbb04f21df11))
|
|
1682
|
+
|
|
1683
|
+
### [0.30.1](https://github.com/themesberg/flowbite-svelte/compare/v0.30.0...v0.30.1) (2023-02-20)
|
|
1684
|
+
|
|
1685
|
+
### Bug Fixes
|
|
1686
|
+
|
|
1687
|
+
- reinstall dependencies ([0876852](https://github.com/themesberg/flowbite-svelte/commit/08768528dd8df368052503e6ebe4a4e68fd348d3))
|
|
1688
|
+
- reinstall dependencies ([8ee47f8](https://github.com/themesberg/flowbite-svelte/commit/8ee47f8466e44091c9b91995ad70ebf67dca0f29))
|
|
1689
|
+
|
|
1690
|
+
## [0.30.0](https://github.com/themesberg/flowbite-svelte/compare/v0.29.13...v0.30.0) (2023-02-20)
|
|
1691
|
+
|
|
1692
|
+
### Features
|
|
1693
|
+
|
|
1694
|
+
- add Codeflow link ([#572](https://github.com/themesberg/flowbite-svelte/issues/572)) ([c76b265](https://github.com/themesberg/flowbite-svelte/commit/c76b265aded62df0553d9a579f8b0ee6f756c528))
|
|
1695
|
+
- sveltekit update to 1.5.6 ([#571](https://github.com/themesberg/flowbite-svelte/issues/571)) ([c24c639](https://github.com/themesberg/flowbite-svelte/commit/c24c63950471f831bc4fdec37e9aa767f6f64c96))
|
|
1696
|
+
|
|
1697
|
+
### Bug Fixes
|
|
1698
|
+
|
|
1699
|
+
- fluid setting for Navbar ([#563](https://github.com/themesberg/flowbite-svelte/issues/563)) ([4311bbb](https://github.com/themesberg/flowbite-svelte/commit/4311bbba0bd590d66b388f6c0f8e688b1bd85a1c))
|
|
1700
|
+
- FooterCopyright remove space after {by} ([#578](https://github.com/themesberg/flowbite-svelte/issues/578)) ([da7a681](https://github.com/themesberg/flowbite-svelte/commit/da7a681a828b1eeab9bebedcf60ad24d55a5e7f6))
|
|
1701
|
+
- package.json format ([675928b](https://github.com/themesberg/flowbite-svelte/commit/675928beda860ef099cd6cc72f2acef2e0159b07))
|
|
1702
|
+
- remove log message in Avatar Dot ([#567](https://github.com/themesberg/flowbite-svelte/issues/567)) ([1c808c7](https://github.com/themesberg/flowbite-svelte/commit/1c808c7e21c72b7bda604852fe8e75eebcb6992a))
|
|
1703
|
+
|
|
1704
|
+
### [0.29.13](https://github.com/themesberg/flowbite-svelte/compare/v0.29.12...v0.29.13) (2023-01-31)
|
|
1705
|
+
|
|
1706
|
+
### [0.29.12](https://github.com/themesberg/flowbite-svelte/compare/v0.29.11...v0.29.12) (2023-01-23)
|
|
1707
|
+
|
|
1708
|
+
### Features
|
|
1709
|
+
|
|
1710
|
+
- add step indicator component ([#545](https://github.com/themesberg/flowbite-svelte/issues/545)) ([549ad61](https://github.com/themesberg/flowbite-svelte/commit/549ad616adc829b5482da20abf9f4ef3e78aa44b))
|
|
1711
|
+
|
|
1712
|
+
### Bug Fixes
|
|
1713
|
+
|
|
1714
|
+
- add indcator to index ([#535](https://github.com/themesberg/flowbite-svelte/issues/535)) ([f6fcef6](https://github.com/themesberg/flowbite-svelte/commit/f6fcef63638a5edcf4c3f8d2b965789d5ad85be1))
|
|
1715
|
+
- add two missing colors for <Table> ([#537](https://github.com/themesberg/flowbite-svelte/issues/537)) ([ac558fb](https://github.com/themesberg/flowbite-svelte/commit/ac558fb267d3aaa87773ca23b5104e4c231443ba))
|
|
1716
|
+
- few minor tweaks ([#541](https://github.com/themesberg/flowbite-svelte/issues/541)) ([2289e4d](https://github.com/themesberg/flowbite-svelte/commit/2289e4d1f83f272db5c092cd09469147a4878ff8))
|
|
1717
|
+
- ListgroupItem button type ([#549](https://github.com/themesberg/flowbite-svelte/issues/549)) ([6b74d73](https://github.com/themesberg/flowbite-svelte/commit/6b74d738efc887b46fe0fc0eea473e617aa386ca))
|
|
1718
|
+
- move step indicator to extend ([000dec3](https://github.com/themesberg/flowbite-svelte/commit/000dec3688b5d9535a21a36207de42ca26336f1b))
|
|
1719
|
+
- TableBodyRow color and border ([#539](https://github.com/themesberg/flowbite-svelte/issues/539)) ([d52920f](https://github.com/themesberg/flowbite-svelte/commit/d52920fe869183639788607475b148c80fe283fa))
|
|
1720
|
+
|
|
1721
|
+
### [0.29.11](https://github.com/themesberg/flowbite-svelte/compare/v0.29.10...v0.29.11) (2023-01-16)
|
|
1722
|
+
|
|
1723
|
+
### Features
|
|
1724
|
+
|
|
1725
|
+
- indicator comp ([#532](https://github.com/themesberg/flowbite-svelte/issues/532)) ([57ce4fc](https://github.com/themesberg/flowbite-svelte/commit/57ce4fcdce3965921c0f6edf71f6ae42c2d42b40))
|
|
1726
|
+
- make <TableHead> slot more flexible ([#527](https://github.com/themesberg/flowbite-svelte/issues/527)) ([33803f2](https://github.com/themesberg/flowbite-svelte/commit/33803f23ce90f9425417f6417c70bc6928337bbe))
|
|
1727
|
+
|
|
1728
|
+
### Bug Fixes
|
|
1729
|
+
|
|
1730
|
+
- update badge component's style and doc ([#531](https://github.com/themesberg/flowbite-svelte/issues/531)) ([ce9af8c](https://github.com/themesberg/flowbite-svelte/commit/ce9af8cff8f6979f625b00fd165aa2ffadc41604))
|
|
1731
|
+
|
|
1732
|
+
### [0.29.10](https://github.com/themesberg/flowbite-svelte/compare/v0.29.9...v0.29.10) (2023-01-13)
|
|
1733
|
+
|
|
1734
|
+
### Features
|
|
1735
|
+
|
|
1736
|
+
- add on:input to textarea ([#518](https://github.com/themesberg/flowbite-svelte/issues/518)) ([318ffbf](https://github.com/themesberg/flowbite-svelte/commit/318ffbf676366fcc7bd08c538270800d90ce5189))
|
|
1737
|
+
- make Select receive custom options ([#514](https://github.com/themesberg/flowbite-svelte/issues/514)) ([a58b410](https://github.com/themesberg/flowbite-svelte/commit/a58b410a3ffce29432907457baeae8c20977ef42))
|
|
1738
|
+
|
|
1739
|
+
### Bug Fixes
|
|
1740
|
+
|
|
1741
|
+
- [#530](https://github.com/themesberg/flowbite-svelte/issues/530) ([16c6650](https://github.com/themesberg/flowbite-svelte/commit/16c66504d42a378705a120fae5a6ca147a776bd4))
|
|
1742
|
+
- export slide params ([#516](https://github.com/themesberg/flowbite-svelte/issues/516)) ([c8dd81d](https://github.com/themesberg/flowbite-svelte/commit/c8dd81d5493b908a903648104f0371ac143c1167))
|
|
1743
|
+
- modal layout ([#526](https://github.com/themesberg/flowbite-svelte/issues/526)) ([6b25019](https://github.com/themesberg/flowbite-svelte/commit/6b250190f25feefe21191b3d8cab709fe28c6908))
|
|
1744
|
+
- npm run check corrections ([#517](https://github.com/themesberg/flowbite-svelte/issues/517)) ([f1f89e3](https://github.com/themesberg/flowbite-svelte/commit/f1f89e30221fd3bb63fed174fe825a46f780d1c7))
|
|
1745
|
+
|
|
1746
|
+
### [0.29.9](https://github.com/themesberg/flowbite-svelte/compare/v0.29.8...v0.29.9) (2023-01-01)
|
|
1747
|
+
|
|
1748
|
+
### Bug Fixes
|
|
1749
|
+
|
|
1750
|
+
- dark text color for input validation ([#513](https://github.com/themesberg/flowbite-svelte/issues/513)) ([7b145d6](https://github.com/themesberg/flowbite-svelte/commit/7b145d68f224151fa45c2b651a2b49351e13cf67))
|
|
1751
|
+
|
|
1752
|
+
### [0.29.8](https://github.com/themesberg/flowbite-svelte/compare/v0.29.7...v0.29.8) (2023-01-01)
|
|
1753
|
+
|
|
1754
|
+
### [0.29.7](https://github.com/themesberg/flowbite-svelte/compare/v0.29.6...v0.29.7) (2022-12-26)
|
|
1755
|
+
|
|
1756
|
+
### Bug Fixes
|
|
1757
|
+
|
|
1758
|
+
- select types ([#508](https://github.com/themesberg/flowbite-svelte/issues/508)) ([3ea30a9](https://github.com/themesberg/flowbite-svelte/commit/3ea30a9d336187f36f63f559fbef3b0a7dde5f23))
|
|
1759
|
+
|
|
1760
|
+
### [0.29.6](https://github.com/themesberg/flowbite-svelte/compare/v0.29.5...v0.29.6) (2022-12-26)
|
|
1761
|
+
|
|
1762
|
+
### Features
|
|
1763
|
+
|
|
1764
|
+
- add on:contextmenu ([#506](https://github.com/themesberg/flowbite-svelte/issues/506)) ([75ad596](https://github.com/themesberg/flowbite-svelte/commit/75ad59695188e36e0af52487e041c15a7b6fd845))
|
|
1765
|
+
|
|
1766
|
+
### Bug Fixes
|
|
1767
|
+
|
|
1768
|
+
- pagination for darkmode ([#507](https://github.com/themesberg/flowbite-svelte/issues/507)) ([9175627](https://github.com/themesberg/flowbite-svelte/commit/917562790bc05a1a0679c11266ee7d23531c865f))
|
|
1769
|
+
|
|
1770
|
+
### [0.29.5](https://github.com/themesberg/flowbite-svelte/compare/v0.29.4...v0.29.5) (2022-12-22)
|
|
1771
|
+
|
|
1772
|
+
### [0.29.4](https://github.com/themesberg/flowbite-svelte/compare/v0.29.3...v0.29.4) (2022-12-22)
|
|
1773
|
+
|
|
1774
|
+
### Features
|
|
1775
|
+
|
|
1776
|
+
- add pagination examples ([#503](https://github.com/themesberg/flowbite-svelte/issues/503)) ([93e48e3](https://github.com/themesberg/flowbite-svelte/commit/93e48e354a731216213e4ba38bf12e462880d58a))
|
|
1777
|
+
|
|
1778
|
+
### [0.29.3](https://github.com/themesberg/flowbite-svelte/compare/v0.29.2...v0.29.3) (2022-12-20)
|
|
1779
|
+
|
|
1780
|
+
### [0.29.2](https://github.com/themesberg/flowbite-svelte/compare/v0.29.1...v0.29.2) (2022-12-19)
|
|
1781
|
+
|
|
1782
|
+
### [0.29.1](https://github.com/themesberg/flowbite-svelte/compare/v0.29.0...v0.29.1) (2022-12-19)
|
|
1783
|
+
|
|
1784
|
+
### Bug Fixes
|
|
1785
|
+
|
|
1786
|
+
- add esbuild@0.16.8 and update other dependencies ([f32d1be](https://github.com/themesberg/flowbite-svelte/commit/f32d1beea8b402652242fdeaf1007885e74c12cd))
|
|
1787
|
+
- change svelte-kit sync && svelte-package to vite build ([cd7cd5e](https://github.com/themesberg/flowbite-svelte/commit/cd7cd5e971ba4f6c547984daf3a5f37656343b28))
|
|
1788
|
+
|
|
1789
|
+
## [0.29.0](https://github.com/themesberg/flowbite-svelte/compare/v0.28.12...v0.29.0) (2022-12-18)
|
|
1790
|
+
|
|
1791
|
+
### ⚠ BREAKING CHANGES
|
|
1792
|
+
|
|
1793
|
+
- update sveltekit 1.0.1
|
|
1794
|
+
|
|
1795
|
+
### Features
|
|
1796
|
+
|
|
1797
|
+
- update sveltekit 1.0.1 ([9b812c8](https://github.com/themesberg/flowbite-svelte/commit/9b812c861b25ef338574e91c95de3a1c0219f3b5))
|
|
1798
|
+
|
|
1799
|
+
### [0.28.12](https://github.com/themesberg/flowbite-svelte/compare/v0.28.11...v0.28.12) (2022-12-18)
|
|
1800
|
+
|
|
1801
|
+
### Bug Fixes
|
|
1802
|
+
|
|
1803
|
+
- npm run check fixes ([#484](https://github.com/themesberg/flowbite-svelte/issues/484)) ([be4f0f6](https://github.com/themesberg/flowbite-svelte/commit/be4f0f6270b93296d8e2cd3eab60ef77fc621261))
|
|
1804
|
+
|
|
1805
|
+
### [0.28.11](https://github.com/themesberg/flowbite-svelte/compare/v0.28.10...v0.28.11) (2022-12-10)
|
|
1806
|
+
|
|
1807
|
+
### Bug Fixes
|
|
1808
|
+
|
|
1809
|
+
- package.json scripts update ([7d1d8b9](https://github.com/themesberg/flowbite-svelte/commit/7d1d8b932a198284ae72948249ef379a6594bd18))
|
|
1810
|
+
- package.json scripts update ([b32d810](https://github.com/themesberg/flowbite-svelte/commit/b32d810eb8ebb9787f62c4ed76766ff77510c5c7))
|
|
1811
|
+
|
|
1812
|
+
### [0.28.10](https://github.com/themesberg/flowbite-svelte/compare/v0.28.9...v0.28.10) (2022-12-10)
|
|
1813
|
+
|
|
1814
|
+
### Bug Fixes
|
|
1815
|
+
|
|
1816
|
+
- package.json scripts update ([b3467ba](https://github.com/themesberg/flowbite-svelte/commit/b3467ba3f16c46f4801642dbf15cf07ad7b9618d))
|
|
1817
|
+
- vite.config.ts update ([72f8a25](https://github.com/themesberg/flowbite-svelte/commit/72f8a251221ce78a4452c8ead17ce2abb35cbb00))
|
|
1818
|
+
|
|
1819
|
+
### [0.28.9](https://github.com/themesberg/flowbite-svelte/compare/v0.28.8...v0.28.9) (2022-12-10)
|
|
1820
|
+
|
|
1821
|
+
### Bug Fixes
|
|
1822
|
+
|
|
1823
|
+
- scripts build update ([ed3d086](https://github.com/themesberg/flowbite-svelte/commit/ed3d086767e2e444ee716b511b1a57aabf630dea))
|
|
1824
|
+
|
|
1825
|
+
### [0.28.8](https://github.com/themesberg/flowbite-svelte/compare/v0.28.7...v0.28.8) (2022-12-10)
|
|
1826
|
+
|
|
1827
|
+
### [0.28.7](https://github.com/themesberg/flowbite-svelte/compare/v0.28.6...v0.28.7) (2022-12-10)
|
|
1828
|
+
|
|
1829
|
+
### [0.28.6](https://github.com/themesberg/flowbite-svelte/compare/v0.28.5...v0.28.6) (2022-12-10)
|
|
1830
|
+
|
|
1831
|
+
### [0.28.5](https://github.com/themesberg/flowbite-svelte/compare/v0.28.4...v0.28.5) (2022-12-10)
|
|
1832
|
+
|
|
1833
|
+
### Bug Fixes
|
|
1834
|
+
|
|
1835
|
+
- add eventhandler to label (mouse, drag, etc.) ([#433](https://github.com/themesberg/flowbite-svelte/issues/433)) ([6e4d9d1](https://github.com/themesberg/flowbite-svelte/commit/6e4d9d158c27ebb13f9a964d4bbfea17bba068cc))
|
|
1836
|
+
- avatar placholder missing href ([#475](https://github.com/themesberg/flowbite-svelte/issues/475)) ([6ad52e6](https://github.com/themesberg/flowbite-svelte/commit/6ad52e6c121599758a5c6bf4079bdffcd3199421))
|
|
1837
|
+
- bind:files for fileinput ([#474](https://github.com/themesberg/flowbite-svelte/issues/474)) ([585ba09](https://github.com/themesberg/flowbite-svelte/commit/585ba09f210bcb6b11a43ef005b742e999890dbf))
|
|
1838
|
+
- list group item padding ([#469](https://github.com/themesberg/flowbite-svelte/issues/469)) ([d945978](https://github.com/themesberg/flowbite-svelte/commit/d945978f38e82953c1ddd703b2fd7c9086768ffa))
|
|
1839
|
+
- removal of iconinput ([#476](https://github.com/themesberg/flowbite-svelte/issues/476)) ([2da0912](https://github.com/themesberg/flowbite-svelte/commit/2da0912b15199d6dbbcedae0db672b0a7d61a9fd))
|
|
1840
|
+
- remove a pipe from MetaTags titleTemplate ([6ad56c0](https://github.com/themesberg/flowbite-svelte/commit/6ad56c0a4c918b7322f102c6043ab34e549f026f))
|
|
1841
|
+
- sveltekit, vite, and other dependencies update ([#482](https://github.com/themesberg/flowbite-svelte/issues/482)) ([231e4da](https://github.com/themesberg/flowbite-svelte/commit/231e4daddc7095446a42f82f35f224ca9b9e209f))
|
|
1842
|
+
- ts errors ([#464](https://github.com/themesberg/flowbite-svelte/issues/464)) ([ca723d4](https://github.com/themesberg/flowbite-svelte/commit/ca723d489e1861f6f702da90f9645139979261df))
|
|
1843
|
+
|
|
1844
|
+
### [0.28.4](https://github.com/themesberg/flowbite-svelte/compare/v0.28.3...v0.28.4) (2022-12-01)
|
|
1845
|
+
|
|
1846
|
+
### Bug Fixes
|
|
1847
|
+
|
|
1848
|
+
- avatar default href ([#462](https://github.com/themesberg/flowbite-svelte/issues/462)) ([1ad8999](https://github.com/themesberg/flowbite-svelte/commit/1ad899993ae3cf1f18e975766549718dc65ed50b))
|
|
1849
|
+
|
|
1850
|
+
### [0.28.3](https://github.com/themesberg/flowbite-svelte/compare/v0.28.2...v0.28.3) (2022-11-28)
|
|
1851
|
+
|
|
1852
|
+
### Features
|
|
1853
|
+
|
|
1854
|
+
- make tr and td clickable ([#452](https://github.com/themesberg/flowbite-svelte/issues/452)) ([3bc7f9e](https://github.com/themesberg/flowbite-svelte/commit/3bc7f9e227e3bfe70b0c184eae132abafd071760))
|
|
1855
|
+
|
|
1856
|
+
### [0.28.2](https://github.com/themesberg/flowbite-svelte/compare/v0.28.1...v0.28.2) (2022-11-28)
|
|
1857
|
+
|
|
1858
|
+
### Bug Fixes
|
|
1859
|
+
|
|
1860
|
+
- add rel external to sidebar menu datepicker ([d9693e8](https://github.com/themesberg/flowbite-svelte/commit/d9693e88528e27b408f4380f40e4a18c79aa169c))
|
|
1861
|
+
- double scrollbar in docs ([#447](https://github.com/themesberg/flowbite-svelte/issues/447)) ([75efab3](https://github.com/themesberg/flowbite-svelte/commit/75efab37b6057469a35ec592c659438c3cf8047c))
|
|
1862
|
+
- show the top of page after navigation ([b3be37b](https://github.com/themesberg/flowbite-svelte/commit/b3be37b761a8a656413e1b34da73c6a251ab4010))
|
|
1863
|
+
|
|
1864
|
+
### [0.28.1](https://github.com/themesberg/flowbite-svelte/compare/v0.28.0...v0.28.1) (2022-11-23)
|
|
1865
|
+
|
|
1866
|
+
### Bug Fixes
|
|
1867
|
+
|
|
1868
|
+
- toggle initial checked ([#442](https://github.com/themesberg/flowbite-svelte/issues/442)) ([7b0b0b0](https://github.com/themesberg/flowbite-svelte/commit/7b0b0b0cfd0b40e6688af0a2a748453b16a4fd5a))
|
|
1869
|
+
- use encodeURIComponent for MetaTag component to encode spaces ([671a865](https://github.com/themesberg/flowbite-svelte/commit/671a8656eb7f5fff6f8c84ea6146f78b5fb8f0b0))
|
|
1870
|
+
|
|
1871
|
+
## [0.28.0](https://github.com/themesberg/flowbite-svelte/compare/v0.27.17...v0.28.0) (2022-11-20)
|
|
1872
|
+
|
|
1873
|
+
### Features
|
|
1874
|
+
|
|
1875
|
+
- enhance DarkMode ([#437](https://github.com/themesberg/flowbite-svelte/issues/437)) ([9afd3e1](https://github.com/themesberg/flowbite-svelte/commit/9afd3e11bec5bc4416537d7d371f970dd414a394))
|
|
1876
|
+
|
|
1877
|
+
### Bug Fixes
|
|
1878
|
+
|
|
1879
|
+
- checkbox initial checked ([#434](https://github.com/themesberg/flowbite-svelte/issues/434)) ([43663cf](https://github.com/themesberg/flowbite-svelte/commit/43663cf165f249c7e3fa7e7dc8ccfaccc7e467a6))
|
|
1880
|
+
- floatinginput type changes ([#436](https://github.com/themesberg/flowbite-svelte/issues/436)) ([5af9ecf](https://github.com/themesberg/flowbite-svelte/commit/5af9ecf598800e4cbcf27e413ba0b63d82926219))
|
|
1881
|
+
- og:image and twitter:image to replace spaces with - ([#441](https://github.com/themesberg/flowbite-svelte/issues/441)) ([25ad6d0](https://github.com/themesberg/flowbite-svelte/commit/25ad6d09816e1df3a5a8ddd9a901186d2a36f4ee))
|
|
1882
|
+
|
|
1883
|
+
### [0.27.17](https://github.com/themesberg/flowbite-svelte/compare/v0.27.16...v0.27.17) (2022-11-18)
|
|
1884
|
+
|
|
1885
|
+
### Features
|
|
1886
|
+
|
|
1887
|
+
- add SpeedDial component ([a959c5e](https://github.com/themesberg/flowbite-svelte/commit/a959c5edd96e56145453f0558f19be7f7a7fa8b5))
|
|
1888
|
+
|
|
1889
|
+
### Bug Fixes
|
|
1890
|
+
|
|
1891
|
+
- checkbox group ([#427](https://github.com/themesberg/flowbite-svelte/issues/427)) ([58c6660](https://github.com/themesberg/flowbite-svelte/commit/58c66600abcb943c730dbd64e6e4ca920bc06f8e))
|
|
1892
|
+
|
|
1893
|
+
### [0.27.16](https://github.com/themesberg/flowbite-svelte/compare/v0.27.15...v0.27.16) (2022-11-14)
|
|
1894
|
+
|
|
1895
|
+
### [0.27.15](https://github.com/themesberg/flowbite-svelte/compare/v0.27.14...v0.27.15) (2022-11-13)
|
|
1896
|
+
|
|
1897
|
+
### Features
|
|
1898
|
+
|
|
1899
|
+
- make AccordionItem transitions customizable ([0b49c35](https://github.com/themesberg/flowbite-svelte/commit/0b49c35a803b4ba3523c4d11845460c1958f9167))
|
|
1900
|
+
|
|
1901
|
+
### Bug Fixes
|
|
1902
|
+
|
|
1903
|
+
- autoclose=false (default) ([#417](https://github.com/themesberg/flowbite-svelte/issues/417)) ([32c1782](https://github.com/themesberg/flowbite-svelte/commit/32c1782ee8c8aae7b2b9c4e1d7bafe3adf1e467a))
|
|
1904
|
+
- change from fly to fade and a longer duration for Accordion custom transitions ([3d105f4](https://github.com/themesberg/flowbite-svelte/commit/3d105f4783dec6f3c42677a6aa151aac4e334f72))
|
|
1905
|
+
- radio.md - dropdown ([#425](https://github.com/themesberg/flowbite-svelte/issues/425)) ([12d2d03](https://github.com/themesberg/flowbite-svelte/commit/12d2d03098a3647040280b20474d657e8f8dca2b))
|
|
1906
|
+
- search on:input ([#408](https://github.com/themesberg/flowbite-svelte/issues/408)) ([4c1e514](https://github.com/themesberg/flowbite-svelte/commit/4c1e514297aaf786535d6411ba4a53e8037e0f90))
|
|
1907
|
+
- transition func must return TransitionConfig ([18bffdb](https://github.com/themesberg/flowbite-svelte/commit/18bffdb6829267bb78b33e2f247d707575504ee9))
|
|
1908
|
+
|
|
1909
|
+
### [0.27.14](https://github.com/themesberg/flowbite-svelte/compare/v0.27.13...v0.27.14) (2022-11-01)
|
|
1910
|
+
|
|
1911
|
+
### Bug Fixes
|
|
1912
|
+
|
|
1913
|
+
- card breadcrumb_title ([1ac4820](https://github.com/themesberg/flowbite-svelte/commit/1ac4820ac2553a3c812fced3b9d627e56a9d5ec2))
|
|
1914
|
+
- create MetaTag component ([#406](https://github.com/themesberg/flowbite-svelte/issues/406)) ([4d09e4a](https://github.com/themesberg/flowbite-svelte/commit/4d09e4acd14e04a07b3c01408de1be718b4eef1e))
|
|
1915
|
+
|
|
1916
|
+
### [0.27.13](https://github.com/themesberg/flowbite-svelte/compare/v0.27.12...v0.27.13) (2022-10-30)
|
|
1917
|
+
|
|
1918
|
+
### Features
|
|
1919
|
+
|
|
1920
|
+
- add target and {...$$restProps} to all footer components ([#405](https://github.com/themesberg/flowbite-svelte/issues/405)) ([c045aa7](https://github.com/themesberg/flowbite-svelte/commit/c045aa76dc209471f278eb98f0ec566c61e957f2))
|
|
1921
|
+
|
|
1922
|
+
### [0.27.12](https://github.com/themesberg/flowbite-svelte/compare/v0.27.11...v0.27.12) (2022-10-29)
|
|
1923
|
+
|
|
1924
|
+
### Bug Fixes
|
|
1925
|
+
|
|
1926
|
+
- meta tag by adding type, url, and appId ([#399](https://github.com/themesberg/flowbite-svelte/issues/399)) ([6f9f423](https://github.com/themesberg/flowbite-svelte/commit/6f9f423b294bbc54bdae152f659e029e5e8a1f76))
|
|
1927
|
+
- update meta images width and height ([#400](https://github.com/themesberg/flowbite-svelte/issues/400)) ([f97c01a](https://github.com/themesberg/flowbite-svelte/commit/f97c01a361714daca951c16fa7a2293988abd983))
|
|
1928
|
+
|
|
1929
|
+
### [0.27.11](https://github.com/themesberg/flowbite-svelte/compare/v0.27.10...v0.27.11) (2022-10-26)
|
|
1930
|
+
|
|
1931
|
+
### Features
|
|
1932
|
+
|
|
1933
|
+
- pagination ([#395](https://github.com/themesberg/flowbite-svelte/issues/395)) ([4792988](https://github.com/themesberg/flowbite-svelte/commit/479298855936bdc0e917788bbe1e00d8f62cbbe2))
|
|
1934
|
+
|
|
1935
|
+
### Bug Fixes
|
|
1936
|
+
|
|
1937
|
+
- add default value to opacity and space of paragraph element ([16f0729](https://github.com/themesberg/flowbite-svelte/commit/16f07295a2d23a3860ace75fab345c0d3452181b))
|
|
1938
|
+
- merge conflict ([fa3c5d8](https://github.com/themesberg/flowbite-svelte/commit/fa3c5d8d205bc7211334f19c0ec6ec7c57fdd754))
|
|
1939
|
+
- props update ([4c109c8](https://github.com/themesberg/flowbite-svelte/commit/4c109c84913bfe09ac8d4d6a7dd2265a0243eefa))
|
|
1940
|
+
- set the default values of space and color of paragraph element to undefined ([0d54908](https://github.com/themesberg/flowbite-svelte/commit/0d549081235b1691017c0d3ae802fe71b48c4016))
|
|
1941
|
+
|
|
1942
|
+
### [0.27.10](https://github.com/themesberg/flowbite-svelte/compare/v0.27.9...v0.27.10) (2022-10-21)
|
|
1943
|
+
|
|
1944
|
+
### Features
|
|
1945
|
+
|
|
1946
|
+
- add disabling only outside click but not backdrop ([#390](https://github.com/themesberg/flowbite-svelte/issues/390)) ([ebb6a1f](https://github.com/themesberg/flowbite-svelte/commit/ebb6a1f81d005ef19e432b7395ff7e17599c0b4f))
|
|
1947
|
+
|
|
1948
|
+
### Bug Fixes
|
|
1949
|
+
|
|
1950
|
+
- missing dropdown example ([#388](https://github.com/themesberg/flowbite-svelte/issues/388)) ([69ba822](https://github.com/themesberg/flowbite-svelte/commit/69ba822ef1f3710bdccbaf31006a94e1e3d19aae))
|
|
1951
|
+
|
|
1952
|
+
### [0.27.9](https://github.com/themesberg/flowbite-svelte/compare/v0.27.8...v0.27.9) (2022-10-19)
|
|
1953
|
+
|
|
1954
|
+
### Bug Fixes
|
|
1955
|
+
|
|
1956
|
+
- [#379](https://github.com/themesberg/flowbite-svelte/issues/379) ([#380](https://github.com/themesberg/flowbite-svelte/issues/380)) ([0019915](https://github.com/themesberg/flowbite-svelte/commit/001991546e3e7376a02c17481784c5a5636d6ed7))
|
|
1957
|
+
- optional Frame transition' ([#385](https://github.com/themesberg/flowbite-svelte/issues/385)) ([e7fc8db](https://github.com/themesberg/flowbite-svelte/commit/e7fc8db0f920e3bd907ce9fcf1c532885da193af))
|
|
1958
|
+
- restProps for NumberInput ([#382](https://github.com/themesberg/flowbite-svelte/issues/382)) ([d1acb7f](https://github.com/themesberg/flowbite-svelte/commit/d1acb7f1b22a69acfc0f1ab6d2859c2a7d8a082c))
|
|
1959
|
+
|
|
1960
|
+
### [0.27.8](https://github.com/themesberg/flowbite-svelte/compare/v0.27.7...v0.27.8) (2022-10-17)
|
|
1961
|
+
|
|
1962
|
+
### [0.27.7](https://github.com/themesberg/flowbite-svelte/compare/v0.27.6...v0.27.7) (2022-10-17)
|
|
1963
|
+
|
|
1964
|
+
### Bug Fixes
|
|
1965
|
+
|
|
1966
|
+
- [#376](https://github.com/themesberg/flowbite-svelte/issues/376) ([#378](https://github.com/themesberg/flowbite-svelte/issues/378)) ([8b4c2e3](https://github.com/themesberg/flowbite-svelte/commit/8b4c2e3200c73448aa34f921738e8ea8d10ee538))
|
|
1967
|
+
- card - restProps ([#373](https://github.com/themesberg/flowbite-svelte/issues/373)) ([a7331fc](https://github.com/themesberg/flowbite-svelte/commit/a7331fcd5915e6142a99859113776ce74a72529a))
|
|
1968
|
+
- flitering ([#370](https://github.com/themesberg/flowbite-svelte/issues/370)) ([e8ac071](https://github.com/themesberg/flowbite-svelte/commit/e8ac07134518a373949da3fadc4f63c656fe2d59))
|
|
1969
|
+
- modal arrow keys ([#369](https://github.com/themesberg/flowbite-svelte/issues/369)) ([2a8bc1c](https://github.com/themesberg/flowbite-svelte/commit/2a8bc1c156c66a3dc0569312343b6f6b65a051ea))
|
|
1970
|
+
- remove |local from Frame componentso that toast transitions work ([6da412c](https://github.com/themesberg/flowbite-svelte/commit/6da412c0665f27a6f9dd33bbf89758c4a924d239))
|
|
1971
|
+
|
|
1972
|
+
### [0.27.6](https://github.com/themesberg/flowbite-svelte/compare/v0.27.5...v0.27.6) (2022-10-09)
|
|
1973
|
+
|
|
1974
|
+
### Bug Fixes
|
|
1975
|
+
|
|
1976
|
+
- card padding-x in mobile view ([#358](https://github.com/themesberg/flowbite-svelte/issues/358)) ([639457f](https://github.com/themesberg/flowbite-svelte/commit/639457f5efc54f38fda9288aa9cf017c2d0f883d))
|
|
1977
|
+
- color flicker when changing theme using DarkMode ([#353](https://github.com/themesberg/flowbite-svelte/issues/353)) ([7e1daf1](https://github.com/themesberg/flowbite-svelte/commit/7e1daf14b1b91b0f3c0dac55c38e28fee42c4878))
|
|
1978
|
+
- improved focustrap ([#354](https://github.com/themesberg/flowbite-svelte/issues/354)) ([fb17cd3](https://github.com/themesberg/flowbite-svelte/commit/fb17cd357e748df4b1d95060bcbecf7b406d3f03))
|
|
1979
|
+
- input icons ([#350](https://github.com/themesberg/flowbite-svelte/issues/350)) ([7b72712](https://github.com/themesberg/flowbite-svelte/commit/7b727121b3b730eb552200c1de36f3cdc45f7977))
|
|
1980
|
+
- input number workaround ([#351](https://github.com/themesberg/flowbite-svelte/issues/351)) ([e4cb012](https://github.com/themesberg/flowbite-svelte/commit/e4cb01221c3b4334a2c860aa32ccee06df2fe41d))
|
|
1981
|
+
- remove // [@ts-ignore](https://github.com/ts-ignore) ([ea82a2b](https://github.com/themesberg/flowbite-svelte/commit/ea82a2bc22085bad26967a82d078d8ab86b2477d))
|
|
1982
|
+
- remove package-lock, pnpm-lock and node_modules and reinstall ([a8985ea](https://github.com/themesberg/flowbite-svelte/commit/a8985ea2fdb7c18eb23e61dd163e65da98a53ae4))
|
|
1983
|
+
- remove svelte-sidebar-menu ([2820488](https://github.com/themesberg/flowbite-svelte/commit/28204885bbefcb826e073a1e6b7127a0b488b752))
|
|
1984
|
+
- ts types for Popper ([#362](https://github.com/themesberg/flowbite-svelte/issues/362)) ([4a22230](https://github.com/themesberg/flowbite-svelte/commit/4a22230d66d780cb2d5c189266f97c87c251b70a))
|
|
1985
|
+
|
|
1986
|
+
### [0.27.5](https://github.com/themesberg/flowbite-svelte/compare/v0.27.4...v0.27.5) (2022-10-01)
|
|
1987
|
+
|
|
1988
|
+
### Features
|
|
1989
|
+
|
|
1990
|
+
- add fetchMarkdownPosts in utils/index ([#333](https://github.com/themesberg/flowbite-svelte/issues/333)) ([b604c0c](https://github.com/themesberg/flowbite-svelte/commit/b604c0c31c99b743817d814b3b043c42ccfaf14c))
|
|
1991
|
+
|
|
1992
|
+
### Bug Fixes
|
|
1993
|
+
|
|
1994
|
+
- accordion slots + docs ([#349](https://github.com/themesberg/flowbite-svelte/issues/349)) ([78a2542](https://github.com/themesberg/flowbite-svelte/commit/78a25427e31f61ba86ce825d9127515326448afa))
|
|
1995
|
+
- props using vite named import ([#347](https://github.com/themesberg/flowbite-svelte/issues/347)) ([7072e03](https://github.com/themesberg/flowbite-svelte/commit/7072e03b7ec8bac2e3d74d53f87c54dab772e159))
|
|
1996
|
+
- use vite to import a file as text ([#342](https://github.com/themesberg/flowbite-svelte/issues/342)) ([07ac592](https://github.com/themesberg/flowbite-svelte/commit/07ac592b0a06cda8afd71d918145693a0834b4f3))
|
|
1997
|
+
|
|
1998
|
+
### [0.27.4](https://github.com/themesberg/flowbite-svelte/compare/v0.27.3...v0.27.4) (2022-09-26)
|
|
1999
|
+
|
|
2000
|
+
### Features
|
|
2001
|
+
|
|
2002
|
+
- toast fine tune ([f3ee6f3](https://github.com/themesberg/flowbite-svelte/commit/f3ee6f382aa3a004a8efdbed75f215b9dfe59b4e))
|
|
2003
|
+
|
|
2004
|
+
### Bug Fixes
|
|
2005
|
+
|
|
2006
|
+
- app.css restored ([e40bc80](https://github.com/themesberg/flowbite-svelte/commit/e40bc80cace759b434bc889c1d143533de032345))
|
|
2007
|
+
- change a to A component ([dc92c3f](https://github.com/themesberg/flowbite-svelte/commit/dc92c3f699986f6679805350f3a88effc0e2a0c8))
|
|
2008
|
+
- remove type CrumbType ([4269359](https://github.com/themesberg/flowbite-svelte/commit/4269359c1bddb37fea064cab4dc31b3ea30772ee))
|
|
2009
|
+
- toc stickiness ([#330](https://github.com/themesberg/flowbite-svelte/issues/330)) ([21a0409](https://github.com/themesberg/flowbite-svelte/commit/21a0409bd34323b2858f43952ef6de45982b262d))
|
|
2010
|
+
- update props and types page ([#331](https://github.com/themesberg/flowbite-svelte/issues/331)) ([0be5900](https://github.com/themesberg/flowbite-svelte/commit/0be59006c6bf79df210838b21a17d3dfd18213ac))
|
|
2011
|
+
|
|
2012
|
+
### [0.27.3](https://github.com/themesberg/flowbite-svelte/compare/v0.27.2...v0.27.3) (2022-09-26)
|
|
2013
|
+
|
|
2014
|
+
### Bug Fixes
|
|
2015
|
+
|
|
2016
|
+
- change a to A component ([33a8015](https://github.com/themesberg/flowbite-svelte/commit/33a8015ae3e7b3969359bcd67ba47bb53c7f7dad))
|
|
2017
|
+
- correction in using style and color ([7ebbc5f](https://github.com/themesberg/flowbite-svelte/commit/7ebbc5fcac75fea0f9c19c51b6ea5dc8dfb241c8))
|
|
2018
|
+
- remove workflows/release-please.yml ([30a3682](https://github.com/themesberg/flowbite-svelte/commit/30a3682d3652e779e5e4325edbf7b66ad02a8428))
|
|
2019
|
+
- style for links ([040ff2e](https://github.com/themesberg/flowbite-svelte/commit/040ff2ea183d21836e8f3e5dddb5879cf9324a69))
|
|
2020
|
+
|
|
2021
|
+
### [0.27.2](https://github.com/themesberg/flowbite-svelte/compare/v0.27.1...v0.27.2) (2022-09-26)
|
|
2022
|
+
|
|
2023
|
+
### Features
|
|
2024
|
+
|
|
2025
|
+
- permanent option ([cceeb1b](https://github.com/themesberg/flowbite-svelte/commit/cceeb1b21995e4b386e61fa90256c7b3a304326e))
|
|
2026
|
+
|
|
2027
|
+
### [0.27.1](https://github.com/themesberg/flowbite-svelte/compare/v0.27.0...v0.27.1) (2022-09-24)
|
|
2028
|
+
|
|
2029
|
+
### Features
|
|
2030
|
+
|
|
2031
|
+
- modal block background scroll ([f3eb627](https://github.com/themesberg/flowbite-svelte/commit/f3eb62732dc899d6f1483d9f86a5c644c8d2edd2))
|
|
2032
|
+
- modal internal scrolling ([7ca08ea](https://github.com/themesberg/flowbite-svelte/commit/7ca08ea939e0116241c564738ec237bd501ca32c))
|
|
2033
|
+
|
|
2034
|
+
### Bug Fixes
|
|
2035
|
+
|
|
2036
|
+
- placement and padding ([169c749](https://github.com/themesberg/flowbite-svelte/commit/169c749004d16d9b7c1aef46448608beefd3caf7))
|
|
2037
|
+
|
|
2038
|
+
## [0.27.0](https://github.com/themesberg/flowbite-svelte/compare/v0.26.31...v0.27.0) (2022-09-24)
|
|
2039
|
+
|
|
2040
|
+
### Features
|
|
2041
|
+
|
|
2042
|
+
- add server hooks to redirect component pages and add redirect.spec test ([9e2cb72](https://github.com/themesberg/flowbite-svelte/commit/9e2cb72653cb2de16f77c30d73bd69a69bd73bd5))
|
|
2043
|
+
|
|
2044
|
+
### Bug Fixes
|
|
2045
|
+
|
|
2046
|
+
- add other dir ([dc5e73f](https://github.com/themesberg/flowbite-svelte/commit/dc5e73feaa44c3fc7f020967f2e342b08bafccdf))
|
|
2047
|
+
- add redirect to all other directories ([6ca9ce0](https://github.com/themesberg/flowbite-svelte/commit/6ca9ce0c38c2a417fc1bcd88520e609a0e1b2b0e))
|
|
2048
|
+
|
|
2049
|
+
### [0.26.31](https://github.com/themesberg/flowbite-svelte/compare/v0.26.30...v0.26.31) (2022-09-23)
|
|
2050
|
+
|
|
2051
|
+
### Bug Fixes
|
|
2052
|
+
|
|
2053
|
+
- add default style to TabHeadItem and TabHead and removed {tabStyle} from default example in tab page ([a9025c4](https://github.com/themesberg/flowbite-svelte/commit/a9025c432d57fe6896ab20249d711ff7739c9f1c))
|
|
2054
|
+
- add events to IconInput and on:input to Input components ([6668918](https://github.com/themesberg/flowbite-svelte/commit/66689185cd6cdf94ab66e1ff05ba33fbcaf6be0f))
|
|
2055
|
+
- remove activeTabvalue from TabWrapper and let:tabId vrom tab page examples ([ee1b444](https://github.com/themesberg/flowbite-svelte/commit/ee1b444cd552de4cd0c13e4356159ce44a864024))
|
|
2056
|
+
|
|
2057
|
+
### [0.26.30](https://github.com/themesberg/flowbite-svelte/compare/v0.26.29...v0.26.30) (2022-09-22)
|
|
2058
|
+
|
|
2059
|
+
### Bug Fixes
|
|
2060
|
+
|
|
2061
|
+
- add classOptions type to classes object ([2d7131b](https://github.com/themesberg/flowbite-svelte/commit/2d7131b25a5f6766c2cadc2b2034cc3cf68b9528))
|
|
2062
|
+
- remove bind: from TabWrapper bind:activeTabValue ([0269b3a](https://github.com/themesberg/flowbite-svelte/commit/0269b3ac4daf31cebec6f215983bfb4e99a118e3))
|
|
2063
|
+
- remove tabId from TabWrapper component ([5f46d23](https://github.com/themesberg/flowbite-svelte/commit/5f46d238ff1c81c1c66c1542565aa589f97cf530))
|
|
2064
|
+
- update icon class in TabHeadItem for Tabs with icons ([e94b344](https://github.com/themesberg/flowbite-svelte/commit/e94b3449826e84146b877e00e458885e08606ec5))
|
|
2065
|
+
|
|
2066
|
+
### [0.26.29](https://github.com/themesberg/flowbite-svelte/compare/v0.26.28...v0.26.29) (2022-09-22)
|
|
2067
|
+
|
|
2068
|
+
### Features
|
|
2069
|
+
|
|
2070
|
+
- dropdown new version ([f17dbff](https://github.com/themesberg/flowbite-svelte/commit/f17dbff9139a80d0629913315fd4e594e99c9f40))
|
|
2071
|
+
|
|
2072
|
+
### Bug Fixes
|
|
2073
|
+
|
|
2074
|
+
- DropdownItem as li only when childe of ul ([add2f16](https://github.com/themesberg/flowbite-svelte/commit/add2f166883df2c237197f3327ad331dd0a1617d))
|
|
2075
|
+
- navbar in mobile view width ([7f283f3](https://github.com/themesberg/flowbite-svelte/commit/7f283f363ff5fc70430db83bddde3af24e94aa9a))
|
|
2076
|
+
|
|
2077
|
+
### [0.26.28](https://github.com/themesberg/flowbite-svelte/compare/v0.26.27...v0.26.28) (2022-09-20)
|
|
2078
|
+
|
|
2079
|
+
### [0.26.27](https://github.com/themesberg/flowbite-svelte/compare/v0.26.26...v0.26.27) (2022-09-20)
|
|
2080
|
+
|
|
2081
|
+
### Bug Fixes
|
|
2082
|
+
|
|
2083
|
+
- typo form and from ([f17012d](https://github.com/themesberg/flowbite-svelte/commit/f17012db645030cf15ee62c28076f136ff28bed0))
|
|
2084
|
+
|
|
2085
|
+
### [0.26.26](https://github.com/themesberg/flowbite-svelte/compare/v0.26.25...v0.26.26) (2022-09-20)
|
|
2086
|
+
|
|
2087
|
+
### Features
|
|
2088
|
+
|
|
2089
|
+
- add $$slots.arrowdown and arrowup for user icons ([3fa53de](https://github.com/themesberg/flowbite-svelte/commit/3fa53de11239fe93e2ae9e28e5bdf3ee3ccc1f69))
|
|
2090
|
+
- add ChevronUp to SidebarDropdownWrapper ([032d540](https://github.com/themesberg/flowbite-svelte/commit/032d540b347ab30ddcdcddff8c0963290ce0c904))
|
|
2091
|
+
|
|
2092
|
+
### Bug Fixes
|
|
2093
|
+
|
|
2094
|
+
- alert more tweaks ([444b340](https://github.com/themesberg/flowbite-svelte/commit/444b340f3a211f02572675b94624da4ae5d90c63))
|
|
2095
|
+
- alert tweaks ([0c93b3c](https://github.com/themesberg/flowbite-svelte/commit/0c93b3c27d8911cd4709f78c554f68e524cc06d4))
|
|
2096
|
+
|
|
2097
|
+
### [0.26.25](https://github.com/themesberg/flowbite-svelte/compare/v0.26.24...v0.26.25) (2022-09-19)
|
|
2098
|
+
|
|
2099
|
+
### Bug Fixes
|
|
2100
|
+
|
|
2101
|
+
- tooltips/popovers ([d18721c](https://github.com/themesberg/flowbite-svelte/commit/d18721cc4229f5eb1f4dccbbd34dda65f6a07aac))
|
|
2102
|
+
|
|
2103
|
+
### [0.26.24](https://github.com/themesberg/flowbite-svelte/compare/v0.26.23...v0.26.24) (2022-09-19)
|
|
2104
|
+
|
|
2105
|
+
### Features
|
|
2106
|
+
|
|
2107
|
+
- mdsvexamples ([fc542a0](https://github.com/themesberg/flowbite-svelte/commit/fc542a0b6d09067fa62ae92ed44cb08408c19ad0))
|
|
2108
|
+
- wrapper added ([024b8e6](https://github.com/themesberg/flowbite-svelte/commit/024b8e6a8db1e4961b1d26df67728cc0fb8b3025))
|
|
2109
|
+
|
|
2110
|
+
### [0.26.23](https://github.com/themesberg/flowbite-svelte/compare/v0.26.22...v0.26.23) (2022-09-18)
|
|
2111
|
+
|
|
2112
|
+
### Bug Fixes
|
|
2113
|
+
|
|
2114
|
+
- **DropdownItem:** remove redundant part after else ([4182d5c](https://github.com/themesberg/flowbite-svelte/commit/4182d5c970b3a683b47e228f4881585f4ca77d3b))
|
|
2115
|
+
|
|
2116
|
+
### [0.26.22](https://github.com/themesberg/flowbite-svelte/compare/v0.26.21...v0.26.22) (2022-09-17)
|
|
2117
|
+
|
|
2118
|
+
### Bug Fixes
|
|
2119
|
+
|
|
2120
|
+
- add createprops, scripts gen:props and package ([0fa07af](https://github.com/themesberg/flowbite-svelte/commit/0fa07af6a55819cf1d72d2f14ded5c400d7386db))
|
|
2121
|
+
|
|
2122
|
+
### [0.26.21](https://github.com/themesberg/flowbite-svelte/compare/v0.26.20...v0.26.21) (2022-09-17)
|
|
2123
|
+
|
|
2124
|
+
### Bug Fixes
|
|
2125
|
+
|
|
2126
|
+
- add npm and node to packages.josn engines for vercel test ([52e61fa](https://github.com/themesberg/flowbite-svelte/commit/52e61faf5152817af07adbf7a4947b90f61ef7fb))
|
|
2127
|
+
- commit after reset ([c3ee849](https://github.com/themesberg/flowbite-svelte/commit/c3ee8494fffac749a1e32cbeba1cf722ba6cb578))
|
|
2128
|
+
- copy from flowbite-svelte-new ([5a400fc](https://github.com/themesberg/flowbite-svelte/commit/5a400fce508c53e57eec6f5e40ba5c468ef79481))
|
|
2129
|
+
- remove layout and page content ([92609e5](https://github.com/themesberg/flowbite-svelte/commit/92609e5a8dd85b22daaf12dda526331184bb4e74))
|
|
2130
|
+
- update tsconfig.json ([ff4b3da](https://github.com/themesberg/flowbite-svelte/commit/ff4b3dacb420558c0beb627a75d9668e8fad88f9))
|
|
2131
|
+
|
|
2132
|
+
### [0.26.20](https://github.com/themesberg/flowbite-svelte/compare/v0.26.18...v0.26.20) (2022-09-15)
|
|
2133
|
+
|
|
2134
|
+
### Features
|
|
2135
|
+
|
|
2136
|
+
- datepicker update. It needs rel=external for the link from sidebar menu and index page ([6fed169](https://github.com/themesberg/flowbite-svelte/commit/6fed169402be79c0e0eba9a93766be5f0587ef41))
|
|
2137
|
+
|
|
2138
|
+
### Bug Fixes
|
|
2139
|
+
|
|
2140
|
+
- git reset --hard 344845b4 and update getting-started ([a941ed8](https://github.com/themesberg/flowbite-svelte/commit/a941ed8169872a39bd37e809db718f09156fbbc2))
|
|
2141
|
+
- homepage ([dedf355](https://github.com/themesberg/flowbite-svelte/commit/dedf355835cf8b60aeb68a94b0e47a2034bea358))
|
|
2142
|
+
- mousenter ([c3ee1cc](https://github.com/themesberg/flowbite-svelte/commit/c3ee1cc24867be96860faa32e322b6fe7c41592a))
|
|
2143
|
+
- sidebar activeUrl example ([4387644](https://github.com/themesberg/flowbite-svelte/commit/43876441726e70eb582c20778a6231ed03f963d7))
|
|
2144
|
+
- spacing ([6f6e99c](https://github.com/themesberg/flowbite-svelte/commit/6f6e99cec7209a70f9e09b362714f37525c45a53))
|
|
2145
|
+
- toc issues ([13a459e](https://github.com/themesberg/flowbite-svelte/commit/13a459ec6cc3c8768698c5525012f2b53ae94b5c))
|
|
2146
|
+
- update bug_report.yml ([221f224](https://github.com/themesberg/flowbite-svelte/commit/221f224920c69fb281c8b4fd2844a22fbe657c72))
|
|
2147
|
+
- update bug_report.yml ([c527971](https://github.com/themesberg/flowbite-svelte/commit/c52797111863fd3e52e7c3dae9473e22cd84923a))
|
|
2148
|
+
- update bug_report.yml by adding REPL template link ([3c8140d](https://github.com/themesberg/flowbite-svelte/commit/3c8140dffdedb3a41ee0ea9b546da92866fceefb))
|
|
2149
|
+
|
|
2150
|
+
### [0.26.19](https://github.com/themesberg/flowbite-svelte/compare/v0.26.18...v0.26.19) (2022-09-15)
|
|
2151
|
+
|
|
2152
|
+
### Features
|
|
2153
|
+
|
|
2154
|
+
- datepicker update. It needs rel=external for the link from sidebar menu and index page ([6fed169](https://github.com/themesberg/flowbite-svelte/commit/6fed169402be79c0e0eba9a93766be5f0587ef41))
|
|
2155
|
+
|
|
2156
|
+
### Bug Fixes
|
|
2157
|
+
|
|
2158
|
+
- git reset --hard 344845b4 and update getting-started ([a941ed8](https://github.com/themesberg/flowbite-svelte/commit/a941ed8169872a39bd37e809db718f09156fbbc2))
|
|
2159
|
+
- homepage ([dedf355](https://github.com/themesberg/flowbite-svelte/commit/dedf355835cf8b60aeb68a94b0e47a2034bea358))
|
|
2160
|
+
- mousenter ([c3ee1cc](https://github.com/themesberg/flowbite-svelte/commit/c3ee1cc24867be96860faa32e322b6fe7c41592a))
|
|
2161
|
+
- sidebar activeUrl example ([4387644](https://github.com/themesberg/flowbite-svelte/commit/43876441726e70eb582c20778a6231ed03f963d7))
|
|
2162
|
+
- spacing ([6f6e99c](https://github.com/themesberg/flowbite-svelte/commit/6f6e99cec7209a70f9e09b362714f37525c45a53))
|
|
2163
|
+
- toc issues ([13a459e](https://github.com/themesberg/flowbite-svelte/commit/13a459ec6cc3c8768698c5525012f2b53ae94b5c))
|
|
2164
|
+
- update bug_report.yml ([221f224](https://github.com/themesberg/flowbite-svelte/commit/221f224920c69fb281c8b4fd2844a22fbe657c72))
|
|
2165
|
+
- update bug_report.yml ([c527971](https://github.com/themesberg/flowbite-svelte/commit/c52797111863fd3e52e7c3dae9473e22cd84923a))
|
|
2166
|
+
- update bug_report.yml by adding REPL template link ([3c8140d](https://github.com/themesberg/flowbite-svelte/commit/3c8140dffdedb3a41ee0ea9b546da92866fceefb))
|
|
2167
|
+
|
|
2168
|
+
### [0.26.18](https://github.com/themesberg/flowbite-svelte/compare/v0.26.17...v0.26.18) (2022-09-12)
|
|
2169
|
+
|
|
2170
|
+
### Bug Fixes
|
|
2171
|
+
|
|
2172
|
+
- [#281](https://github.com/themesberg/flowbite-svelte/issues/281) ([5f79a5e](https://github.com/themesberg/flowbite-svelte/commit/5f79a5e27e23f568ae8e82d3ee974eea93eaccab))
|
|
2173
|
+
- use relative paths instead of $lib alias inside of lib ([96e9d6b](https://github.com/themesberg/flowbite-svelte/commit/96e9d6bacb81761a26b0e43215c53ae24deffc73))
|
|
2174
|
+
|
|
2175
|
+
### [0.26.17](https://github.com/themesberg/flowbite-svelte/compare/v0.26.16...v0.26.17) (2022-09-11)
|
|
2176
|
+
|
|
2177
|
+
### Features
|
|
2178
|
+
|
|
2179
|
+
- add active to SidebarItem component and an example in the page ([af80c2b](https://github.com/themesberg/flowbite-svelte/commit/af80c2b7c1d81e711bba0faca959e6501b31257c))
|
|
2180
|
+
- add md files in components folder ([8d7e05a](https://github.com/themesberg/flowbite-svelte/commit/8d7e05a0098437ac7ddd3f9122a2c23f481e54cd))
|
|
2181
|
+
|
|
2182
|
+
### Bug Fixes
|
|
2183
|
+
|
|
2184
|
+
- Drawer placement right ([4fe9283](https://github.com/themesberg/flowbite-svelte/commit/4fe928380f4bb95c59e311e7ccc3a8ae49fda89d))
|
|
2185
|
+
- remove Datepicker from index ([f08230c](https://github.com/themesberg/flowbite-svelte/commit/f08230c84d29f172f1a30a6194e2694eb65f3e3e))
|
|
2186
|
+
- remove Toc from layout since it needs to be updated ([2ea41a0](https://github.com/themesberg/flowbite-svelte/commit/2ea41a0c82bb8a7f583a001c1c5f598ac5855102))
|
|
2187
|
+
|
|
2188
|
+
### [0.26.16](https://github.com/themesberg/flowbite-svelte/compare/v0.26.15...v0.26.16) (2022-09-06)
|
|
2189
|
+
|
|
2190
|
+
### Features
|
|
2191
|
+
|
|
2192
|
+
- add offset position props to Drawer and example in the drawer page ([680d358](https://github.com/themesberg/flowbite-svelte/commit/680d358ef3d55df202ae2bcaf5deb9c3e6834c18))
|
|
2193
|
+
|
|
2194
|
+
### Bug Fixes
|
|
2195
|
+
|
|
2196
|
+
- [#273](https://github.com/themesberg/flowbite-svelte/issues/273) remove number from select value type ([529510b](https://github.com/themesberg/flowbite-svelte/commit/529510bc50e561b544175a350390d7f32291727c))
|
|
2197
|
+
- [#274](https://github.com/themesberg/flowbite-svelte/issues/274) change the links to singular for blocks components ([7378935](https://github.com/themesberg/flowbite-svelte/commit/73789353f4d598722db88cecb595303e8d60ac31))
|
|
2198
|
+
- index blocks names, e.g. Tooltips to Tooltip ([5f902b2](https://github.com/themesberg/flowbite-svelte/commit/5f902b22043838a3e3413679632c9516ea81b906))
|
|
2199
|
+
|
|
2200
|
+
### [0.26.15](https://github.com/themesberg/flowbite-svelte/compare/v0.26.14...v0.26.15) (2022-09-06)
|
|
2201
|
+
|
|
2202
|
+
### Bug Fixes
|
|
2203
|
+
|
|
2204
|
+
- dropdowns events docs ([a6d86b6](https://github.com/themesberg/flowbite-svelte/commit/a6d86b671a5c481288a20c1fe68cfcfe0faea880))
|
|
2205
|
+
- dropdowns tweaks ([ad797ca](https://github.com/themesberg/flowbite-svelte/commit/ad797ca4a4a60abd7723b3b1415e70fb6e1328a6))
|
|
2206
|
+
|
|
2207
|
+
### [0.26.14](https://github.com/themesberg/flowbite-svelte/compare/v0.26.13...v0.26.14) (2022-09-06)
|
|
2208
|
+
|
|
2209
|
+
### Bug Fixes
|
|
2210
|
+
|
|
2211
|
+
- Heading and P update ([2313e3e](https://github.com/themesberg/flowbite-svelte/commit/2313e3e5ecb38ee69839a26b12b7c41cc099f75e))
|
|
2212
|
+
- toast transitions ([6659682](https://github.com/themesberg/flowbite-svelte/commit/6659682250ab9d2337f06c2b424431366cf9ced0))
|
|
2213
|
+
|
|
2214
|
+
### [0.26.13](https://github.com/themesberg/flowbite-svelte/compare/v0.26.12...v0.26.13) (2022-09-05)
|
|
2215
|
+
|
|
2216
|
+
### Bug Fixes
|
|
2217
|
+
|
|
2218
|
+
- add track to video component for A11y ([ef69a83](https://github.com/themesberg/flowbite-svelte/commit/ef69a83325ab11e4d3548e5e28033ae9e02bfe40))
|
|
2219
|
+
|
|
2220
|
+
### [0.26.12](https://github.com/themesberg/flowbite-svelte/compare/v0.26.11...v0.26.12) (2022-09-05)
|
|
2221
|
+
|
|
2222
|
+
### Features
|
|
2223
|
+
|
|
2224
|
+
- add labelInsideClass to progressbar component ([fe20cd7](https://github.com/themesberg/flowbite-svelte/commit/fe20cd7f693f21e052dc5adb3fd3eb4bcfa80b76))
|
|
2225
|
+
|
|
2226
|
+
### [0.26.11](https://github.com/themesberg/flowbite-svelte/compare/v0.26.10...v0.26.11) (2022-09-05)
|
|
2227
|
+
|
|
2228
|
+
### Features
|
|
2229
|
+
|
|
2230
|
+
- range - clean up ([79d35ca](https://github.com/themesberg/flowbite-svelte/commit/79d35ca127094efb20e12ad3e14635cf607edddc))
|
|
2231
|
+
- video component and page ([27cd7df](https://github.com/themesberg/flowbite-svelte/commit/27cd7df226dde37e8a598b6693ae8278671d5782))
|
|
2232
|
+
|
|
2233
|
+
### Bug Fixes
|
|
2234
|
+
|
|
2235
|
+
- [#266](https://github.com/themesberg/flowbite-svelte/issues/266) change {id} to {...$$restProps} ([b02822f](https://github.com/themesberg/flowbite-svelte/commit/b02822f273fe5b14613ec77e39285078a740cda0))
|
|
2236
|
+
- github issue template ([b6b8fd4](https://github.com/themesberg/flowbite-svelte/commit/b6b8fd46aa7491e29935fe62ca5dc617513ee5ee))
|
|
2237
|
+
- github issue template 2 ([343c102](https://github.com/themesberg/flowbite-svelte/commit/343c102ee1901c8d14fc75ab06a0fe28ac594a98))
|
|
2238
|
+
- github issue template 3 ([e8c6a1b](https://github.com/themesberg/flowbite-svelte/commit/e8c6a1b7d148d0137ca0e395bf5904e3a2ed408c))
|
|
2239
|
+
- github issue template 4 ([5565625](https://github.com/themesberg/flowbite-svelte/commit/5565625e343c197bd4d903878a2955eaae08b788))
|
|
2240
|
+
- video component and page ([cc8dcb5](https://github.com/themesberg/flowbite-svelte/commit/cc8dcb54843ecff1f9aacc82d9139aedf7d6e0c1))
|
|
2241
|
+
|
|
2242
|
+
### [0.26.10](https://github.com/themesberg/flowbite-svelte/compare/v0.26.9...v0.26.10) (2022-09-05)
|
|
2243
|
+
|
|
2244
|
+
### Features
|
|
2245
|
+
|
|
2246
|
+
- add bgColor and bgOpacity to Drawer component ([8dc01fb](https://github.com/themesberg/flowbite-svelte/commit/8dc01fb9ec82b14d5f893d1255b646630e205ce2))
|
|
2247
|
+
|
|
2248
|
+
### Bug Fixes
|
|
2249
|
+
|
|
2250
|
+
- 683restProps for toolbarbutton ([6ce830c](https://github.com/themesberg/flowbite-svelte/commit/6ce830c2657c6727835ded2b01728c8830a1a7d2))
|
|
2251
|
+
- change ml-2 after get access to ml-1 ([b8ffc2c](https://github.com/themesberg/flowbite-svelte/commit/b8ffc2ca5016737da2d40ed5b83d4ef5fdc07e08))
|
|
2252
|
+
- megamenu fullscreen position ([eaf0729](https://github.com/themesberg/flowbite-svelte/commit/eaf07294a728b524f2873df26f8250d23682dd81))
|
|
2253
|
+
- navbar updates ([468839b](https://github.com/themesberg/flowbite-svelte/commit/468839bd2efee738787b428ef902cecee3f70e12))
|
|
2254
|
+
- remove Figma from image page ([0276b51](https://github.com/themesberg/flowbite-svelte/commit/0276b517fc828e77bfd383be122b514bb0793da0))
|
|
2255
|
+
|
|
2256
|
+
### [0.26.9](https://github.com/themesberg/flowbite-svelte/compare/v0.26.8...v0.26.9) (2022-09-04)
|
|
2257
|
+
|
|
2258
|
+
### Features
|
|
2259
|
+
|
|
2260
|
+
- add id to typograpy components ([64cbe1b](https://github.com/themesberg/flowbite-svelte/commit/64cbe1b6f2cbe43fdf5cb71a0d82e3a5caad1586))
|
|
2261
|
+
- add placement to Drawer component ([1b91e52](https://github.com/themesberg/flowbite-svelte/commit/1b91e52618da8935b326a69161d01f0cc7739158))
|
|
2262
|
+
- working on drawer ([07a8e02](https://github.com/themesberg/flowbite-svelte/commit/07a8e02ceac450e7e7ceeb2ad9b98bfac7c7c1cf))
|
|
2263
|
+
|
|
2264
|
+
### Bug Fixes
|
|
2265
|
+
|
|
2266
|
+
- folder names without s and update tests ([4e9c9ce](https://github.com/themesberg/flowbite-svelte/commit/4e9c9ce69e06b1a8e4394c3920c75606894c06d3))
|
|
2267
|
+
- no dropdown docs ([4f92d9b](https://github.com/themesberg/flowbite-svelte/commit/4f92d9b56a53677bed7264b6f044e64a10c42c7e))
|
|
2268
|
+
- update Htwo using scroll-mt-20 ([2006490](https://github.com/themesberg/flowbite-svelte/commit/200649069a05c6df4ed0e269d3479526092afe01))
|
|
2269
|
+
|
|
2270
|
+
### [0.26.8](https://github.com/themesberg/flowbite-svelte/compare/v0.26.7...v0.26.8) (2022-09-03)
|
|
2271
|
+
|
|
2272
|
+
### Features
|
|
2273
|
+
|
|
2274
|
+
- dropdown button ([f6347f2](https://github.com/themesberg/flowbite-svelte/commit/f6347f280cbfc552d001aa22128026174b46a6f3))
|
|
2275
|
+
- more Frame inheritance ([bb72d69](https://github.com/themesberg/flowbite-svelte/commit/bb72d6952386bd0f6dec4711795e3591a6837c02))
|
|
2276
|
+
- popover finalization ([c71481e](https://github.com/themesberg/flowbite-svelte/commit/c71481ec18e2850488d86cfdb583587eae4a19b2))
|
|
2277
|
+
|
|
2278
|
+
### Bug Fixes
|
|
2279
|
+
|
|
2280
|
+
- missing 683restProps ([0d52fd1](https://github.com/themesberg/flowbite-svelte/commit/0d52fd1b4168c8cc707c174dc2c18f532cf2e93c))
|
|
2281
|
+
- no triggers error ([83075e1](https://github.com/themesberg/flowbite-svelte/commit/83075e1a969bdf93a520bd9e35b339e36bf4f325))
|
|
2282
|
+
- remove unused imports ([acb58b9](https://github.com/themesberg/flowbite-svelte/commit/acb58b9144948feeb3c1c14b41a71d2122187340))
|
|
2283
|
+
|
|
2284
|
+
### [0.26.7](https://github.com/themesberg/flowbite-svelte/compare/v0.26.6...v0.26.7) (2022-09-03)
|
|
2285
|
+
|
|
2286
|
+
### Features
|
|
2287
|
+
|
|
2288
|
+
- add Layout component ([2204586](https://github.com/themesberg/flowbite-svelte/commit/22045861703bf3e46cc7900e15c4db64d5246c50))
|
|
2289
|
+
- add paragraphs page ([db973a3](https://github.com/themesberg/flowbite-svelte/commit/db973a3929bfdc8c4dd48338cc114bdc2c808fb8))
|
|
2290
|
+
|
|
2291
|
+
### Bug Fixes
|
|
2292
|
+
|
|
2293
|
+
- add html block to text page ([37e910a](https://github.com/themesberg/flowbite-svelte/commit/37e910ae269099865865580d419b8dd05dccb7a8))
|
|
2294
|
+
|
|
2295
|
+
### [0.26.6](https://github.com/themesberg/flowbite-svelte/compare/v0.26.5...v0.26.6) (2022-09-02)
|
|
2296
|
+
|
|
2297
|
+
### Features
|
|
2298
|
+
|
|
2299
|
+
- add highlight to Span component and update heading page ([d47121b](https://github.com/themesberg/flowbite-svelte/commit/d47121ba47e6c6e3dfdd366128f51da77a966e0f))
|
|
2300
|
+
- add Text decoration examples to text page ([fe074cd](https://github.com/themesberg/flowbite-svelte/commit/fe074cd2a36d780333444f276de69edec51649d5))
|
|
2301
|
+
- add underline and decoratio class to Span ([f3b11a9](https://github.com/themesberg/flowbite-svelte/commit/f3b11a92b3782c27e09f25c894a81402661b73d3))
|
|
2302
|
+
|
|
2303
|
+
### Bug Fixes
|
|
2304
|
+
|
|
2305
|
+
- header blocking anchor links ([af6d2d6](https://github.com/themesberg/flowbite-svelte/commit/af6d2d6eb9bb630e58e76fd214f8a14f0435dc2f))
|
|
2306
|
+
- remove TextGradient and Underline ([cb7b2d7](https://github.com/themesberg/flowbite-svelte/commit/cb7b2d753f110cad4677f990d60a11154e38ac93))
|
|
2307
|
+
|
|
2308
|
+
### [0.26.5](https://github.com/themesberg/flowbite-svelte/compare/v0.26.4...v0.26.5) (2022-09-02)
|
|
2309
|
+
|
|
2310
|
+
### Features
|
|
2311
|
+
|
|
2312
|
+
- add DescriptionList, List, Span components ([495b61e](https://github.com/themesberg/flowbite-svelte/commit/495b61eb0d81eb9ae06a34fa981dd42a81983ea6))
|
|
2313
|
+
- add Ul, Li, Span component ([86d8b66](https://github.com/themesberg/flowbite-svelte/commit/86d8b661f2524f25162a99b6d3b8df761a85b01b))
|
|
2314
|
+
|
|
2315
|
+
### Bug Fixes
|
|
2316
|
+
|
|
2317
|
+
- blockquote page formating ([1641d45](https://github.com/themesberg/flowbite-svelte/commit/1641d45bdc032c01cd201967bf362d9f8a19a422))
|
|
2318
|
+
- Heading to the original code ([5604da5](https://github.com/themesberg/flowbite-svelte/commit/5604da5f348420f8878e44d591e9a8704b23e4a0))
|
|
2319
|
+
- List in cards page to Listgroup ([b8e05f4](https://github.com/themesberg/flowbite-svelte/commit/b8e05f4f97fbbb0236872b2b5f18f0928c34ad55))
|
|
2320
|
+
- rebase merge conflict Alert.svelte ([38df84a](https://github.com/themesberg/flowbite-svelte/commit/38df84a21124d3d3c3c1d716ff21bd678b156b09))
|
|
2321
|
+
- removed Ol component ([569f2e3](https://github.com/themesberg/flowbite-svelte/commit/569f2e3a51a59abba641c669949b4b5372c56a01))
|
|
2322
|
+
- rename List to Listgroup and ListItem to ListgroupItem ([1b70110](https://github.com/themesberg/flowbite-svelte/commit/1b7011062a729452604b3a0dd1ed54f28ab49132))
|
|
2323
|
+
|
|
2324
|
+
### [0.26.4](https://github.com/themesberg/flowbite-svelte/compare/v0.26.3...v0.26.4) (2022-09-02)
|
|
2325
|
+
|
|
2326
|
+
### Bug Fixes
|
|
2327
|
+
|
|
2328
|
+
- programatic popper open merged ([86f9874](https://github.com/themesberg/flowbite-svelte/commit/86f9874e1c2390e3571b6df96acfa61af23fd865))
|
|
2329
|
+
|
|
2330
|
+
### [0.26.3](https://github.com/themesberg/flowbite-svelte/compare/v0.26.2...v0.26.3) (2022-09-01)
|
|
2331
|
+
|
|
2332
|
+
### Features
|
|
2333
|
+
|
|
2334
|
+
- frame abstraction ([47e4126](https://github.com/themesberg/flowbite-svelte/commit/47e4126fa02ff6b9c93d3ee7e17fee79195ac1d3))
|
|
2335
|
+
|
|
2336
|
+
### Bug Fixes
|
|
2337
|
+
|
|
2338
|
+
- docs fixes due to dropdown api change ([869f8d7](https://github.com/themesberg/flowbite-svelte/commit/869f8d7bdea3a7ba97702e31b52f0e33fce3c911))
|
|
2339
|
+
- remove flowbite-svelte-blocks page, add a link ([2b9e3d3](https://github.com/themesberg/flowbite-svelte/commit/2b9e3d3f72731ace8abb563e28e98309dbc58b3b))
|
|
2340
|
+
- remove heros icons from ([203f14c](https://github.com/themesberg/flowbite-svelte/commit/203f14c578e57429892e0df41452abbdef1b3a4e))
|
|
2341
|
+
- remove svelte-flag-icons from devDependencies ([8f48867](https://github.com/themesberg/flowbite-svelte/commit/8f488677958313a2debaa3f953314d6452a63013))
|
|
2342
|
+
- update svelte-sidebar-menu version ([1106d16](https://github.com/themesberg/flowbite-svelte/commit/1106d161d06244d5db61641babc7691d28388fbd))
|
|
2343
|
+
|
|
2344
|
+
### [0.26.2](https://github.com/themesberg/flowbite-svelte/compare/v0.26.1...v0.26.2) (2022-08-30)
|
|
2345
|
+
|
|
2346
|
+
### Bug Fixes
|
|
2347
|
+
|
|
2348
|
+
- add icon page ([0f5c966](https://github.com/themesberg/flowbite-svelte/commit/0f5c96626954d4174d10b99f2934365628f2ec08))
|
|
2349
|
+
- Iconinput click handler example ([2f5afc7](https://github.com/themesberg/flowbite-svelte/commit/2f5afc7554a7bb43d231cc39001ea31b9deafd1c))
|
|
2350
|
+
- remove heros icons from buttons page ([ec81a39](https://github.com/themesberg/flowbite-svelte/commit/ec81a393f438e2285d36ed7fea787af956c6f128))
|
|
2351
|
+
- remove heros icons from checkbox page ([1ed983c](https://github.com/themesberg/flowbite-svelte/commit/1ed983c2b230e6309ae6882972176480f8060487))
|
|
2352
|
+
- remove old tab components ([a61dd72](https://github.com/themesberg/flowbite-svelte/commit/a61dd728d1eb01bdbfeb61ff3adf8f96d7a1fbde))
|
|
2353
|
+
- remove svelte:component from FooterIcon ([0406128](https://github.com/themesberg/flowbite-svelte/commit/04061286046845c7f5c34f56ef89013d4a610aee))
|
|
2354
|
+
|
|
2355
|
+
### [0.26.1](https://github.com/themesberg/flowbite-svelte/compare/v0.26.0...v0.26.1) (2022-08-29)
|
|
2356
|
+
|
|
2357
|
+
### Features
|
|
2358
|
+
|
|
2359
|
+
- new tab components and page ([7c53437](https://github.com/themesberg/flowbite-svelte/commit/7c534377c31384b609774db19b0bace7fee3d5cb))
|
|
2360
|
+
- working on Tabs ([201c124](https://github.com/themesberg/flowbite-svelte/commit/201c124e33bed0d1b13cfe2e3f6ba5ea0bfc6c1c))
|
|
2361
|
+
|
|
2362
|
+
### Bug Fixes
|
|
2363
|
+
|
|
2364
|
+
- fixing the tab page layout problem ([bc3b7bf](https://github.com/themesberg/flowbite-svelte/commit/bc3b7bf32100abbbab3fede7fa6a912ff81d00f6))
|
|
2365
|
+
- remove heros from cards page ([c46f0b3](https://github.com/themesberg/flowbite-svelte/commit/c46f0b3f9a16793f12d68fd3d1b9e973dd1f7b4a))
|
|
2366
|
+
- remove heros from megamenu and list-group page ([9980b7d](https://github.com/themesberg/flowbite-svelte/commit/9980b7d98668c0356217dd3aac810c52cd5e0e51))
|
|
2367
|
+
- remove heros from popover page ([eeff79f](https://github.com/themesberg/flowbite-svelte/commit/eeff79f53733a8f5cbb480eead692f111f96b07c))
|
|
2368
|
+
- remove heros from sidebars page ([a3981a0](https://github.com/themesberg/flowbite-svelte/commit/a3981a09b6b36dcbcb90cfad789bee6a10dae9a1))
|
|
2369
|
+
- remove heros icons from select and toggle pages ([fba7660](https://github.com/themesberg/flowbite-svelte/commit/fba7660c1bf08c47a9d0200db545f0b1fce457a9))
|
|
2370
|
+
- remove unused icon prop ([10e8c81](https://github.com/themesberg/flowbite-svelte/commit/10e8c81dae9e0470ef875fc95dd7d89decdae732))
|
|
2371
|
+
- Review component and review in the ratings page ([afe6972](https://github.com/themesberg/flowbite-svelte/commit/afe69726d08a3cad7de7f29db131909816bc9c3e))
|
|
2372
|
+
|
|
2373
|
+
## [0.26.0](https://github.com/themesberg/flowbite-svelte/compare/v0.25.24...v0.26.0) (2022-08-29)
|
|
2374
|
+
|
|
2375
|
+
### ⚠ BREAKING CHANGES
|
|
2376
|
+
|
|
2377
|
+
- Tooltip changed in accordance to new Popper implementation.
|
|
2378
|
+
|
|
2379
|
+
* Tooltip examples corrected
|
|
2380
|
+
* Avatar example corrected
|
|
2381
|
+
|
|
2382
|
+
### Features
|
|
2383
|
+
|
|
2384
|
+
- tooltips new API ([d9dacf9](https://github.com/themesberg/flowbite-svelte/commit/d9dacf9f65e85be93a3458dd5359d614a0dd12a0))
|
|
2385
|
+
|
|
2386
|
+
### Bug Fixes
|
|
2387
|
+
|
|
2388
|
+
- Avatar tooltip example ([ff7c1af](https://github.com/themesberg/flowbite-svelte/commit/ff7c1af20306609f77831ff1d2632700a9f596da))
|
|
2389
|
+
- docs corrections ([f208323](https://github.com/themesberg/flowbite-svelte/commit/f208323ac1457b88572aaae37531e6b3da1055de))
|
|
2390
|
+
- docs corrections 2 ([5adb4d8](https://github.com/themesberg/flowbite-svelte/commit/5adb4d816591d7bc9aff2e549fc364c80e650b4b))
|
|
2391
|
+
|
|
2392
|
+
- Merge branch 'jjagielka-tooltip' ([1c37601](https://github.com/themesberg/flowbite-svelte/commit/1c3760139e24569287891c1ca3f67f2e0e3b9168))
|
|
2393
|
+
|
|
2394
|
+
### [0.25.24](https://github.com/themesberg/flowbite-svelte/compare/v0.25.23...v0.25.24) (2022-08-28)
|
|
2395
|
+
|
|
2396
|
+
### Features
|
|
2397
|
+
|
|
2398
|
+
- popper reloaded ([a4b851e](https://github.com/themesberg/flowbite-svelte/commit/a4b851e2409356a90fd6aaae62db327b505bdcb2))
|
|
2399
|
+
- popper reloaded part 2 ([2482870](https://github.com/themesberg/flowbite-svelte/commit/2482870842386c8c1e5824869ce7822b8682e8a0))
|
|
2400
|
+
|
|
2401
|
+
### Bug Fixes
|
|
2402
|
+
|
|
2403
|
+
- tab page timeline ([ab598a5](https://github.com/themesberg/flowbite-svelte/commit/ab598a59a3d373f14740a42bbaec3cb276eed34b))
|
|
2404
|
+
|
|
2405
|
+
### [0.25.23](https://github.com/themesberg/flowbite-svelte/compare/v0.25.22...v0.25.23) (2022-08-28)
|
|
2406
|
+
|
|
2407
|
+
### Bug Fixes
|
|
2408
|
+
|
|
2409
|
+
- BREAKING CHANGE for timeline components ([8b30105](https://github.com/themesberg/flowbite-svelte/commit/8b30105060d150d632ea6fbfac8e1f5639f82546))
|
|
2410
|
+
|
|
2411
|
+
### [0.25.22](https://github.com/themesberg/flowbite-svelte/compare/v0.25.21...v0.25.22) (2022-08-28)
|
|
2412
|
+
|
|
2413
|
+
### Bug Fixes
|
|
2414
|
+
|
|
2415
|
+
- create icon slot for Alert so that users can add svg or svelte component ([45244ec](https://github.com/themesberg/flowbite-svelte/commit/45244ec05f99298d150751209980dce519873163))
|
|
2416
|
+
- remove heros from: ([57f6928](https://github.com/themesberg/flowbite-svelte/commit/57f69282190f5d33d7ac17c6adeab36b89184f47))
|
|
2417
|
+
- update Alert color type ([fd819fb](https://github.com/themesberg/flowbite-svelte/commit/fd819fb59d2d01f900ad76449afabfa22de6d5b1))
|
|
2418
|
+
- update Timeline components ([4b47d6b](https://github.com/themesberg/flowbite-svelte/commit/4b47d6b5d09abad3b2d8fc29c2b38287726c44d7))
|
|
2419
|
+
|
|
2420
|
+
### [0.25.21](https://github.com/themesberg/flowbite-svelte/compare/v0.25.20...v0.25.21) (2022-08-27)
|
|
2421
|
+
|
|
2422
|
+
### Bug Fixes
|
|
2423
|
+
|
|
2424
|
+
- add relative class to Hr component ([d8c6fbf](https://github.com/themesberg/flowbite-svelte/commit/d8c6fbf367a43b7c13ea55a56ae9c9f0b94fa96e))
|
|
2425
|
+
|
|
2426
|
+
### [0.25.20](https://github.com/themesberg/flowbite-svelte/compare/v0.25.19...v0.25.20) (2022-08-27)
|
|
2427
|
+
|
|
2428
|
+
### Bug Fixes
|
|
2429
|
+
|
|
2430
|
+
- index page space ([6ab9a19](https://github.com/themesberg/flowbite-svelte/commit/6ab9a19e004fc19ba3bd696acedbc5bbc0ced966))
|
|
2431
|
+
- remove heros from: ([7055f4c](https://github.com/themesberg/flowbite-svelte/commit/7055f4c5ddaa91e15cabaf7d1112a149cf81374d))
|
|
2432
|
+
- remove heros icon from Carousel ([2c7d4c9](https://github.com/themesberg/flowbite-svelte/commit/2c7d4c9a6edc1a4dd4005e5dcf46fec8b5dc0a52))
|
|
2433
|
+
|
|
2434
|
+
### [0.25.19](https://github.com/themesberg/flowbite-svelte/compare/v0.25.18...v0.25.19) (2022-08-27)
|
|
2435
|
+
|
|
2436
|
+
### Bug Fixes
|
|
2437
|
+
|
|
2438
|
+
- remove Home icons from all pages ([7ac0e7a](https://github.com/themesberg/flowbite-svelte/commit/7ac0e7aa3edc5486d597a61775a5694c76b4bb35))
|
|
2439
|
+
- removed Home icon from BreadcrumbItem ([66f00dd](https://github.com/themesberg/flowbite-svelte/commit/66f00dd9e024d97c2b9766e30b03b775f227c672))
|
|
2440
|
+
|
|
2441
|
+
### [0.25.18](https://github.com/themesberg/flowbite-svelte/compare/v0.25.17...v0.25.18) (2022-08-27)
|
|
2442
|
+
|
|
2443
|
+
### Bug Fixes
|
|
2444
|
+
|
|
2445
|
+
- change BreadcrumbItem home for all pages ([f5f895f](https://github.com/themesberg/flowbite-svelte/commit/f5f895f6157b03e435975c5735329f8dfc984485))
|
|
2446
|
+
|
|
2447
|
+
### [0.25.17](https://github.com/themesberg/flowbite-svelte/compare/v0.25.16...v0.25.17) (2022-08-27)
|
|
2448
|
+
|
|
2449
|
+
### Features
|
|
2450
|
+
|
|
2451
|
+
- combine Accordionflush and AccordionItem ([e53fa64](https://github.com/themesberg/flowbite-svelte/commit/e53fa6421ca747ed46d6432b67715b3eedf4cbba))
|
|
2452
|
+
|
|
2453
|
+
### Bug Fixes
|
|
2454
|
+
|
|
2455
|
+
- textarea docs ([133b933](https://github.com/themesberg/flowbite-svelte/commit/133b9334841ac13d82c3a86bc24b3375de0972ff))
|
|
2456
|
+
|
|
2457
|
+
### [0.25.16](https://github.com/themesberg/flowbite-svelte/compare/v0.25.15...v0.25.16) (2022-08-25)
|
|
2458
|
+
|
|
2459
|
+
### Features
|
|
2460
|
+
|
|
2461
|
+
- create utilities/closebutton, label, and toolbar ([3ad9775](https://github.com/themesberg/flowbite-svelte/commit/3ad9775ffbed66908cbaa82845b86151e179d534))
|
|
2462
|
+
- toolbar ([f02ff55](https://github.com/themesberg/flowbite-svelte/commit/f02ff558fa938913c32117ff51b46bdd6088e38a))
|
|
2463
|
+
- toolbar w/html ([93116c3](https://github.com/themesberg/flowbite-svelte/commit/93116c34b4063eb9d166d85ef3dd7e20126fa29e))
|
|
2464
|
+
|
|
2465
|
+
### [0.25.15](https://github.com/themesberg/flowbite-svelte/compare/v0.25.14...v0.25.15) (2022-08-25)
|
|
2466
|
+
|
|
2467
|
+
### Bug Fixes
|
|
2468
|
+
|
|
2469
|
+
- removed drawer component and page from the main ([5cf77f0](https://github.com/themesberg/flowbite-svelte/commit/5cf77f008aff26e64bd210a3bdf60e5f25aebc89))
|
|
2470
|
+
|
|
2471
|
+
### [0.25.14](https://github.com/themesberg/flowbite-svelte/compare/v0.25.13...v0.25.14) (2022-08-25)
|
|
2472
|
+
|
|
2473
|
+
### Features
|
|
2474
|
+
|
|
2475
|
+
- add icon components rather than import a library ([9dffb40](https://github.com/themesberg/flowbite-svelte/commit/9dffb400607d8bb4dd98e877e466956157016ff7))
|
|
2476
|
+
- add Img component, images, and page ([b2aec04](https://github.com/themesberg/flowbite-svelte/commit/b2aec047694aab0bbcbc58d93af8c021e27d4f96))
|
|
2477
|
+
- add Img page and examples ([ed3d83f](https://github.com/themesberg/flowbite-svelte/commit/ed3d83f34e195d67e3c7a334d1226d0876441f47))
|
|
2478
|
+
- add PaperAirplane icon ([90d2543](https://github.com/themesberg/flowbite-svelte/commit/90d25435eb9cc68b38febaba41b5782efb755981))
|
|
2479
|
+
- textarea ([47d51be](https://github.com/themesberg/flowbite-svelte/commit/47d51be427b056793cf64e4089cf4a4a7ba310d7))
|
|
2480
|
+
- textarea / fix ([93cdb01](https://github.com/themesberg/flowbite-svelte/commit/93cdb019326ebcaddd3482c5e41c8a635461ac67))
|
|
2481
|
+
|
|
2482
|
+
### Bug Fixes
|
|
2483
|
+
|
|
2484
|
+
- avatar dot alignment ([2273c0c](https://github.com/themesberg/flowbite-svelte/commit/2273c0ceb82cc634558e7e88aff295c722d73c9f))
|
|
2485
|
+
- buttongroup divider ([f5bedaf](https://github.com/themesberg/flowbite-svelte/commit/f5bedafa9a0b36f4a42a54e8c37593d7ee9d8916))
|
|
2486
|
+
- Htwo for typography pages ([0921539](https://github.com/themesberg/flowbite-svelte/commit/0921539d06e54f89d9e9dd52c70cdbc81b62dd3e))
|
|
2487
|
+
|
|
2488
|
+
### [0.25.13](https://github.com/themesberg/flowbite-svelte/compare/v0.25.12...v0.25.13) (2022-08-23)
|
|
2489
|
+
|
|
2490
|
+
### Features
|
|
2491
|
+
|
|
2492
|
+
- add bind:value to Iconinput ([87616e2](https://github.com/themesberg/flowbite-svelte/commit/87616e2222611bfabd77c3f7699c5f716015e420))
|
|
2493
|
+
- add link examples ([b129251](https://github.com/themesberg/flowbite-svelte/commit/b12925106d6ffe482dfbde5623925f72abe8a577))
|
|
2494
|
+
- add links page ([cdb2566](https://github.com/themesberg/flowbite-svelte/commit/cdb2566640bc5153e4d310dc2306aaafe432f5de))
|
|
2495
|
+
|
|
2496
|
+
### [0.25.12](https://github.com/themesberg/flowbite-svelte/compare/v0.25.11...v0.25.12) (2022-08-22)
|
|
2497
|
+
|
|
2498
|
+
### Features
|
|
2499
|
+
|
|
2500
|
+
- add Hr component and page ([f289c1e](https://github.com/themesberg/flowbite-svelte/commit/f289c1ebd6cfcbcfde87b28ce3108abaf54248ca))
|
|
2501
|
+
|
|
2502
|
+
### [0.25.11](https://github.com/themesberg/flowbite-svelte/compare/v0.25.10...v0.25.11) (2022-08-22)
|
|
2503
|
+
|
|
2504
|
+
### Features
|
|
2505
|
+
|
|
2506
|
+
- add Blockquote ([89cbfbd](https://github.com/themesberg/flowbite-svelte/commit/89cbfbdf56e7beca90b00cf4c9c033789b2a2ba5))
|
|
2507
|
+
- add size to Rating component ([7c2784e](https://github.com/themesberg/flowbite-svelte/commit/7c2784efff60877014c14a8acc7760f845671100))
|
|
2508
|
+
- add User review, User testimonial, Paragraph context, Blockquote icon to typography/blockquote page ([73143ba](https://github.com/themesberg/flowbite-svelte/commit/73143bad816f6b3249fff3486d3b8569f45fde7f))
|
|
2509
|
+
|
|
2510
|
+
### [0.25.10](https://github.com/themesberg/flowbite-svelte/compare/v0.25.9...v0.25.10) (2022-08-22)
|
|
2511
|
+
|
|
2512
|
+
### Bug Fixes
|
|
2513
|
+
|
|
2514
|
+
- buttons fine tuning ([353f631](https://github.com/themesberg/flowbite-svelte/commit/353f6312557fbef802e4e0b61d3638ab4190d2e3))
|
|
2515
|
+
- buttons fine tuning ([9f4c927](https://github.com/themesberg/flowbite-svelte/commit/9f4c927fb8303e7e65163ecd6413cdb834d1a4f3))
|
|
2516
|
+
|
|
2517
|
+
### [0.25.9](https://github.com/themesberg/flowbite-svelte/compare/v0.25.8...v0.25.9) (2022-08-21)
|
|
2518
|
+
|
|
2519
|
+
### Bug Fixes
|
|
2520
|
+
|
|
2521
|
+
- docs for radio ([add38b2](https://github.com/themesberg/flowbite-svelte/commit/add38b26fd4669a591916b7fa42e107868cc90a1))
|
|
2522
|
+
- move @floating-ui/dom, classnames, svelte-heros, @popperjs/core from devDpendencies to dependencies ([ee5d31a](https://github.com/themesberg/flowbite-svelte/commit/ee5d31af1b23e00e565c2a60b354b85f2beb54d1))
|
|
2523
|
+
- popover html ([d49f808](https://github.com/themesberg/flowbite-svelte/commit/d49f808b8a05bd735a9f90c661710dddfd163cad))
|
|
2524
|
+
|
|
2525
|
+
### [0.25.8](https://github.com/themesberg/flowbite-svelte/compare/v0.25.7...v0.25.8) (2022-08-21)
|
|
2526
|
+
|
|
2527
|
+
### Features
|
|
2528
|
+
|
|
2529
|
+
- add H1, H2, A, P, Higlight components ([3f80473](https://github.com/themesberg/flowbite-svelte/commit/3f804731e6a093c1e34f8b3be6289f930c372a96))
|
|
2530
|
+
- add Heading and removed H1 and H2 ([b2be994](https://github.com/themesberg/flowbite-svelte/commit/b2be9945c39bcbfe23a0df53348ce768c5958255))
|
|
2531
|
+
- add Mark and TextGradient ([343e719](https://github.com/themesberg/flowbite-svelte/commit/343e719406bc146639882f97bbeafbc2de9514cb))
|
|
2532
|
+
|
|
2533
|
+
### [0.25.7](https://github.com/themesberg/flowbite-svelte/compare/v0.25.6...v0.25.7) (2022-08-21)
|
|
2534
|
+
|
|
2535
|
+
### Features
|
|
2536
|
+
|
|
2537
|
+
- dropdown as Popper + fixes ([67fdf78](https://github.com/themesberg/flowbite-svelte/commit/67fdf7837f36d63b3683e0b6f6e78fbf91f6bf23))
|
|
2538
|
+
|
|
2539
|
+
### [0.25.6](https://github.com/themesberg/flowbite-svelte/compare/v0.25.5...v0.25.6) (2022-08-20)
|
|
2540
|
+
|
|
2541
|
+
### Features
|
|
2542
|
+
|
|
2543
|
+
- fixing standard-version ([cd316e4](https://github.com/themesberg/flowbite-svelte/commit/cd316e412171689e04ec435dfc31abd89b7cbe1d))
|
|
2544
|
+
|
|
2545
|
+
### [0.25.5](https://github.com/themesberg/flowbite-svelte/compare/v0.25.4...v0.25.5) (2022-08-20)
|
|
2546
|
+
|
|
2547
|
+
### Bug Fixes
|
|
2548
|
+
|
|
2549
|
+
- Iconinput has unused export property value when I install it ([b19afc9](https://github.com/themesberg/flowbite-svelte/commit/b19afc9284aa2c92c5a15b89de9dc9111652f0f7))
|
|
2550
|
+
|
|
2551
|
+
### [0.25.4](https://github.com/themesberg/flowbite-svelte/compare/v0.25.2...v0.25.4) (2022-08-20)
|
|
2552
|
+
|
|
2553
|
+
### Bug Fixes
|
|
2554
|
+
|
|
2555
|
+
- add Table color hover and example ([b49c139](https://github.com/themesberg/flowbite-svelte/commit/b49c139c6d09a4563d462b35a5c49da605006d79))
|
|
2556
|
+
|
|
2557
|
+
### [0.25.2](https://github.com/themesberg/flowbite-svelte/compare/v0.25.1...v0.25.2) (2022-08-19)
|
|
2558
|
+
|
|
2559
|
+
### Features
|
|
2560
|
+
|
|
2561
|
+
- add popover related files ([8b5050b](https://github.com/themesberg/flowbite-svelte/commit/8b5050b0e9f6e45533b858c7aa392463cfb6cc91))
|
|
2562
|
+
- popover ([c41ddc4](https://github.com/themesberg/flowbite-svelte/commit/c41ddc408f3696e05ee66de4922b95ee5cee1a08))
|
|
2563
|
+
|
|
2564
|
+
### Bug Fixes
|
|
2565
|
+
|
|
2566
|
+
- change href=# to href=/ in popover page ([f885a92](https://github.com/themesberg/flowbite-svelte/commit/f885a924706e477349c975641fc6fba0b4df45e5))
|
|
2567
|
+
- missing Popper ([ff4b0e7](https://github.com/themesberg/flowbite-svelte/commit/ff4b0e772e228f03c1024e222fcc91e63adc23ba))
|
|
2568
|
+
|
|
2569
|
+
### [0.25.1](https://github.com/themesberg/flowbite-svelte/compare/v0.25.0...v0.25.1) (2022-08-18)
|
|
2570
|
+
|
|
2571
|
+
### Bug Fixes
|
|
2572
|
+
|
|
2573
|
+
- move @floating-ui/dom from dependencies to devDependencies ([6668ec8](https://github.com/themesberg/flowbite-svelte/commit/6668ec8ca1559366ad0cbc223c9c91e3337ceb22))
|
|
2574
|
+
|
|
2575
|
+
## [0.25.0](https://github.com/themesberg/flowbite-svelte/compare/v0.24.19...v0.25.0) (2022-08-18)
|
|
2576
|
+
|
|
2577
|
+
### Bug Fixes
|
|
2578
|
+
|
|
2579
|
+
- [#226](https://github.com/themesberg/flowbite-svelte/issues/226) for double on:click in DropdownItem ([c125d2d](https://github.com/themesberg/flowbite-svelte/commit/c125d2d02e3818cedb83994e930ca5cc7075571c))
|
|
2580
|
+
- migrate to sveltekit 1.0.0 ([434ec99](https://github.com/themesberg/flowbite-svelte/commit/434ec998e1f96ab5e35eda6c6c78f6db2279aa4e))
|
|
2581
|
+
- update pnpm-lock ([4926a47](https://github.com/themesberg/flowbite-svelte/commit/4926a47bd529601b1a0709533fee2b5291e59eb8))
|
|
2582
|
+
|
|
2583
|
+
### [0.24.19](https://github.com/themesberg/flowbite-svelte/compare/v0.24.18...v0.24.19) (2022-08-17)
|
|
2584
|
+
|
|
2585
|
+
### Features
|
|
2586
|
+
|
|
2587
|
+
- add pointerEvent prop to Iconinput to show/hide cursor ([dffa324](https://github.com/themesberg/flowbite-svelte/commit/dffa3247856c7245ecb8a67554ce77b797fe8627))
|
|
2588
|
+
|
|
2589
|
+
### [0.24.18](https://github.com/themesberg/flowbite-svelte/compare/v0.24.17...v0.24.18) (2022-08-16)
|
|
2590
|
+
|
|
2591
|
+
### Features
|
|
2592
|
+
|
|
2593
|
+
- add Iconinput click handler example ([d815212](https://github.com/themesberg/flowbite-svelte/commit/d8152126236e839d3d7bc6e035d0afa432d96856))
|
|
2594
|
+
|
|
2595
|
+
### [0.24.17](https://github.com/themesberg/flowbite-svelte/compare/v0.24.16...v0.24.17) (2022-08-16)
|
|
2596
|
+
|
|
2597
|
+
### Features
|
|
2598
|
+
|
|
2599
|
+
- add sticky navbar ([4010ea8](https://github.com/themesberg/flowbite-svelte/commit/4010ea85483cf0c5a26275fe710ed34e4142846e))
|
|
2600
|
+
|
|
2601
|
+
### [0.24.16](https://github.com/themesberg/flowbite-svelte/compare/v0.24.15...v0.24.16) (2022-08-16)
|
|
2602
|
+
|
|
2603
|
+
### Features
|
|
2604
|
+
|
|
2605
|
+
- add disabled and classes to InteractiveTabHead component ([869fb1b](https://github.com/themesberg/flowbite-svelte/commit/869fb1b34f5a0e5a254cdc09b25195bf621a25d6))
|
|
2606
|
+
|
|
2607
|
+
### [0.24.15](https://github.com/themesberg/flowbite-svelte/compare/v0.24.14...v0.24.15) (2022-08-16)
|
|
2608
|
+
|
|
2609
|
+
### Bug Fixes
|
|
2610
|
+
|
|
2611
|
+
- update prop names for Alert ([3775700](https://github.com/themesberg/flowbite-svelte/commit/377570061f48de43af44c5f87f46b049f4d87341))
|
|
2612
|
+
|
|
2613
|
+
### [0.24.14](https://github.com/themesberg/flowbite-svelte/compare/v0.24.13...v0.24.14) (2022-08-16)
|
|
2614
|
+
|
|
2615
|
+
### Features
|
|
2616
|
+
|
|
2617
|
+
- add custom color to Alert component and update props ([2e2a71b](https://github.com/themesberg/flowbite-svelte/commit/2e2a71b4fb83bca28a1bf6b107f4163acbb6b011))
|
|
2618
|
+
|
|
2619
|
+
### [0.24.13](https://github.com/themesberg/flowbite-svelte/compare/v0.24.12...v0.24.13) (2022-08-16)
|
|
2620
|
+
|
|
2621
|
+
### Features
|
|
2622
|
+
|
|
2623
|
+
- add disabled to InteractiveTabs ([f5ca0fe](https://github.com/themesberg/flowbite-svelte/commit/f5ca0fe858a50ef2c017ed6ec266c0012166b5f9))
|
|
2624
|
+
- add Tabs component for all tab ([758e2e7](https://github.com/themesberg/flowbite-svelte/commit/758e2e743eb845c7190a7c6c2a9888c67c46db73))
|
|
2625
|
+
|
|
2626
|
+
### [0.24.12](https://github.com/themesberg/flowbite-svelte/compare/v0.24.11...v0.24.12) (2022-08-16)
|
|
2627
|
+
|
|
2628
|
+
### Features
|
|
2629
|
+
|
|
2630
|
+
- add active color to InteractiveTabs and InteractiveTabHead component ([7995e21](https://github.com/themesberg/flowbite-svelte/commit/7995e210f98325350b055a43199fa4d7750ea225))
|
|
2631
|
+
|
|
2632
|
+
### [0.24.11](https://github.com/themesberg/flowbite-svelte/compare/v0.24.10...v0.24.11) (2022-08-15)
|
|
2633
|
+
|
|
2634
|
+
### Features
|
|
2635
|
+
|
|
2636
|
+
- add sticky footer, add $$props.class to all skeleton components ([1fad8dc](https://github.com/themesberg/flowbite-svelte/commit/1fad8dc9d8c0bc1428daeada82f44accc5f7e9a0))
|
|
2637
|
+
|
|
2638
|
+
### [0.24.10](https://github.com/themesberg/flowbite-svelte/compare/v0.24.9...v0.24.10) (2022-08-15)
|
|
2639
|
+
|
|
2640
|
+
### Features
|
|
2641
|
+
|
|
2642
|
+
- modal - crypto ([47cf678](https://github.com/themesberg/flowbite-svelte/commit/47cf678ef2a7bf10c842e367a37e2aedebe7a8fc))
|
|
2643
|
+
- modal - crypto + html ([26475ed](https://github.com/themesberg/flowbite-svelte/commit/26475edd98a2c73fbe02580fefb4c8455e25f1bb))
|
|
2644
|
+
|
|
2645
|
+
### Bug Fixes
|
|
2646
|
+
|
|
2647
|
+
- create Coinbase, Fortmatic, Metamask, OperaWallet, and WalletConnect component ([f8eabc5](https://github.com/themesberg/flowbite-svelte/commit/f8eabc5b23b8c0d9fab75deca393858952406660))
|
|
2648
|
+
|
|
2649
|
+
### [0.24.9](https://github.com/themesberg/flowbite-svelte/compare/v0.24.8...v0.24.9) (2022-08-15)
|
|
2650
|
+
|
|
2651
|
+
### Features
|
|
2652
|
+
|
|
2653
|
+
- button group ([bb95b98](https://github.com/themesberg/flowbite-svelte/commit/bb95b98c0e4b70f3958c778ac2dc8367c67df8d7))
|
|
2654
|
+
|
|
2655
|
+
### Bug Fixes
|
|
2656
|
+
|
|
2657
|
+
- dropdown open/close api ([d2aa6f7](https://github.com/themesberg/flowbite-svelte/commit/d2aa6f71e7e804d474eb46e58030097d9bd9962f))
|
|
2658
|
+
- dropdown open/close api - docs ([f299c28](https://github.com/themesberg/flowbite-svelte/commit/f299c284a4ef3c9539e17677b815f60dd8d1e6f2))
|
|
2659
|
+
- no href on <a> buttons ([ab13df8](https://github.com/themesberg/flowbite-svelte/commit/ab13df85aeac5368383bb708c9cb3146e418066f))
|
|
2660
|
+
- window is undefined ([b752882](https://github.com/themesberg/flowbite-svelte/commit/b752882ad0f0f6a7c196223649463903453f48d6))
|
|
2661
|
+
- window is undefined/2 ([4c0ca77](https://github.com/themesberg/flowbite-svelte/commit/4c0ca77eddfae2a04d10bc1ea3dc53671864b181))
|
|
2662
|
+
|
|
2663
|
+
### [0.24.8](https://github.com/themesberg/flowbite-svelte/compare/v0.24.7...v0.24.8) (2022-08-12)
|
|
2664
|
+
|
|
2665
|
+
### Bug Fixes
|
|
2666
|
+
|
|
2667
|
+
- change function clickOutside to arrow function ([71e71e0](https://github.com/themesberg/flowbite-svelte/commit/71e71e0e482ad9939f9d135b1608b5cc8d31d899))
|
|
2668
|
+
- update createprops and update props ([0739b92](https://github.com/themesberg/flowbite-svelte/commit/0739b9296caddcba85f849b222e6548a961dbd34))
|
|
2669
|
+
|
|
2670
|
+
### [0.24.7](https://github.com/themesberg/flowbite-svelte/compare/v0.24.5...v0.24.7) (2022-08-11)
|
|
2671
|
+
|
|
2672
|
+
### Features
|
|
2673
|
+
|
|
2674
|
+
- add Review component ([67af517](https://github.com/themesberg/flowbite-svelte/commit/67af517e32dfc19c6079e5d1925a234f0162cc34))
|
|
2675
|
+
- add Review component ([d41b11d](https://github.com/themesberg/flowbite-svelte/commit/d41b11d4ef00d1d6d0d824d4fcdc9c964a78a7d2))
|
|
2676
|
+
- add Review component, page, and prop ([4446e1e](https://github.com/themesberg/flowbite-svelte/commit/4446e1eba3706e291f0cb3812b4ffb61df48eb46))
|
|
2677
|
+
|
|
2678
|
+
### [0.24.6](https://github.com/themesberg/flowbite-svelte/compare/v0.24.5...v0.24.6) (2022-08-11)
|
|
2679
|
+
|
|
2680
|
+
### Features
|
|
2681
|
+
|
|
2682
|
+
- add Review component ([d41b11d](https://github.com/themesberg/flowbite-svelte/commit/d41b11d4ef00d1d6d0d824d4fcdc9c964a78a7d2))
|
|
2683
|
+
|
|
2684
|
+
### [0.24.5](https://github.com/themesberg/flowbite-svelte/compare/v0.24.4...v0.24.5) (2022-08-11)
|
|
2685
|
+
|
|
2686
|
+
### Features
|
|
2687
|
+
|
|
2688
|
+
- add rating count and update app.css ([e5d642b](https://github.com/themesberg/flowbite-svelte/commit/e5d642b4a246c1716db8461e6ecbc26a7abad9d0))
|
|
2689
|
+
|
|
2690
|
+
### Bug Fixes
|
|
2691
|
+
|
|
2692
|
+
- h3 change, modal page update ([945762f](https://github.com/themesberg/flowbite-svelte/commit/945762f325736ac316a7d1cb68d546f0c8acd982))
|
|
2693
|
+
- RatingComment component ([032aa24](https://github.com/themesberg/flowbite-svelte/commit/032aa24925f082459992104d5040804e0d532153))
|
|
2694
|
+
- update rating page for AdvancedRating ([f1dc978](https://github.com/themesberg/flowbite-svelte/commit/f1dc978b5775e0089cc6c8aa1fac1c5ed8b97dca))
|
|
2695
|
+
|
|
2696
|
+
### [0.24.4](https://github.com/themesberg/flowbite-svelte/compare/v0.24.3...v0.24.4) (2022-08-09)
|
|
2697
|
+
|
|
2698
|
+
### Bug Fixes
|
|
2699
|
+
|
|
2700
|
+
- remove custom from Button component ([6114f4c](https://github.com/themesberg/flowbite-svelte/commit/6114f4c9f5d9ad0848d5e7c000db6c4c9661ad39))
|
|
2701
|
+
- remove h-4 w-4 from Iconinput example in the input-field page ([4d5f396](https://github.com/themesberg/flowbite-svelte/commit/4d5f396ea80389b88ec6a8437228d5dbadd46877))
|
|
2702
|
+
- update Button component ([330aae9](https://github.com/themesberg/flowbite-svelte/commit/330aae91c6c1b19cbbd1f35177f5e4bac9de3904))
|
|
2703
|
+
- update Iconinput ([2b4a7b5](https://github.com/themesberg/flowbite-svelte/commit/2b4a7b55f7db35f3e5b0cc042aa27a84ff741194))
|
|
2704
|
+
|
|
2705
|
+
### [0.24.3](https://github.com/themesberg/flowbite-svelte/compare/v0.24.2...v0.24.3) (2022-08-09)
|
|
2706
|
+
|
|
2707
|
+
### Features
|
|
2708
|
+
|
|
2709
|
+
- add size to Iconinput component ([f041953](https://github.com/themesberg/flowbite-svelte/commit/f04195350a179d55a7315a127d5b116deaac1f41))
|
|
2710
|
+
|
|
2711
|
+
### Bug Fixes
|
|
2712
|
+
|
|
2713
|
+
- add rel=external and / to links to form page ([a237d18](https://github.com/themesberg/flowbite-svelte/commit/a237d1811eb1d6d6f3af545f109c71b8cadbd014))
|
|
2714
|
+
- breadcrumb and add rel=external to pages in the forms dir. ([509d72a](https://github.com/themesberg/flowbite-svelte/commit/509d72ae703a0d844653da87aea9119a90cc1018))
|
|
2715
|
+
- change package.json>engines>node to 16.0.0 since Verce does not accept. But use local node v16.16.0 for playwright test ([08130e9](https://github.com/themesberg/flowbite-svelte/commit/08130e988c1243b6a248737ed604223c694d5981))
|
|
2716
|
+
- clean up ref ([9e8427b](https://github.com/themesberg/flowbite-svelte/commit/9e8427bdbe7ee397a8c5c123a75e48abca298781))
|
|
2717
|
+
- done type check for all pages ([d91b018](https://github.com/themesberg/flowbite-svelte/commit/d91b018c3a66a6ac4cef2317651e1821083ab033))
|
|
2718
|
+
- remove utils/OptsButton ([04ebd83](https://github.com/themesberg/flowbite-svelte/commit/04ebd83aae8a3f3efabac8f3f144b65fabb04da1))
|
|
2719
|
+
- Toggle props and typo update ([9a40224](https://github.com/themesberg/flowbite-svelte/commit/9a40224fc26bfefd9d28ec5d364bf4d7430da6f0))
|
|
2720
|
+
- type and layout footer padding fix ([999d291](https://github.com/themesberg/flowbite-svelte/commit/999d29158fde736dbf4e19c9545fff6ba41dc7e7))
|
|
2721
|
+
- typo ([ec6f019](https://github.com/themesberg/flowbite-svelte/commit/ec6f019501acf4ba2fb105b8cc04a6d347d0dcf1))
|
|
2722
|
+
|
|
2723
|
+
### [0.24.2](https://github.com/themesberg/flowbite-svelte/compare/v0.24.1...v0.24.2) (2022-08-07)
|
|
2724
|
+
|
|
2725
|
+
### Features
|
|
2726
|
+
|
|
2727
|
+
- add export divClass to Toast for user custom CSS ([7625c01](https://github.com/themesberg/flowbite-svelte/commit/7625c017af9a91920880b3d9c09d8f02924178e5))
|
|
2728
|
+
|
|
2729
|
+
### [0.24.1](https://github.com/themesberg/flowbite-svelte/compare/v0.24.0...v0.24.1) (2022-08-07)
|
|
2730
|
+
|
|
2731
|
+
### Bug Fixes
|
|
2732
|
+
|
|
2733
|
+
- change from import { CloseButton } from $lib to import CloseButton from "../utils/CloseButton.svelte" in lib dir ([4eb4346](https://github.com/themesberg/flowbite-svelte/commit/4eb4346a2c4679d58c00309e0cb1a28304888a72))
|
|
2734
|
+
- update Button color types ([974df12](https://github.com/themesberg/flowbite-svelte/commit/974df12eaf2d796676700df09f2ee83d24ffc328))
|
|
2735
|
+
|
|
2736
|
+
## [0.24.0](https://github.com/themesberg/flowbite-svelte/compare/v0.23.3...v0.24.0) (2022-08-07)
|
|
2737
|
+
|
|
2738
|
+
### ⚠ BREAKING CHANGES
|
|
2739
|
+
|
|
2740
|
+
- change node version to 0.16.16 since new playwright and sveltekit require it, https://github.com/sveltejs/kit/issues/5842
|
|
2741
|
+
|
|
2742
|
+
### Features
|
|
2743
|
+
|
|
2744
|
+
- change node version to 0.16.16 since new playwright and sveltekit require it, https://github.com/sveltejs/kit/issues/5842 ([6175c2c](https://github.com/themesberg/flowbite-svelte/commit/6175c2cb54c60829eb329bce90772e59b888063f))
|
|
2745
|
+
|
|
2746
|
+
### Bug Fixes
|
|
2747
|
+
|
|
2748
|
+
- [#200](https://github.com/themesberg/flowbite-svelte/issues/200) undefined in tooltips ([4ed2ec0](https://github.com/themesberg/flowbite-svelte/commit/4ed2ec04945676cbc3e40011fb7790d1de18d8db))
|
|
2749
|
+
- A11y fix for all alt taking out picture for img tag ([a247c32](https://github.com/themesberg/flowbite-svelte/commit/a247c32171543450647877a0f7192e63ee64fbb5))
|
|
2750
|
+
- add CloseButton to index and change import from $lib ([cc8fe25](https://github.com/themesberg/flowbite-svelte/commit/cc8fe2504474f6a0fbefb5474ef5cf798f6a28a8))
|
|
2751
|
+
- alerts with list color removal ([f940441](https://github.com/themesberg/flowbite-svelte/commit/f940441098e4f033b6dd405d0cb774e6d8b5030e))
|
|
2752
|
+
- clean up import from utils for docs ([b50126d](https://github.com/themesberg/flowbite-svelte/commit/b50126d2f78e7613e48008b46c0bd77cdc7471fa))
|
|
2753
|
+
|
|
2754
|
+
### [0.23.3](https://github.com/themesberg/flowbite-svelte/compare/v0.23.2...v0.23.3) (2022-08-05)
|
|
2755
|
+
|
|
2756
|
+
### Bug Fixes
|
|
2757
|
+
|
|
2758
|
+
- remove EcommerceCard and SignInCard ([7e6b2b6](https://github.com/themesberg/flowbite-svelte/commit/7e6b2b689a86cb47df080908ef3217345361667a))
|
|
2759
|
+
- SignInCard type update ([55c824a](https://github.com/themesberg/flowbite-svelte/commit/55c824aa08727eb3f07c12fc589158e7cc94fd5f))
|
|
2760
|
+
|
|
2761
|
+
### [0.23.2](https://github.com/themesberg/flowbite-svelte/compare/v0.23.1...v0.23.2) (2022-08-04)
|
|
2762
|
+
|
|
2763
|
+
### Features
|
|
2764
|
+
|
|
2765
|
+
- add events to NavLi and NavDropdown ([02e4032](https://github.com/themesberg/flowbite-svelte/commit/02e403211c93d8e81457e1006e21341f4deed352))
|
|
2766
|
+
|
|
2767
|
+
### [0.23.1](https://github.com/themesberg/flowbite-svelte/compare/v0.23.0...v0.23.1) (2022-08-04)
|
|
2768
|
+
|
|
2769
|
+
### Features
|
|
2770
|
+
|
|
2771
|
+
- add events to components ([d24e023](https://github.com/themesberg/flowbite-svelte/commit/d24e023ba671b9976e2c0df3529a66b15e251cea))
|
|
2772
|
+
- add typography page ([52923fb](https://github.com/themesberg/flowbite-svelte/commit/52923fb66b55fed20c876ef7b9348fccadde04a3))
|
|
2773
|
+
|
|
2774
|
+
## [0.23.0](https://github.com/themesberg/flowbite-svelte/compare/v0.22.30...v0.23.0) (2022-08-04)
|
|
2775
|
+
|
|
2776
|
+
### ⚠ BREAKING CHANGES
|
|
2777
|
+
|
|
2778
|
+
- add datepicker
|
|
2779
|
+
|
|
2780
|
+
### Features
|
|
2781
|
+
|
|
2782
|
+
- add datepicker ([a8b70e6](https://github.com/themesberg/flowbite-svelte/commit/a8b70e67b61e4e038520cc66238861e368716e60))
|
|
2783
|
+
- add datepicker ([32f8889](https://github.com/themesberg/flowbite-svelte/commit/32f88899256bed9effe6b23b4d24cd8380ce2aff))
|
|
2784
|
+
- add datepicker examples ([590ec66](https://github.com/themesberg/flowbite-svelte/commit/590ec660f27e43b18c588d44c0899aa16a3fc870))
|
|
2785
|
+
- add datepicker examples ([68e2462](https://github.com/themesberg/flowbite-svelte/commit/68e2462567838816ef116c3ed5b389e8de52f643))
|
|
2786
|
+
- working on datepicker ([4fedccf](https://github.com/themesberg/flowbite-svelte/commit/4fedccfc3f04308b53712cc87849098a7e502d2a))
|
|
2787
|
+
|
|
2788
|
+
### [0.22.30](https://github.com/themesberg/flowbite-svelte/compare/v0.22.29...v0.22.30) (2022-08-03)
|
|
2789
|
+
|
|
2790
|
+
### Features
|
|
2791
|
+
|
|
2792
|
+
- add Tooltip custom CSS ([1466d16](https://github.com/themesberg/flowbite-svelte/commit/1466d16fff312ccdb22e1c282f49b7b156121d57))
|
|
2793
|
+
|
|
2794
|
+
### Bug Fixes
|
|
2795
|
+
|
|
2796
|
+
- revert Tooltip component ([9cedc68](https://github.com/themesberg/flowbite-svelte/commit/9cedc68014a7114c0e15691c26081bb9f5af88af))
|
|
2797
|
+
|
|
2798
|
+
### [0.22.29](https://github.com/themesberg/flowbite-svelte/compare/v0.22.28...v0.22.29) (2022-08-02)
|
|
2799
|
+
|
|
2800
|
+
### Bug Fixes
|
|
2801
|
+
|
|
2802
|
+
- call updatePosition and floatingMiddleware functions in onMount ([b905101](https://github.com/themesberg/flowbite-svelte/commit/b905101f9cdfc9573e455200a2e28ad5766705e1))
|
|
2803
|
+
|
|
2804
|
+
### [0.22.28](https://github.com/themesberg/flowbite-svelte/compare/v0.22.27...v0.22.28) (2022-08-02)
|
|
2805
|
+
|
|
2806
|
+
### Features
|
|
2807
|
+
|
|
2808
|
+
- drawer on progress ([027c6de](https://github.com/themesberg/flowbite-svelte/commit/027c6de72ff563df34a5d56fbe9d8ea571440ff8))
|
|
2809
|
+
- start working drawer ([55a0ebf](https://github.com/themesberg/flowbite-svelte/commit/55a0ebfcb29743ad1b5222cad41b6ccf8610582b))
|
|
2810
|
+
|
|
2811
|
+
### Bug Fixes
|
|
2812
|
+
|
|
2813
|
+
- update Tooltip component ([df80539](https://github.com/themesberg/flowbite-svelte/commit/df8053996f8ea67d96ee5e70976a61f13e7df2ec))
|
|
2814
|
+
|
|
2815
|
+
### [0.22.27](https://github.com/themesberg/flowbite-svelte/compare/v0.22.26...v0.22.27) (2022-08-01)
|
|
2816
|
+
|
|
2817
|
+
### Bug Fixes
|
|
2818
|
+
|
|
2819
|
+
- update skeleton components ([6c49370](https://github.com/themesberg/flowbite-svelte/commit/6c49370ef244234373d4b87cb1a60e4aebdbf86f))
|
|
2820
|
+
- update Svelte-Heros icon for Rating component ([d1c03fa](https://github.com/themesberg/flowbite-svelte/commit/d1c03fa4a0cb4b2cd4ccfe956d7d36ebd4161ed4))
|
|
2821
|
+
|
|
2822
|
+
### [0.22.26](https://github.com/themesberg/flowbite-svelte/compare/v0.22.25...v0.22.26) (2022-07-30)
|
|
2823
|
+
|
|
2824
|
+
### Features
|
|
2825
|
+
|
|
2826
|
+
- avatar w/tooltip / initials ([6b9a333](https://github.com/themesberg/flowbite-svelte/commit/6b9a333c96f3485b33a2fdeecc113138452acca0))
|
|
2827
|
+
|
|
2828
|
+
### [0.22.25](https://github.com/themesberg/flowbite-svelte/compare/v0.22.24...v0.22.25) (2022-07-29)
|
|
2829
|
+
|
|
2830
|
+
### Features
|
|
2831
|
+
|
|
2832
|
+
- alerts with lists ([5ad5f3c](https://github.com/themesberg/flowbite-svelte/commit/5ad5f3cfb6b8f68464475b11086f85b0d60cc068))
|
|
2833
|
+
|
|
2834
|
+
### [0.22.24](https://github.com/themesberg/flowbite-svelte/compare/v0.22.23...v0.22.24) (2022-07-29)
|
|
2835
|
+
|
|
2836
|
+
### Features
|
|
2837
|
+
|
|
2838
|
+
- badges new features ([775ecbc](https://github.com/themesberg/flowbite-svelte/commit/775ecbc04df58cd7c2517d103c963e7add92b5f6))
|
|
2839
|
+
|
|
2840
|
+
### Bug Fixes
|
|
2841
|
+
|
|
2842
|
+
- pink color ([e4551b5](https://github.com/themesberg/flowbite-svelte/commit/e4551b54e0b56c07bae45d2bddb1b2930a20fe72))
|
|
2843
|
+
|
|
2844
|
+
### [0.22.23](https://github.com/themesberg/flowbite-svelte/compare/v0.22.22...v0.22.23) (2022-07-29)
|
|
2845
|
+
|
|
2846
|
+
### Bug Fixes
|
|
2847
|
+
|
|
2848
|
+
- minor fixes / fine tuning ([57c1cf7](https://github.com/themesberg/flowbite-svelte/commit/57c1cf7f1bd461c417be1fd925766c045d72c015))
|
|
2849
|
+
|
|
2850
|
+
### [0.22.22](https://github.com/themesberg/flowbite-svelte/compare/v0.22.21...v0.22.22) (2022-07-28)
|
|
2851
|
+
|
|
2852
|
+
### Features
|
|
2853
|
+
|
|
2854
|
+
- focus trap for modals ([08604ac](https://github.com/themesberg/flowbite-svelte/commit/08604ac3475f28a5a35c037e47ecfc13ee13b877))
|
|
2855
|
+
|
|
2856
|
+
### [0.22.21](https://github.com/themesberg/flowbite-svelte/compare/v0.22.20...v0.22.21) (2022-07-28)
|
|
2857
|
+
|
|
2858
|
+
### Bug Fixes
|
|
2859
|
+
|
|
2860
|
+
- megamenu centered in small screen ([713aa9a](https://github.com/themesberg/flowbite-svelte/commit/713aa9ab5d1c390291bb61910f9eae4b68d5981e))
|
|
2861
|
+
|
|
2862
|
+
### [0.22.20](https://github.com/themesberg/flowbite-svelte/compare/v0.22.19...v0.22.20) (2022-07-28)
|
|
2863
|
+
|
|
2864
|
+
### [0.22.19](https://github.com/themesberg/flowbite-svelte/compare/v0.22.17...v0.22.19) (2022-07-27)
|
|
2865
|
+
|
|
2866
|
+
### Features
|
|
2867
|
+
|
|
2868
|
+
- modal - re-written ([4dd27af](https://github.com/themesberg/flowbite-svelte/commit/4dd27afd996328fcdc6c19895e1a6a6beef2c772))
|
|
2869
|
+
- modal - re-written ([1c6a93d](https://github.com/themesberg/flowbite-svelte/commit/1c6a93dfe332a7f65058d25a4a68e542d15e9a21))
|
|
2870
|
+
|
|
2871
|
+
### [0.22.18](https://github.com/themesberg/flowbite-svelte/compare/v0.22.17...v0.22.18) (2022-07-27)
|
|
2872
|
+
|
|
2873
|
+
### [0.22.17](https://github.com/themesberg/flowbite-svelte/compare/v0.22.16...v0.22.17) (2022-07-26)
|
|
2874
|
+
|
|
2875
|
+
### [0.22.16](https://github.com/themesberg/flowbite-svelte/compare/v0.22.15...v0.22.16) (2022-07-26)
|
|
2876
|
+
|
|
2877
|
+
### Bug Fixes
|
|
2878
|
+
|
|
2879
|
+
- cards/index.md, buttons ([9b2ca39](https://github.com/themesberg/flowbite-svelte/commit/9b2ca3914681439e667b5b6026f6c6e22b56b6fd))
|
|
2880
|
+
|
|
2881
|
+
### [0.22.15](https://github.com/themesberg/flowbite-svelte/compare/v0.22.14...v0.22.15) (2022-07-26)
|
|
2882
|
+
|
|
2883
|
+
### Features
|
|
2884
|
+
|
|
2885
|
+
- cards - re-written ([1084f38](https://github.com/themesberg/flowbite-svelte/commit/1084f38514e4cac5662ae6b969dde27e829ea24e))
|
|
2886
|
+
- cards - re-written ([52716e0](https://github.com/themesberg/flowbite-svelte/commit/52716e08ac0f4446e3c7160fc3dc83e515201d7d))
|
|
2887
|
+
- cards - wip ([0948c89](https://github.com/themesberg/flowbite-svelte/commit/0948c89a124662b7c5c238350df341e0956dac8a))
|
|
2888
|
+
|
|
2889
|
+
### Bug Fixes
|
|
2890
|
+
|
|
2891
|
+
- cards layout on index.md pages ([2080f8e](https://github.com/themesberg/flowbite-svelte/commit/2080f8ee29163a8ad5208f37c95ebf498be92c39))
|
|
2892
|
+
|
|
2893
|
+
### [0.22.14](https://github.com/themesberg/flowbite-svelte/compare/v0.22.13...v0.22.14) (2022-07-25)
|
|
2894
|
+
|
|
2895
|
+
### Bug Fixes
|
|
2896
|
+
|
|
2897
|
+
- $$restProps before $$props.class ([9378cf5](https://github.com/themesberg/flowbite-svelte/commit/9378cf5349446ec8355317e98e462e379350a697))
|
|
2898
|
+
- add padding to w-full ([e1008c9](https://github.com/themesberg/flowbite-svelte/commit/e1008c9620f18b42664059595ae3fe1e421e097b))
|
|
2899
|
+
- layout and Toc padding ([6a67345](https://github.com/themesberg/flowbite-svelte/commit/6a6734545429c7228a1bf3cbc58f7e4739dbfe65))
|
|
2900
|
+
- various minor fixes ([9ac3296](https://github.com/themesberg/flowbite-svelte/commit/9ac3296635db9e7af2a45cc928477ac15e831dc4))
|
|
2901
|
+
|
|
2902
|
+
### [0.22.13](https://github.com/themesberg/flowbite-svelte/compare/v0.22.12...v0.22.13) (2022-07-24)
|
|
2903
|
+
|
|
2904
|
+
### [0.22.12](https://github.com/themesberg/flowbite-svelte/compare/v0.22.11...v0.22.12) (2022-07-24)
|
|
2905
|
+
|
|
2906
|
+
### Features
|
|
2907
|
+
|
|
2908
|
+
- megamenu - code skel ([d02c5c7](https://github.com/themesberg/flowbite-svelte/commit/d02c5c78a5360f623ffe3fb3659265d679e43426))
|
|
2909
|
+
- megamenu - wip ([02bbabc](https://github.com/themesberg/flowbite-svelte/commit/02bbabcdda0f924aefa2829a94e3b822bdb0bbf6))
|
|
2910
|
+
- megamenu + examples ([2f24a26](https://github.com/themesberg/flowbite-svelte/commit/2f24a268dfe474da45a654d6a4bd128f4175ae44))
|
|
2911
|
+
|
|
2912
|
+
### Bug Fixes
|
|
2913
|
+
|
|
2914
|
+
- layout and index page ([7db0e00](https://github.com/themesberg/flowbite-svelte/commit/7db0e00d1094d4d03a7386fd96c13c5b2ee09f6f))
|
|
2915
|
+
- layout logo ([1a78683](https://github.com/themesberg/flowbite-svelte/commit/1a78683e734bf0dae58fe704bd652fcef196dae9))
|
|
2916
|
+
- layout width ([e17969e](https://github.com/themesberg/flowbite-svelte/commit/e17969ec2c6f2938ed1a7c7b8f083bd3da6801e8))
|
|
2917
|
+
- position and classes ([caa1f13](https://github.com/themesberg/flowbite-svelte/commit/caa1f136e964503ff1976c7de7c006615038489b))
|
|
2918
|
+
- removed console.log ([f0f7ee9](https://github.com/themesberg/flowbite-svelte/commit/f0f7ee96bc48310ed245c00678960ac9d2eaa05b))
|
|
2919
|
+
|
|
2920
|
+
### [0.22.11](https://github.com/themesberg/flowbite-svelte/compare/v0.22.10...v0.22.11) (2022-07-23)
|
|
2921
|
+
|
|
2922
|
+
### Features
|
|
2923
|
+
|
|
2924
|
+
- list group rewritten - API changed ([86c97dc](https://github.com/themesberg/flowbite-svelte/commit/86c97dc54581f634baed601c609e9d90c6c4611b))
|
|
2925
|
+
|
|
2926
|
+
### Bug Fixes
|
|
2927
|
+
|
|
2928
|
+
- background context added ([52c8dd5](https://github.com/themesberg/flowbite-svelte/commit/52c8dd5693f3d890e7b875ae1b0435c5a7313876))
|
|
2929
|
+
- error fix for deployment ([be684a8](https://github.com/themesberg/flowbite-svelte/commit/be684a8057c08a7c07f3f6c370114d008dc2182e))
|
|
2930
|
+
- field name change for ListGroupItemType ([da93d46](https://github.com/themesberg/flowbite-svelte/commit/da93d460c864e0a94f803420f73dbf976e185fee))
|
|
2931
|
+
|
|
2932
|
+
### [0.22.10](https://github.com/themesberg/flowbite-svelte/compare/v0.22.9...v0.22.10) (2022-07-23)
|
|
2933
|
+
|
|
2934
|
+
### Bug Fixes
|
|
2935
|
+
|
|
2936
|
+
- merge conflict fix with Hetarth02-main ([914c1f9](https://github.com/themesberg/flowbite-svelte/commit/914c1f95f80dfbd73542d68d39622d79bed1ea04))
|
|
2937
|
+
|
|
2938
|
+
### [0.22.9](https://github.com/themesberg/flowbite-svelte/compare/v0.22.8...v0.22.9) (2022-07-23)
|
|
2939
|
+
|
|
2940
|
+
### Bug Fixes
|
|
2941
|
+
|
|
2942
|
+
- using classnames dynamic class name for Footer ([52e17c7](https://github.com/themesberg/flowbite-svelte/commit/52e17c7dd8ad2599d1f41bc938930db615459b63))
|
|
2943
|
+
|
|
2944
|
+
### [0.22.8](https://github.com/themesberg/flowbite-svelte/compare/v0.22.7...v0.22.8) (2022-07-23)
|
|
2945
|
+
|
|
2946
|
+
### Bug Fixes
|
|
2947
|
+
|
|
2948
|
+
- add custom to Footer ([22f8f43](https://github.com/themesberg/flowbite-svelte/commit/22f8f430ae9a21acbbd95300b8633531d9a6dc5f))
|
|
2949
|
+
|
|
2950
|
+
### [0.22.7](https://github.com/themesberg/flowbite-svelte/compare/v0.22.6...v0.22.7) (2022-07-22)
|
|
2951
|
+
|
|
2952
|
+
### Features
|
|
2953
|
+
|
|
2954
|
+
- form buttons tinted removed ([5c2d619](https://github.com/themesberg/flowbite-svelte/commit/5c2d619c8c5ade960e2b3a59c20b809a40174829))
|
|
2955
|
+
|
|
2956
|
+
### Bug Fixes
|
|
2957
|
+
|
|
2958
|
+
- [#177](https://github.com/themesberg/flowbite-svelte/issues/177) export visible/autohide ([2127151](https://github.com/themesberg/flowbite-svelte/commit/2127151550a778d35bee5eb3b2b77f38423f50e4))
|
|
2959
|
+
|
|
2960
|
+
### [0.22.6](https://github.com/themesberg/flowbite-svelte/compare/v0.22.5...v0.22.6) (2022-07-22)
|
|
2961
|
+
|
|
2962
|
+
### Features
|
|
2963
|
+
|
|
2964
|
+
- select input [#50](https://github.com/themesberg/flowbite-svelte/issues/50) ([8cea993](https://github.com/themesberg/flowbite-svelte/commit/8cea993344f1427f83ab46f29a9bc1613c67960c))
|
|
2965
|
+
|
|
2966
|
+
### Bug Fixes
|
|
2967
|
+
|
|
2968
|
+
- add on:change to Radio ([074bd16](https://github.com/themesberg/flowbite-svelte/commit/074bd1677ced075971173c8abf1cf15387026efd))
|
|
2969
|
+
|
|
2970
|
+
### [0.22.5](https://github.com/themesberg/flowbite-svelte/compare/v0.22.4...v0.22.5) (2022-07-21)
|
|
2971
|
+
|
|
2972
|
+
### Bug Fixes
|
|
2973
|
+
|
|
2974
|
+
- [#144](https://github.com/themesberg/flowbite-svelte/issues/144) ChevronLeft fix ([016940b](https://github.com/themesberg/flowbite-svelte/commit/016940b36c6782c2481d8ff6c489c2808945d674))
|
|
2975
|
+
|
|
2976
|
+
### [0.22.4](https://github.com/themesberg/flowbite-svelte/compare/v0.22.3...v0.22.4) (2022-07-21)
|
|
2977
|
+
|
|
2978
|
+
### Bug Fixes
|
|
2979
|
+
|
|
2980
|
+
- [#165](https://github.com/themesberg/flowbite-svelte/issues/165) toggle bind:group bind:checked ([3ca4010](https://github.com/themesberg/flowbite-svelte/commit/3ca40109f13e31afa76e02c96d387ff476880e52))
|
|
2981
|
+
- change from # to / for href ([b79fd81](https://github.com/themesberg/flowbite-svelte/commit/b79fd8112d2fb15657058dd0184b113228d8a6aa))
|
|
2982
|
+
|
|
2983
|
+
### [0.22.3](https://github.com/themesberg/flowbite-svelte/compare/v0.22.2...v0.22.3) (2022-07-21)
|
|
2984
|
+
|
|
2985
|
+
### Bug Fixes
|
|
2986
|
+
|
|
2987
|
+
- for [#165](https://github.com/themesberg/flowbite-svelte/issues/165) and [#170](https://github.com/themesberg/flowbite-svelte/issues/170) and changed $$restProps.class to $$props.class ([99399b8](https://github.com/themesberg/flowbite-svelte/commit/99399b8aebdec68bc5c52641ed768dc601fe36a2))
|
|
2988
|
+
|
|
2989
|
+
### [0.22.2](https://github.com/themesberg/flowbite-svelte/compare/v0.22.1...v0.22.2) (2022-07-21)
|
|
2990
|
+
|
|
2991
|
+
### Bug Fixes
|
|
2992
|
+
|
|
2993
|
+
- update for [#165](https://github.com/themesberg/flowbite-svelte/issues/165) and [#170](https://github.com/themesberg/flowbite-svelte/issues/170) ([ff43f26](https://github.com/themesberg/flowbite-svelte/commit/ff43f265b163d2c3ac7a145772e18a95326c0651))
|
|
2994
|
+
|
|
2995
|
+
### [0.22.1](https://github.com/themesberg/flowbite-svelte/compare/v0.22.0...v0.22.1) (2022-07-20)
|
|
2996
|
+
|
|
2997
|
+
### Bug Fixes
|
|
2998
|
+
|
|
2999
|
+
- buttons redesign ([c0316ff](https://github.com/themesberg/flowbite-svelte/commit/c0316ff61fde6bf52166e3f0c0b30dacad4941c0))
|
|
3000
|
+
- typo ([4479464](https://github.com/themesberg/flowbite-svelte/commit/4479464736800552c1c05ce6b793459e8df6ef7f))
|
|
3001
|
+
|
|
3002
|
+
## [0.22.0](https://github.com/themesberg/flowbite-svelte/compare/v0.21.17...v0.22.0) (2022-07-20)
|
|
3003
|
+
|
|
3004
|
+
### ⚠ BREAKING CHANGES
|
|
3005
|
+
|
|
3006
|
+
- update dependencies and vite. script dev, build preview and test work
|
|
3007
|
+
|
|
3008
|
+
### Features
|
|
3009
|
+
|
|
3010
|
+
- update dependencies and vite. script dev, build preview and test work ([bf1b837](https://github.com/themesberg/flowbite-svelte/commit/bf1b83788d7f3ec53c2d5e5c85a825606cbce38f))
|
|
3011
|
+
|
|
3012
|
+
### Bug Fixes
|
|
3013
|
+
|
|
3014
|
+
- update all dependencies ([d7ae979](https://github.com/themesberg/flowbite-svelte/commit/d7ae979973ba092f36236fe877b98314a0328a42))
|
|
3015
|
+
- update package.json ([a77e3e5](https://github.com/themesberg/flowbite-svelte/commit/a77e3e57f58ac95dda547cc9a410a2aaa4559fe8))
|
|
3016
|
+
|
|
3017
|
+
### [0.21.17](https://github.com/themesberg/flowbite-svelte/compare/v0.21.16...v0.21.17) (2022-07-20)
|
|
3018
|
+
|
|
3019
|
+
### Bug Fixes
|
|
3020
|
+
|
|
3021
|
+
- Checkbox on:click position ([cfb1c65](https://github.com/themesberg/flowbite-svelte/commit/cfb1c658ae971bb689cd4e01f797ccc5c11db991))
|
|
3022
|
+
- on:click for Toggle, Checkbox and Radio ([48710b5](https://github.com/themesberg/flowbite-svelte/commit/48710b59c9a9096ec95dfa26d1764a312552b49e))
|
|
3023
|
+
|
|
3024
|
+
### [0.21.16](https://github.com/themesberg/flowbite-svelte/compare/v0.21.14...v0.21.16) (2022-07-20)
|
|
3025
|
+
|
|
3026
|
+
### Bug Fixes
|
|
3027
|
+
|
|
3028
|
+
- dropdown search ([4416a31](https://github.com/themesberg/flowbite-svelte/commit/4416a312756331f6dd04b1d5fe5dd61b764fd38d))
|
|
3029
|
+
- padding issues with dropdown ([6a48d4d](https://github.com/themesberg/flowbite-svelte/commit/6a48d4dc6a262fc62aa2d9b4c6233bf1cee4b741))
|
|
3030
|
+
- padding issues with dropdown ([8e8c2d4](https://github.com/themesberg/flowbite-svelte/commit/8e8c2d4bed3e85e95c28e936c513489e6d975e8f))
|
|
3031
|
+
|
|
3032
|
+
### [0.21.15](https://github.com/themesberg/flowbite-svelte/compare/v0.21.14...v0.21.15) (2022-07-20)
|
|
3033
|
+
|
|
3034
|
+
### Bug Fixes
|
|
3035
|
+
|
|
3036
|
+
- dropdown search ([4416a31](https://github.com/themesberg/flowbite-svelte/commit/4416a312756331f6dd04b1d5fe5dd61b764fd38d))
|
|
3037
|
+
- padding issues with dropdown ([6a48d4d](https://github.com/themesberg/flowbite-svelte/commit/6a48d4dc6a262fc62aa2d9b4c6233bf1cee4b741))
|
|
3038
|
+
- padding issues with dropdown ([8e8c2d4](https://github.com/themesberg/flowbite-svelte/commit/8e8c2d4bed3e85e95c28e936c513489e6d975e8f))
|
|
3039
|
+
|
|
3040
|
+
### [0.21.14](https://github.com/themesberg/flowbite-svelte/compare/v0.21.13...v0.21.14) (2022-07-19)
|
|
3041
|
+
|
|
3042
|
+
### Features
|
|
3043
|
+
|
|
3044
|
+
- update floating label component ([d04caf9](https://github.com/themesberg/flowbite-svelte/commit/d04caf981a0cbbed37a82df1899d4584908b9171))
|
|
3045
|
+
|
|
3046
|
+
### Bug Fixes
|
|
3047
|
+
|
|
3048
|
+
- multi-dropdown detach ([3ad1abb](https://github.com/themesberg/flowbite-svelte/commit/3ad1abb66e0fcb4ea53db8e0180e28b568e98aa6))
|
|
3049
|
+
|
|
3050
|
+
### [0.21.13](https://github.com/themesberg/flowbite-svelte/compare/v0.21.12...v0.21.13) (2022-07-19)
|
|
3051
|
+
|
|
3052
|
+
### [0.21.12](https://github.com/themesberg/flowbite-svelte/compare/v0.21.11...v0.21.12) (2022-07-19)
|
|
3053
|
+
|
|
3054
|
+
### [0.21.11](https://github.com/themesberg/flowbite-svelte/compare/v0.21.10...v0.21.11) (2022-07-18)
|
|
3055
|
+
|
|
3056
|
+
### Bug Fixes
|
|
3057
|
+
|
|
3058
|
+
- add on:change to Input component requested by https://github.com/themesberg/flowbite-svelte/pull/127 ([af5e64d](https://github.com/themesberg/flowbite-svelte/commit/af5e64d84b45f424b6166ff4fa1b5634a6f387d0))
|
|
3059
|
+
|
|
3060
|
+
### [0.21.10](https://github.com/themesberg/flowbite-svelte/compare/v0.21.9...v0.21.10) (2022-07-17)
|
|
3061
|
+
|
|
3062
|
+
### Features
|
|
3063
|
+
|
|
3064
|
+
- add Dropzone ([bb69872](https://github.com/themesberg/flowbite-svelte/commit/bb698721e07c489f1d1900012e60204e0af12e5a))
|
|
3065
|
+
|
|
3066
|
+
### [0.21.9](https://github.com/themesberg/flowbite-svelte/compare/v0.21.8...v0.21.9) (2022-07-17)
|
|
3067
|
+
|
|
3068
|
+
### Features
|
|
3069
|
+
|
|
3070
|
+
- add fileupload multiple files and sizes ([81ab128](https://github.com/themesberg/flowbite-svelte/commit/81ab1284902e9e89bf08725a74b22394aae57244))
|
|
3071
|
+
|
|
3072
|
+
### [0.21.8](https://github.com/themesberg/flowbite-svelte/compare/v0.21.7...v0.21.8) (2022-07-17)
|
|
3073
|
+
|
|
3074
|
+
### Features
|
|
3075
|
+
|
|
3076
|
+
- add skeleton components and page ([cf1f421](https://github.com/themesberg/flowbite-svelte/commit/cf1f421964a7122c77cf2b27615f4837ec3cf687))
|
|
3077
|
+
|
|
3078
|
+
### [0.21.7](https://github.com/themesberg/flowbite-svelte/compare/v0.21.6...v0.21.7) (2022-07-17)
|
|
3079
|
+
|
|
3080
|
+
### Features
|
|
3081
|
+
|
|
3082
|
+
- add kbd component and page ([66c1f2e](https://github.com/themesberg/flowbite-svelte/commit/66c1f2ec9c516da147c7eca9e8cb11c3eea2e1e2))
|
|
3083
|
+
|
|
3084
|
+
### [0.21.6](https://github.com/themesberg/flowbite-svelte/compare/v0.21.5...v0.21.6) (2022-07-16)
|
|
3085
|
+
|
|
3086
|
+
### Bug Fixes
|
|
3087
|
+
|
|
3088
|
+
- links in form index ([1149aa2](https://github.com/themesberg/flowbite-svelte/commit/1149aa2f7411ceb9a3e29ce3c6c3d446634f09a9))
|
|
3089
|
+
- sidebars and forms {...$$restProps} position updates ([d983225](https://github.com/themesberg/flowbite-svelte/commit/d983225a4e4c7526bf7bee3a7cd51ecc6035bba8))
|
|
3090
|
+
|
|
3091
|
+
### [0.21.5](https://github.com/themesberg/flowbite-svelte/compare/v0.21.4...v0.21.5) (2022-07-16)
|
|
3092
|
+
|
|
3093
|
+
### Features
|
|
3094
|
+
|
|
3095
|
+
- alerts more functions, changed API ([a2306fb](https://github.com/themesberg/flowbite-svelte/commit/a2306fb2a980a140da51f4f36ac299a5ce33c1c8))
|
|
3096
|
+
|
|
3097
|
+
### Bug Fixes
|
|
3098
|
+
|
|
3099
|
+
- add href prop to jjagielka avatars and fix doc ([ea97577](https://github.com/themesberg/flowbite-svelte/commit/ea975779365d8a9d8b6fd2fe22e36d94636957f2))
|
|
3100
|
+
- buttons - update sizes and force round ([22284ad](https://github.com/themesberg/flowbite-svelte/commit/22284ada79396136f8dce288de87112e74e6f82a))
|
|
3101
|
+
|
|
3102
|
+
### [0.21.4](https://github.com/themesberg/flowbite-svelte/compare/v0.21.3...v0.21.4) (2022-07-14)
|
|
3103
|
+
|
|
3104
|
+
### Bug Fixes
|
|
3105
|
+
|
|
3106
|
+
- alerts dismissable button color ([779e863](https://github.com/themesberg/flowbite-svelte/commit/779e863a6b321ea84ae65484b05ed6cd7d73ccd9))
|
|
3107
|
+
|
|
3108
|
+
### [0.21.3](https://github.com/themesberg/flowbite-svelte/compare/v0.21.2...v0.21.3) (2022-07-14)
|
|
3109
|
+
|
|
3110
|
+
### [0.21.2](https://github.com/themesberg/flowbite-svelte/compare/v0.21.1...v0.21.2) (2022-07-13)
|
|
3111
|
+
|
|
3112
|
+
### Bug Fixes
|
|
3113
|
+
|
|
3114
|
+
- toc more selective ([fb457a2](https://github.com/themesberg/flowbite-svelte/commit/fb457a26b595652f0f59d08915cfae3267361899))
|
|
3115
|
+
|
|
3116
|
+
### [0.21.1](https://github.com/themesberg/flowbite-svelte/compare/v0.21.0...v0.21.1) (2022-07-12)
|
|
3117
|
+
|
|
3118
|
+
### Features
|
|
3119
|
+
|
|
3120
|
+
- add positioning to Toasts ([a88f641](https://github.com/themesberg/flowbite-svelte/commit/a88f641731efc52d55c6474a8f9696598fd339cc))
|
|
3121
|
+
- merging jjagielka-buttons ([94ffdcb](https://github.com/themesberg/flowbite-svelte/commit/94ffdcba071488d0d56492c3a1fdb148afdb9450))
|
|
3122
|
+
|
|
3123
|
+
### Bug Fixes
|
|
3124
|
+
|
|
3125
|
+
- buttons - transparency for outline ([6ae3d0f](https://github.com/themesberg/flowbite-svelte/commit/6ae3d0ff767e307ae5a4968f7b3c9a52dbb324f4))
|
|
3126
|
+
- documentation typos ([942c3b2](https://github.com/themesberg/flowbite-svelte/commit/942c3b2a2624aec3ba4d34cfab2c1098d41cd362))
|
|
3127
|
+
- removed bg and text from CloseButton to keep transparency ([b5d36ee](https://github.com/themesberg/flowbite-svelte/commit/b5d36eec584f89a46d59346995b79b9b0d0fd906))
|
|
3128
|
+
- reverting Alert ([ccda53a](https://github.com/themesberg/flowbite-svelte/commit/ccda53ad474e0c6a39ffa6297555485f08ea9b5d))
|
|
3129
|
+
|
|
3130
|
+
## [0.21.0](https://github.com/themesberg/flowbite-svelte/compare/v0.20.0...v0.21.0) (2022-07-01)
|
|
3131
|
+
|
|
3132
|
+
### ⚠ BREAKING CHANGES
|
|
3133
|
+
|
|
3134
|
+
- Footer component updated
|
|
3135
|
+
|
|
3136
|
+
### Features
|
|
3137
|
+
|
|
3138
|
+
- Footer component updated ([c144ba6](https://github.com/themesberg/flowbite-svelte/commit/c144ba67bc7bf883066c9de2afaca21f1dc82bf3))
|
|
3139
|
+
|
|
3140
|
+
## [0.20.0](https://github.com/themesberg/flowbite-svelte/compare/v0.19.13...v0.20.0) (2022-07-01)
|
|
3141
|
+
|
|
3142
|
+
### ⚠ BREAKING CHANGES
|
|
3143
|
+
|
|
3144
|
+
- Button component API update
|
|
3145
|
+
|
|
3146
|
+
### Features
|
|
3147
|
+
|
|
3148
|
+
- Button component API update ([934ff9b](https://github.com/themesberg/flowbite-svelte/commit/934ff9b6fdb63fa8f10bb93a1ed1ef1afaf95421))
|
|
3149
|
+
|
|
3150
|
+
### [0.19.13](https://github.com/themesberg/flowbite-svelte/compare/v0.19.12...v0.19.13) (2022-06-30)
|
|
3151
|
+
|
|
3152
|
+
### Bug Fixes
|
|
3153
|
+
|
|
3154
|
+
- removed gradient outline examples since Flowbite site does not have them ([56ac6b4](https://github.com/themesberg/flowbite-svelte/commit/56ac6b4a57512a0d0a086c26a0f179e114af7690))
|
|
3155
|
+
|
|
3156
|
+
### [0.19.12](https://github.com/themesberg/flowbite-svelte/compare/v0.19.11...v0.19.12) (2022-06-30)
|
|
3157
|
+
|
|
3158
|
+
### [0.19.11](https://github.com/themesberg/flowbite-svelte/compare/v0.19.10...v0.19.11) (2022-06-30)
|
|
3159
|
+
|
|
3160
|
+
### Features
|
|
3161
|
+
|
|
3162
|
+
- can add own search function to TableSearch component ([514c7f7](https://github.com/themesberg/flowbite-svelte/commit/514c7f71ba0ff48637ff37051c9e453a40a56f11))
|
|
3163
|
+
|
|
3164
|
+
### [0.19.10](https://github.com/themesberg/flowbite-svelte/compare/v0.19.9...v0.19.10) (2022-06-30)
|
|
3165
|
+
|
|
3166
|
+
### Features
|
|
3167
|
+
|
|
3168
|
+
- add on change event dispatch to select ([bda74a6](https://github.com/themesberg/flowbite-svelte/commit/bda74a619530567d06d1badc600a3f663711b179))
|
|
3169
|
+
- update Breadcrumb components ([b35a970](https://github.com/themesberg/flowbite-svelte/commit/b35a9701ae08f795e37c55b92d24805d02a19b96))
|
|
3170
|
+
|
|
3171
|
+
### [0.19.9](https://github.com/themesberg/flowbite-svelte/compare/v0.19.8...v0.19.9) (2022-06-27)
|
|
3172
|
+
|
|
3173
|
+
### [0.19.8](https://github.com/themesberg/flowbite-svelte/compare/v0.19.7...v0.19.8) (2022-06-27)
|
|
3174
|
+
|
|
3175
|
+
### [0.19.7](https://github.com/themesberg/flowbite-svelte/compare/v0.19.6...v0.19.7) (2022-06-27)
|
|
3176
|
+
|
|
3177
|
+
### [0.19.6](https://github.com/themesberg/flowbite-svelte/compare/v0.19.5...v0.19.6) (2022-06-27)
|
|
3178
|
+
|
|
3179
|
+
### [0.19.5](https://github.com/themesberg/flowbite-svelte/compare/v0.19.4...v0.19.5) (2022-06-27)
|
|
3180
|
+
|
|
3181
|
+
### [0.19.4](https://github.com/themesberg/flowbite-svelte/compare/v0.19.3...v0.19.4) (2022-06-25)
|
|
3182
|
+
|
|
3183
|
+
### Bug Fixes
|
|
3184
|
+
|
|
3185
|
+
- change from const to let navDivClass ([ffdcd9f](https://github.com/themesberg/flowbite-svelte/commit/ffdcd9fa2cde37a13103e493905d6076f61e5df6))
|
|
3186
|
+
- update navbar index page by adding flex items-center md:order-2 ([efc0209](https://github.com/themesberg/flowbite-svelte/commit/efc0209c87d063157f225476f0b8e5beb04ed36f))
|
|
3187
|
+
|
|
3188
|
+
### [0.19.3](https://github.com/themesberg/flowbite-svelte/compare/v0.19.2...v0.19.3) (2022-06-24)
|
|
3189
|
+
|
|
3190
|
+
### Bug Fixes
|
|
3191
|
+
|
|
3192
|
+
- navbar page ([d0a704e](https://github.com/themesberg/flowbite-svelte/commit/d0a704e658d86090e38a3d0feadaf89cccb401a6))
|
|
3193
|
+
- update card page ([0fd6e0e](https://github.com/themesberg/flowbite-svelte/commit/0fd6e0eeb8a42e6f51f0ac8465803ea40100bd55))
|
|
3194
|
+
- update navbar ([7cdfa05](https://github.com/themesberg/flowbite-svelte/commit/7cdfa0525499faca856632278f5cb6b6c4213e75))
|
|
3195
|
+
|
|
3196
|
+
### [0.19.2](https://github.com/themesberg/flowbite-svelte/compare/v0.19.1...v0.19.2) (2022-06-24)
|
|
3197
|
+
|
|
3198
|
+
### Bug Fixes
|
|
3199
|
+
|
|
3200
|
+
- update Button outline ([6f419c3](https://github.com/themesberg/flowbite-svelte/commit/6f419c38a365fbfb3a466ec81eedc6fcd5fa9a75))
|
|
3201
|
+
|
|
3202
|
+
### [0.19.1](https://github.com/themesberg/flowbite-svelte/compare/v0.19.0...v0.19.1) (2022-06-24)
|
|
3203
|
+
|
|
3204
|
+
## [0.19.0](https://github.com/themesberg/flowbite-svelte/compare/v0.18.6...v0.19.0) (2022-06-24)
|
|
3205
|
+
|
|
3206
|
+
### ⚠ BREAKING CHANGES
|
|
3207
|
+
|
|
3208
|
+
- Dropdown has a new structure
|
|
3209
|
+
|
|
3210
|
+
### Bug Fixes
|
|
3211
|
+
|
|
3212
|
+
- Dropdown has a new structure ([2c5d7b0](https://github.com/themesberg/flowbite-svelte/commit/2c5d7b0a7ac6e93074d11c986835e1f24dd5e00e))
|
|
3213
|
+
- update Dropdown components ([4dd3254](https://github.com/themesberg/flowbite-svelte/commit/4dd3254b037be1db5718c4a03662e7cf455a4ee6))
|
|
3214
|
+
- update dropdown creating Dropdown, DropdownDivider, DropdownHeader, DropdownItem ([58db150](https://github.com/themesberg/flowbite-svelte/commit/58db150ee321f849ece954f43213e09a3634e191))
|
|
3215
|
+
|
|
3216
|
+
### [0.18.6](https://github.com/themesberg/flowbite-svelte/compare/v0.18.5...v0.18.6) (2022-06-24)
|
|
3217
|
+
|
|
3218
|
+
### [0.18.5](https://github.com/themesberg/flowbite-svelte/compare/v0.18.4...v0.18.5) (2022-06-24)
|
|
3219
|
+
|
|
3220
|
+
### [0.18.4](https://github.com/themesberg/flowbite-svelte/compare/v0.18.3...v0.18.4) (2022-06-23)
|
|
3221
|
+
|
|
3222
|
+
### Features
|
|
3223
|
+
|
|
3224
|
+
- add button colored shadows ([96e20c5](https://github.com/themesberg/flowbite-svelte/commit/96e20c568f2fcc7d51e9a430fcb0007f02290bd2))
|
|
3225
|
+
- add outline button ([aa14b26](https://github.com/themesberg/flowbite-svelte/commit/aa14b267ec1bf283ca3684fa956776b6ce4e6932))
|
|
3226
|
+
- add outlineStyle white for loader ([7769c19](https://github.com/themesberg/flowbite-svelte/commit/7769c19df48cac833fa08ce659ebfa651160bbf5))
|
|
3227
|
+
|
|
3228
|
+
### [0.18.3](https://github.com/themesberg/flowbite-svelte/compare/v0.18.2...v0.18.3) (2022-06-22)
|
|
3229
|
+
|
|
3230
|
+
### Bug Fixes
|
|
3231
|
+
|
|
3232
|
+
- update Input component ([94df473](https://github.com/themesberg/flowbite-svelte/commit/94df473935baaa4f22124ceb0d6501a1359bd4b4))
|
|
3233
|
+
|
|
3234
|
+
### [0.18.2](https://github.com/themesberg/flowbite-svelte/compare/v0.18.1...v0.18.2) (2022-06-22)
|
|
3235
|
+
|
|
3236
|
+
### Features
|
|
3237
|
+
|
|
3238
|
+
- make button styles reactive ([d74dd9b](https://github.com/themesberg/flowbite-svelte/commit/d74dd9b37c58716e33ca72ce5058b557a6b43ced))
|
|
3239
|
+
|
|
3240
|
+
### Bug Fixes
|
|
3241
|
+
|
|
3242
|
+
- make disabled button unclickable ([df1c66d](https://github.com/themesberg/flowbite-svelte/commit/df1c66d08e6090a66cff12d2d41f6b72a93324dc))
|
|
3243
|
+
- update checkbox, add Label and Helper components, update checkbox page ([07de620](https://github.com/themesberg/flowbite-svelte/commit/07de6208e256cb364d9ae1ed02b321168119514d))
|
|
3244
|
+
|
|
3245
|
+
### [0.18.1](https://github.com/themesberg/flowbite-svelte/compare/v0.18.0...v0.18.1) (2022-06-18)
|
|
3246
|
+
|
|
3247
|
+
### Features
|
|
3248
|
+
|
|
3249
|
+
- add voice search component ([8e6e610](https://github.com/themesberg/flowbite-svelte/commit/8e6e6101fb54c5307a4d3e32cf61042308532cae))
|
|
3250
|
+
|
|
3251
|
+
## [0.18.0](https://github.com/themesberg/flowbite-svelte/compare/v0.17.6...v0.18.0) (2022-06-17)
|
|
3252
|
+
|
|
3253
|
+
### ⚠ BREAKING CHANGES
|
|
3254
|
+
|
|
3255
|
+
- new Table components
|
|
3256
|
+
|
|
3257
|
+
### Features
|
|
3258
|
+
|
|
3259
|
+
- add simeple search component ([945c27b](https://github.com/themesberg/flowbite-svelte/commit/945c27b5299ae52f9c160cbda74a0b0540d98be8))
|
|
3260
|
+
- new Table components ([b2d4c8c](https://github.com/themesberg/flowbite-svelte/commit/b2d4c8cca892da8e18fd0e2f688ccc9280bc8df8))
|
|
3261
|
+
|
|
3262
|
+
### Bug Fixes
|
|
3263
|
+
|
|
3264
|
+
- add SimpleSearch to index.ts ([64a8f49](https://github.com/themesberg/flowbite-svelte/commit/64a8f496a22948874dac2695e96ba397e53026b5))
|
|
3265
|
+
- update Tabel component, add TableHead, TableBody, TableHeadCell, TabelRow ([09b7ad9](https://github.com/themesberg/flowbite-svelte/commit/09b7ad971a2d5ba01eca463e251f2c078a86b708))
|
|
3266
|
+
- wrong label class name ([39735b3](https://github.com/themesberg/flowbite-svelte/commit/39735b3a85285bd69d064aef22145d60d278da46))
|
|
3267
|
+
|
|
3268
|
+
### [0.17.6](https://github.com/themesberg/flowbite-svelte/compare/v0.17.5...v0.17.6) (2022-06-17)
|
|
3269
|
+
|
|
3270
|
+
### Bug Fixes
|
|
3271
|
+
|
|
3272
|
+
- removed $app/env browser from Tooltip component ([604a1e0](https://github.com/themesberg/flowbite-svelte/commit/604a1e075c6333c5532e04916a20500a31fb4716))
|
|
3273
|
+
|
|
3274
|
+
### [0.17.5](https://github.com/themesberg/flowbite-svelte/compare/v0.17.4...v0.17.5) (2022-06-16)
|
|
3275
|
+
|
|
3276
|
+
### [0.17.4](https://github.com/themesberg/flowbite-svelte/compare/v0.17.3...v0.17.4) (2022-06-14)
|
|
3277
|
+
|
|
3278
|
+
### Breaking Change
|
|
3279
|
+
|
|
3280
|
+
- Tooltip component has different structures.
|
|
3281
|
+
|
|
3282
|
+
### Bug Fixes
|
|
3283
|
+
|
|
3284
|
+
- update Tooltip component ([d0cc06e](https://github.com/themesberg/flowbite-svelte/commit/d0cc06e991e5677463a5625b4abaee2a6edef3fc))
|
|
3285
|
+
|
|
3286
|
+
### [0.17.3](https://github.com/themesberg/flowbite-svelte/compare/v0.17.2...v0.17.3) (2022-06-14)
|
|
3287
|
+
|
|
3288
|
+
### Bug Fixes
|
|
3289
|
+
|
|
3290
|
+
- update ButtonGroupItem border ([365b6d2](https://github.com/themesberg/flowbite-svelte/commit/365b6d2b21b903a8b15057a9bb009e0d3d65e884))
|
|
3291
|
+
|
|
3292
|
+
### [0.17.2](https://github.com/themesberg/flowbite-svelte/compare/v0.17.1...v0.17.2) (2022-06-08)
|
|
3293
|
+
|
|
3294
|
+
### Bug Fixes
|
|
3295
|
+
|
|
3296
|
+
- change type string to typeof SvelteComponent ([277c3e2](https://github.com/themesberg/flowbite-svelte/commit/277c3e24201088aa051726ae16f2e12f66a8a69e))
|
|
3297
|
+
|
|
3298
|
+
### [0.17.1](https://github.com/themesberg/flowbite-svelte/compare/v0.17.0...v0.17.1) (2022-06-07)
|
|
3299
|
+
|
|
3300
|
+
### Bug Fixes
|
|
3301
|
+
|
|
3302
|
+
- add {39090props.class || ''} {...39090restProps} to Sidebar components ([7ea5815](https://github.com/themesberg/flowbite-svelte/commit/7ea5815d939dd6041a3a9e965127ea61736d5849))
|
|
3303
|
+
|
|
3304
|
+
## [0.17.0](https://github.com/themesberg/flowbite-svelte/compare/v0.16.14...v0.17.0) (2022-06-07)
|
|
3305
|
+
|
|
3306
|
+
### ⚠ BREAKING CHANGES
|
|
3307
|
+
|
|
3308
|
+
- read the doc how to use them
|
|
3309
|
+
|
|
3310
|
+
### Features
|
|
3311
|
+
|
|
3312
|
+
- add {...39090restProps} to ButtonGroup ([9744917](https://github.com/themesberg/flowbite-svelte/commit/9744917f9a036771e1ec285f43de56502e776a3d))
|
|
3313
|
+
- new sidebar structure ([bf35b3e](https://github.com/themesberg/flowbite-svelte/commit/bf35b3e230b9d2f9b27d2e9576c70a3db47bc48c))
|
|
3314
|
+
- update Sidebar components ([4f15325](https://github.com/themesberg/flowbite-svelte/commit/4f153257b519d4cbbb405a357e4c6ee7ebe30249))
|
|
3315
|
+
|
|
3316
|
+
### [0.16.14](https://github.com/themesberg/flowbite-svelte/compare/v0.16.13...v0.16.14) (2022-06-07)
|
|
3317
|
+
|
|
3318
|
+
### Features
|
|
3319
|
+
|
|
3320
|
+
- add {...39090restProps} to ButtonGroupItem ([6af6066](https://github.com/themesberg/flowbite-svelte/commit/6af6066928200750036b5f19e2711383f02ccfa3))
|
|
3321
|
+
|
|
3322
|
+
### [0.16.13](https://github.com/themesberg/flowbite-svelte/compare/v0.16.12...v0.16.13) (2022-06-07)
|
|
3323
|
+
|
|
3324
|
+
### [0.16.12](https://github.com/themesberg/flowbite-svelte/compare/v0.16.11...v0.16.12) (2022-06-07)
|
|
3325
|
+
|
|
3326
|
+
### Features
|
|
3327
|
+
|
|
3328
|
+
- add type to ButtonGroupItem ([1aefa6b](https://github.com/themesberg/flowbite-svelte/commit/1aefa6bd85acabc05b9ba8016b8e1f46bd55baef))
|
|
3329
|
+
|
|
3330
|
+
### [0.16.11](https://github.com/themesberg/flowbite-svelte/compare/v0.16.10...v0.16.11) (2022-06-06)
|
|
3331
|
+
|
|
3332
|
+
### Features
|
|
3333
|
+
|
|
3334
|
+
- add on:click to ButtonGroupItem ([f3229de](https://github.com/themesberg/flowbite-svelte/commit/f3229dedfced6dcb4114a47370bb144bf4a07ae3))
|
|
3335
|
+
|
|
3336
|
+
### Bug Fixes
|
|
3337
|
+
|
|
3338
|
+
- forms components moved all export variables before function ([13d518b](https://github.com/themesberg/flowbite-svelte/commit/13d518b58f5aa09a0dcb4de439860afb1d84e3d0))
|
|
3339
|
+
- Input component move let padding before using it ([4fac17c](https://github.com/themesberg/flowbite-svelte/commit/4fac17cab3ebf67eb2ed4502356bbd5b5eb9aea1))
|
|
3340
|
+
- props update ([2feb352](https://github.com/themesberg/flowbite-svelte/commit/2feb3520eb74eb5f7ef0c0688e288723a7d7ee40))
|
|
3341
|
+
|
|
3342
|
+
### [0.16.10](https://github.com/themesberg/flowbite-svelte/compare/v0.16.9...v0.16.10) (2022-06-05)
|
|
3343
|
+
|
|
3344
|
+
### Features
|
|
3345
|
+
|
|
3346
|
+
- add on:click to forms/Toggle component ([3b9ba37](https://github.com/themesberg/flowbite-svelte/commit/3b9ba3730421fa7096efee80225c60038ad903b9))
|
|
3347
|
+
|
|
3348
|
+
### [0.16.9](https://github.com/themesberg/flowbite-svelte/compare/v0.16.8...v0.16.9) (2022-06-05)
|
|
3349
|
+
|
|
3350
|
+
### Features
|
|
3351
|
+
|
|
3352
|
+
- add bind:group to Radio component ([386ab02](https://github.com/themesberg/flowbite-svelte/commit/386ab0246d0a3a7ae60416c6f9979501f4c434af))
|
|
3353
|
+
|
|
3354
|
+
### [0.16.8](https://github.com/themesberg/flowbite-svelte/compare/v0.16.7...v0.16.8) (2022-06-03)
|
|
3355
|
+
|
|
3356
|
+
### [0.16.7](https://github.com/themesberg/flowbite-svelte/compare/v0.16.6...v0.16.7) (2022-06-02)
|
|
3357
|
+
|
|
3358
|
+
### [0.16.6](https://github.com/themesberg/flowbite-svelte/compare/v0.16.5...v0.16.6) (2022-06-02)
|
|
3359
|
+
|
|
3360
|
+
### Features
|
|
3361
|
+
|
|
3362
|
+
- add 66464props.class and 66464restProps to all Badge components ([e466faf](https://github.com/themesberg/flowbite-svelte/commit/e466faf85b3cdba5f125866ee71b1308ce223d4b))
|
|
3363
|
+
|
|
3364
|
+
### [0.16.5](https://github.com/themesberg/flowbite-svelte/compare/v0.16.4...v0.16.5) (2022-06-02)
|
|
3365
|
+
|
|
3366
|
+
### [0.16.4](https://github.com/themesberg/flowbite-svelte/compare/v0.16.3...v0.16.4) (2022-06-01)
|
|
3367
|
+
|
|
3368
|
+
### [0.16.3](https://github.com/themesberg/flowbite-svelte/compare/v0.16.2...v0.16.3) (2022-06-01)
|
|
3369
|
+
|
|
3370
|
+
### Bug Fixes
|
|
3371
|
+
|
|
3372
|
+
- heros update ([89b8755](https://github.com/themesberg/flowbite-svelte/commit/89b87555fee018361058d888916b8e1cb774c145))
|
|
3373
|
+
- index page add padding px-8 ([01d29a1](https://github.com/themesberg/flowbite-svelte/commit/01d29a17883a8ba94fb4370aafb398a97b1adee3))
|
|
3374
|
+
|
|
3375
|
+
### [0.16.2](https://github.com/themesberg/flowbite-svelte/compare/v0.16.1...v0.16.2) (2022-05-30)
|
|
3376
|
+
|
|
3377
|
+
### Bug Fixes
|
|
3378
|
+
|
|
3379
|
+
- spinner fill and colour were back to front. ([83e6ec7](https://github.com/themesberg/flowbite-svelte/commit/83e6ec75cec5aade59570337a829938e46bcdfa3))
|
|
3380
|
+
|
|
3381
|
+
### [0.16.1](https://github.com/themesberg/flowbite-svelte/compare/v0.16.0...v0.16.1) (2022-05-27)
|
|
3382
|
+
|
|
3383
|
+
## [0.16.0](https://github.com/themesberg/flowbite-svelte/compare/v0.15.41...v0.16.0) (2022-05-26)
|
|
3384
|
+
|
|
3385
|
+
### Bug Fixes
|
|
3386
|
+
|
|
3387
|
+
- update ButtonGroup components ([72fa977](https://github.com/themesberg/flowbite-svelte/commit/72fa9779438d5344fd30014fa00e1fe9f779f432))
|
|
3388
|
+
|
|
3389
|
+
### [0.15.41](https://github.com/themesberg/flowbite-svelte/compare/v0.15.40...v0.15.41) (2022-05-24)
|
|
3390
|
+
|
|
3391
|
+
### Features
|
|
3392
|
+
|
|
3393
|
+
- add transition slide to navbar ([da3d34a](https://github.com/themesberg/flowbite-svelte/commit/da3d34a34d209b599440225baa92d440ff291e03))
|
|
3394
|
+
|
|
3395
|
+
### [0.15.40](https://github.com/themesberg/flowbite-svelte/compare/v0.15.39...v0.15.40) (2022-05-23)
|
|
3396
|
+
|
|
3397
|
+
### Features
|
|
3398
|
+
|
|
3399
|
+
- add transition slide to navbar ([755ae7f](https://github.com/themesberg/flowbite-svelte/commit/755ae7f39823f9cdbcea375722eadabcc80d385a))
|
|
3400
|
+
|
|
3401
|
+
### Bug Fixes
|
|
3402
|
+
|
|
3403
|
+
- add {4126props.class || ''} to Navbar nav ([39a50fe](https://github.com/themesberg/flowbite-svelte/commit/39a50fe2a4296856d9fa97082f1807e6e1ddc0e8))
|
|
3404
|
+
- remove transition for navbar ([4f078d0](https://github.com/themesberg/flowbite-svelte/commit/4f078d038b1b1babe216f55e937e0a1e64e2a7a5))
|
|
3405
|
+
- remove transition for NavUl ([6a29a1d](https://github.com/themesberg/flowbite-svelte/commit/6a29a1d82ef3e5e6a7afcf68dd953f8830562e05))
|
|
3406
|
+
|
|
3407
|
+
### [0.15.39](https://github.com/themesberg/flowbite-svelte/compare/v0.15.38...v0.15.39) (2022-05-22)
|
|
3408
|
+
|
|
3409
|
+
### Features
|
|
3410
|
+
|
|
3411
|
+
- add new Navbar with dropdown demo ([d48b42f](https://github.com/themesberg/flowbite-svelte/commit/d48b42f15da7155e396702011fe70e7cb5898eb5))
|
|
3412
|
+
- change Navbar component structure ([81b83fb](https://github.com/themesberg/flowbite-svelte/commit/81b83fb6805412b85ecf23186ccf50b4c737bdd4))
|
|
3413
|
+
- favicon and logo update ([6c317a9](https://github.com/themesberg/flowbite-svelte/commit/6c317a967d5a0b8acdf19e7d8a74fe059407c34f))
|
|
3414
|
+
- update Navbar components ([66170da](https://github.com/themesberg/flowbite-svelte/commit/66170dab34128dbe510131f2cd75a9123e06bdfe))
|
|
3415
|
+
|
|
3416
|
+
### Bug Fixes
|
|
3417
|
+
|
|
3418
|
+
- add engines node version >=16.0.0 to package.json ([5f859be](https://github.com/themesberg/flowbite-svelte/commit/5f859be127ee5d541a9a49535f71eedbc5ea5137))
|
|
3419
|
+
- restucturing Navbar components ([3f4fa07](https://github.com/themesberg/flowbite-svelte/commit/3f4fa076fe3cb5c0ca2a0a3e3b88e47aba7078af))
|
|
3420
|
+
- update Navbar components ([57a7205](https://github.com/themesberg/flowbite-svelte/commit/57a7205e3c5db1dcec4f677878b2001fde749c67))
|
|
3421
|
+
|
|
3422
|
+
### [0.15.38](https://github.com/themesberg/flowbite-svelte/compare/v0.15.37...v0.15.38) (2022-05-19)
|
|
3423
|
+
|
|
3424
|
+
### Bug Fixes
|
|
3425
|
+
|
|
3426
|
+
- add props.class to Spinner ([3fe4f8b](https://github.com/themesberg/flowbite-svelte/commit/3fe4f8b20d7d89b2230b23904b0671cec900684d))
|
|
3427
|
+
|
|
3428
|
+
### [0.15.37](https://github.com/themesberg/flowbite-svelte/compare/v0.15.36...v0.15.37) (2022-05-18)
|
|
3429
|
+
|
|
3430
|
+
### Bug Fixes
|
|
3431
|
+
|
|
3432
|
+
- add buttonClass to AccordionItem ([8387244](https://github.com/themesberg/flowbite-svelte/commit/83872440ebb872843a0f016f7fb576d156295b96))
|
|
3433
|
+
|
|
3434
|
+
### [0.15.36](https://github.com/themesberg/flowbite-svelte/compare/v0.15.35...v0.15.36) (2022-05-17)
|
|
3435
|
+
|
|
3436
|
+
### Bug Fixes
|
|
3437
|
+
|
|
3438
|
+
- add '' to string types ([387363a](https://github.com/themesberg/flowbite-svelte/commit/387363a3b3668dc66a7790331927e1c1641e4de6))
|
|
3439
|
+
- add bind:checked to Checkbox ([7cfcf67](https://github.com/themesberg/flowbite-svelte/commit/7cfcf67b52a1496f57f8ef31b4205464f9eb82a0))
|
|
3440
|
+
- add bind:checked to Toggle ([18a34ea](https://github.com/themesberg/flowbite-svelte/commit/18a34eaaf65539bf176da642b4a04f644265f647))
|
|
3441
|
+
- remove radio, search etc from InputType ([ed95418](https://github.com/themesberg/flowbite-svelte/commit/ed9541808da054b383c6addff55907d955dad32f))
|
|
3442
|
+
|
|
3443
|
+
### [0.15.35](https://github.com/themesberg/flowbite-svelte/compare/v0.15.34...v0.15.35) (2022-05-15)
|
|
3444
|
+
|
|
3445
|
+
### Bug Fixes
|
|
3446
|
+
|
|
3447
|
+
- add ulClass and childClass in SidebarItem's SidebarDropdown ([2e0f46b](https://github.com/themesberg/flowbite-svelte/commit/2e0f46b6c65037e4a40bba688936af99839bd863))
|
|
3448
|
+
|
|
3449
|
+
### [0.15.34](https://github.com/themesberg/flowbite-svelte/compare/v0.15.33...v0.15.34) (2022-05-15)
|
|
3450
|
+
|
|
3451
|
+
### Bug Fixes
|
|
3452
|
+
|
|
3453
|
+
- add childClass and ulClass to SidebarDropdown ([8754489](https://github.com/themesberg/flowbite-svelte/commit/875448911cbf0e427f51a08b51d5f160974b159b))
|
|
3454
|
+
|
|
3455
|
+
### [0.15.33](https://github.com/themesberg/flowbite-svelte/compare/v0.15.32...v0.15.33) (2022-05-15)
|
|
3456
|
+
|
|
3457
|
+
### Features
|
|
3458
|
+
|
|
3459
|
+
- add AccordionFlush component ([e2d297d](https://github.com/themesberg/flowbite-svelte/commit/e2d297def8272347a68fe39e3296d07d1bd2b436))
|
|
3460
|
+
|
|
3461
|
+
### [0.15.32](https://github.com/themesberg/flowbite-svelte/compare/v0.15.31...v0.15.32) (2022-05-15)
|
|
3462
|
+
|
|
3463
|
+
### Bug Fixes
|
|
3464
|
+
|
|
3465
|
+
- change mr-4 to mr-2 in SidebarDropdown component ([2961555](https://github.com/themesberg/flowbite-svelte/commit/296155587bf2fa35d081b5373ad941a804d4170a))
|
|
3466
|
+
|
|
3467
|
+
### [0.15.31](https://github.com/themesberg/flowbite-svelte/compare/v0.15.30...v0.15.31) (2022-05-15)
|
|
3468
|
+
|
|
3469
|
+
### Bug Fixes
|
|
3470
|
+
|
|
3471
|
+
- add {41578props.class ? 41578props.class : ''} to AccordionItem component ([b90ee19](https://github.com/themesberg/flowbite-svelte/commit/b90ee19dc8a82a801eba01901eb6f2dbf3c9df1a))
|
|
3472
|
+
|
|
3473
|
+
### [0.15.30](https://github.com/themesberg/flowbite-svelte/compare/v0.15.29...v0.15.30) (2022-05-14)
|
|
3474
|
+
|
|
3475
|
+
### Bug Fixes
|
|
3476
|
+
|
|
3477
|
+
- move all index.svelte to index.md and add breadcrumb ([c691d92](https://github.com/themesberg/flowbite-svelte/commit/c691d92fe5b47dafb2d1f5bc4dee39dc3a5c61b8))
|
|
3478
|
+
|
|
3479
|
+
### [0.15.29](https://github.com/themesberg/flowbite-svelte/compare/v0.15.28...v0.15.29) (2022-05-13)
|
|
3480
|
+
|
|
3481
|
+
### Bug Fixes
|
|
3482
|
+
|
|
3483
|
+
- 28115props.class returns undefined if class is not given ([c1d4ab8](https://github.com/themesberg/flowbite-svelte/commit/c1d4ab8eb6b379078a3fb3fc51952d94c31cf452))
|
|
3484
|
+
|
|
3485
|
+
### [0.15.28](https://github.com/themesberg/flowbite-svelte/compare/v0.15.27...v0.15.28) (2022-05-13)
|
|
3486
|
+
|
|
3487
|
+
### Features
|
|
3488
|
+
|
|
3489
|
+
- add slot to EcommerceCard ([d777c87](https://github.com/themesberg/flowbite-svelte/commit/d777c87d3097998e840a9e2ed79cafc036c74713))
|
|
3490
|
+
|
|
3491
|
+
### [0.15.27](https://github.com/themesberg/flowbite-svelte/compare/v0.15.26...v0.15.27) (2022-05-13)
|
|
3492
|
+
|
|
3493
|
+
### [0.15.26](https://github.com/themesberg/flowbite-svelte/compare/v0.15.25...v0.15.26) (2022-05-13)
|
|
3494
|
+
|
|
3495
|
+
### Bug Fixes
|
|
3496
|
+
|
|
3497
|
+
- change from ./package/index.js to index.js for main in package.json ([785fe2c](https://github.com/themesberg/flowbite-svelte/commit/785fe2cd88feded7a2872e85248c84b001c1e3b4))
|
|
3498
|
+
|
|
3499
|
+
### [0.15.25](https://github.com/themesberg/flowbite-svelte/compare/v0.15.24...v0.15.25) (2022-05-13)
|
|
3500
|
+
|
|
3501
|
+
### Bug Fixes
|
|
3502
|
+
|
|
3503
|
+
- demo page issues ([268db3c](https://github.com/themesberg/flowbite-svelte/commit/268db3ca3db363ee8bbd6eec69d9f622350050ee))
|
|
3504
|
+
- input label margin on empty labels ([e08bb0d](https://github.com/themesberg/flowbite-svelte/commit/e08bb0d5caaf10b2c14a852cc68047be7c9e6fdc))
|
|
3505
|
+
- remove button margin ([9cc1795](https://github.com/themesberg/flowbite-svelte/commit/9cc179505bd77ed775fee1879415f191f36b4764))
|
|
3506
|
+
|
|
3507
|
+
### [0.15.24](https://github.com/themesberg/flowbite-svelte/compare/v0.15.23...v0.15.24) (2022-05-12)
|
|
3508
|
+
|
|
3509
|
+
### [0.15.23](https://github.com/themesberg/flowbite-svelte/compare/v0.15.22...v0.15.23) (2022-05-11)
|
|
3510
|
+
|
|
3511
|
+
### Features
|
|
3512
|
+
|
|
3513
|
+
- more alert options ([7071490](https://github.com/themesberg/flowbite-svelte/commit/7071490d458312c3f0833097c10829b20a34919a))
|
|
3514
|
+
|
|
3515
|
+
### Bug Fixes
|
|
3516
|
+
|
|
3517
|
+
- add handleAlert to Alert component ([bd82de3](https://github.com/themesberg/flowbite-svelte/commit/bd82de36be389de61d4c11348d081e9637dd51b1))
|
|
3518
|
+
- demo page bugs ([542b88a](https://github.com/themesberg/flowbite-svelte/commit/542b88a386fdc34acf904b589215441e65b8fb69))
|
|
3519
|
+
- demo page text dark mode, dropdown error ([fa46244](https://github.com/themesberg/flowbite-svelte/commit/fa46244d3871bdc5a9cd5bed0f4a3e8b0fc6d3fd))
|
|
3520
|
+
|
|
3521
|
+
### [0.15.22](https://github.com/themesberg/flowbite-svelte/compare/v0.15.21...v0.15.22) (2022-05-10)
|
|
3522
|
+
|
|
3523
|
+
### [0.15.21](https://github.com/themesberg/flowbite-svelte/compare/v0.15.20...v0.15.21) (2022-05-10)
|
|
3524
|
+
|
|
3525
|
+
### Bug Fixes
|
|
3526
|
+
|
|
3527
|
+
- add right round corner to FullWidthTabs ([adaf72f](https://github.com/themesberg/flowbite-svelte/commit/adaf72fd01499ec8e73cdac1cf1b50054a2d8ead))
|
|
3528
|
+
|
|
3529
|
+
### [0.15.20](https://github.com/themesberg/flowbite-svelte/compare/v0.15.19...v0.15.20) (2022-05-10)
|
|
3530
|
+
|
|
3531
|
+
### Features
|
|
3532
|
+
|
|
3533
|
+
- add always open, color, flush, and arrow style to Accordion component ([e435bb6](https://github.com/themesberg/flowbite-svelte/commit/e435bb6cb29cbc778409379484a996a9d8fad76b))
|
|
3534
|
+
|
|
3535
|
+
### [0.15.19](https://github.com/themesberg/flowbite-svelte/compare/v0.15.18...v0.15.19) (2022-05-10)
|
|
3536
|
+
|
|
3537
|
+
### Bug Fixes
|
|
3538
|
+
|
|
3539
|
+
- add SidebarItem to Sidebar component ([a3a9654](https://github.com/themesberg/flowbite-svelte/commit/a3a965498817449cc90bdb20d9babe4f000e4466))
|
|
3540
|
+
|
|
3541
|
+
### [0.15.18](https://github.com/themesberg/flowbite-svelte/compare/v0.15.17...v0.15.18) (2022-05-10)
|
|
3542
|
+
|
|
3543
|
+
### [0.15.17](https://github.com/themesberg/flowbite-svelte/compare/v0.15.16...v0.15.17) (2022-05-09)
|
|
3544
|
+
|
|
3545
|
+
### Bug Fixes
|
|
3546
|
+
|
|
3547
|
+
- remove svelte-collapse from Accordion component ([7b8a642](https://github.com/themesberg/flowbite-svelte/commit/7b8a642284947c7b8c6bbabecad2ddb2cc1f3d04))
|
|
3548
|
+
- update svelte-sidebar-menu to 0.8.4 ([3b07355](https://github.com/themesberg/flowbite-svelte/commit/3b073553c392f4adb47254beb49769d4e150eaa4))
|
|
3549
|
+
|
|
3550
|
+
### [0.15.16](https://github.com/themesberg/flowbite-svelte/compare/v0.15.15...v0.15.16) (2022-05-09)
|
|
3551
|
+
|
|
3552
|
+
### Bug Fixes
|
|
3553
|
+
|
|
3554
|
+
- remove \_\_layout from pages dir ([7224e31](https://github.com/themesberg/flowbite-svelte/commit/7224e31b66009bd6fcf207e8da1f69ccec159728))
|
|
3555
|
+
- remove rel=external from \_\_layout since it doesn't show the sidemenu ([a0cee08](https://github.com/themesberg/flowbite-svelte/commit/a0cee08e3312a66bdc1a4e070ca45abb0fdc7a84))
|
|
3556
|
+
- update svelte-sidebar-menu ([59b37b5](https://github.com/themesberg/flowbite-svelte/commit/59b37b5a8f3bea06ecd8b8fdf5cc5ac5967dd149))
|
|
3557
|
+
- update svelte-sidebar-menu and \_\_layout ([9314f7a](https://github.com/themesberg/flowbite-svelte/commit/9314f7ac55204505f4cffe2e166b36c474a92985))
|
|
3558
|
+
|
|
3559
|
+
### [0.15.15](https://github.com/themesberg/flowbite-svelte/compare/v0.15.14...v0.15.15) (2022-05-07)
|
|
3560
|
+
|
|
3561
|
+
### Bug Fixes
|
|
3562
|
+
|
|
3563
|
+
- update svelte-sidebar-menu ([f6fb17f](https://github.com/themesberg/flowbite-svelte/commit/f6fb17f3ea37ea0fd0a489dc3e167849d372e367))
|
|
3564
|
+
|
|
3565
|
+
### [0.15.14](https://github.com/themesberg/flowbite-svelte/compare/v0.15.13...v0.15.14) (2022-05-06)
|
|
3566
|
+
|
|
3567
|
+
### Bug Fixes
|
|
3568
|
+
|
|
3569
|
+
- change width limit to >=1024 in Responsive component ([e95c10f](https://github.com/themesberg/flowbite-svelte/commit/e95c10f59422b18408a73c7780767371420cb80e))
|
|
3570
|
+
- move from @codewithshin/svelte-sidebar to svelte-sidebar-menu ([4584351](https://github.com/themesberg/flowbite-svelte/commit/45843519c11eda6de199fc213374d0d293432255))
|
|
3571
|
+
- move Responsive component from layout to all pages ([381ee20](https://github.com/themesberg/flowbite-svelte/commit/381ee20922335f0c535c06c21a107ebc38849693))
|
|
3572
|
+
- rename index.js to index.ts ([216db5a](https://github.com/themesberg/flowbite-svelte/commit/216db5a42abff31b85644daacd441355da7805b8))
|
|
3573
|
+
- update checkbox page ([aa45560](https://github.com/themesberg/flowbite-svelte/commit/aa455604516ef6a4b73193d4898f7f2a5365baca))
|
|
3574
|
+
- use svelte-sidebar Responsive for all layouts ([dc9ed0d](https://github.com/themesberg/flowbite-svelte/commit/dc9ed0dbd7b99cbdc199f222dc6e68c4dd1a317f))
|
|
3575
|
+
|
|
3576
|
+
### [0.15.13](https://github.com/themesberg/flowbite-svelte/compare/v0.15.12...v0.15.13) (2022-05-05)
|
|
3577
|
+
|
|
3578
|
+
### Features
|
|
3579
|
+
|
|
3580
|
+
- add Checkbox, CheckboxInline, and checkbox page ([baab944](https://github.com/themesberg/flowbite-svelte/commit/baab944e588645bb2fbe751fd5a2beb00b8f6e77))
|
|
3581
|
+
|
|
3582
|
+
### Bug Fixes
|
|
3583
|
+
|
|
3584
|
+
- update RadioItem props ([fd2f9a0](https://github.com/themesberg/flowbite-svelte/commit/fd2f9a0c4b3854c3a644710a4cb1df238e1a6af2))
|
|
3585
|
+
|
|
3586
|
+
### [0.15.12](https://github.com/themesberg/flowbite-svelte/compare/v0.15.11...v0.15.12) (2022-05-05)
|
|
3587
|
+
|
|
3588
|
+
### Features
|
|
3589
|
+
|
|
3590
|
+
- add RadioItem and RadioInline for colors, inline, helper text ([9fc2812](https://github.com/themesberg/flowbite-svelte/commit/9fc281268f8008023e5a8d501893b8761ba8a5ef))
|
|
3591
|
+
|
|
3592
|
+
### [0.15.11](https://github.com/themesberg/flowbite-svelte/compare/v0.15.10...v0.15.11) (2022-05-03)
|
|
3593
|
+
|
|
3594
|
+
### Features
|
|
3595
|
+
|
|
3596
|
+
- add Search component ([c9874ad](https://github.com/themesberg/flowbite-svelte/commit/c9874ada31fbf20c74a882ee6392e9a7cc8ecc36))
|
|
3597
|
+
|
|
3598
|
+
### [0.15.10](https://github.com/themesberg/flowbite-svelte/compare/v0.15.9...v0.15.10) (2022-05-03)
|
|
3599
|
+
|
|
3600
|
+
### Features
|
|
3601
|
+
|
|
3602
|
+
- add radio label with a link to radio form ([2c3fe6f](https://github.com/themesberg/flowbite-svelte/commit/2c3fe6f9b24a7364a61fc534163c87a157afff12))
|
|
3603
|
+
|
|
3604
|
+
### Bug Fixes
|
|
3605
|
+
|
|
3606
|
+
- add Input to form index ([00ec469](https://github.com/themesberg/flowbite-svelte/commit/00ec46911c2748fb9224cf91ae68b3dca1c02dd7))
|
|
3607
|
+
- position update for dropdown and imgdropdown components ([1aef255](https://github.com/themesberg/flowbite-svelte/commit/1aef2559e187458c89f4ad40acbbc8c94719b7ae))
|
|
3608
|
+
|
|
3609
|
+
### [0.15.9](https://github.com/themesberg/flowbite-svelte/compare/v0.15.8...v0.15.9) (2022-04-30)
|
|
3610
|
+
|
|
3611
|
+
### Features
|
|
3612
|
+
|
|
3613
|
+
- add color and size to Toggle component ([6595bb3](https://github.com/themesberg/flowbite-svelte/commit/6595bb38d95ae42862d134fee979ae97b66ab911))
|
|
3614
|
+
|
|
3615
|
+
### [0.15.8](https://github.com/themesberg/flowbite-svelte/compare/v0.15.7...v0.15.8) (2022-04-29)
|
|
3616
|
+
|
|
3617
|
+
### Bug Fixes
|
|
3618
|
+
|
|
3619
|
+
- update for lighthouse ([e81850d](https://github.com/themesberg/flowbite-svelte/commit/e81850db1d00851f2f8b3a1320ef7658f0654674))
|
|
3620
|
+
- update links, flowbite svelte link, sitemap links, white for dark mode ([024b079](https://github.com/themesberg/flowbite-svelte/commit/024b079c161678f2a683736a97d4431f8d8a5279))
|
|
3621
|
+
|
|
3622
|
+
### [0.15.7](https://github.com/themesberg/flowbite-svelte/compare/v0.15.6...v0.15.7) (2022-04-28)
|
|
3623
|
+
|
|
3624
|
+
### Bug Fixes
|
|
3625
|
+
|
|
3626
|
+
- add 32997restProps to Iconinput ([34c8ad5](https://github.com/themesberg/flowbite-svelte/commit/34c8ad5dc0ca6c1ce39c6281c185274fd0f49ca7))
|
|
3627
|
+
|
|
3628
|
+
### [0.15.7](https://github.com/themesberg/flowbite-svelte/compare/v0.15.6...v0.15.7) (2022-04-28)
|
|
3629
|
+
|
|
3630
|
+
### Features
|
|
3631
|
+
|
|
3632
|
+
- The build process now auto generates component props on build
|
|
3633
|
+
|
|
3634
|
+
### Changed
|
|
3635
|
+
|
|
3636
|
+
- The 'name' attribute on all buttons is now replaced with the more flexible <slot> pattern. As a consequence the SpinnerButton component has been removed.
|
|
3637
|
+
- Added more button use cases in the documentation and merged button/setup and button/default into one
|
|
3638
|
+
- Implemented button disable states with different styles and pointer exclusion
|
|
3639
|
+
- All buttons now implement 'items-center inline-flex' by default
|
|
3640
|
+
- Button can now be futher styled using the incremental 'class' attribute
|
|
3641
|
+
|
|
3642
|
+
### Bug Fixes
|
|
3643
|
+
|
|
3644
|
+
- button light theme had a color mismatch
|
|
3645
|
+
|
|
3646
|
+
### [0.15.6](https://github.com/themesberg/flowbite-svelte/compare/v0.15.5...v0.15.6) (2022-04-27)
|
|
3647
|
+
|
|
3648
|
+
### Features
|
|
3649
|
+
|
|
3650
|
+
- add iconColor to sidebar and sidebardropdown components ([9b239ba](https://github.com/themesberg/flowbite-svelte/commit/9b239bacd455436c9ab056a730574d3d3404e517))
|
|
3651
|
+
|
|
3652
|
+
### [0.15.5](https://github.com/themesberg/flowbite-svelte/compare/v0.15.4...v0.15.5) (2022-04-27)
|
|
3653
|
+
|
|
3654
|
+
### Features
|
|
3655
|
+
|
|
3656
|
+
- add custom slide controllers to carousel ([8a2a329](https://github.com/themesberg/flowbite-svelte/commit/8a2a329da816bd7d5fff357790d584dbce2aec31))
|
|
3657
|
+
|
|
3658
|
+
### Bug Fixes
|
|
3659
|
+
|
|
3660
|
+
- merge conflicts ([0514548](https://github.com/themesberg/flowbite-svelte/commit/0514548ab7d7ca54337434114ac8f2b9239f5e5d))
|
|
3661
|
+
- to original Carousel ([5e979ae](https://github.com/themesberg/flowbite-svelte/commit/5e979ae8b58403cdf91b82b236a8e730f02d9cb1))
|
|
3662
|
+
- to original Carousel ([198270f](https://github.com/themesberg/flowbite-svelte/commit/198270f623e4c0806a59cf3f9f5dd89430ddc0db))
|
|
3663
|
+
- update range page ([edbf37f](https://github.com/themesberg/flowbite-svelte/commit/edbf37f7b2c6ef0109d15bf1e76dcd52bf2b9b05))
|
|
3664
|
+
|
|
3665
|
+
### [0.15.4](https://github.com/themesberg/flowbite-svelte/compare/v0.15.3...v0.15.4) (2022-04-26)
|
|
3666
|
+
|
|
3667
|
+
### [0.15.3](https://github.com/themesberg/flowbite-svelte/compare/v0.15.2...v0.15.3) (2022-04-26)
|
|
3668
|
+
|
|
3669
|
+
### Features
|
|
3670
|
+
|
|
3671
|
+
- add range input ([215439f](https://github.com/themesberg/flowbite-svelte/commit/215439fc529856ecc8c72965cd39d7aff12d3eb7))
|
|
3672
|
+
|
|
3673
|
+
### [0.15.2](https://github.com/themesberg/flowbite-svelte/compare/v0.15.1...v0.15.2) (2022-04-26)
|
|
3674
|
+
|
|
3675
|
+
### Bug Fixes
|
|
3676
|
+
|
|
3677
|
+
- update svelte-simples ([f958721](https://github.com/themesberg/flowbite-svelte/commit/f9587219ff3da038ee76c6d3b8483dfb2dddc856))
|
|
3678
|
+
|
|
3679
|
+
### [0.15.1](https://github.com/themesberg/flowbite-svelte/compare/v0.15.0...v0.15.1) (2022-04-26)
|
|
3680
|
+
|
|
3681
|
+
## [0.15.0](https://github.com/themesberg/flowbite-svelte/compare/v0.14.17...v0.15.0) (2022-04-25)
|
|
3682
|
+
|
|
3683
|
+
### Bug Fixes
|
|
3684
|
+
|
|
3685
|
+
- update props dir files ([e52cfcb](https://github.com/themesberg/flowbite-svelte/commit/e52cfcbba6ce7fae124803f670ba280e95c96e85))
|
|
3686
|
+
|
|
3687
|
+
### [0.14.17](https://github.com/themesberg/flowbite-svelte/compare/v0.14.16...v0.14.17) (2022-04-25)
|
|
3688
|
+
|
|
3689
|
+
### Features
|
|
3690
|
+
|
|
3691
|
+
- update heroicons ([9a96fca](https://github.com/themesberg/flowbite-svelte/commit/9a96fca12b1e3adc61088a56ae2c3d3ad65ceb67))
|
|
3692
|
+
|
|
3693
|
+
### [0.14.16](https://github.com/themesberg/flowbite-svelte/compare/v0.14.15...v0.14.16) (2022-04-24)
|
|
3694
|
+
|
|
3695
|
+
### Features
|
|
3696
|
+
|
|
3697
|
+
- update svelte to 3.47.0 ([2c51f1c](https://github.com/themesberg/flowbite-svelte/commit/2c51f1c21907f7a977249e3dfe7c2fe46dd85553))
|
|
3698
|
+
|
|
3699
|
+
### [0.14.15](https://github.com/themesberg/flowbite-svelte/compare/v0.14.14...v0.14.15) (2022-04-23)
|
|
3700
|
+
|
|
3701
|
+
### Features
|
|
3702
|
+
|
|
3703
|
+
- add loop to carousel components ([0ae0d66](https://github.com/themesberg/flowbite-svelte/commit/0ae0d66aaf74c7b588978ce88ab7c5117ee4a4e2))
|
|
3704
|
+
|
|
3705
|
+
### [0.14.14](https://github.com/themesberg/flowbite-svelte/compare/v0.14.13...v0.14.14) (2022-04-21)
|
|
3706
|
+
|
|
3707
|
+
### Features
|
|
3708
|
+
|
|
3709
|
+
- add Rating, AdvancedRating, and ScoreRating components ([8c91712](https://github.com/themesberg/flowbite-svelte/commit/8c91712d703364948b00c387a2b3f1d42be6159f))
|
|
3710
|
+
|
|
3711
|
+
### [0.14.13](https://github.com/themesberg/flowbite-svelte/compare/v0.14.12...v0.14.13) (2022-04-20)
|
|
3712
|
+
|
|
3713
|
+
### Bug Fixes
|
|
3714
|
+
|
|
3715
|
+
- update index.js by adding .js to all store files ([1b1adcd](https://github.com/themesberg/flowbite-svelte/commit/1b1adcdd11dba6c3f37507f91f17795a9f605e25))
|
|
3716
|
+
|
|
3717
|
+
### [0.14.12](https://github.com/themesberg/flowbite-svelte/compare/v0.14.11...v0.14.12) (2022-04-19)
|
|
3718
|
+
|
|
3719
|
+
### Bug Fixes
|
|
3720
|
+
|
|
3721
|
+
- update tabStores import link ([b856b9f](https://github.com/themesberg/flowbite-svelte/commit/b856b9f7ab7932b7e3f6bf5e181a15bc192d702f))
|
|
3722
|
+
|
|
3723
|
+
### [0.14.11](https://github.com/themesberg/flowbite-svelte/compare/v0.14.10...v0.14.11) (2022-04-19)
|
|
3724
|
+
|
|
3725
|
+
### Bug Fixes
|
|
3726
|
+
|
|
3727
|
+
- change ts to js for tabStore and changed file name to tabStores ([f46efd4](https://github.com/themesberg/flowbite-svelte/commit/f46efd46b64126dcadc331bd57b881dc32a0c13c))
|
|
3728
|
+
|
|
3729
|
+
### [0.14.10](https://github.com/themesberg/flowbite-svelte/compare/v0.14.9...v0.14.10) (2022-04-19)
|
|
3730
|
+
|
|
3731
|
+
### Bug Fixes
|
|
3732
|
+
|
|
3733
|
+
- change ts to js and removed types from modalStores and dropdownStores ([89e88e2](https://github.com/themesberg/flowbite-svelte/commit/89e88e2a53b4a791b608459dd05bafff6f81f2ae))
|
|
3734
|
+
|
|
3735
|
+
### [0.14.9](https://github.com/themesberg/flowbite-svelte/compare/v0.14.8...v0.14.9) (2022-04-19)
|
|
3736
|
+
|
|
3737
|
+
### Bug Fixes
|
|
3738
|
+
|
|
3739
|
+
- change js to ts and add ts in index.js ([7b3bb20](https://github.com/themesberg/flowbite-svelte/commit/7b3bb206f2db09efc3e6c4d3d85117a1d6946a4e))
|
|
3740
|
+
|
|
3741
|
+
### [0.14.8](https://github.com/themesberg/flowbite-svelte/compare/v0.14.7...v0.14.8) (2022-04-19)
|
|
3742
|
+
|
|
3743
|
+
### Bug Fixes
|
|
3744
|
+
|
|
3745
|
+
- change ts to js for svelte/store files ([625b285](https://github.com/themesberg/flowbite-svelte/commit/625b285c9ed4bc807774c20b9385fe8d8c59c6c5))
|
|
3746
|
+
|
|
3747
|
+
### [0.14.7](https://github.com/themesberg/flowbite-svelte/compare/v0.14.6...v0.14.7) (2022-04-19)
|
|
3748
|
+
|
|
3749
|
+
### Bug Fixes
|
|
3750
|
+
|
|
3751
|
+
- add default as to dropdown and modal Stores ([4fc6ee0](https://github.com/themesberg/flowbite-svelte/commit/4fc6ee0f754f5db15c6345c61b016aff4bc92ac7))
|
|
3752
|
+
- update package.json and clean up lib/index ([e37a45e](https://github.com/themesberg/flowbite-svelte/commit/e37a45e81f07f7f98f4ef7c7b569e203bf63582a))
|
|
3753
|
+
|
|
3754
|
+
### [0.14.6](https://github.com/themesberg/flowbite-svelte/compare/v0.14.5...v0.14.6) (2022-04-19)
|
|
3755
|
+
|
|
3756
|
+
### Bug Fixes
|
|
3757
|
+
|
|
3758
|
+
- export dropdownStores in index.js ([f4b7f6c](https://github.com/themesberg/flowbite-svelte/commit/f4b7f6c6e5fcc118e5279ed61e017477c657fa0b))
|
|
3759
|
+
|
|
3760
|
+
### [0.14.5](https://github.com/themesberg/flowbite-svelte/compare/v0.14.4...v0.14.5) (2022-04-19)
|
|
3761
|
+
|
|
3762
|
+
### Bug Fixes
|
|
3763
|
+
|
|
3764
|
+
- export dropdownIdStore in index.js ([4c897d9](https://github.com/themesberg/flowbite-svelte/commit/4c897d973a88e7d1863e28c49a1675110649252f))
|
|
3765
|
+
- update test for /buttons/setup page ([90daabb](https://github.com/themesberg/flowbite-svelte/commit/90daabbad3d921e5938c990f3099bd268df4aebf))
|
|
3766
|
+
|
|
3767
|
+
### [0.14.4](https://github.com/shinokada/flowbite-svelte/compare/v0.14.3...v0.14.4) (2022-04-19)
|
|
3768
|
+
|
|
3769
|
+
### Features
|
|
3770
|
+
|
|
3771
|
+
- add close on body, add close another dropdown and open own ([addabf8](https://github.com/shinokada/flowbite-svelte/commit/addabf81ccb322e6a482f3baa0687b443914674b))
|
|
3772
|
+
|
|
3773
|
+
### Bug Fixes
|
|
3774
|
+
|
|
3775
|
+
- change btnType to type in Button components ([310d2d8](https://github.com/shinokada/flowbite-svelte/commit/310d2d8f5bd00f3339b59749e79c67d39717f652))
|
|
3776
|
+
- change z-50 to z-10 for DropdownDefault ([71d4640](https://github.com/shinokada/flowbite-svelte/commit/71d4640e613c671e11c972d8ceee3721b6c568cc))
|
|
3777
|
+
- moved @codewithshin/svelte-heroicons to dependencies ([5639d70](https://github.com/shinokada/flowbite-svelte/commit/5639d70d85fc829bc3827f0cbc82e01c56d644a2))
|
|
3778
|
+
- Utterances link update to themesberg ([584da7e](https://github.com/shinokada/flowbite-svelte/commit/584da7ecf8a755814b436998e3567b7ea46c35d9))
|
|
3779
|
+
|
|
3780
|
+
### [0.14.3](https://github.com/shinokada/flowbite-svelte/compare/v0.14.2...v0.14.3) (2022-04-18)
|
|
3781
|
+
|
|
3782
|
+
### Features
|
|
3783
|
+
|
|
3784
|
+
- add slot and {...70121restProps} to all button components ([c98057c](https://github.com/shinokada/flowbite-svelte/commit/c98057cd6ee39053660378dad2b0bdb6970e18da))
|
|
3785
|
+
|
|
3786
|
+
### [0.14.2](https://github.com/shinokada/flowbite-svelte/compare/v0.14.1...v0.14.2) (2022-04-18)
|
|
3787
|
+
|
|
3788
|
+
### [0.14.1](https://github.com/shinokada/flowbite-svelte/compare/v0.13.10...v0.14.1) (2022-04-18)
|
|
3789
|
+
|
|
3790
|
+
### Features
|
|
3791
|
+
|
|
3792
|
+
- add ImgDropdown ([30e9d01](https://github.com/shinokada/flowbite-svelte/commit/30e9d01dcd51559f6771ebaeef57100cf198c452))
|
|
3793
|
+
|
|
3794
|
+
### [0.13.10](https://github.com/shinokada/flowbite-svelte/compare/v0.13.9...v0.13.10) (2022-04-16)
|
|
3795
|
+
|
|
3796
|
+
### Bug Fixes
|
|
3797
|
+
|
|
3798
|
+
- add a space in front of from /index ([32beb0e](https://github.com/shinokada/flowbite-svelte/commit/32beb0e9d3fd7c9c92e34ccc8d690a9f8361c780))
|
|
3799
|
+
- add Breadcrumb to md files ([6ea1d24](https://github.com/shinokada/flowbite-svelte/commit/6ea1d246ef2ed47f87ec764634fad6729700d286))
|
|
3800
|
+
- add btnLabel=Read more ([0730167](https://github.com/shinokada/flowbite-svelte/commit/073016733d50fddc70e78e38520eabf0a912236c))
|
|
3801
|
+
- update h1 for breadcrumb ([8bfef6a](https://github.com/shinokada/flowbite-svelte/commit/8bfef6a93f69dbbf4fb667ba0d177059181b6cdb))
|
|
3802
|
+
- update h1 in index pages ([e4d1a52](https://github.com/shinokada/flowbite-svelte/commit/e4d1a5284c5ce5f1d981e377263f97c2a2d00485))
|
|
3803
|
+
- update layouts for breadcrumb ([1c07955](https://github.com/shinokada/flowbite-svelte/commit/1c07955215fe7a48e3e5573c5c657d59978b5fe4))
|
|
3804
|
+
|
|
3805
|
+
### [0.13.9](https://github.com/shinokada/flowbite-svelte/compare/v0.13.8...v0.13.9) (2022-04-16)
|
|
3806
|
+
|
|
3807
|
+
### Features
|
|
3808
|
+
|
|
3809
|
+
- add focus on load to Input component ([5d0c7fb](https://github.com/shinokada/flowbite-svelte/commit/5d0c7fb7750aac2dc0df2ddd24a7c11cd66404c6))
|
|
3810
|
+
|
|
3811
|
+
### Bug Fixes
|
|
3812
|
+
|
|
3813
|
+
- add 100% to pre tag ([3c8eaf2](https://github.com/shinokada/flowbite-svelte/commit/3c8eaf257697c48121cc79496885e05309b302bc))
|
|
3814
|
+
- Input padding uses p-4, p-2.5 and p-2 depends on the size ([632bd5d](https://github.com/shinokada/flowbite-svelte/commit/632bd5d550b0268a93eec91598b35a854a45c081))
|
|
3815
|
+
- logo ([c28e9f3](https://github.com/shinokada/flowbite-svelte/commit/c28e9f3683140e1bb12f4667e26e5d7805d4ddb9))
|
|
3816
|
+
- moved p-tag and h3 tag css to app.css ([cb3d08e](https://github.com/shinokada/flowbite-svelte/commit/cb3d08edb98d96cadad9975e20488af55f4fa344))
|
|
3817
|
+
- refresh dev environment ([3a1b452](https://github.com/shinokada/flowbite-svelte/commit/3a1b452f925e14b2d159456c8f1f50b2972ae52b))
|
|
3818
|
+
- update carousel page ([27c621b](https://github.com/shinokada/flowbite-svelte/commit/27c621b5f7a97896635ddbc2aa9cccf624275e80))
|
|
3819
|
+
- update main nav. add transition to carousel ([3a9f572](https://github.com/shinokada/flowbite-svelte/commit/3a9f5723af8f54ef58c6902af5599114cc81fb86))
|
|
3820
|
+
|
|
3821
|
+
### [0.13.8](https://github.com/shinokada/flowbite-svelte/compare/v0.13.7...v0.13.8) (2022-04-14)
|
|
3822
|
+
|
|
3823
|
+
### Features
|
|
3824
|
+
|
|
3825
|
+
- add carousel components ([846a99d](https://github.com/shinokada/flowbite-svelte/commit/846a99dde2f45246493fac99790c220da257eefd))
|
|
3826
|
+
|
|
3827
|
+
### [0.13.7](https://github.com/shinokada/flowbite-svelte/compare/v0.13.6...v0.13.7) (2022-04-13)
|
|
3828
|
+
|
|
3829
|
+
### Bug Fixes
|
|
3830
|
+
|
|
3831
|
+
- remove SvelteKit app/stores page and session from Navbar ([09428df](https://github.com/shinokada/flowbite-svelte/commit/09428df9f46b16b07595ed16c08697c61c0099a5))
|
|
3832
|
+
|
|
3833
|
+
### [0.13.6](https://github.com/shinokada/flowbite-svelte/compare/v0.13.5...v0.13.6) (2022-04-13)
|
|
3834
|
+
|
|
3835
|
+
### Bug Fixes
|
|
3836
|
+
|
|
3837
|
+
- create new props files ([0a6fd33](https://github.com/shinokada/flowbite-svelte/commit/0a6fd334321bbedd2eecebb5e4f2456ddb19fd3b))
|
|
3838
|
+
- remove SvelteKit app session and page ([7eaa3db](https://github.com/shinokada/flowbite-svelte/commit/7eaa3dbfc7f0e2fcf5ef6be4045843fc92b354a5))
|
|
3839
|
+
|
|
3840
|
+
### [0.13.5](https://github.com/shinokada/flowbite-svelte/compare/v0.13.4...v0.13.5) (2022-04-12)
|
|
3841
|
+
|
|
3842
|
+
### Features
|
|
3843
|
+
|
|
3844
|
+
- add table search ([72664ee](https://github.com/shinokada/flowbite-svelte/commit/72664eed118587b445f931c57f1def7bf87056f6))
|
|
3845
|
+
- table search on progress ([9cff21d](https://github.com/shinokada/flowbite-svelte/commit/9cff21d7ffbeb351b95601a85abe826323c68f9d))
|
|
3846
|
+
|
|
3847
|
+
### [0.13.4](https://github.com/shinokada/flowbite-svelte/compare/v0.13.2...v0.13.4) (2022-04-12)
|
|
3848
|
+
|
|
3849
|
+
### Bug Fixes
|
|
3850
|
+
|
|
3851
|
+
- add sitemap footer darkmode ([72fe322](https://github.com/shinokada/flowbite-svelte/commit/72fe3227e472187101c12ef89e10ada77624fc25))
|
|
3852
|
+
- enable scrolling in modals (fixes [#23](https://github.com/shinokada/flowbite-svelte/issues/23)) ([8e60319](https://github.com/shinokada/flowbite-svelte/commit/8e603198988a3a03a56414f4e26143bb54ff0c92))
|
|
3853
|
+
- removed prismjs from package.json and layouts ([dd9ad11](https://github.com/shinokada/flowbite-svelte/commit/dd9ad110193e176ad8127f9c556105d3da854b26))
|
|
3854
|
+
- sidebar menu covers screen and it doesn't allow to click any links ([879c886](https://github.com/shinokada/flowbite-svelte/commit/879c886b5134908f1e4e9365c13df9bae372acd0))
|
|
3855
|
+
- update sidebar menu to close after clicking a link ([ae9a36c](https://github.com/shinokada/flowbite-svelte/commit/ae9a36c2d9705c664de91a6870b7603ccffbece2))
|
|
3856
|
+
- update sidebar menu to close it when you click outside of the sidebar ([30c6026](https://github.com/shinokada/flowbite-svelte/commit/30c6026f8f5fec945e97de18585f5665ca6ddbae))
|
|
3857
|
+
|
|
3858
|
+
### [0.12.6](https://github.com/shinokada/flowbite-svelte/compare/v0.12.5...v0.12.6) (2022-04-05)
|