Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 4, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
flowbite-svelte (source) ^0.48.6 -> ^1.0.0 age confidence

Release Notes

themesberg/flowbite-svelte (flowbite-svelte)

v1.30.0

Compare Source

Minor Changes
  • New Features

    Persistent dismissible banners and badges with a Reset button; banner dismissal tracking exposed.

    • Enhancements

    StepIndicator: clickable steps with onStepClick callback.

    • Documentation

    Added example and docs for the persistent dismissible Badge with Reset.

    • Refactor

    Broad reactivity and context updates to improve update timing and SSR stability (no UI changes).

    • Chores

    Dev dependency version bumps.

v1.29.1

Compare Source

Patch Changes
  • fix: add DropdownItem onclick on anchor element

    Dropdown item component updated with explicit onclick attribute handling on anchor elements. Theme definitions modified to enforce full-width, left-aligned layout for dropdown items. Minor end-of-file formatting adjustment to package.json.

v1.29.0

Compare Source

Minor Changes
  • feat: add click navigation to all stepper components

Converted steppers to data-driven, interactive components: added a bindable 1-based current (some allow 0), clickable, showCheckmarkForCompleted, and onStepClick; per-step status computation, checkmark/icon rendering, theme updates, new icons, types adjustments, and many docs/examples added.

v1.28.3

Compare Source

Patch Changes
  • fix: import uiHelpers

v1.28.2

Compare Source

Patch Changes
  • fix: Sidebar

v1.28.1

Compare Source

Patch Changes
  • fix: DatePicker, Dropdown RTL, Button loading spinner

v1.28.0

Compare Source

Minor Changes
  • feat: ToastContainer

v1.27.0

Compare Source

Minor Changes
  • feat: ClipboardManager

v1.26.0

Compare Source

Minor Changes
  • feat: Spinner now supports multiple visual variants: dots, bars, pulse, orbit, plus the existing default

v1.25.0

Compare Source

Minor Changes
  • feat: VirtualMasonry component

v1.24.1

Compare Source

Patch Changes
  • fix: add touch event handler to split-pane components

v1.24.0

Compare Source

Minor Changes
  • feat: ScrollSpy component

v1.23.0

Compare Source

Minor Changes
  • feat: CommandPalette component

v1.22.0

Compare Source

Minor Changes
  • feat: Tour component

v1.21.1

Compare Source

Patch Changes
  • fix: megamenu

v1.21.0

Compare Source

Minor Changes
  • feat: Split pane

v1.20.1

Compare Source

Patch Changes
  • fix: VirtualList and update docs

v1.20.0

Compare Source

Minor Changes
  • feat: kanban board

v1.19.1

Compare Source

Patch Changes
  • fix: cleanups for noUnusedLocals and noUnusedParameters

v1.19.0

Compare Source

Minor Changes
  • feat: VirtualList component

v1.18.2

Compare Source

