Skip to content

Bump flowbite-vue from 0.2.3 to 0.3.0 - #61

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/flowbite-vue-0.3.0
Open

Bump flowbite-vue from 0.2.3 to 0.3.0#61
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/flowbite-vue-0.3.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown
Contributor

Bumps flowbite-vue from 0.2.3 to 0.3.0.

Release notes

Sourced from flowbite-vue's releases.

v0.3.0

What's Changed

Full Changelog: themesberg/flowbite-vue@v0.2.3...v0.3.0

Changelog

Sourced from flowbite-vue's changelog.

0.3.0 - 2026-07-12

⚠ Breaking Changes

  • Native attribute passthrough target changed on FwbInput (#433), FwbTextarea (#436), FwbFileInput (#437), FwbSelect (#438), FwbAutocomplete (#439), FwbRange (#440), FwbToggle (#441), FwbCheckbox (#442), and FwbRadio (#443). Each now sets inheritAttrs: false and forwards extra attributes to the underlying native element (<input>, <select>, <textarea>, etc.) instead of the root wrapper element. This is the correct behavior, but apps relying on attributes landing on the wrapper (e.g. for CSS targeting) are affected.
  • FwbTabs: the click:pane event was renamed to click:tab (#451)
  • FwbTextarea: the placeholder prop was removed (no longer declared — pass it as a native attribute instead, which forwards identically via attr passthrough) and the custom prop was removed (the new default layout replaces the old custom: true layout; use class/wrapperClass/textareaClass for further customization) (#436)
  • FwbFileInput: the size default changed from 'sm' to 'md', and size="xs" was removed — the type is now 'sm' | 'md' | 'lg' | 'xl' (#437)
  • FwbSelect: the native browser dropdown arrow is now hidden (appearance-none) in favor of the Flowbite chevron icon, rendered via the new chevron slot (#438)
  • FwbRange: the label default changed from 'Range slider' to '' — pass label="Range slider" explicitly to restore the previous rendering (#440)
  • FwbCheckbox: name and value are no longer declared props; they now flow through attribute passthrough instead (same usage, no template changes needed) (#442)
  • FwbProgress: labelPosition/labelProgress renamed to valuePosition/showValue — the old names collided conceptually with the unrelated label prop (the bar's title text, not its value). The color prop now uses the shared ColorVariant type instead of the old ProgressVariant, and no longer accepts alternative, light, or indigo (#457)

Added

  • validationMessage string prop on FwbInput, FwbSelect, FwbTextarea, FwbFileInput, FwbAutocomplete, FwbToggle, FwbRange, FwbCheckbox, and FwbRadioGroup as a plain-string fallback for the validationMessage slot, which keeps priority for rich content (#453)
  • FwbTabs/FwbTab: vertical layout, fullWidth, an icon slot with configurable iconPosition, tabClass/itemClass/itemActiveClass custom classes, keyboard navigation (arrow keys, Home, End), and ARIA roles (tablist/tab/tabpanel) (#451, supersedes #435 — thanks @​darrenthebozz for the original custom-classes idea)
  • FwbBadge: pill, border, and dismissible variants, the last emitting a dismiss event (#450)
  • FwbRadioGroup component for grouped radio validation, shared name, and accessibility wiring (#443)
  • xl size tier, validation states (validationStatus, validationMessage/helper slots), and per-element class props (wrapperClass, labelClass, etc.) added to FwbInput (#433), FwbTextarea (#436), FwbFileInput (#437), FwbSelect (#438), FwbRange (#440), FwbToggle (#441), and FwbCheckbox (#442)
  • FwbAutocomplete: inputClass prop for direct <input> styling (#439)
  • FwbSelect: clearable prop and chevron slot (#438)
  • FwbRange: thumb color customizable via the --fwb-range-thumb-color CSS custom property (#440)
  • FwbFileInput: dropzone mode now supports validationStatus styling (rose/emerald dashed border), aria-invalid/aria-describedby on the hidden input, and renders the validationMessage (slot or prop) and helper slot below the dropzone (#455)
  • FwbProgress: indeterminate prop for an animated, indefinite-length bar when completion isn't known yet; a scoped value slot ({ progress }) to render custom value text (file sizes, time remaining, step labels, ...) instead of the default N%; role="progressbar" and aria-valuenow/aria-valuemin/aria-valuemax, previously missing entirely (#457)
  • src/types/colors.ts: shared ColorVariant type, extracted from FwbButton's color set and now also used by FwbDropdown and FwbProgress (#457)

Changed

  • FwbButton rewritten for type safety, useMergeClasses, and accessibility (#444)
  • Replaced the classnames dependency with the internal useMergeClasses composable across all components (#447)
  • Unified import convention: relative imports (./, ../) within a component's own directory, @/ alias across component boundaries or for shared/top-level code (#452)
  • Systematic documentation review and rewrite for all 39 component pages (#448)
  • Updated all dependencies to latest versions (#445)
  • Replaced remaining any types with proper types: typed defineSlots payloads on FwbAlert, FwbJumbotron, and FwbPagination, Record<string, unknown> in place of Record<string, any> on FwbAutocomplete, and a (...args: unknown[]) => void function-type cast in place of an any cast on FwbSlotListener (#456)

Fixed

  • Restored the Flowbite Tailwind plugin for Tailwind v4 and fixed a double chevron rendering on FwbSelect (#449)
  • FwbSidebar tag/link handling bugs found during the docs review (#448)
  • FwbFileInput: error/success background colors corrected (were bg-red-50/bg-green-50, now bg-rose-50/bg-emerald-50 to match the rest of the library) (#437)
  • Linter warnings reduced from 51 to 21 (#446)
  • FwbFileInput: the file selector button had file:rounded-none while the input wrapper has rounded-lg — the button's square corner was clipped by the input's rounded border box, cutting into the button text. Now rounds the button's left corners to match, and widens left padding accordingly (#455)
  • FwbProgress: the inner bar's left corner squared off (lost its rounded-full) at small progress values, and the inside value label was nearly invisible at small values, especially in light theme. The outer track now clips the inner bar with overflow-hidden so corners always stay rounded, and the inner bar clips its own value text instead of letting it spill onto the track; the value is also skipped entirely at progress={0} (#457)
Commits
  • dc6ba16 chore(release): 0.3.0
  • 20ab237 chore(release): 0.3.0
  • 420ec92 feat(progress): fix small-value rendering, add indeterminate mode, rework col...
  • f149a79 fix(progress): give the progressbar an accessible name, respect prefers-reduc...
  • 9fb80cf docs(changelog): note FwbProgress rework (#457)
  • 924076e docs(progress): rewrite for renamed props, indeterminate mode, and live examples
  • 8f2c4e5 feat(progress): fix small-value rendering, rename value props, add indetermin...
  • b2f4415 refactor: extract ColorVariant to a shared type
  • c0f7e58 chore: replace remaining any types with proper types
  • 8e60983 docs(changelog): fix inaccurate FwbSlotListener wording (#456)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [flowbite-vue](https://github.com/themesberg/flowbite-vue) from 0.2.3 to 0.3.0.
- [Release notes](https://github.com/themesberg/flowbite-vue/releases)
- [Changelog](https://github.com/themesberg/flowbite-vue/blob/main/CHANGELOG.md)
- [Commits](themesberg/flowbite-vue@v0.2.3...v0.3.0)

---
updated-dependencies:
- dependency-name: flowbite-vue
  dependency-version: 0.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants