Skip to content

Commit cd89d23

Browse files
chore: release (beta) (#5141)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 1464f54 commit cd89d23

File tree

9 files changed

+180
-7
lines changed

9 files changed

+180
-7
lines changed

.changeset/pre.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
"@utils/test": "0.0.1"
1717
},
1818
"changesets": [
19+
"bitter-turtles-knock",
20+
"major-views-add",
1921
"modern-poems-lose",
2022
"sixty-beds-repair",
2123
"spicy-sites-march",

packages/form/CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 4.0.0-beta.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`1464f54`](https://github.com/scaleway/ultraviolet/commit/1464f54cb9099b6daa51b254cc935f36147004d0), [`4308966`](https://github.com/scaleway/ultraviolet/commit/4308966450c594969417d3740d984099463e7da8)]:
8+
- @ultraviolet/icons@4.0.0-beta.1
9+
- @ultraviolet/ui@2.0.0-beta.1
10+
311
## 4.0.0-beta.0
412

513
### Major Changes
@@ -11,9 +19,9 @@
1119
### Patch Changes
1220

1321
- Updated dependencies [[`37a7d63`](https://github.com/scaleway/ultraviolet/commit/37a7d632cd1e61d7615e5356fc179ec08f3bec09), [`a928589`](https://github.com/scaleway/ultraviolet/commit/a9285896d638e34eba9bb25c55c38de2aef4e210), [`865c160`](https://github.com/scaleway/ultraviolet/commit/865c160aee2db5bd5e7b357e9693a45a17ef4284)]:
14-
- @ultraviolet/themes@2.0.0-beta.0
15-
- @ultraviolet/ui@2.0.0-beta.0
16-
- @ultraviolet/icons@4.0.0-beta.0
22+
- @ultraviolet/themes@2.0.0-beta.0
23+
- @ultraviolet/ui@2.0.0-beta.0
24+
- @ultraviolet/icons@4.0.0-beta.0
1725

1826
## 3.17.7
1927

packages/form/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ultraviolet/form",
3-
"version": "4.0.0-beta.0",
3+
"version": "4.0.0-beta.1",
44
"description": "Ultraviolet Form",
55
"homepage": "https://github.com/scaleway/ultraviolet#readme",
66
"repository": {

packages/icons/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 4.0.0-beta.1
4+
5+
### Patch Changes
6+
7+
- [#5142](https://github.com/scaleway/ultraviolet/pull/5142) [`1464f54`](https://github.com/scaleway/ultraviolet/commit/1464f54cb9099b6daa51b254cc935f36147004d0) Thanks [@matthprost](https://github.com/matthprost)! - New logo icons
8+
39
## 4.0.0-beta.0
410

511
### Major Changes

packages/icons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ultraviolet/icons",
3-
"version": "4.0.0-beta.0",
3+
"version": "4.0.0-beta.1",
44
"description": "Ultraviolet Icons",
55
"homepage": "https://github.com/scaleway/ultraviolet#readme",
66
"repository": {

packages/plus/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @ultraviolet/plus
22

3+
## 1.0.0-beta.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`1464f54`](https://github.com/scaleway/ultraviolet/commit/1464f54cb9099b6daa51b254cc935f36147004d0), [`4308966`](https://github.com/scaleway/ultraviolet/commit/4308966450c594969417d3740d984099463e7da8)]:
8+
- @ultraviolet/icons@4.0.0-beta.1
9+
- @ultraviolet/ui@2.0.0-beta.1
10+
311
## 1.0.0-beta.0
412

513
### Major Changes

packages/plus/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ultraviolet/plus",
3-
"version": "1.0.0-beta.0",
3+
"version": "1.0.0-beta.1",
44
"description": "Ultraviolet Plus",
55
"homepage": "https://github.com/scaleway/ultraviolet#readme",
66
"repository": {

packages/ui/CHANGELOG.md

Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,154 @@
11
# Change Log
22

3+
## 2.0.0-beta.1
4+
5+
### Major Changes
6+
7+
- [#5139](https://github.com/scaleway/ultraviolet/pull/5139) [`4308966`](https://github.com/scaleway/ultraviolet/commit/4308966450c594969417d3740d984099463e7da8) Thanks [@matthprost](https://github.com/matthprost)! - Following the icon major update some components have recieved a small update to improve the usage of icons.
8+
9+
## Detailed migration per components
10+
11+
### Button
12+
13+
`icon`, `iconPosition`, `iconVariant` props are deprecated. You can directly use the imported icon you need in the children.
14+
15+
```tsx
16+
// Before
17+
import { Button } from "@ultraviolet/ui";
18+
19+
<Button icon="pencil" iconPosition="right" iconVariant="outline">
20+
Edit
21+
</Button>;
22+
```
23+
24+
```tsx
25+
// After
26+
import { Button } from "@ultraviolet/ui";
27+
import { PencilOutlineIcon } from "@ultraviolet/icons";
28+
29+
<Button>
30+
Edit <PencilOutlineIcon />
31+
</Button>;
32+
```
33+
34+
### Badge
35+
36+
`icon` props is deprecated. You can directly use the imported icon you need in the children.
37+
38+
```tsx
39+
// Before
40+
import { Badge } from '@ultraviolet/ui'
41+
42+
<Badge icon="pencil">
43+
Edit
44+
</Button>
45+
```
46+
47+
```tsx
48+
// After
49+
import { Badge } from "@ultraviolet/ui";
50+
import { PencilOutlineIcon } from "@ultraviolet/icons";
51+
52+
<Badge>
53+
Edit <PencilOutlineIcon />
54+
</Badge>;
55+
```
56+
57+
### Bullet
58+
59+
`icon` and `iconVariant` props are deprecated. You can directly use the imported icon you need in the children.
60+
61+
```tsx
62+
// Before
63+
import { Bullet } from '@ultraviolet/ui'
64+
65+
<Bullet icon="check" />
66+
<Bullet icon="check" iconVariant="outlined" />
67+
```
68+
69+
```tsx
70+
// After
71+
import { Bullet } from '@ultraviolet/ui'
72+
import { CheckIcon, CheckCircleOutlineIcon } from '@ultraviolet/icons'
73+
74+
<Bullet>
75+
<CheckIcon />
76+
</Bullet>
77+
78+
<Bullet>
79+
<CheckCircleOutlineIcon />
80+
</Bullet>
81+
```
82+
83+
### AvatarV2
84+
85+
`icon` prop is deprecated. You can directly use the imported icon you need in the children.
86+
87+
```tsx
88+
// Before
89+
import { AvatarV2 } from "@ultraviolet/ui";
90+
91+
<AvatarV2 variant="icon" shape="circle" sentiment="primary" icon="mosaic" />;
92+
```
93+
94+
```tsx
95+
// After
96+
import { AvatarV2 } from "@ultraviolet/ui";
97+
import { MosaicIcon } from "@ultraviolet/icons";
98+
99+
<AvatarV2 variant="icon" shape="circle" sentiment="primary">
100+
<MosaicIcon size="xlarge" />
101+
</AvatarV2>;
102+
```
103+
104+
### Separator
105+
106+
`icon` prop is deprecated. You can directly use the imported icon you need in the children.
107+
108+
```tsx
109+
// Before
110+
import { Separator } from "@ultraviolet/ui";
111+
112+
<Separator direction="vertical" icon="ray-top-arrow" />;
113+
```
114+
115+
```tsx
116+
// After
117+
import { Separator } from "@ultraviolet/ui";
118+
import { RayTopArrowIcon } from "@ultraviolet/icons";
119+
120+
<Separator direction="vertical">
121+
<RayTopArrowIcon size="medium" />
122+
</Separator>;
123+
```
124+
125+
### Tag
126+
127+
`icon` prop is deprecated. You can directly use the imported icon you need in the children.
128+
129+
```tsx
130+
// Before
131+
import { Tag } from "@ultraviolet/ui";
132+
133+
<Tag icon="check">Valid</Tag>;
134+
```
135+
136+
```tsx
137+
// After
138+
import { Tag } from "@ultraviolet/ui";
139+
import { CheckIcon } from "@ultraviolet/icons";
140+
141+
<Tag>
142+
<CheckIcon size="small" />
143+
Valid
144+
</Tag>;
145+
```
146+
147+
### Patch Changes
148+
149+
- Updated dependencies [[`1464f54`](https://github.com/scaleway/ultraviolet/commit/1464f54cb9099b6daa51b254cc935f36147004d0)]:
150+
- @ultraviolet/icons@4.0.0-beta.1
151+
3152
## 2.0.0-beta.0
4153

5154
### Major Changes

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ultraviolet/ui",
3-
"version": "2.0.0-beta.0",
3+
"version": "2.0.0-beta.1",
44
"description": "Ultraviolet UI",
55
"homepage": "https://github.com/scaleway/ultraviolet#readme",
66
"repository": {

0 commit comments

Comments
 (0)