diff --git a/CHANGELOG.md b/CHANGELOG.md index 47c113d..02258d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.1.0-alpha.13](https://github.com/acid-info/logos-design-system/compare/v0.1.0-alpha.12...v0.1.0-alpha.13) (2023-06-05) + +### Bug Fixes + +- **lsd-react:** respect custom breakpoint typography settings in the createTheme function ([8f8a337](https://github.com/acid-info/logos-design-system/commit/8f8a3371513fcdfb570f8920a6fd792654af9483)) + +### BREAKING CHANGES + +- **lsd-react:** createTheme now ignores base theme typography settings for larger breakpoints when + custom typography settings are set for smaller breakpoints for a particular typography variant + # [0.1.0-alpha.12](https://github.com/acid-info/logos-design-system/compare/v0.1.0-alpha.11...v0.1.0-alpha.12) (2023-06-05) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 9e41efe..db21d87 100644 --- a/lerna.json +++ b/lerna.json @@ -2,6 +2,6 @@ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useNx": true, "useWorkspaces": true, - "version": "0.1.0-alpha.12", + "version": "0.1.0-alpha.13", "packages": ["packages/*", "apps/*"] } diff --git a/packages/lsd-react/CHANGELOG.md b/packages/lsd-react/CHANGELOG.md index 6e21e44..0b64830 100644 --- a/packages/lsd-react/CHANGELOG.md +++ b/packages/lsd-react/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.1.0-alpha.13](https://github.com/acid-info/logos-design-system/compare/v0.1.0-alpha.12...v0.1.0-alpha.13) (2023-06-05) + +### Bug Fixes + +- **lsd-react:** respect custom breakpoint typography settings in the createTheme function ([8f8a337](https://github.com/acid-info/logos-design-system/commit/8f8a3371513fcdfb570f8920a6fd792654af9483)) + +### BREAKING CHANGES + +- **lsd-react:** createTheme now ignores base theme typography settings for larger breakpoints when + custom typography settings are set for smaller breakpoints for a particular typography variant + # [0.1.0-alpha.12](https://github.com/acid-info/logos-design-system/compare/v0.1.0-alpha.11...v0.1.0-alpha.12) (2023-06-05) ### Bug Fixes diff --git a/packages/lsd-react/package.json b/packages/lsd-react/package.json index 908e70d..767643b 100644 --- a/packages/lsd-react/package.json +++ b/packages/lsd-react/package.json @@ -1,6 +1,6 @@ { "name": "@acid-info/lsd-react", - "version": "0.1.0-alpha.12", + "version": "0.1.0-alpha.13", "types": "./dist/index.d.ts", "main": "./dist/lsd-react.js", "require": "./dist/lsd-react.umd.js",