Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .changeset/hungry-books-change.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/wethegit-components-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/wethegit-components-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wethegit/components-cli",
"version": "4.0.1",
"version": "4.0.2",
"type": "module",
"license": "MIT",
"exports": "./dist/index.js",
Expand Down Expand Up @@ -46,6 +46,6 @@
"ts-morph": "^24.0.0"
},
"peerDependencies": {
"@wethegit/components": "~3.0.1"
"@wethegit/components": "~4.0.0"
}
}
19 changes: 19 additions & 0 deletions packages/wethegit-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/wethegit-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wethegit/components",
"version": "3.0.2",
"version": "4.0.0",
"main": "./src/index.ts",
"sideEffects": false,
"license": "MIT",
Expand Down
Loading