Update bun minor+patch updates to v3.10.1 - abandoned #48

Open
renovate-bot wants to merge 30 commits from renovate/bun-minor-patch into master
Showing only changes of commit d5b441a48b - Show all commits
+2 -2
View File
@@ -49,7 +49,7 @@ const filterIssuesByPath = (
issue.path.length >= path.length && Array.every(path, (p, i) => p === issue.path[i])
)
export const focusObjectField: {
export const focusObjectOn: {
<P extends readonly PropertyKey[], A extends object, I extends object, ER, EW, K extends keyof A & keyof I>(
self: Form<P, A, I, ER, EW>,
key: K,
@@ -67,7 +67,7 @@ export const focusObjectField: {
return new FormImpl(
path,
Subscribable.mapOption(form.value, a => a[key]),
Lens.focusObjectField(form.encodedValue, key),
Lens.focusObjectOn(form.encodedValue, key),
Subscribable.map(form.issues, issues => filterIssuesByPath(issues, path)),
form.isValidating,
form.canCommit,