diff --git a/.changeset/olive-pianos-knock.md b/.changeset/olive-pianos-knock.md new file mode 100644 index 0000000000..3179a22465 --- /dev/null +++ b/.changeset/olive-pianos-knock.md @@ -0,0 +1,14 @@ +--- +"@react-md/material-icons": patch +"react-md": patch +"@react-md/core": patch +--- + +This release focused on starting to create the codemods for v5 to v6, which helped me find and fix: + +- Fixed the surface colors when `$color-scheme: light` +- `CardSubtitle` can now remove the secondary text color like v5 using the `textColor` `Typography` prop +- Moved the sticky styles behavior for tables into `StickyTableSection` instead of `TableHeader`/`TableFooter` +- Moved more table types into the `types.ts` file +- Re-ran the material icons script to fix the types for `MaterialSymbol` and `MaterialIcon` +- Updated documentation for components and changes between v5 diff --git a/.changeset/pre.json b/.changeset/pre.json index cf094fd025..db2974b11b 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -17,6 +17,7 @@ "gentle-gifts-arrive", "hip-poems-relate", "ninety-drinks-wave", + "olive-pianos-knock", "orange-toes-share", "pink-yaks-tickle", "sharp-months-draw", diff --git a/apps/docs/CHANGELOG.md b/apps/docs/CHANGELOG.md index a2ef22048c..779b013ae2 100644 --- a/apps/docs/CHANGELOG.md +++ b/apps/docs/CHANGELOG.md @@ -1,5 +1,15 @@ # docs +## 0.0.2-next.2 + +### Patch Changes + +- Updated dependencies + - @react-md/material-icons@6.0.0-next.16 + - @react-md/core@1.0.0-next.15 + - @react-md/code@0.0.1-next.3 + - docs-generator@0.0.1-next.3 + ## 0.0.2-next.1 ### Patch Changes diff --git a/apps/docs/package.json b/apps/docs/package.json index 3e6b99b397..c4dcb59534 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -2,7 +2,7 @@ "name": "docs", "type": "module", "private": true, - "version": "0.0.2-next.1", + "version": "0.0.2-next.2", "description": "The documentation site for react-md", "scripts": { "run-script": "tsx --tsconfig scripts/tsconfig.json", diff --git a/packages/code/CHANGELOG.md b/packages/code/CHANGELOG.md index 0bc51ca5be..4c94bb5c1d 100644 --- a/packages/code/CHANGELOG.md +++ b/packages/code/CHANGELOG.md @@ -1,5 +1,13 @@ # @react-md/code +## 0.0.1-next.3 + +### Patch Changes + +- Updated dependencies + - @react-md/material-icons@6.0.0-next.16 + - @react-md/core@1.0.0-next.15 + ## 0.0.1-next.2 ### Patch Changes diff --git a/packages/code/package.json b/packages/code/package.json index 7ab4ff2d46..a13c772c7b 100644 --- a/packages/code/package.json +++ b/packages/code/package.json @@ -1,7 +1,7 @@ { "name": "@react-md/code", "private": true, - "version": "0.0.1-next.2", + "version": "0.0.1-next.3", "description": "The core components and functionality for react-md.", "type": "module", "sass": "./dist/_code.scss", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 86e7716592..3c9f4f3584 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,18 @@ # @react-md/core +## 1.0.0-next.15 + +### Patch Changes + +- This release focused on starting to create the codemods for v5 to v6, which helped me find and fix: + + - Fixed the surface colors when `$color-scheme: light` + - `CardSubtitle` can now remove the secondary text color like v5 using the `textColor` `Typography` prop + - Moved the sticky styles behavior for tables into `StickyTableSection` instead of `TableHeader`/`TableFooter` + - Moved more table types into the `types.ts` file + - Re-ran the material icons script to fix the types for `MaterialSymbol` and `MaterialIcon` + - Updated documentation for components and changes between v5 + ## 1.0.0-next.14 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index da2798cc50..cf05fb7f61 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/core", - "version": "1.0.0-next.14", + "version": "1.0.0-next.15", "description": "The core components and functionality for react-md.", "type": "module", "sass": "./dist/_core.scss", diff --git a/packages/docs-generator/CHANGELOG.md b/packages/docs-generator/CHANGELOG.md index c68bfe9d02..19caee57b4 100644 --- a/packages/docs-generator/CHANGELOG.md +++ b/packages/docs-generator/CHANGELOG.md @@ -1,5 +1,13 @@ # docs-generator +## 0.0.1-next.3 + +### Patch Changes + +- Updated dependencies + - @react-md/core@1.0.0-next.15 + - @react-md/code@0.0.1-next.3 + ## 0.0.1-next.2 ### Patch Changes diff --git a/packages/docs-generator/package.json b/packages/docs-generator/package.json index f458f86f7d..bf24cfecd5 100644 --- a/packages/docs-generator/package.json +++ b/packages/docs-generator/package.json @@ -1,7 +1,7 @@ { "name": "docs-generator", "private": true, - "version": "0.0.1-next.2", + "version": "0.0.1-next.3", "description": "MDX Plugins for the documentation site", "type": "module", "exports": { diff --git a/packages/material-icons/CHANGELOG.md b/packages/material-icons/CHANGELOG.md index 83a60007ef..e324decbbe 100644 --- a/packages/material-icons/CHANGELOG.md +++ b/packages/material-icons/CHANGELOG.md @@ -1,5 +1,21 @@ # @react-md/material-icons +## 6.0.0-next.16 + +### Patch Changes + +- This release focused on starting to create the codemods for v5 to v6, which helped me find and fix: + + - Fixed the surface colors when `$color-scheme: light` + - `CardSubtitle` can now remove the secondary text color like v5 using the `textColor` `Typography` prop + - Moved the sticky styles behavior for tables into `StickyTableSection` instead of `TableHeader`/`TableFooter` + - Moved more table types into the `types.ts` file + - Re-ran the material icons script to fix the types for `MaterialSymbol` and `MaterialIcon` + - Updated documentation for components and changes between v5 + +- Updated dependencies + - @react-md/core@1.0.0-next.15 + ## 6.0.0-next.15 ### Patch Changes diff --git a/packages/material-icons/package.json b/packages/material-icons/package.json index 6328d34c01..71e1ba8439 100644 --- a/packages/material-icons/package.json +++ b/packages/material-icons/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/material-icons", - "version": "6.0.0-next.15", + "version": "6.0.0-next.16", "description": "Material Design Icon components for react-md", "type": "module", "exports": { diff --git a/packages/react-md/CHANGELOG.md b/packages/react-md/CHANGELOG.md index 49556fdfc4..9cbe6e15d3 100644 --- a/packages/react-md/CHANGELOG.md +++ b/packages/react-md/CHANGELOG.md @@ -1,5 +1,21 @@ # react-md +## 6.0.0-next.3 + +### Patch Changes + +- This release focused on starting to create the codemods for v5 to v6, which helped me find and fix: + + - Fixed the surface colors when `$color-scheme: light` + - `CardSubtitle` can now remove the secondary text color like v5 using the `textColor` `Typography` prop + - Moved the sticky styles behavior for tables into `StickyTableSection` instead of `TableHeader`/`TableFooter` + - Moved more table types into the `types.ts` file + - Re-ran the material icons script to fix the types for `MaterialSymbol` and `MaterialIcon` + - Updated documentation for components and changes between v5 + +- Updated dependencies + - @react-md/core@1.0.0-next.15 + ## 6.0.0-next.2 ### Patch Changes diff --git a/packages/react-md/package.json b/packages/react-md/package.json index 29636d05bd..c256d41571 100644 --- a/packages/react-md/package.json +++ b/packages/react-md/package.json @@ -1,6 +1,6 @@ { "name": "react-md", - "version": "6.0.0-next.2", + "version": "6.0.0-next.3", "description": "This is the full react-md library bundled together for convenience.", "type": "module", "sass": "./dist/_react-md.scss",