Skip to content

Releases: sadmann7/diceui

@diceui/[email protected]

16 Nov 01:26
cdef152

Choose a tag to compare

Minor Changes

  • abe3df2: Allow mention trigger in middle of text

@diceui/[email protected]

26 Oct 11:49
c366760

Choose a tag to compare

Patch Changes

  • a3914b7: Improve mention removal logic with proper position shifting (#147)

@diceui/[email protected]

26 Oct 11:49
c366760

Choose a tag to compare

Patch Changes

  • a3914b7: # Fix combobox filtering and selection behavior (#148)

@diceui/[email protected]

05 Jun 13:26
160d369

Choose a tag to compare

Minor Changes

  • 473a777: Prevent item selection on Enter when list is empty

@diceui/[email protected]

28 Mar 11:19
3adfd88

Choose a tag to compare

Minor Changes

  • 555796c: Update manualFiltering TSDoc default value

@diceui/[email protected]

28 Mar 11:02
77928b8

Choose a tag to compare

Major Changes

  • 2444c4d: # Breaking Change: Renamed ComboboxProgress to ComboboxLoading

    What Changed

    • The component ComboboxProgress has been renamed to ComboboxLoading to better reflect its purpose and maintain consistency with other loading components in the library.

    Why This Change

    • The new name better describes the component's functionality as a loading indicator within the combobox
    • Aligns with common UI patterns where loading states are typically named "Loading" rather than "Progress"
    • Makes the API more intuitive and easier to understand for developers

    How to Update Your Code

    1. Replace all instances of ComboboxProgress with ComboboxLoading in your imports:
    // Before
    import { ComboboxProgress } from "@diceui/combobox";
    
    // After
    import { ComboboxLoading } from "@diceui/combobox";
    1. Update all component usage in your JSX:
    // Before
    <ComboboxProgress value={progress} />
    
    // After
    <ComboboxLoading value={progress} />

    Note: The component's props and functionality remain the same, only the name has changed.

@diceui/[email protected]

17 Mar 13:33
35b85b6

Choose a tag to compare

Patch Changes

@diceui/[email protected]

17 Mar 13:33
35b85b6

Choose a tag to compare

Minor Changes

@diceui/[email protected]

17 Mar 13:33
35b85b6

Choose a tag to compare

Patch Changes

@diceui/[email protected]

17 Mar 13:53
58fcc4f

Choose a tag to compare

Minor Changes