Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: version packages for release (rc) #1830

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"grumpy-seahorses-give",
"hip-roses-wash",
"hip-sloths-occur",
"hot-suits-invent",
"hot-turkeys-cross",
"itchy-rings-listen",
"large-tigers-hope",
Expand All @@ -62,12 +63,14 @@
"odd-impalas-invent",
"plenty-hounds-crash",
"proud-kings-relate",
"purple-rivers-divide",
"quick-buckets-grab",
"quick-pans-occur",
"quick-poems-kick",
"quiet-roses-rule",
"red-peas-suffer",
"rotten-eagles-matter",
"rotten-pears-vanish",
"seven-cats-roll",
"short-pets-attack",
"shy-masks-share",
Expand All @@ -87,6 +90,7 @@
"tidy-eggs-sleep",
"tidy-games-divide",
"tidy-rats-camp",
"twelve-dogs-protect",
"twenty-drinks-look",
"two-feet-promise",
"violet-impalas-grin",
Expand Down
48 changes: 48 additions & 0 deletions packages/design-system/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# @strapi/design-system

## 2.0.0-rc.15

### Major Changes

- [#1835](https://github.com/strapi/design-system/pull/1835) [`fd5e74b`](https://github.com/strapi/design-system/commit/fd5e74b5f449975833e2eb3271fd271b1cddee88) Thanks [@HichamELBSI](https://github.com/HichamELBSI)! - Bump ViteJS

### Minor Changes

- [#1822](https://github.com/strapi/design-system/pull/1822) [`3d7125f`](https://github.com/strapi/design-system/commit/3d7125fe5f2c6cd8fe7e3e8c56b770b85ef63851) Thanks [@mukulpadwal](https://github.com/mukulpadwal)! - Added XS size variant to IconButton component for smaller button options.

### Patch Changes

- [#1821](https://github.com/strapi/design-system/pull/1821) [`0693ce9`](https://github.com/strapi/design-system/commit/0693ce92f711bbff280dcd21d952bdc8a423892c) Thanks [@PlanckConst](https://github.com/PlanckConst)! - fix: Checkbox Item Not Centered

Added justify-content: center and align-items: center to Checkbox Indicator component

Original:

const CheckboxIndicator = styled(Checkbox.Indicator)` width: 100%;
height: 100%;
cursor: pointer;`;

Updated:

const CheckboxIndicator = styled(Checkbox.Indicator)`

- display: inline-flex;
- pointer-events: auto !important;
width: 100%;
height: 100%;
cursor: pointer;
- justify-content: center;
- align-items: center;
`;

Refactored inline styling and added it to checkbox indicator stype component

Original:

<CheckboxIndicator style={{ display: 'inline-flex', pointerEvents: 'auto'}} forceMount>

Updated:

<CheckboxIndicator forceMount>

- Updated dependencies [[`fd5e74b`](https://github.com/strapi/design-system/commit/fd5e74b5f449975833e2eb3271fd271b1cddee88)]:
- @strapi/[email protected]

## 2.0.0-rc.14

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/design-system/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@strapi/design-system",
"version": "2.0.0-rc.14",
"version": "2.0.0-rc.15",
"license": "MIT",
"sideEffects": false,
"source": "./src/index.ts",
Expand Down Expand Up @@ -30,12 +30,12 @@
"@radix-ui/react-switch": "1.0.3",
"@radix-ui/react-tabs": "1.0.4",
"@radix-ui/react-tooltip": "1.0.7",
"@strapi/ui-primitives": "2.0.0-rc.14",
"@strapi/ui-primitives": "2.0.0-rc.15",
"@uiw/react-codemirror": "4.22.2",
"react-remove-scroll": "2.5.10"
},
"devDependencies": {
"@strapi/icons": "2.0.0-rc.14",
"@strapi/icons": "2.0.0-rc.15",
"@strapi/pack-up": "5.0.0",
"jest": "29.7.0",
"react": "18.3.1",
Expand Down
10 changes: 10 additions & 0 deletions packages/icons/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @strapi/icons

## 2.0.0-rc.15

### Major Changes

- [#1835](https://github.com/strapi/design-system/pull/1835) [`fd5e74b`](https://github.com/strapi/design-system/commit/fd5e74b5f449975833e2eb3271fd271b1cddee88) Thanks [@HichamELBSI](https://github.com/HichamELBSI)! - Bump ViteJS

### Minor Changes

- [#1831](https://github.com/strapi/design-system/pull/1831) [`240c73e`](https://github.com/strapi/design-system/commit/240c73eafdbfd6e47e48e042eb45b4d0f1827f75) Thanks [@Vi369](https://github.com/Vi369)! - added new check circle empty icon

## 2.0.0-rc.14

## 2.0.0-rc.13
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@strapi/icons",
"version": "2.0.0-rc.14",
"version": "2.0.0-rc.15",
"license": "MIT",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @strapi/ui-primitives

## 2.0.0-rc.15

### Major Changes

- [#1835](https://github.com/strapi/design-system/pull/1835) [`fd5e74b`](https://github.com/strapi/design-system/commit/fd5e74b5f449975833e2eb3271fd271b1cddee88) Thanks [@HichamELBSI](https://github.com/HichamELBSI)! - Bump ViteJS

## 2.0.0-rc.14

## 2.0.0-rc.13
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@strapi/ui-primitives",
"version": "2.0.0-rc.14",
"version": "2.0.0-rc.15",
"license": "MIT",
"sideEffects": false,
"source": "./src/index.ts",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4259,9 +4259,9 @@ __metadata:
"@radix-ui/react-switch": 1.0.3
"@radix-ui/react-tabs": 1.0.4
"@radix-ui/react-tooltip": 1.0.7
"@strapi/icons": 2.0.0-rc.14
"@strapi/icons": 2.0.0-rc.15
"@strapi/pack-up": 5.0.0
"@strapi/ui-primitives": 2.0.0-rc.14
"@strapi/ui-primitives": 2.0.0-rc.15
"@uiw/react-codemirror": 4.22.2
jest: 29.7.0
react: 18.3.1
Expand Down Expand Up @@ -4309,7 +4309,7 @@ __metadata:
languageName: node
linkType: hard

"@strapi/[email protected].14, @strapi/icons@workspace:*, @strapi/icons@workspace:packages/icons":
"@strapi/[email protected].15, @strapi/icons@workspace:*, @strapi/icons@workspace:packages/icons":
version: 0.0.0-use.local
resolution: "@strapi/icons@workspace:packages/icons"
dependencies:
Expand Down Expand Up @@ -4357,7 +4357,7 @@ __metadata:
languageName: node
linkType: hard

"@strapi/[email protected].14, @strapi/ui-primitives@workspace:*, @strapi/ui-primitives@workspace:packages/primitives":
"@strapi/[email protected].15, @strapi/ui-primitives@workspace:*, @strapi/ui-primitives@workspace:packages/primitives":
version: 0.0.0-use.local
resolution: "@strapi/ui-primitives@workspace:packages/primitives"
dependencies:
Expand Down