diff --git a/CHANGELOG.md b/CHANGELOG.md index 34a8f6f1..04d5d615 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.30.4 (2026-04-16) + +### 🩹 Fixes + +- npm package publishing ([eb4eafc](https://github.com/lion5/component-library/commit/eb4eafc)) +- **MultiselectInput:** use Array.isArray guard in onMounted for null/undefined safety ([51e18c8](https://github.com/lion5/component-library/commit/51e18c8)) +- **MultiselectInput+SelectInput:** handle undefined and null values ([5fe4d82](https://github.com/lion5/component-library/commit/5fe4d82)) +- **MultiselectInput+SelectInput:** address review feedback on null/undefined handling ([ac70398](https://github.com/lion5/component-library/commit/ac70398)) + +### ❤️ Thank You + +- mgoetz-lion5 @mgoetz-lion5 +- Michael Götz @mgoetz-lion5 + ## 0.30.3 (2026-04-16) ### 🩹 Fixes @@ -905,4 +919,4 @@ This was a version bump only, there were no code changes. ### ❤️ Thank You -- Michael Götz @michigg \ No newline at end of file +- Michael Götz @michigg diff --git a/package-lock.json b/package-lock.json index a64e79b3..84c49c33 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15048,7 +15048,7 @@ }, "packages/core": { "name": "@lion5/component-library", - "version": "0.30.3", + "version": "0.30.4", "license": "MIT", "dependencies": { "@oddbird/css-anchor-positioning": "^0.9.0", @@ -15078,10 +15078,10 @@ }, "packages/firebase": { "name": "@lion5/component-library-firebase", - "version": "0.30.3", + "version": "0.30.4", "license": "MIT", "dependencies": { - "@lion5/component-library": "0.30.3", + "@lion5/component-library": "0.30.4", "firebase": "^12.12.0", "vue": "^3.5.32" }, @@ -15094,10 +15094,10 @@ }, "packages/gridstack": { "name": "@lion5/component-library-gridstack", - "version": "0.30.3", + "version": "0.30.4", "license": "MIT", "dependencies": { - "@lion5/component-library": "0.30.3", + "@lion5/component-library": "0.30.4", "@turf/boolean-point-in-polygon": ">=7.3.4", "gridstack": ">=12.6.0", "lodash-es": ">=4.18.1", @@ -15117,10 +15117,10 @@ }, "packages/leaflet": { "name": "@lion5/component-library-leaflet", - "version": "0.30.3", + "version": "0.30.4", "license": "MIT", "dependencies": { - "@lion5/component-library": "0.30.3", + "@lion5/component-library": "0.30.4", "@turf/boolean-point-in-polygon": ">=7.3.4", "leaflet": ">= 1.9.4 < 2", "vee-validate": ">=4.15.1", diff --git a/packages/core/package.json b/packages/core/package.json index 1972f5ca..8b929303 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@lion5/component-library", - "version": "0.30.3", + "version": "0.30.4", "type": "module", "license": "MIT", "contributors": [ diff --git a/packages/firebase/package.json b/packages/firebase/package.json index 545924be..73e83561 100644 --- a/packages/firebase/package.json +++ b/packages/firebase/package.json @@ -1,6 +1,6 @@ { "name": "@lion5/component-library-firebase", - "version": "0.30.3", + "version": "0.30.4", "type": "module", "license": "MIT", "contributors": [ @@ -54,7 +54,7 @@ "./dist/index.css" ], "dependencies": { - "@lion5/component-library": "0.30.3", + "@lion5/component-library": "0.30.4", "firebase": "^12.12.0", "vue": "^3.5.32" }, diff --git a/packages/gridstack/package.json b/packages/gridstack/package.json index de9dde09..ec92813a 100644 --- a/packages/gridstack/package.json +++ b/packages/gridstack/package.json @@ -1,6 +1,6 @@ { "name": "@lion5/component-library-gridstack", - "version": "0.30.3", + "version": "0.30.4", "type": "module", "license": "MIT", "contributors": [ @@ -54,7 +54,7 @@ "./dist/index.css" ], "dependencies": { - "@lion5/component-library": "0.30.3", + "@lion5/component-library": "0.30.4", "@turf/boolean-point-in-polygon": ">=7.3.4", "gridstack": ">=12.6.0", "lodash-es": ">=4.18.1", diff --git a/packages/leaflet/package.json b/packages/leaflet/package.json index b31f7aa3..a0c360c6 100644 --- a/packages/leaflet/package.json +++ b/packages/leaflet/package.json @@ -1,6 +1,6 @@ { "name": "@lion5/component-library-leaflet", - "version": "0.30.3", + "version": "0.30.4", "type": "module", "license": "MIT", "contributors": [ @@ -54,7 +54,7 @@ "./dist/index.css" ], "dependencies": { - "@lion5/component-library": "0.30.3", + "@lion5/component-library": "0.30.4", "@turf/boolean-point-in-polygon": ">=7.3.4", "leaflet": ">= 1.9.4 < 2", "vee-validate": ">=4.15.1",