diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ea43656..2f03306a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## [19.0.0](https://github.com/HHogg/preshape/compare/v18.1.3...v19.0.0) (2024-04-17) + + +### ⚠ BREAKING CHANGES + +* **Modal:** - Removed the `size` prop, just use the padding props. +- Removed the fullscreen responsive behavior, it now needs to be controlled by the user with the fullscreen prop. +- Apply border styles to the Modal component rather than ModalHeader and ModalFooter. + +### Features + +* **Box:** Support non-Box elements from interfering with margin pattern ([b26aed0](https://github.com/HHogg/preshape/commit/b26aed0cdfe463a165e4d8ac46a930e0f1737ad1)) +* **Modal:** Removed size prop, border styling, removed fullscreen responsive behavior. ([88e067e](https://github.com/HHogg/preshape/commit/88e067ebfa6d5289f8bce03f0b2c87a1fb31cc76)) + ### [18.1.3](https://github.com/HHogg/preshape/compare/v18.1.2...v18.1.3) (2024-03-31) diff --git a/package-lock.json b/package-lock.json index e7db100c..56feff3f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,6 +15,7 @@ "@semantic-release/changelog": "^6.0.0", "@semantic-release/commit-analyzer": "^9.0.1", "@semantic-release/git": "^10.0.0", + "@types/node": "^20.12.7", "@typescript-eslint/eslint-plugin": "^5.59.5", "@typescript-eslint/parser": "^5.59.5", "concurrently": "^6.2.0", @@ -2885,9 +2886,13 @@ "license": "MIT" }, "node_modules/@types/node": { - "version": "17.0.38", + "version": "20.12.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", + "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==", "dev": true, - "license": "MIT" + "dependencies": { + "undici-types": "~5.26.4" + } }, "node_modules/@types/normalize-package-data": { "version": "2.4.1", @@ -21423,6 +21428,12 @@ "dev": true, "license": "MIT" }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, "node_modules/uniq": { "version": "1.0.1", "dev": true, @@ -22418,7 +22429,7 @@ }, "workspaces/package": { "name": "preshape", - "version": "18.1.3", + "version": "19.0.0", "license": "MIT", "dependencies": { "@floating-ui/react": "^0.24.0", @@ -22443,6 +22454,7 @@ "@types/feather-icons": "*", "@types/lodash.omit": "^4.5.6", "@types/luxon": "^3.3.0", + "@types/node": "^20.12.7", "@types/react": "^18.2.5", "@types/react-dom": "^18.2.3", "@types/react-syntax-highlighter": "^15.5.6",