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..6b1e7d65 100644 --- a/packages/wethegit-components-cli/CHANGELOG.md +++ b/packages/wethegit-components-cli/CHANGELOG.md @@ -1,5 +1,15 @@ # @wethegit/components-cli +## 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] + - @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..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": "4.0.1", + "version": "4.0.2", "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..49564a2f 100644 --- a/packages/wethegit-components/CHANGELOG.md +++ b/packages/wethegit-components/CHANGELOG.md @@ -1,5 +1,24 @@ # @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) + ## 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",