From 093d3bfbe168975e686021e045b22416dc99f3bc Mon Sep 17 00:00:00 2001 From: Mikkel Laursen Date: Tue, 30 Jul 2024 18:57:02 -0400 Subject: [PATCH] build(version): version packages --- .changeset/gold-singers-remember.md | 19 +++++++++++++++++++ .changeset/pre.json | 1 + apps/docs/CHANGELOG.md | 10 ++++++++++ apps/docs/package.json | 2 +- packages/code/CHANGELOG.md | 21 +++++++++++++++++++++ packages/code/package.json | 2 +- packages/core/CHANGELOG.md | 17 +++++++++++++++++ packages/core/package.json | 2 +- packages/docs-generator/CHANGELOG.md | 8 ++++++++ packages/docs-generator/package.json | 2 +- packages/material-icons/CHANGELOG.md | 20 ++++++++++++++++++++ packages/material-icons/package.json | 2 +- packages/react-md/CHANGELOG.md | 20 ++++++++++++++++++++ packages/react-md/package.json | 2 +- 14 files changed, 122 insertions(+), 6 deletions(-) create mode 100644 .changeset/gold-singers-remember.md diff --git a/.changeset/gold-singers-remember.md b/.changeset/gold-singers-remember.md new file mode 100644 index 0000000000..5ed56059a9 --- /dev/null +++ b/.changeset/gold-singers-remember.md @@ -0,0 +1,19 @@ +--- +"@react-md/material-icons": patch +"react-md": patch +"@react-md/code": patch +"@react-md/core": patch +--- + +This release is mostly around adding codemods for v5 to v6, but also: + +- reduced the installation size for react-md packages by excluding non-critical files + - i.e. Ignore test files, mocks, files that aren't required for source maps, etc +- fixed documentation +- removed the invalid server component comments since they aren't server components. they are just components that do not require client side js +- split the expansion panel, list, sheet styles into separate files so that the style utility classes can be used without client size js +- fixed the inline icon styles to be `vertical-align: middle` instead of `vertical-align: bottom` to work with more font sizes +- renamed `TreeItemDefaultIds` to `TreeDefaultIds` to match naming conventions +- fixed some vertical tabs and scroll button styles +- added more convenience pass-through props to the `useTabs` hook options +- added the `TreeItemRenderer` utility type diff --git a/.changeset/pre.json b/.changeset/pre.json index db2974b11b..c8c5f92bd1 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -15,6 +15,7 @@ "forty-days-walk", "friendly-walls-repeat", "gentle-gifts-arrive", + "gold-singers-remember", "hip-poems-relate", "ninety-drinks-wave", "olive-pianos-knock", diff --git a/apps/docs/CHANGELOG.md b/apps/docs/CHANGELOG.md index 779b013ae2..36df6b6e3a 100644 --- a/apps/docs/CHANGELOG.md +++ b/apps/docs/CHANGELOG.md @@ -1,5 +1,15 @@ # docs +## 0.0.2-next.3 + +### Patch Changes + +- Updated dependencies + - @react-md/material-icons@6.0.0-next.17 + - @react-md/code@0.0.1-next.4 + - @react-md/core@1.0.0-next.16 + - docs-generator@0.0.1-next.4 + ## 0.0.2-next.2 ### Patch Changes diff --git a/apps/docs/package.json b/apps/docs/package.json index 52b898a492..085f7b4223 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.2", + "version": "0.0.2-next.3", "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 4c94bb5c1d..42120f6f73 100644 --- a/packages/code/CHANGELOG.md +++ b/packages/code/CHANGELOG.md @@ -1,5 +1,26 @@ # @react-md/code +## 0.0.1-next.4 + +### Patch Changes + +- This release is mostly around adding codemods for v5 to v6, but also: + + - reduced the installation size for react-md packages by excluding non-critical files + - i.e. Ignore test files, mocks, files that aren't required for source maps, etc + - fixed documentation + - removed the invalid server component comments since they aren't server components. they are just components that do not require client side js + - split the expansion panel, list, sheet styles into separate files so that the style utility classes can be used without client size js + - fixed the inline icon styles to be `vertical-align: middle` instead of `vertical-align: bottom` to work with more font sizes + - renamed `TreeItemDefaultIds` to `TreeDefaultIds` to match naming conventions + - fixed some vertical tabs and scroll button styles + - added more convenience pass-through props to the `useTabs` hook options + - added the `TreeItemRenderer` utility type + +- Updated dependencies + - @react-md/material-icons@6.0.0-next.17 + - @react-md/core@1.0.0-next.16 + ## 0.0.1-next.3 ### Patch Changes diff --git a/packages/code/package.json b/packages/code/package.json index 3041401292..919b9cd71a 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.3", + "version": "0.0.1-next.4", "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 3c9f4f3584..68aa9ad39d 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,22 @@ # @react-md/core +## 1.0.0-next.16 + +### Patch Changes + +- This release is mostly around adding codemods for v5 to v6, but also: + + - reduced the installation size for react-md packages by excluding non-critical files + - i.e. Ignore test files, mocks, files that aren't required for source maps, etc + - fixed documentation + - removed the invalid server component comments since they aren't server components. they are just components that do not require client side js + - split the expansion panel, list, sheet styles into separate files so that the style utility classes can be used without client size js + - fixed the inline icon styles to be `vertical-align: middle` instead of `vertical-align: bottom` to work with more font sizes + - renamed `TreeItemDefaultIds` to `TreeDefaultIds` to match naming conventions + - fixed some vertical tabs and scroll button styles + - added more convenience pass-through props to the `useTabs` hook options + - added the `TreeItemRenderer` utility type + ## 1.0.0-next.15 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 610511f6d2..ca8097a9c7 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/core", - "version": "1.0.0-next.15", + "version": "1.0.0-next.16", "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 19caee57b4..a274c8e13f 100644 --- a/packages/docs-generator/CHANGELOG.md +++ b/packages/docs-generator/CHANGELOG.md @@ -1,5 +1,13 @@ # docs-generator +## 0.0.1-next.4 + +### Patch Changes + +- Updated dependencies + - @react-md/code@0.0.1-next.4 + - @react-md/core@1.0.0-next.16 + ## 0.0.1-next.3 ### Patch Changes diff --git a/packages/docs-generator/package.json b/packages/docs-generator/package.json index f87d9289a4..89c7a0d8b0 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.3", + "version": "0.0.1-next.4", "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 e324decbbe..d1502c03ec 100644 --- a/packages/material-icons/CHANGELOG.md +++ b/packages/material-icons/CHANGELOG.md @@ -1,5 +1,25 @@ # @react-md/material-icons +## 6.0.0-next.17 + +### Patch Changes + +- This release is mostly around adding codemods for v5 to v6, but also: + + - reduced the installation size for react-md packages by excluding non-critical files + - i.e. Ignore test files, mocks, files that aren't required for source maps, etc + - fixed documentation + - removed the invalid server component comments since they aren't server components. they are just components that do not require client side js + - split the expansion panel, list, sheet styles into separate files so that the style utility classes can be used without client size js + - fixed the inline icon styles to be `vertical-align: middle` instead of `vertical-align: bottom` to work with more font sizes + - renamed `TreeItemDefaultIds` to `TreeDefaultIds` to match naming conventions + - fixed some vertical tabs and scroll button styles + - added more convenience pass-through props to the `useTabs` hook options + - added the `TreeItemRenderer` utility type + +- Updated dependencies + - @react-md/core@1.0.0-next.16 + ## 6.0.0-next.16 ### Patch Changes diff --git a/packages/material-icons/package.json b/packages/material-icons/package.json index 96e4ff9c07..353b6f8294 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.16", + "version": "6.0.0-next.17", "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 9cbe6e15d3..934689f83b 100644 --- a/packages/react-md/CHANGELOG.md +++ b/packages/react-md/CHANGELOG.md @@ -1,5 +1,25 @@ # react-md +## 6.0.0-next.4 + +### Patch Changes + +- This release is mostly around adding codemods for v5 to v6, but also: + + - reduced the installation size for react-md packages by excluding non-critical files + - i.e. Ignore test files, mocks, files that aren't required for source maps, etc + - fixed documentation + - removed the invalid server component comments since they aren't server components. they are just components that do not require client side js + - split the expansion panel, list, sheet styles into separate files so that the style utility classes can be used without client size js + - fixed the inline icon styles to be `vertical-align: middle` instead of `vertical-align: bottom` to work with more font sizes + - renamed `TreeItemDefaultIds` to `TreeDefaultIds` to match naming conventions + - fixed some vertical tabs and scroll button styles + - added more convenience pass-through props to the `useTabs` hook options + - added the `TreeItemRenderer` utility type + +- Updated dependencies + - @react-md/core@1.0.0-next.16 + ## 6.0.0-next.3 ### Patch Changes diff --git a/packages/react-md/package.json b/packages/react-md/package.json index 116d67c1c2..dc0ffeb3ad 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.3", + "version": "6.0.0-next.4", "description": "This is the full react-md library bundled together for convenience.", "type": "module", "sass": "./dist/_react-md.scss",