From 2acf2d4e19434e8617af14bac07b8ee3a03a52fc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 14:35:43 -0400 Subject: [PATCH] Version Packages (#420) --- .changeset/friendly-squids-attack1.md | 5 ----- .changeset/friendly-squids-attack2.md | 5 ----- .changeset/friendly-squids-attack3.md | 5 ----- .changeset/friendly-squids-attack4.md | 5 ----- packages/svelte-ux/CHANGELOG.md | 12 ++++++++++++ packages/svelte-ux/package.json | 2 +- 6 files changed, 13 insertions(+), 21 deletions(-) delete mode 100644 .changeset/friendly-squids-attack1.md delete mode 100644 .changeset/friendly-squids-attack2.md delete mode 100644 .changeset/friendly-squids-attack3.md delete mode 100644 .changeset/friendly-squids-attack4.md 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",