Patch Changes
  • fix: change both #each blocks from using (item.name) to (item.value) as the key:

    - Line 212 (selected items badges): {#each selectItems as item (item.value)}
    - Line 233 (dropdown items): {#each items as item (item.value)}
    

v1.18.1

Compare Source

Patch Changes

v1.18.0

Compare Source

Minor Changes
  • feat: add onclose support for Dropdown, Banner, and Popper components

v1.17.4

Compare Source

Patch Changes

v1.17.3

Compare Source

Patch Changes
  • fix Reads an optional group context in Select and MultiSelect to enable grouped styling; extends select/multiSelect theme with grouped and size variants and full-width defaults; updates a docs example to use Flowbite Button and ButtonGroup as the dropdown trigger.
    • Context-based grouping src/lib/forms/select/Select.svelte, src/lib/forms/select/MultiSelect.svelte:
      Import and call getContext("group") to read a { size: SizeType } group context; pass grouped: !!group into styling construction (selectCls / multiSelect) to enable grouped variants.
    • Theme variants & sizing src/lib/forms/select/theme.ts:
      Add w-full to base slots; introduce grouped variant (first/last rounding, group container classes); adjust underline vs non-underline rounding rules; add size variants (sm, md, lg) and update multiSelect base/select slot defaults.
    • Docs example markup src/routes/docs-examples/forms/select/Dropdown.svelte:
      Replace native /container with Flowbite Button inside ButtonGroup; add Button and ButtonGroup imports; simplify Dropdown trigger usage and adjust Select markup/classes accordingly.

v1.17.2

Compare Source

Patch Changes
  • fix(Img): add children for enhanded:img

v1.17.1

Compare Source

Patch Changes
  • fix: input field theme (grouped variant) src/lib/forms/input-field/theme.ts
    • Adds h-full to the input class list when grouped: true is used; no control-flow or API changes.

v1.17.0

Compare Source

Minor Changes
  • feat(Modal):
    • Add createCountdown utility function for managing timed modal interactions
    • Support countdown display in modal headers with automatic timer management
    • Add outsideclose prop to control backdrop click behavior during countdown
    • Add count prop to Dialog for ESC key prevention during active countdown
    • Countdown automatically starts when modal opens and resets on close
    • Prevents modal dismissal (ESC key, outside clicks) while countdown is active
  • fix(Input):
    • Changes snippet signature to inputContent(wrapped: boolean). Replaces inputContent() calls with inputContent(true).
    • Refactors grouped variant to separate base and input classes. For false: { base: "rounded-lg", input: "rounded-lg" }. For true: { base: "first:rounded-s-lg last:rounded-e-lg not-first:-ms-px group", input: "group-first:rounded-s-lg group-last:rounded-e-lg group-not-first:-ms-px" }.

v1.16.0

Compare Source

Minor Changes
  • feat(modal): add countdown timer

v1.15.0

Compare Source

Minor Changes
  • feat(Timeline): add color depends on state

v1.14.6

Compare Source

Patch Changes
  • fix: change to explicit imports

v1.14.5

Compare Source

Patch Changes
  • fix: change to explicit import

v1.14.4

Compare Source

Patch Changes
  • fix: change import from "." to import from "./theme"

v1.14.3

Compare Source

Patch Changes
  • fix: Converted type imports to use import type {...};

v1.14.2

Compare Source

Patch Changes
  • fix: Converted ThemeConfig to a type-only import (import type { ThemeConfig } from "$lib";). No changes to exports or runtime logic.

v1.14.1

Compare Source

Patch Changes
  • Added dependency: esm-env ^1.2.2
  • Import DEV from esm-env and replace local/dev-mode check with the imported DEV constant in warnThemeDeprecation. Removed previous inline/dev comment and related local dev logic.

v1.14.0

Compare Source

Minor Changes
  • feat(Tabs): add selected and key

v1.13.16

Compare Source

Patch Changes
  • fix: exports types if $lib/types.ts exists

v1.13.15

Compare Source

Patch Changes
  • fix(Tags): disabled

v1.13.14

Compare Source

Patch Changes
  • docs: disabled example to file-input
  • fix: add disabled style to FloatingLabelInput, PhoneInput, SearchInput, Textarea

v1.13.13

Compare Source

Patch Changes
  • fix(Tags): add top-level disabled to CloseButton and input feild

v1.13.12

Compare Source

Patch Changes
  • fix(NavLi): add handleClick to button

v1.13.11

Compare Source

Patch Changes
  • fix(tabs): active class
  • fix(tags): disabled class to input
  • fix(button-toggle): disabled class
  • fix: #​1754 #​1765

v1.13.10

Compare Source

Patch Changes
  • fix(tabs): #​1762 can use classes.active

v1.13.9

Compare Source

Patch Changes

v1.13.8

Compare Source

Patch Changes
    • 377a04b feat: add inputProps to Tag and Datepicker
    • 69ae0c3 feat: add classes.bg to HR

v1.13.7

Compare Source

Patch Changes
  • fix: Removed no-op Object.hasOwn(context, "value"); from setSelected; no functional or API changes.

v1.13.6

Compare Source

Patch Changes
  • fix: infinite loop while using useSingleSelection for tabs

v1.13.5

Compare Source

Patch Changes
    • Single-selection guard: src/lib/utils/singleselection.svelte.js

      Added Object.hasOwn(context, 'value') check in setSelected; skips mutation when context lacks an own value property.

    • Docs example initialization: src/routes/docs-examples/components/accordion/MultipleMode.svelte

      Added open attribute to two AccordionItem components to render them initially expanded.

v1.13.4

Compare Source

Patch Changes

v1.13.3

Compare Source

Patch Changes
  • d6ab528 fix: #​1732
  • 5fed4f2 docs: progress, rating, sidebar, skeleton, and speed-dial pages
  • c6f91fb chore: cleanup
  • 9d00653 docs: mega-menu, modal, navbar, pagination, popover pages
  • bcc4308 fix 1741 (#​1742)
  • 5fde73e docs: forms, gallery, indicators, kbd, and list-group pages
  • 8a2f300 docs: darkmode, datepicker, device-mockups, drawer, dropdown, footer, and forms
  • a1e5155 chore: cleanup
  • d648b1d docs: carousel and clipboard
  • ec8f826 docs: update banner, bottom-navigation, breadcrumb, button-group, buttons and card pages
  • 497c9bd docs: #​1738 change @​include to #include
  • 1fe58b0 fix: drawer - remove blink before transition start (#​1740)
  • e58e0b4 docs: checkbox fix
  • 2b84995 fix: add *.md to prettierignore
  • 6ae449c tests: remove redirect

v1.13.2

Compare Source

Patch Changes

v1.13.1

Compare Source

Patch Changes
  • fix: exports types if $lib/types.ts exists

v1.13.0

Compare Source

Minor Changes
  • Dialog click handling src/lib/dialog/Dialog.svelte
    Guards outside-close/backdrop logic with ev.target === dlg; computes bounding rect / clickedInContent only when target is the dialog/backdrop; no public API changes.
  • Drawer core updates src/lib/drawer/Drawer.svelte
    Adds modal and offset props; makes dismissable optional; dynamic modal/shifted handling; exposes placement via context; introduces reactive x/y and transition_params, init(node) hook, onintrostart/onoutrostart handlers; secondary Dialog rendering when offset set.
  • Drawer handle component src/lib/drawer/DrawerHandle.svelte
    New DrawerHandle button component with theming, placement context lookup, forwards props/aria, renders children and an inner handle span.
  • Exports & theme barrel src/lib/drawer/index.ts, src/lib/theme/themes.ts
    Adds DrawerHandle export and re-exports drawerhandle from drawer theme; expands public theme barrel to include drawerhandle.
  • Drawer theme src/lib/drawer/theme.ts
    Adds border/transform classes to drawer base, introduces shifted variant and compoundVariants mapping placement→translate classes, refines modal handling, and adds drawerhandle tv plus DrawerHandleVariants type.
  • Types src/lib/types.ts
    Adds DrawerHandleProps (extends DrawerHandleVariants & HTMLButtonAttributes); updates DrawerProps to omit `"hidden"
  • Docs src/routes/docs/components/drawer.md
    Collapses separate placement examples into a single interactive demo, documents offset and DrawerHandle in a new “Swipeable edge” section, tightens layout and clarifies backdrop/modal notes.

v1.12.6

Compare Source

Patch Changes
  • fix: SidebarButton update

v1.12.5

Compare Source

Patch Changes
  • fix: Avatar theming src/lib/avatar/theme.ts

Changed stacked variant from "border-2 -ms-4 ..." to "border-2 not-first:-ms-4 ..." so the negative margin applies only to non-first avatars.

  • fix: Drawer implementation & types src/lib/drawer/Drawer.svelte, src/lib/drawer/theme.ts

Drawer.svelte no longer destructures classes and now forwards it via ...restProps; DrawerVariants type expanded to include Classes.

  • fix: Modal prop forwarding src/lib/modal/Modal.svelte

Removed outsideclose prop from Modal public API and explicitly passes {classes} to inner Dialog before spreading restProps.

  • fix: Dialog logic src/lib/dialog/Dialog.svelte

Removed commented conditional; active outside-close logic uses outsideclose && !clickedInContent to cancel on outside-content clicks.

  • docs (Drawer example) src/routes/docs/components/drawer.md

Reworked Drawer example to form-mode using Flowbite Svelte Label, Input, Textarea, Avatar, etc.; adds form and classes.form usage and updates imports and structure.

v1.12.4

Compare Source

Patch Changes

v1.12.3

Compare Source

Patch Changes
  • fix: change sveltekit browser from $app/environment with typeof window !== "undefined"

v1.12.2

Compare Source

Patch Changes
  • feat(utils): add responsive breakpoint utilities

    Add useMediaQuery, useBreakpoints, and useCurrentBreakpoint hooks with TypeScript support and comprehensive documentation for controlling component behavior based on screen size.

v1.12.1

Compare Source

Patch Changes
  • docs – Drawer examples
    src/routes/docs/components/drawer.md Removed CloseButton from imports and removed all CloseButton elements in example markup; updated backdrop guidance to recommend Tailwind backdrop classes; clarified modal vs non-modal wording and fixed minor typos.
  • docs – Timepicker drawer example
    src/routes/docs/forms/timepicker.md Removed CloseButton from the flowbite-svelte import in the Drawer-with-timepicker example; example markup otherwise unchanged.
  • github: pull_request_template update

v1.12.0

Compare Source

Minor Changes
  • Dialog component & exports — src/lib/dialog/Dialog.svelte, src/lib/dialog/index.ts, src/lib/dialog/theme.ts, src/lib/index.ts
    New Dialog.svelte (TypeScript) implementing native integration (form/modal modes), lifecycle callbacks (onaction / oncancel / onsubmit / ontoggle), focus trap, dismissal, transitions, and styling via dialog() theme. Re-exports added and surfaced in library index.

  • Drawer refactor & theme — src/lib/drawer/Drawer.svelte, src/lib/drawer/theme.ts
    Drawer now renders via Dialog (bind:open); public API changed from hidden / backdrop / activateClickOutside / transitionType → open / outsideclose / transition. Theme extends dialog and simplifies slots, placement, and backdrop handling.

  • Modal refactor & theme — src/lib/modal/Modal.svelte, src/lib/modal/theme.ts
    Modal delegates rendering/lifecycle to Dialog (bind:open), removes native dialog handlers and legacy props, adopts transitionParams. Modal theme extends dialog and updates slots/placements.

  • Types centralization — src/lib/types.ts
    Adds DialogProps and DialogVariants. Refactors DrawerProps and ModalProps to extend/reuse dialog typings and reflect the new prop surface (transitionParams, modal, outsideclose, etc.).

  • Examples & docs — Drawer migration — src/routes/api-check/components/drawer/examples/, src/routes/examples/drawer/.svelte, src/routes/blocks/, src/routes/docs/, src/routes/builder/drawer/+page.svelte
    Examples/docs updated: rename hiddenX → openX, bind:hidden → bind:open, replace backdrop / activateClickOutside with modal / outsideclose or CSS backdrop classes, remove some CloseButton / header wrappers, and update generated code snippets.

  • Specific page & example updates — src/routes/admin-dashboard/(sidebar)/crud/products/+page.svelte, src/routes/builder/modal/+page.svelte, src/routes/api-check/forms/timepicker.svelte, various drawer example pages
    Replace hidden → open bindings; update modal usage from params → transitionParams; align triggers and handlers to new open semantics and new Drawer props (outsideclose / modal).

v1.11.8

Compare Source

Patch Changes
  • Carousel duration state sync
    src/lib/carousel/Carousel.svelte
    canChangeSlide uses _state.slideDuration; added reactive effect to sync prop slideDuration to internal _state.slideDuration; initial mount still derives from prop.
  • Type rename: State → CarouselState
    src/lib/carousel/CarouselIndicators.svelte, src/lib/carousel/Controls.svelte Updated imports and getContext generics to use CarouselState instead of State; no runtime logic changes.

v1.11.6

Compare Source

Patch Changes
  • fix: carousel update

v1.11.5

Compare Source

Patch Changes
  • fix: NavLi close after click

v1.11.4

Compare Source

Patch Changes
  • feat: breakpoint for nav components

v1.11.3

Compare Source

Patch Changes

v1.11.2

Compare Source

Patch Changes
  • fix: warnThemeDeprecation component names

v1.11.1

Compare Source

Patch Changes
  • fix: Listgroup
    fix: Tooltip style

v1.11.0

Compare Source

Minor Changes
  • New Features
    Badges, alerts, banners, modals, toasts, drawers, and form inputs now support a standardized dismiss (close/clear) behavior using event-driven dismissal.
    • Improvements
      Close buttons across components no longer have direct click handlers but rely on a shared dismissable context, enabling consistent dismissal behavior and external event handling.
      Dismissal logic supports event cancellation and bubbling, improving flexibility and predictability of user interactions.
      Form components’ clear buttons adopt the dismissable context for clearing inputs.
      Documentation examples updated to use new styling prop conventions and remove deprecated inline close handlers.
    • Chores
      Introduced a shared dismissable context mechanism to unify dismissal behavior across multiple UI components.

v1.10.22

Compare Source

Patch Changes
  • fix(carousel): reverse swipe direction to match drag gesture

    Update swipe logic so dragging left-to-right navigates to the previous
    slide, and right-to-left to the next slide. Adjust transition direction
    for consistent user experience.

v1.10.21

Compare Source

Patch Changes
  • feat(modal): full-screen modal

v1.10.20

Compare Source

Patch Changes
  • fix(package): peerDependencies svelte 5.29 for @​attach

  • fix(classes): update classes for all components

v1.10.19

Compare Source

Patch Changes
  • feat(Button): add loading prop with built-in spinner and auto-disable
    • Introduced loading?: boolean prop to Button.svelte
    • When loading is true, the button shows a spinner and becomes disabled
    • Spinner is implemented inline without importing Spinner.svelte
    • Improved accessibility by preventing interaction during loading
    • Added reactive usage examples and updated documentation

v1.10.18

Compare Source

Patch Changes
  • fix(Select): show placeholder after clear and trigger change event
    • Fix placeholder not appearing after clearing select
    • Dispatch change event when clearing programmatically
    • Add onClear prop with better naming (keep clearableOnClick for compatibility)

v1.10.17

Compare Source

Patch Changes
  • fix(Tags): default allowNewTags to true to allow tag creation without explicit config

v1.10.16

Compare Source

Patch Changes
  • refactor(Tags): improve dropdown logic and UX
    • fix: #​1690
    • Integrated @​floating-ui for dropdown positioning with autoUpdate
    • Replaced inline
        dropdown with dynamically positioned element
      • Removed hardcoded dropdown markup and positioning
      • Used $effect and onDestroy for floating cleanup
      • Replaced $state(null) with let + non-null assertions for DOM refs
      • Improved reactivity by avoiding mutation warnings

    v1.10.15

    Compare Source

    Patch Changes
    • fix(tags): put back available tags

    v1.10.14

    Compare Source

    Patch Changes
    • fix(Tags): new props, unique, availableTags={available}, showHelper, showAvailableTags, and allowNewTags.

    • feat(classes): upto Select

    v1.10.13

    Compare Source

    Patch Changes
    • fix: remove sveltekit dev $app/environment for svelte project
      feat: classes update

    v1.10.12

    Compare Source

    Patch Changes
    • fix: remove env value from warnThemeDeprecation

    v1.10.11

    Compare Source

    Patch Changes
    • fix(datepicker): normalize range input when from > to

    v1.10.10

    Compare Source

    Patch Changes
    • fix(datepicker): Add a guard to avoid re-calling handleDaySelect() if the range is already complete.

      problem: Pressing the return/enter key after selecting datepicker range by using mouse doesn't close the calender and selecting today's date.

    v1.10.9

    Compare Source

    Patch Changes
    • fix(datepicker): the getWeekdayNames function aligns with the firstDayOfWeek setting used by date-fns in startOfWeek.

    v1.10.8

    Compare Source

    Patch Changes

    fix: #​1684

    feat(datepicker): Allow translationLocale prop to be reactive

    Ensures the calendar's locale updates correctly when translationLocale (or locale when translationLocale isn't explicitly set) changes. This provides independent control over date formatting and calendar translations.

    v1.10.7

    Compare Source

    Patch Changes
    • fix(dropzone): #​1586
    • Classes (#​1681)
      • classes: Accordion, Badge, Banner
      • types corrections
      • BottomNav
      • coderabbit suggested fixes
      • BottomNav modern context handling

    v1.10.6

    Compare Source

    Patch Changes
    • fix: place theme before className

    v1.10.5

    Compare Source

    Patch Changes

    v1.10.4

    Compare Source

    Patch Changes
    • feat(sidebar, drawer): #​1664 Fix content visibility and breakpoint conflicts (10d9aef)

      Resolves an issue where Sidebar content disappeared on mobile when nested within Drawer. The sidebar tv variant's isOpen: false setting was applying display: hidden, conflicting with Drawer's visibility control.

      Changes:

      theme.ts: Removed isOpen variant from sidebar tv definition.

      Sidebar.svelte: Simplified rendering logic when disableBreakpoints is true, ensuring content always renders.

      Usage: Ensures isOpen={!isDrawerHidden} is passed to Sidebar to sync with Drawer's state.

      The Drawer now solely controls Sidebar's visibility, eliminating display conflicts.

    • fix(sidebar): Resolve dynamic resize responsiveness (c2a5445)

      Corrects an issue where the standalone Sidebar failed to show/hide responsively on dynamic screen size changes (e.g., dev tools). Modified Sidebar.svelte to ensure the element is always in the DOM and its display is controlled by Tailwind's responsive classes via tailwind-variants in theme.ts.

    • fix: #​1678, #​1679

    v1.10.3

    Compare Source

    Patch Changes
    • fix: #​1677 Handle nullish values in Input component's defaultHandleInput

      Ensures robust handling of value in defaultHandleInput by safely converting it to a string, preventing TypeError when input is cleared or null/undefined.

    v1.10.2

    Compare Source

    Patch Changes
    • fix(carousel): reverse swipe direction to match drag gesture

      Update swipe logic so dragging left-to-right navigates to the previous
      slide, and right-to-left to the next slide. Adjust transition direction
      for consistent user experience.

    v1.10.1

    Compare Source

    Patch Changes
    • feat(Button): add loading prop with built-in spinner and auto-disable
      • Introduced loading?: boolean prop to Button.svelte
      • When loading is true, the button shows a spinner and becomes disabled
      • Spinner is implemented inline without importing Spinner.svelte
      • Improved accessibility by preventing interaction during loading
      • Added reactive usage examples and updated documentation

    v1.10.0

    Compare Source

    Minor Changes
    • feat: add ThemeProvider

    v1.9.0

    Compare Source

    Minor Changes
    • feat: Modal updates
      • encourages usage of dialog/form structure
      • introduces onaction handler
      • keeps back compatibility: from is optional, autoclose still exists
    • feat: Datepicker updates
      • new dependency date-fns
      • functions update using date-fns
    • fix: #​1660
    • fix: #​1659

    v1.8.6

    Compare Source

    Patch Changes
    • feat: add elementRef prop to Datepicker

      Enables programmatic control of the input element (focus, select, blur).
      Consistent with FloatingLabelInput API.

    v1.8.5

    Compare Source

    Patch Changes
    • feat: add translationLocale prop to separate date formatting from UI language

      Allows using different locales for date formatting vs UI text translation.
      Maintains backward compatibility - translationLocale defaults to locale.

      Example: locale="de-DE" translationLocale="en-US" gives German date format with English text.

    v1.8.4

    Compare Source

    Patch Changes
    • fix: support for onsubmit when there's a form inside
    • fix: twMerge removal
    • chore: code clean up
    • docs: encourage to use dialog actions instead of autoclose that gives no info about which button was pressed
    • docs: onsubmit and onclose example

    v1.8.3

    Compare Source

    Patch Changes
    • feat: datepicker: add availableFrom and availableTo

    v1.8.2

    Compare Source

    Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel
Copy link

vercel bot commented May 4, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Updated (UTC)
gradevue Error Error Dec 6, 2025 8:53am

@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented May 4, 2025

Deploying gradevue with  Cloudflare Pages  Cloudflare Pages

Latest commit: e4e5856
Status:🚫  Build failed.

View logs

@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 5d1c43d to b492524 Compare July 21, 2025 22:58
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from b492524 to c4fd113 Compare July 22, 2025 14:05
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from c4fd113 to 609dee9 Compare July 22, 2025 19:35
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 609dee9 to 9ce914c Compare July 22, 2025 23:23
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 9ce914c to 9b1e9bc Compare July 25, 2025 07:00
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 9b1e9bc to a5eceeb Compare July 29, 2025 06:13
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from a5eceeb to efd2d14 Compare July 30, 2025 16:47
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from efd2d14 to a37db1d Compare August 1, 2025 16:09
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from a37db1d to ff60367 Compare August 2, 2025 13:03
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from ff60367 to e285391 Compare August 3, 2025 09:57
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from e285391 to bc37c0f Compare August 4, 2025 21:22
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from bc37c0f to cd2ac8e Compare August 7, 2025 04:59
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from cd2ac8e to 9133daa Compare August 8, 2025 09:05
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 9133daa to db420b6 Compare August 10, 2025 20:40
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 2c5bd81 to 770f592 Compare November 2, 2025 21:29
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 770f592 to 8aa8614 Compare November 3, 2025 14:11
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 8aa8614 to 26c072b Compare November 5, 2025 07:46
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 26c072b to a59dfeb Compare November 7, 2025 05:54
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from a59dfeb to 2eb3f72 Compare November 7, 2025 10:07
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 2eb3f72 to b114ada Compare November 7, 2025 23:38
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from b114ada to fce8c67 Compare November 8, 2025 06:15
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from fce8c67 to a6f95f4 Compare November 11, 2025 00:44
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from a6f95f4 to 7062f74 Compare November 11, 2025 08:51
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 7062f74 to 235d1f0 Compare November 12, 2025 14:48
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 235d1f0 to 9dbeed2 Compare November 18, 2025 03:38
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 9dbeed2 to 5956633 Compare November 27, 2025 09:15
@renovate renovate bot force-pushed the renovate/flowbite-svelte-1.x branch from 5956633 to 0f397c6 Compare November 30, 2025 20:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant