Skip to content

Commit 091d446

Browse files
chore: version packages for release (rc) (#1830)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Rémi de Juvigny <[email protected]>
1 parent 09dc2ec commit 091d446

File tree

8 files changed

+99
-9
lines changed

8 files changed

+99
-9
lines changed

.changeset/pre.json

+10
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"beige-rings-destroy",
1515
"blue-humans-sin",
1616
"blue-tomatoes-allow",
17+
"bright-grapes-juggle",
1718
"brown-lamps-wink",
1819
"calm-pets-live",
1920
"calm-squids-shout",
@@ -40,12 +41,15 @@
4041
"grumpy-seahorses-give",
4142
"hip-roses-wash",
4243
"hip-sloths-occur",
44+
"hot-suits-invent",
4345
"hot-turkeys-cross",
46+
"hungry-adults-promise",
4447
"itchy-rings-listen",
4548
"large-tigers-hope",
4649
"lazy-kiwis-protect",
4750
"lemon-bikes-wait",
4851
"lemon-yaks-draw",
52+
"little-turtles-wait",
4953
"long-cats-flow",
5054
"many-bobcats-jam",
5155
"mean-cycles-nail",
@@ -54,6 +58,7 @@
5458
"modern-garlics-drop",
5559
"nasty-laws-agree",
5660
"nervous-spiders-sell",
61+
"new-cobras-flash",
5762
"nine-years-shake",
5863
"ninety-badgers-hammer",
5964
"ninety-queens-develop",
@@ -62,12 +67,15 @@
6267
"odd-impalas-invent",
6368
"plenty-hounds-crash",
6469
"proud-kings-relate",
70+
"purple-rivers-divide",
6571
"quick-buckets-grab",
6672
"quick-pans-occur",
6773
"quick-poems-kick",
6874
"quiet-roses-rule",
6975
"red-peas-suffer",
7076
"rotten-eagles-matter",
77+
"rotten-pears-vanish",
78+
"serious-mangos-pull",
7179
"seven-cats-roll",
7280
"short-pets-attack",
7381
"shy-masks-share",
@@ -84,9 +92,11 @@
8492
"swift-cycles-type",
8593
"swift-garlics-cross",
8694
"tasty-suits-sit",
95+
"three-eels-clap",
8796
"tidy-eggs-sleep",
8897
"tidy-games-divide",
8998
"tidy-rats-camp",
99+
"twelve-dogs-protect",
90100
"twenty-drinks-look",
91101
"two-feet-promise",
92102
"violet-impalas-grin",

packages/design-system/CHANGELOG.md

+60
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,65 @@
11
# @strapi/design-system
22

3+
## 2.0.0-rc.15
4+
5+
### Major Changes
6+
7+
- [#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
8+
9+
### Minor Changes
10+
11+
- [#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.
12+
13+
### Patch Changes
14+
15+
- [#1846](https://github.com/strapi/design-system/pull/1846) [`a511ac5`](https://github.com/strapi/design-system/commit/a511ac5ff8fb34cd81903aecbacd032442121909) Thanks [@remidej](https://github.com/remidej)! - feat: add menu separator component
16+
17+
- [#1833](https://github.com/strapi/design-system/pull/1833) [`ba28ea1`](https://github.com/strapi/design-system/commit/ba28ea1190f9aea82fceb64d40f08a05642b54fa) Thanks [@ShatilKhan](https://github.com/ShatilKhan)! - cleaner search bar
18+
19+
- [#1845](https://github.com/strapi/design-system/pull/1845) [`ef9cd18`](https://github.com/strapi/design-system/commit/ef9cd1806a9bcba5762caa14b4cbafa7309d23aa) Thanks [@remidej](https://github.com/remidej)! - feat: add onCloseAutoFocus to Menu.Content
20+
21+
- [#1840](https://github.com/strapi/design-system/pull/1840) [`cbf07ea`](https://github.com/strapi/design-system/commit/cbf07ea0c927e9067ed037c1705068199ba81256) Thanks [@dzakki](https://github.com/dzakki)! - sync view source to the correct path
22+
23+
- [#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
24+
25+
Added justify-content: center and align-items: center to Checkbox Indicator component
26+
27+
Original:
28+
29+
const CheckboxIndicator = styled(Checkbox.Indicator)` width: 100%;
30+
height: 100%;
31+
cursor: pointer;`;
32+
33+
Updated:
34+
35+
const CheckboxIndicator = styled(Checkbox.Indicator)`
36+
37+
- display: inline-flex;
38+
- pointer-events: auto !important;
39+
width: 100%;
40+
height: 100%;
41+
cursor: pointer;
42+
- justify-content: center;
43+
- align-items: center;
44+
`;
45+
46+
Refactored inline styling and added it to checkbox indicator stype component
47+
48+
Original:
49+
50+
`<CheckboxIndicator style={{ display: 'inline-flex', pointerEvents: 'auto'}} forceMount>`
51+
52+
Updated:
53+
54+
`<CheckboxIndicator forceMount>`
55+
56+
- [#1844](https://github.com/strapi/design-system/pull/1844) [`1b5a2d0`](https://github.com/strapi/design-system/commit/1b5a2d078c20abd63ea531a348fa9df71b1593b9) Thanks [@jorrit](https://github.com/jorrit)! - Fix inflated package size because direct dependencies not listed in package.json
57+
58+
- [#1834](https://github.com/strapi/design-system/pull/1834) [`bf538d1`](https://github.com/strapi/design-system/commit/bf538d1bb5ea599b49ec8b54595f16cea19c3ac1) Thanks [@mazzucchelli](https://github.com/mazzucchelli)! - Prevent tooltip from rendering when the label property is not passed
59+
60+
- Updated dependencies [[`1b5a2d0`](https://github.com/strapi/design-system/commit/1b5a2d078c20abd63ea531a348fa9df71b1593b9), [`fd5e74b`](https://github.com/strapi/design-system/commit/fd5e74b5f449975833e2eb3271fd271b1cddee88)]:
61+
- @strapi/ui-primitives@2.0.0-rc.15
62+
363
## 2.0.0-rc.14
464

565
### Minor Changes

packages/design-system/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@strapi/design-system",
3-
"version": "2.0.0-rc.14",
3+
"version": "2.0.0-rc.15",
44
"license": "MIT",
55
"sideEffects": false,
66
"source": "./src/index.ts",
@@ -32,13 +32,13 @@
3232
"@radix-ui/react-tabs": "1.0.4",
3333
"@radix-ui/react-tooltip": "1.0.7",
3434
"@radix-ui/react-use-callback-ref": "1.0.1",
35-
"@strapi/ui-primitives": "2.0.0-rc.14",
35+
"@strapi/ui-primitives": "2.0.0-rc.15",
3636
"@uiw/react-codemirror": "4.22.2",
3737
"lodash": "4.17.21",
3838
"react-remove-scroll": "2.5.10"
3939
},
4040
"devDependencies": {
41-
"@strapi/icons": "2.0.0-rc.14",
41+
"@strapi/icons": "2.0.0-rc.15",
4242
"@strapi/pack-up": "5.0.0",
4343
"@types/lodash": "^4.17.15",
4444
"jest": "29.7.0",

packages/icons/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @strapi/icons
22

3+
## 2.0.0-rc.15
4+
5+
### Major Changes
6+
7+
- [#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
8+
9+
### Minor Changes
10+
11+
- [#1831](https://github.com/strapi/design-system/pull/1831) [`240c73e`](https://github.com/strapi/design-system/commit/240c73eafdbfd6e47e48e042eb45b4d0f1827f75) Thanks [@vikasvarma369](https://github.com/vikasvarma369)! - added new check circle empty icon
12+
313
## 2.0.0-rc.14
414

515
## 2.0.0-rc.13

packages/icons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@strapi/icons",
3-
"version": "2.0.0-rc.14",
3+
"version": "2.0.0-rc.15",
44
"license": "MIT",
55
"sideEffects": false,
66
"main": "./dist/index.js",

packages/primitives/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @strapi/ui-primitives
22

3+
## 2.0.0-rc.15
4+
5+
### Major Changes
6+
7+
- [#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
8+
9+
### Patch Changes
10+
11+
- [#1844](https://github.com/strapi/design-system/pull/1844) [`1b5a2d0`](https://github.com/strapi/design-system/commit/1b5a2d078c20abd63ea531a348fa9df71b1593b9) Thanks [@jorrit](https://github.com/jorrit)! - Fix inflated package size because direct dependencies not listed in package.json
12+
313
## 2.0.0-rc.14
414

515
## 2.0.0-rc.13

packages/primitives/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@strapi/ui-primitives",
3-
"version": "2.0.0-rc.14",
3+
"version": "2.0.0-rc.15",
44
"license": "MIT",
55
"sideEffects": false,
66
"source": "./src/index.ts",

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -4261,9 +4261,9 @@ __metadata:
42614261
"@radix-ui/react-tabs": 1.0.4
42624262
"@radix-ui/react-tooltip": 1.0.7
42634263
"@radix-ui/react-use-callback-ref": 1.0.1
4264-
"@strapi/icons": 2.0.0-rc.14
4264+
"@strapi/icons": 2.0.0-rc.15
42654265
"@strapi/pack-up": 5.0.0
4266-
"@strapi/ui-primitives": 2.0.0-rc.14
4266+
"@strapi/ui-primitives": 2.0.0-rc.15
42674267
"@types/lodash": ^4.17.15
42684268
"@uiw/react-codemirror": 4.22.2
42694269
jest: 29.7.0
@@ -4313,7 +4313,7 @@ __metadata:
43134313
languageName: node
43144314
linkType: hard
43154315

4316-
"@strapi/[email protected].14, @strapi/icons@workspace:*, @strapi/icons@workspace:packages/icons":
4316+
"@strapi/[email protected].15, @strapi/icons@workspace:*, @strapi/icons@workspace:packages/icons":
43174317
version: 0.0.0-use.local
43184318
resolution: "@strapi/icons@workspace:packages/icons"
43194319
dependencies:
@@ -4361,7 +4361,7 @@ __metadata:
43614361
languageName: node
43624362
linkType: hard
43634363

4364-
"@strapi/[email protected].14, @strapi/ui-primitives@workspace:*, @strapi/ui-primitives@workspace:packages/primitives":
4364+
"@strapi/[email protected].15, @strapi/ui-primitives@workspace:*, @strapi/ui-primitives@workspace:packages/primitives":
43654365
version: 0.0.0-use.local
43664366
resolution: "@strapi/ui-primitives@workspace:packages/primitives"
43674367
dependencies:

0 commit comments

Comments
 (0)