Skip to content

Commit ecc17af

Browse files
committed
chore(release): 3.0.0-next.3
1 parent 860649d commit ecc17af

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+313
-568
lines changed

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@
9191
"poor-dots-learn",
9292
"proud-shoes-accept",
9393
"real-dolphins-tease",
94+
"sad-hotels-go",
9495
"shaggy-masks-film",
9596
"shy-deers-protect",
9697
"silver-hotels-drum",

apps/compositions/CHANGELOG.md

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

3+
## 1.0.1-next.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [860649d]
8+
- @saas-ui/react@3.0.0-next.3
9+
- @saas-ui/forms@3.0.0-next.3
10+
311
## 1.0.1-next.2
412

513
### Patch Changes

apps/compositions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/compositions",
3-
"version": "1.0.1-next.2",
3+
"version": "1.0.1-next.3",
44
"description": "Registry for component compositions",
55
"scripts": {
66
"typecheck": "tsc --noEmit"

apps/website/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @saas-ui/web-v3
22

3+
## 0.1.1-next.39
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [860649d]
8+
- @saas-ui/react@3.0.0-next.3
9+
- @saas-ui/forms@3.0.0-next.3
10+
- @saas-ui/modals@3.0.0-next.3
11+
- @saas-ui-pro/react@1.0.0-next.1
12+
313
## 0.1.1-next.38
414

515
### Patch Changes

apps/website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "website",
3-
"version": "0.1.1-next.38",
3+
"version": "0.1.1-next.39",
44
"private": true,
55
"scripts": {
66
"dev": "concurrently \"velite --watch\" \"next dev\"",

packages/saas-ui-core/CHANGELOG.md

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

3+
## 3.0.0-next.1
4+
5+
### Patch Changes
6+
7+
- 860649d: Improved build speed and output
8+
39
## 3.0.0-next.0
410

511
### Major Changes

packages/saas-ui-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@saas-ui/core",
3-
"version": "3.0.0-next.0",
3+
"version": "3.0.0-next.1",
44
"description": "Unstyled primitives for building React applications.",
55
"type": "module",
66
"exports": {

packages/saas-ui-forms/CHANGELOG.md

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

3+
## 3.0.0-next.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [860649d]
8+
- @saas-ui/react@3.0.0-next.3
9+
- @saas-ui/core@3.0.0-next.1
10+
311
## 3.0.0-next.2
412

513
### Patch Changes

packages/saas-ui-forms/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@saas-ui/forms",
3-
"version": "3.0.0-next.2",
3+
"version": "3.0.0-next.3",
44
"description": "Fully functional forms for Chakra UI.",
55
"exports": {
66
".": {
@@ -84,7 +84,8 @@
8484
"@hookform/resolvers": "^4.1.3",
8585
"@saas-ui/core": "workspace:*",
8686
"@saas-ui/react": "workspace:*",
87-
"react-hook-form": "^7.54.2"
87+
"react-hook-form": "^7.54.2",
88+
"zod": "^3.24.2"
8889
},
8990
"peerDependencies": {
9091
"@chakra-ui/react": "^3.2.1",

packages/saas-ui-forms/src/create-step-form.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export function createStepForm<
7474
const StepForm = forwardRef<HTMLFormElement, any>((props, ref) => {
7575
const { children, steps, ...rest } = props
7676

77+
// @ts-expect-error
7778
const stepper = useStepForm({
7879
// resolver: resolver(props),
7980
// fieldResolver: fieldResolver(,

0 commit comments

Comments
 (0)