diff --git a/.changeset/fresh-singers-rest.md b/.changeset/fresh-singers-rest.md new file mode 100644 index 00000000..700f70e6 --- /dev/null +++ b/.changeset/fresh-singers-rest.md @@ -0,0 +1,13 @@ +--- +"@kobalte/core": patch +--- + +## v0.12.4 (March 9, 2024) + +**New features** + +- NumberField: add `rawValue` prop ([#364](https://github.com/kobaltedev/kobalte/pull/364)) + +**Bug fixes** + +- NumberField: fix SSR ([#364](https://github.com/kobaltedev/kobalte/pull/364)) diff --git a/apps/docs/README.md b/apps/docs/README.md index e9a49c05..068dd687 100644 --- a/apps/docs/README.md +++ b/apps/docs/README.md @@ -9,3 +9,5 @@ Portions of this documentation are based on: - [radix-ui/website](https://github.com/radix-ui/website), MIT Licensed, Copyright (c) 2022 WorkOS. - [adobe/react-spectrum](https://github.com/adobe/react-spectrum), Apache License Version 2.0, Copyright 2020 Adobe. - [chakra-ui/zag-docs](https://github.com/chakra-ui/zag-docs), MIT Licensed, Copyright (c) 2021 Chakra UI. + + Deploys by Netlify diff --git a/apps/docs/src/VERSIONS.ts b/apps/docs/src/VERSIONS.ts index 5e83f4ea..0d2240a1 100644 --- a/apps/docs/src/VERSIONS.ts +++ b/apps/docs/src/VERSIONS.ts @@ -18,4 +18,4 @@ export const LATEST_CORE_CHANGELOG_URL = `/docs/changelog/${CORE_VERSIONS[0].rep "-", )}`; -export const LATEST_CORE_VERSION_NAME = "v0.12.3"; +export const LATEST_CORE_VERSION_NAME = "v0.12.4"; diff --git a/apps/docs/src/components/footer.tsx b/apps/docs/src/components/footer.tsx index c1f74873..828bfa20 100644 --- a/apps/docs/src/components/footer.tsx +++ b/apps/docs/src/components/footer.tsx @@ -79,6 +79,15 @@ export function Footer() { + +
+ + This site is powered by Netlify. + +
); } diff --git a/apps/docs/src/components/theme-selector.tsx b/apps/docs/src/components/theme-selector.tsx index 03d3e5b0..1bedd456 100644 --- a/apps/docs/src/components/theme-selector.tsx +++ b/apps/docs/src/components/theme-selector.tsx @@ -74,7 +74,7 @@ export function ThemeSelector() { - + diff --git a/apps/docs/src/routes/docs/changelog/0-12-x.mdx b/apps/docs/src/routes/docs/changelog/0-12-x.mdx index b58e4872..e37beb98 100644 --- a/apps/docs/src/routes/docs/changelog/0-12-x.mdx +++ b/apps/docs/src/routes/docs/changelog/0-12-x.mdx @@ -1,5 +1,15 @@ # v0.12.x +## v0.12.4 (March 9, 2024) + +**New features** + +- NumberField: add `rawValue` prop ([#364](https://github.com/kobaltedev/kobalte/pull/364)) + +**Bug fixes** + +- NumberField: fix SSR ([#364](https://github.com/kobaltedev/kobalte/pull/364)) + ## v0.12.3 (March 5, 2024) **New features**