diff --git a/.changeset/friendly-squids-attack1.md b/.changeset/friendly-squids-attack1.md deleted file mode 100644 index 3db832f89..000000000 --- a/.changeset/friendly-squids-attack1.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte-ux': patch ---- - -adds a function `normalizeClasses` to normalize classes when they can be a string or an object, essentially converting strings to objects diff --git a/.changeset/friendly-squids-attack2.md b/.changeset/friendly-squids-attack2.md deleted file mode 100644 index 7eeac38a7..000000000 --- a/.changeset/friendly-squids-attack2.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte-ux': patch ---- - -adds a function `clsMerge` for merging groups of classes without needing to do more complex property-by-property merging diff --git a/.changeset/friendly-squids-attack3.md b/.changeset/friendly-squids-attack3.md deleted file mode 100644 index da0441652..000000000 --- a/.changeset/friendly-squids-attack3.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte-ux': patch ---- - -passes the `classes` objects down to the `TextField` component from the `Select` and `MultiSelect` components diff --git a/.changeset/friendly-squids-attack4.md b/.changeset/friendly-squids-attack4.md deleted file mode 100644 index a8de2cd45..000000000 --- a/.changeset/friendly-squids-attack4.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte-ux': patch ---- - -fixes a TypeError caused by a faulty ReturnType from `entries()` and removes a related `@ts-expect-error` diff --git a/packages/svelte-ux/CHANGELOG.md b/packages/svelte-ux/CHANGELOG.md index 4a84f27ba..c44eddebf 100644 --- a/packages/svelte-ux/CHANGELOG.md +++ b/packages/svelte-ux/CHANGELOG.md @@ -1,5 +1,17 @@ # svelte-ux +## 0.72.1 + +### Patch Changes + +- adds a function `normalizeClasses` to normalize classes when they can be a string or an object, essentially converting strings to objects ([#419](https://github.com/techniq/svelte-ux/pull/419)) + +- adds a function `clsMerge` for merging groups of classes without needing to do more complex property-by-property merging ([#419](https://github.com/techniq/svelte-ux/pull/419)) + +- passes the `classes` objects down to the `TextField` component from the `Select` and `MultiSelect` components ([#419](https://github.com/techniq/svelte-ux/pull/419)) + +- fixes a TypeError caused by a faulty ReturnType from `entries()` and removes a related `@ts-expect-error` ([#419](https://github.com/techniq/svelte-ux/pull/419)) + ## 0.72.0 ### Minor Changes diff --git a/packages/svelte-ux/package.json b/packages/svelte-ux/package.json index a57baa0fb..f90677456 100644 --- a/packages/svelte-ux/package.json +++ b/packages/svelte-ux/package.json @@ -4,7 +4,7 @@ "author": "Sean Lynch ", "license": "MIT", "repository": "techniq/svelte-ux", - "version": "0.72.0", + "version": "0.72.1", "scripts": { "dev": "vite dev", "build": "vite build",