Skip to content

Latest commit

 

History

History
553 lines (335 loc) · 14.3 KB

CHANGELOG.md

File metadata and controls

553 lines (335 loc) · 14.3 KB

@kobalte/core

0.13.7

Patch Changes

  • 0be957cc: ## v0.13.7 (October 7, 2024)

    Bug fixes

    • ToggleGroup: root value type definition (#479)
    • Collapsible: close animation on default open (#483)
    • Toast: filter dismissed toasts in region (#489)

0.13.6

Patch Changes

  • 512b844d: ## v0.13.6 (August 27, 2024)

    Bug fixes

    • Update missing export from @kobalte/utils (#477)
  • Updated dependencies [512b844d]

0.13.5

Patch Changes

  • aa6f894e: ## v0.13.5 (August 27, 2024)

    New features

    • Tooltip: add skipDelayDuration prop (#467)

    Bug fixes

    • NumberField: only format when enabled (#456)
    • NumberField: don't trigger onRawValueChange on mount when NaN (#456)
    • Select: correct type definition & empty value for multiselect (#456)
    • TextField: clear input when controlled value set to undefined (#456)
    • Combobox: correct type definition & empty value for multiselect (#456)
    • Skeleton: correct data-animate & data-visible attribute value (#456)
    • Combobox: close list on outside click (#456)
    • NavigationMenu: incorrect animation after closed (#456)
    • Tabs: recalculate indicator styles on resize (#458)
    • Pagination: correctly render fixedItems with low page count (#464)
    • Combobox: prevent opening on input with triggerMode="manual" (#465)
    • NumberField: precision handling with floating point offsets and value snapping (#468)

0.13.4

Patch Changes

  • 1b888fa5: ## v0.13.4 (June 22, 2024)

    New features

    • Add source exports (#408)
    • Support string style prop (#432)

    Bug fixes

    • Combobox: convert textValue with optionTextValue (#436)
    • Polymorphic: override the component prop of <Dynamic /> (#437)
    • Slider: inverted slider thumb in the wrong position (#441)
    • Wait for presence to finish before enabling scroll (#447)

0.13.3

Patch Changes

0.13.2

Patch Changes

  • a430a78: ## v0.13.2 (May 29, 2024)

    Bug fixes

    • Refactored polymorphic element type in CommonProps (#420)

0.13.1

Patch Changes

  • 16789fb: ## v0.13.1 (May 3, 2024)

    New features

    • NumberField: improve input handling (#379) (#395)

    Bug fixes

    • Slider: call onChangeEnd on blur after changing value (#402)
    • Select: options non reactive inside suspense (#401)
    • Combobox: close on select with focus trigger mode (#400)
    • Menu: open link menu items (#397)

0.13.0

Minor Changes

0.12.6

Patch Changes

  • 570a6e9: ## v0.12.6 (March 16, 2024)

    New features

    • NumberField: allowedInput defaults to locale and format characters. (#372)

0.12.5

Patch Changes

  • eae01e1: ## v0.12.5 (March 14, 2024)

    Bug fixes

    • NumberField: value stuck on NaN (#364)
    • NumberField: locale decimal value (#369)

0.12.4

Patch Changes

  • 459d05b: ## v0.12.4 (March 9, 2024)

    New features

    • NumberField: add rawValue prop (#364)

    Bug fixes

    • NumberField: fix SSR (#364)

0.12.3

Patch Changes

0.12.2

Patch Changes

  • 21ad251: ## v0.12.2 (February 29, 2024)

    New features

    • Update to Solid 1.8.15 and Solid Start 0.5.10 (#300) (#337)
    • Use solid-prevent-scroll for scroll lock (#345)
    • Allow configurable combobox and select components close after selection (#339)

    Bug fixes

    • Slider: fix onChangeEnd getting called twice (#324)
    • Slider: focus the correct thumb onSlideEnd (#331)
    • Slider: fix getClosestValueIndex ambiguity (#331)
    • Slider: fix Home/End/PageDown/PageUp keys (#331)
    • Skeleton: update exports from index.tsx (#331)
    • ContextMenu: add context.setAnchorRect call on pointer down (#338)
    • DropdownMenu: scroll into view when triggered by keyboard (#337)
    • Menubar: expand hightlighted trigger (#337)
    • Menubar: dont auto open when closed from trigger (#337)
    • Modal: correctly unlock scroll when disposed in different order (#337)
    • Combobox: pass virtualized to listbox (#341)

    @kobalte/tests

    Use vitest

0.12.1

Patch Changes

  • 86827c8: ## v0.12.1 (January 18, 2024)

    Bug fixes

    • Rerelease Menubar, removed by mistake in 0.12.0.

0.12.0

Minor Changes

0.11.2

Patch Changes

  • 677f256: added Slider component

0.11.1

Patch Changes

  • 321e54c: changeset v0.11.1

    New features

    • Added Skeleton component.

    Bug fixes

0.11.0

Minor Changes

  • fb427bf: fix #249, #250, #252

Patch Changes

0.10.0

Minor Changes

  • d0e2414: Add Pagination component + bug fixes

Patch Changes

0.9.8

Patch Changes

  • d6b6a64: fix #230

0.9.7

Patch Changes

  • 9096706: fix: #226

0.9.6

Patch Changes

0.9.5

Patch Changes

  • db7cc8d: fix:

    • #205
    • #206
    • #207
    • remove Kobalte UI colors

0.9.4

Patch Changes

  • ae0ca30: fix: #195

0.9.3

Patch Changes

0.9.2

Patch Changes

  • 1b87fc6: fix exports in @kobalte/utils
  • Updated dependencies [1b87fc6]

0.9.1

Patch Changes

  • 24aeebb: v0.9.1

0.9.0

Minor Changes

  • 9b52a46: ## Breaking changes

    • Update minimum required solid-js version to 1.7.0.
    • For all components having the following props:
      • isDisabled prop is now disabled.
      • isRequired prop is now required.
      • isReadOnly prop is now readOnly.
      • isOpen prop is now open.
      • isPressed prop is now pressed.
      • isChecked prop is now checked.
      • isIndeterminate prop is now indeterminate.
      • isModal prop is now modal.
      • isPersistent prop is now persistent.
      • defaultIsOpen prop is now defaultOpen.
      • defaultIsChecked prop is now defaultChecked.
      • defaultIsPressed prop is now defaultPressed.
      • onValueChange prop is now onChange.
      • onCheckedChange prop is now onChange.
      • onPressedChange prop is now onChange.
    • MultiSelect has been removed, use <Select.Root multiple> instead.
    • Select:
      • value, defaultValue and onChange prop uses same type as Select options instead of string.
      • valueComponent prop has been removed, use Select.Value render prop instead.

    New features

    • Added Combobox component.
    • Added Tooltip component.
    • Added support for multiple Toast.Region.

    Bug fixes

Patch Changes

0.8.2

Patch Changes

  • 8a1b75a: fix: #160

0.8.1

Patch Changes

  • 4d669ee: fix: Select.Root missing type definition

0.8.0

Minor Changes

  • 721c0ad: ## Breaking changes

    • Select and MultiSelect:
      • .Root component renders a div by default.
      • renderItem prop is now itemComponent.
      • renderSection prop is now sectionComponent.
      • renderValue prop is now valueComponent.

    New features

    • Added AlertDialog component.
    • Added Toast component.
    • Ability to clear and remove an item from selection in Select.Value and MultiSelect.Value using the .Root’s valueComponent prop.
    • Select and MultiSelect better integration with form libraries.

    Bug fixes

    • #146
    • #147
    • #148
    • #150
    • #152
    • #153

0.7.4

Patch Changes

  • 2b46afb: Unnecessary re-renders when using polymorphic <As> component.

0.7.3

Patch Changes

  • 20cd441: fix #118

0.7.2

Patch Changes

  • 81d2e40: fix: nexgen ts module resolutions
  • Updated dependencies [81d2e40]

0.7.1

Patch Changes

  • b8fd112: New scroll-lock implementation + export all components props type

0.7.0

Minor Changes

  • 0a1b042: New Select and Polymorphism API

Patch Changes

0.6.2

Patch Changes

  • 1734b1e: fix: #119

0.6.1

Patch Changes

  • 056ed63: Add data-closed attribute.
  • Updated dependencies [056ed63]

0.6.0

Minor Changes

  • 975d526: v0.6.0

Patch Changes

0.5.0

Minor Changes

  • 3b9d8de: - Added Accordion component.
    • Added Breadcrumbs component.
    • Added Collapsible component.
    • Added Image component.
    • Added Progress component.
    • Fix #78

Patch Changes

0.4.0

Minor Changes

  • a71c1fb: fix #57, #58, #62, #64

0.3.1

Patch Changes

  • 6457a2b: fix #39 and #50

0.3.0

Minor Changes

  • 828eba6: Improve tree shaking

Patch Changes

0.2.0

Minor Changes

  • b2ecae7: - Added TextField component.
    • Performance improvement.

Patch Changes

0.1.0

Minor Changes

  • bb44c6a: Initial release

Patch Changes