Skip to content

Commit 6f7afcc

Browse files
Version Packages (#136)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 790f8d4 commit 6f7afcc

File tree

5 files changed

+28
-19
lines changed

5 files changed

+28
-19
lines changed

.changeset/curvy-stingrays-compare.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.0
4+
5+
### Minor Changes
6+
7+
- Rewrite entire library - see https://formsnap.dev ([#131](https://github.com/huntabyte/formsnap/pull/131))
8+
39
## 0.4.4
410

511
### Patch Changes
@@ -159,18 +165,18 @@
159165

160166
```ts
161167
export type FormFieldContext = {
162-
name: string;
163-
ids: {
164-
input: string;
165-
description: string;
166-
validation: string;
167-
};
168-
errors: Writable<string[] | undefined>;
169-
value: Writable<unknown>;
170-
hasDescription: Writable<boolean>;
171-
hasValidation: Writable<boolean>;
172-
attrStore: AttrStore;
173-
actions: ActionsObject;
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;
174180
};
175181
```
176182

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.4.4",
3+
"version": "0.5.0",
44
"scripts": {
55
"dev": "pnpm watch",
66
"build": "vite build && pnpm run package",

sites/docs/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# docs
2+
3+
## 0.0.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`790f8d4c55d21826b873f185080b110c7dc7121a`](https://github.com/huntabyte/formsnap/commit/790f8d4c55d21826b873f185080b110c7dc7121a)]:
8+
- formsnap@0.5.0

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.0",
3+
"version": "0.0.1",
44
"private": true,
55
"scripts": {
66
"dev": "concurrently \"pnpm:dev:content\" \"pnpm:dev:svelte\"",

0 commit comments

Comments
 (0)