diff --git a/.changeset/dry-fireants-pretend.md b/.changeset/dry-fireants-pretend.md new file mode 100644 index 000000000..c22f9c4f5 --- /dev/null +++ b/.changeset/dry-fireants-pretend.md @@ -0,0 +1,24 @@ +--- +"@kobalte/core": patch +--- + +## v0.13.5 (August 27, 2024) + +**New features** + +- Tooltip: add skipDelayDuration prop ([#467](https://github.com/kobaltedev/kobalte/pull/467)) + +**Bug fixes** + +- NumberField: only format when enabled ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- NumberField: don't trigger `onRawValueChange` on mount when NaN ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- Select: correct type definition & empty value for multiselect ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- TextField: clear input when controlled value set to undefined ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- Combobox: correct type definition & empty value for multiselect ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- Skeleton: correct data-animate & data-visible attribute value ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- Combobox: close list on outside click ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- NavigationMenu: incorrect animation after closed ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- Tabs: recalculate indicator styles on resize ([#458](https://github.com/kobaltedev/kobalte/pull/458)) +- Pagination: correctly render fixedItems with low page count ([#464](https://github.com/kobaltedev/kobalte/pull/464)) +- Combobox: prevent opening on input with triggerMode="manual" ([#465](https://github.com/kobaltedev/kobalte/pull/465)) +- NumberField: precision handling with floating point offsets and value snapping ([#468](https://github.com/kobaltedev/kobalte/pull/468)) diff --git a/apps/docs/src/VERSIONS.ts b/apps/docs/src/VERSIONS.ts index cd4f4c104..f590ab9ee 100644 --- a/apps/docs/src/VERSIONS.ts +++ b/apps/docs/src/VERSIONS.ts @@ -19,4 +19,4 @@ export const LATEST_CORE_CHANGELOG_URL = `/docs/changelog/${CORE_VERSIONS[0].rep "-", )}`; -export const LATEST_CORE_VERSION_NAME = "v0.13.4"; +export const LATEST_CORE_VERSION_NAME = "v0.13.5"; diff --git a/apps/docs/src/routes/docs/changelog/0-13-x.mdx b/apps/docs/src/routes/docs/changelog/0-13-x.mdx index 1fd45febc..7dc3a5abe 100644 --- a/apps/docs/src/routes/docs/changelog/0-13-x.mdx +++ b/apps/docs/src/routes/docs/changelog/0-13-x.mdx @@ -1,5 +1,26 @@ # v0.13.x +## v0.13.5 (August 27, 2024) + +**New features** + +- Tooltip: add skipDelayDuration prop ([#467](https://github.com/kobaltedev/kobalte/pull/467)) + +**Bug fixes** + +- NumberField: only format when enabled ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- NumberField: don't trigger `onRawValueChange` on mount when NaN ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- Select: correct type definition & empty value for multiselect ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- TextField: clear input when controlled value set to undefined ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- Combobox: correct type definition & empty value for multiselect ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- Skeleton: correct data-animate & data-visible attribute value ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- Combobox: close list on outside click ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- NavigationMenu: incorrect animation after closed ([#456](https://github.com/kobaltedev/kobalte/pull/456)) +- Tabs: recalculate indicator styles on resize ([#458](https://github.com/kobaltedev/kobalte/pull/458)) +- Pagination: correctly render fixedItems with low page count ([#464](https://github.com/kobaltedev/kobalte/pull/464)) +- Combobox: prevent opening on input with triggerMode="manual" ([#465](https://github.com/kobaltedev/kobalte/pull/465)) +- NumberField: precision handling with floating point offsets and value snapping ([#468](https://github.com/kobaltedev/kobalte/pull/468)) + ## v0.13.4 (June 22, 2024) **New features**