Skip to content

Commit c698f8d

Browse files
chore(release): version package (#152)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent caf0af2 commit c698f8d

File tree

5 files changed

+27
-19
lines changed

5 files changed

+27
-19
lines changed

.changeset/hip-terms-press.md

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

packages/formsnap/CHANGELOG.md

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# formsnap
22

3+
## 0.5.1
4+
5+
### Patch Changes
6+
7+
- Fixed bug where `FieldErrors` wouldn't render errors for nested `dataType: "json"` `ElementField`s ([#151](https://github.com/svecosystem/formsnap/pull/151))
8+
39
## 0.5.0
410

511
### Minor Changes
@@ -165,18 +171,18 @@
165171

166172
```ts
167173
export type FormFieldContext = {
168-
name: string;
169-
ids: {
170-
input: string;
171-
description: string;
172-
validation: string;
173-
};
174-
errors: Writable<string[] | undefined>;
175-
value: Writable<unknown>;
176-
hasDescription: Writable<boolean>;
177-
hasValidation: Writable<boolean>;
178-
attrStore: AttrStore;
179-
actions: ActionsObject;
174+
name: string;
175+
ids: {
176+
input: string;
177+
description: string;
178+
validation: string;
179+
};
180+
errors: Writable<string[] | undefined>;
181+
value: Writable<unknown>;
182+
hasDescription: Writable<boolean>;
183+
hasValidation: Writable<boolean>;
184+
attrStore: AttrStore;
185+
actions: ActionsObject;
180186
};
181187
```
182188

packages/formsnap/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "formsnap",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"scripts": {
55
"dev": "pnpm watch",
66
"build": "pnpm run package",

sites/docs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# docs
22

3+
## 0.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`caf0af23abff59aa1c6925adbefbc682ede367d5`](https://github.com/svecosystem/formsnap/commit/caf0af23abff59aa1c6925adbefbc682ede367d5)]:
8+
- formsnap@0.5.1
9+
310
## 0.0.1
411

512
### Patch Changes

sites/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"private": true,
55
"scripts": {
66
"dev": "concurrently \"pnpm:dev:content\" \"pnpm:dev:svelte\"",

0 commit comments

Comments
 (0)