Skip to content

Commit 67c7611

Browse files
ci(changesets): versioning packages
1 parent e739f4b commit 67c7611

10 files changed

Lines changed: 62 additions & 29 deletions

File tree

.changeset/long-mugs-exist.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/smooth-chefs-behave.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

common/config/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @fuel-ui/config
22

3+
## 0.14.0
4+
5+
### Minor Changes
6+
7+
- ✨ Feat: add new flexible and custom theme system [(all details about the RFC here)](https://github.com/FuelLabs/fuel-ui/issues/224) and an [example of usage here](https://github.com/FuelLabs/fuel-ui/tree/feat/theme-system/examples/custom-theme)
8+
Feat: now `Flex`, `BoxCentered`, `Grid` and `Stack` can be used within `Box` as namespaced components:
9+
```tsx
10+
import { Box } from '@fuel-ui/react';
11+
function App() {
12+
return <Box.Flex>Hello world</Box.Flex>;
13+
}
14+
```
15+
Feat: new polymorphic components system. Now `as` props automatically adjust props typing, by [@pedronauck](https://github.com/pedronauck) (See [#228](https://github.com/FuelLabs/fuel-ui/pull/228))
16+
317
## 0.13.0
418

519
### Minor Changes

common/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ui/config",
3-
"version": "0.13.0",
3+
"version": "0.14.0",
44
"license": "Apache-2.0",
55
"main": "./index.js",
66
"publishConfig": {

common/test-utils/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @fuel-ui/test-utils
22

3+
## 0.14.0
4+
5+
### Minor Changes
6+
7+
- ✨ Feat: add new flexible and custom theme system [(all details about the RFC here)](https://github.com/FuelLabs/fuel-ui/issues/224) and an [example of usage here](https://github.com/FuelLabs/fuel-ui/tree/feat/theme-system/examples/custom-theme)
8+
Feat: now `Flex`, `BoxCentered`, `Grid` and `Stack` can be used within `Box` as namespaced components:
9+
```tsx
10+
import { Box } from '@fuel-ui/react';
11+
function App() {
12+
return <Box.Flex>Hello world</Box.Flex>;
13+
}
14+
```
15+
Feat: new polymorphic components system. Now `as` props automatically adjust props typing, by [@pedronauck](https://github.com/pedronauck) (See [#228](https://github.com/FuelLabs/fuel-ui/pull/228))
16+
317
## 0.13.0
418

519
### Minor Changes

common/test-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ui/test-utils",
3-
"version": "0.13.0",
3+
"version": "0.14.0",
44
"license": "Apache-2.0",
55
"main": "./src/index.ts",
66
"publishConfig": {

design-system/css/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @fuel-ui/css
22

3+
## 0.14.0
4+
5+
### Minor Changes
6+
7+
- Chore: fork stitches packages, improving typing and class generation, by [@pedronauck](https://github.com/pedronauck) (See [#227](https://github.com/FuelLabs/fuel-ui/pull/227))
8+
- ✨ Feat: add new flexible and custom theme system [(all details about the RFC here)](https://github.com/FuelLabs/fuel-ui/issues/224) and an [example of usage here](https://github.com/FuelLabs/fuel-ui/tree/feat/theme-system/examples/custom-theme)
9+
Feat: now `Flex`, `BoxCentered`, `Grid` and `Stack` can be used within `Box` as namespaced components:
10+
```tsx
11+
import { Box } from '@fuel-ui/react';
12+
function App() {
13+
return <Box.Flex>Hello world</Box.Flex>;
14+
}
15+
```
16+
Feat: new polymorphic components system. Now `as` props automatically adjust props typing, by [@pedronauck](https://github.com/pedronauck) (See [#228](https://github.com/FuelLabs/fuel-ui/pull/228))
17+
318
## 0.13.0
419

520
### Minor Changes

design-system/css/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ui/css",
3-
"version": "0.13.0",
3+
"version": "0.14.0",
44
"license": "Apache-2.0",
55
"main": "./src/index.ts",
66
"publishConfig": {

design-system/react/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @fuel-ui/react
22

3+
## 0.14.0
4+
5+
### Minor Changes
6+
7+
- Chore: fork stitches packages, improving typing and class generation, by [@pedronauck](https://github.com/pedronauck) (See [#227](https://github.com/FuelLabs/fuel-ui/pull/227))
8+
- ✨ Feat: add new flexible and custom theme system [(all details about the RFC here)](https://github.com/FuelLabs/fuel-ui/issues/224) and an [example of usage here](https://github.com/FuelLabs/fuel-ui/tree/feat/theme-system/examples/custom-theme)
9+
Feat: now `Flex`, `BoxCentered`, `Grid` and `Stack` can be used within `Box` as namespaced components:
10+
```tsx
11+
import { Box } from '@fuel-ui/react';
12+
function App() {
13+
return <Box.Flex>Hello world</Box.Flex>;
14+
}
15+
```
16+
Feat: new polymorphic components system. Now `as` props automatically adjust props typing, by [@pedronauck](https://github.com/pedronauck) (See [#228](https://github.com/FuelLabs/fuel-ui/pull/228))
17+
318
## 0.13.0
419

520
### Minor Changes

design-system/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ui/react",
3-
"version": "0.13.0",
3+
"version": "0.14.0",
44
"main": "./src/index.tsx",
55
"publishConfig": {
66
"access": "public",

0 commit comments

Comments
 (0)