foldkit 0.128.0 → 0.128.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -102,8 +102,8 @@ export const Schema = (dataSchema, errorSchema) => {
|
|
|
102
102
|
// NOTE: match, matchData, matchDataSplitEmpty, getData, and getError use
|
|
103
103
|
// refinement chains instead of Match because tagsExhaustive returns
|
|
104
104
|
// Unify<B>, which does not reduce when the handlers return a caller's
|
|
105
|
-
// naked generic
|
|
106
|
-
//
|
|
105
|
+
// naked generic. Combinators whose handlers return concrete AsyncData
|
|
106
|
+
// shapes use Match as usual.
|
|
107
107
|
export const match = Function.dual(2, (self, handlers) => {
|
|
108
108
|
if (isIdle(self)) {
|
|
109
109
|
return handlers.onIdle();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "foldkit",
|
|
3
|
-
"version": "0.128.
|
|
3
|
+
"version": "0.128.1",
|
|
4
4
|
"description": "A TypeScript frontend framework, built on Effect and architected like Elm",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -149,14 +149,14 @@
|
|
|
149
149
|
"dist"
|
|
150
150
|
],
|
|
151
151
|
"peerDependencies": {
|
|
152
|
-
"@effect/platform-browser": "4.0.0-beta.
|
|
153
|
-
"effect": "4.0.0-beta.
|
|
152
|
+
"@effect/platform-browser": "4.0.0-beta.97",
|
|
153
|
+
"effect": "4.0.0-beta.97"
|
|
154
154
|
},
|
|
155
155
|
"devDependencies": {
|
|
156
|
-
"@effect/platform-browser": "4.0.0-beta.
|
|
157
|
-
"@effect/vitest": "4.0.0-beta.
|
|
156
|
+
"@effect/platform-browser": "4.0.0-beta.97",
|
|
157
|
+
"@effect/vitest": "4.0.0-beta.97",
|
|
158
158
|
"@vitest/coverage-v8": "^4.1.9",
|
|
159
|
-
"effect": "4.0.0-beta.
|
|
159
|
+
"effect": "4.0.0-beta.97",
|
|
160
160
|
"happy-dom": "^20.10.4",
|
|
161
161
|
"rimraf": "^6.1.3",
|
|
162
162
|
"typedoc": "^0.28.19",
|