From 669267616fa5c46fdac0fcc79033541b48090ed6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 20:11:24 +0000 Subject: [PATCH 1/3] Version Packages --- .changeset/hungry-books-change.md | 20 ----------------- packages/wethegit-components-cli/CHANGELOG.md | 22 +++++++++++++++++++ packages/wethegit-components-cli/package.json | 4 ++-- packages/wethegit-components/CHANGELOG.md | 20 +++++++++++++++++ packages/wethegit-components/package.json | 2 +- 5 files changed, 45 insertions(+), 23 deletions(-) delete mode 100644 .changeset/hungry-books-change.md diff --git a/.changeset/hungry-books-change.md b/.changeset/hungry-books-change.md deleted file mode 100644 index 78101f5f..00000000 --- a/.changeset/hungry-books-change.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -"@wethegit/components": major -"@wethegit/components-cli": patch ---- - -- COMP: Removes barrel files (`index.ts`) from each component. Barrel files are known to cause circular reference issues, so we've opted to remove them in favor of explicit imports. -- COMP: Removes `fixedForwaredRef` component, as React 19+ treats `ref` just as any other prop. -- COMP: Removes the CSS modules file from `useBreakpoints`, due to Next JS and Turbopack no longer supporting the `:export` feature. Instead, this value is hard-coded in the `use-breakpoints.ts` file now. -- COMP: Overhauls the flex `grid-layout` system: - - Removes `Wrapper` component in favor of the new `variant` prop on the `Row` component. - - Removes inline padding from `Column` components, in favor of flexbox's `gap` property. Way less of a learning curve here now for newcomers. - - Adds a `flexDirection` prop to the `Flex` (and therefore the `Row`) component, to allow users to specify per-breakpoint flex directions. - - This removes the need for the `reverse` prop, so that's now gone. - - Refactors and renames the `grid-calc(n)` SCSS utility to be `get-column-width(n)`. This is more indicative of what it's used for. -- COMP: Updates the `grid-layout` system to use the latest standards created by We the Collective's Design Team. This introduces a `--grid-margin-width` CSS custom property, and updates the `Row` component's width and margin calculations to take the new value into account. -- COMP: Adds `margin: 0` to the `body` element in the CSS resets stylesheet. -- COMP: Fixes Github-flavored Markdown not working in Storybook -- COMP: Fixes static asset path on deployed Storybook (image group examples have broken images) -- CLI: Fixes SCSS import instructions syntax on the CLI after adding components -- CLI: Supports `deno` package manager. diff --git a/packages/wethegit-components-cli/CHANGELOG.md b/packages/wethegit-components-cli/CHANGELOG.md index edf4106e..c1a23f64 100644 --- a/packages/wethegit-components-cli/CHANGELOG.md +++ b/packages/wethegit-components-cli/CHANGELOG.md @@ -1,5 +1,27 @@ # @wethegit/components-cli +## 5.0.0 + +### Patch Changes + +- c10218d: - COMP: Removes barrel files (`index.ts`) from each component. Barrel files are known to cause circular reference issues, so we've opted to remove them in favor of explicit imports. + - COMP: Removes `fixedForwaredRef` component, as React 19+ treats `ref` just as any other prop. + - COMP: Removes the CSS modules file from `useBreakpoints`, due to Next JS and Turbopack no longer supporting the `:export` feature. Instead, this value is hard-coded in the `use-breakpoints.ts` file now. + - COMP: Overhauls the flex `grid-layout` system: + - Removes `Wrapper` component in favor of the new `variant` prop on the `Row` component. + - Removes inline padding from `Column` components, in favor of flexbox's `gap` property. Way less of a learning curve here now for newcomers. + - Adds a `flexDirection` prop to the `Flex` (and therefore the `Row`) component, to allow users to specify per-breakpoint flex directions. + - This removes the need for the `reverse` prop, so that's now gone. + - Refactors and renames the `grid-calc(n)` SCSS utility to be `get-column-width(n)`. This is more indicative of what it's used for. + - COMP: Updates the `grid-layout` system to use the latest standards created by We the Collective's Design Team. This introduces a `--grid-margin-width` CSS custom property, and updates the `Row` component's width and margin calculations to take the new value into account. + - COMP: Adds `margin: 0` to the `body` element in the CSS resets stylesheet. + - COMP: Fixes Github-flavored Markdown not working in Storybook + - COMP: Fixes static asset path on deployed Storybook (image group examples have broken images) + - CLI: Fixes SCSS import instructions syntax on the CLI after adding components + - CLI: Supports `deno` package manager. +- Updated dependencies [c10218d] + - @wethegit/components@4.0.0 + ## 4.0.1 ### Patch Changes diff --git a/packages/wethegit-components-cli/package.json b/packages/wethegit-components-cli/package.json index 9774fa3a..9b4ca690 100644 --- a/packages/wethegit-components-cli/package.json +++ b/packages/wethegit-components-cli/package.json @@ -1,6 +1,6 @@ { "name": "@wethegit/components-cli", - "version": "4.0.1", + "version": "5.0.0", "type": "module", "license": "MIT", "exports": "./dist/index.js", @@ -46,6 +46,6 @@ "ts-morph": "^24.0.0" }, "peerDependencies": { - "@wethegit/components": "~3.0.1" + "@wethegit/components": "~4.0.0" } } diff --git a/packages/wethegit-components/CHANGELOG.md b/packages/wethegit-components/CHANGELOG.md index a7312f8a..b62db661 100644 --- a/packages/wethegit-components/CHANGELOG.md +++ b/packages/wethegit-components/CHANGELOG.md @@ -1,5 +1,25 @@ # @wethegit/components +## 4.0.0 + +### Major Changes + +- c10218d: - COMP: Removes barrel files (`index.ts`) from each component. Barrel files are known to cause circular reference issues, so we've opted to remove them in favor of explicit imports. + - COMP: Removes `fixedForwaredRef` component, as React 19+ treats `ref` just as any other prop. + - COMP: Removes the CSS modules file from `useBreakpoints`, due to Next JS and Turbopack no longer supporting the `:export` feature. Instead, this value is hard-coded in the `use-breakpoints.ts` file now. + - COMP: Overhauls the flex `grid-layout` system: + - Removes `Wrapper` component in favor of the new `variant` prop on the `Row` component. + - Removes inline padding from `Column` components, in favor of flexbox's `gap` property. Way less of a learning curve here now for newcomers. + - Adds a `flexDirection` prop to the `Flex` (and therefore the `Row`) component, to allow users to specify per-breakpoint flex directions. + - This removes the need for the `reverse` prop, so that's now gone. + - Refactors and renames the `grid-calc(n)` SCSS utility to be `get-column-width(n)`. This is more indicative of what it's used for. + - COMP: Updates the `grid-layout` system to use the latest standards created by We the Collective's Design Team. This introduces a `--grid-margin-width` CSS custom property, and updates the `Row` component's width and margin calculations to take the new value into account. + - COMP: Adds `margin: 0` to the `body` element in the CSS resets stylesheet. + - COMP: Fixes Github-flavored Markdown not working in Storybook + - COMP: Fixes static asset path on deployed Storybook (image group examples have broken images) + - CLI: Fixes SCSS import instructions syntax on the CLI after adding components + - CLI: Supports `deno` package manager. + ## 3.0.2 ### Patch Changes diff --git a/packages/wethegit-components/package.json b/packages/wethegit-components/package.json index b923c952..7d67dfe4 100644 --- a/packages/wethegit-components/package.json +++ b/packages/wethegit-components/package.json @@ -1,6 +1,6 @@ { "name": "@wethegit/components", - "version": "3.0.2", + "version": "4.0.0", "main": "./src/index.ts", "sideEffects": false, "license": "MIT", From 38d4ececaecf517d20a8e307643647246ef91b16 Mon Sep 17 00:00:00 2001 From: Andrew Rubin Date: Mon, 29 Jun 2026 13:21:27 -0700 Subject: [PATCH 2/3] fix(CLI): use patch version instead of major --- packages/wethegit-components-cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/wethegit-components-cli/package.json b/packages/wethegit-components-cli/package.json index 9b4ca690..181d2995 100644 --- a/packages/wethegit-components-cli/package.json +++ b/packages/wethegit-components-cli/package.json @@ -1,6 +1,6 @@ { "name": "@wethegit/components-cli", - "version": "5.0.0", + "version": "4.0.2", "type": "module", "license": "MIT", "exports": "./dist/index.js", From 10493f770fece27978bbe70501880cb9801089dd Mon Sep 17 00:00:00 2001 From: Andrew Rubin Date: Mon, 29 Jun 2026 13:29:35 -0700 Subject: [PATCH 3/3] chore: update incorrect changelogs --- packages/wethegit-components-cli/CHANGELOG.md | 22 +++++-------------- packages/wethegit-components/CHANGELOG.md | 5 ++--- 2 files changed, 7 insertions(+), 20 deletions(-) diff --git a/packages/wethegit-components-cli/CHANGELOG.md b/packages/wethegit-components-cli/CHANGELOG.md index c1a23f64..6b1e7d65 100644 --- a/packages/wethegit-components-cli/CHANGELOG.md +++ b/packages/wethegit-components-cli/CHANGELOG.md @@ -1,22 +1,10 @@ # @wethegit/components-cli -## 5.0.0 - -### Patch Changes - -- c10218d: - COMP: Removes barrel files (`index.ts`) from each component. Barrel files are known to cause circular reference issues, so we've opted to remove them in favor of explicit imports. - - COMP: Removes `fixedForwaredRef` component, as React 19+ treats `ref` just as any other prop. - - COMP: Removes the CSS modules file from `useBreakpoints`, due to Next JS and Turbopack no longer supporting the `:export` feature. Instead, this value is hard-coded in the `use-breakpoints.ts` file now. - - COMP: Overhauls the flex `grid-layout` system: - - Removes `Wrapper` component in favor of the new `variant` prop on the `Row` component. - - Removes inline padding from `Column` components, in favor of flexbox's `gap` property. Way less of a learning curve here now for newcomers. - - Adds a `flexDirection` prop to the `Flex` (and therefore the `Row`) component, to allow users to specify per-breakpoint flex directions. - - This removes the need for the `reverse` prop, so that's now gone. - - Refactors and renames the `grid-calc(n)` SCSS utility to be `get-column-width(n)`. This is more indicative of what it's used for. - - COMP: Updates the `grid-layout` system to use the latest standards created by We the Collective's Design Team. This introduces a `--grid-margin-width` CSS custom property, and updates the `Row` component's width and margin calculations to take the new value into account. - - COMP: Adds `margin: 0` to the `body` element in the CSS resets stylesheet. - - COMP: Fixes Github-flavored Markdown not working in Storybook - - COMP: Fixes static asset path on deployed Storybook (image group examples have broken images) +## 4.0.2 + +### Patch Changes + +- c10218d: - CLI: Fixes SCSS import instructions syntax on the CLI after adding components - CLI: Supports `deno` package manager. - Updated dependencies [c10218d] diff --git a/packages/wethegit-components/CHANGELOG.md b/packages/wethegit-components/CHANGELOG.md index b62db661..49564a2f 100644 --- a/packages/wethegit-components/CHANGELOG.md +++ b/packages/wethegit-components/CHANGELOG.md @@ -4,7 +4,8 @@ ### Major Changes -- c10218d: - COMP: Removes barrel files (`index.ts`) from each component. Barrel files are known to cause circular reference issues, so we've opted to remove them in favor of explicit imports. +- c10218d: + - COMP: Removes barrel files (`index.ts`) from each component. Barrel files are known to cause circular reference issues, so we've opted to remove them in favor of explicit imports. - COMP: Removes `fixedForwaredRef` component, as React 19+ treats `ref` just as any other prop. - COMP: Removes the CSS modules file from `useBreakpoints`, due to Next JS and Turbopack no longer supporting the `:export` feature. Instead, this value is hard-coded in the `use-breakpoints.ts` file now. - COMP: Overhauls the flex `grid-layout` system: @@ -17,8 +18,6 @@ - COMP: Adds `margin: 0` to the `body` element in the CSS resets stylesheet. - COMP: Fixes Github-flavored Markdown not working in Storybook - COMP: Fixes static asset path on deployed Storybook (image group examples have broken images) - - CLI: Fixes SCSS import instructions syntax on the CLI after adding components - - CLI: Supports `deno` package manager. ## 3.0.2