diff --git a/CHANGELOG.md b/CHANGELOG.md index 39c19cd1..a6ed7cdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# [10.0.0](https://github.com/silinternational/ui-components/compare/v9.1.1...v10.0.0) (2023-03-23) + + +### Bug Fixes + +* **types:** fix Select and MoneyInput types ([f2c6f73](https://github.com/silinternational/ui-components/commit/f2c6f73b289d0277b99a5e51cba8778fbd49ddd8)) +* **types:** JSX.HTMLAttributes is deprecated ([f8c593b](https://github.com/silinternational/ui-components/commit/f8c593b91528ecf47c5fffd8652bd5bc357b70f3)) + + +### Features + +* **components:** Add DateInput components ([a83dc70](https://github.com/silinternational/ui-components/commit/a83dc7079d70a26fa1b2800b0fb909719e52ae8d)) +* **Form:** remove success ([5f3537c](https://github.com/silinternational/ui-components/commit/5f3537c6fa8a41891d1f36a1f5ac3a697bf9fdbc)) + + +### BREAKING CHANGES + +* **Form:** remove success prop + +To reset `Form` use `on:submit` and `event.target.reset()` instead of setting `success` to `true` + ## [9.1.1](https://github.com/silinternational/ui-components/compare/v9.1.0...v9.1.1) (2023-02-22) diff --git a/package-lock.json b/package-lock.json index 6ee250c0..30ea0a12 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@silintl/ui-components", - "version": "9.1.1", + "version": "10.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@silintl/ui-components", - "version": "9.1.1", + "version": "10.0.0", "license": "MIT", "devDependencies": { "@semantic-release/changelog": "^6.0.2", diff --git a/package.json b/package.json index b4707e4f..34482e59 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@silintl/ui-components", - "version": "9.1.1", + "version": "10.0.0", "description": "Reusable Svelte components for some internal applications", "main": "index.mjs", "module": "index.mjs",