@sheinx/hooks 3.2.0-rc.2 → 3.2.0-rc.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,10 @@
1
+ import { Draft, PatchListener } from 'immer';
1
2
  export { current } from 'immer';
2
- export declare const produce: <T>(value: T, cb: (value: T) => void) => T;
3
+ declare const NOTHING: unique symbol;
4
+ type ValidRecipeReturnType<State> = State | void | undefined | (State extends undefined ? typeof NOTHING : never);
5
+ interface IProduce {
6
+ <Base, D = Draft<Base>>(// By using a default inferred D, rather than Draft<Base> in the recipe, we can override it.
7
+ base: Base, recipe: (draft: D) => ValidRecipeReturnType<D>, listener?: PatchListener): Base;
8
+ }
9
+ export declare const produce: IProduce;
3
10
  //# sourceMappingURL=immer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"immer.d.ts","sourceRoot":"","sources":["immer.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAChC,eAAO,MAAM,OAAO,kCAAmC,IAAI,MAE1D,CAAC"}
1
+ {"version":3,"file":"immer.d.ts","sourceRoot":"","sources":["immer.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAC7C,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAEhC,OAAO,CAAC,MAAM,OAAO,EAAE,OAAO,MAAM,CAAC;AACrC,KAAK,qBAAqB,CAAC,KAAK,IAC5B,KAAK,GACL,IAAI,GACJ,SAAS,GACT,CAAC,KAAK,SAAS,SAAS,GAAG,OAAO,OAAO,GAAG,KAAK,CAAC,CAAC;AACvD,UAAU,QAAQ;IAChB,CAAC,IAAI,EAAE,CAAC,GAAG,KAAK,CAAC,IAAI,CAAC,EAAG,4FAA4F;IACnH,IAAI,EAAE,IAAI,EACV,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,qBAAqB,CAAC,CAAC,CAAC,EAC9C,QAAQ,CAAC,EAAE,aAAa,GACvB,IAAI,CAAC;CACT;AAED,eAAO,MAAM,OAAO,UAGN,CAAC"}
@@ -11,14 +11,10 @@ Object.defineProperty(exports, "current", {
11
11
  });
12
12
  exports.produce = void 0;
13
13
  var _immer = require("immer");
14
- // import { produce as produce2, getSnapshot } from '@shined/reactive/vanilla';
15
-
16
- // export const produce = ((...args: any) => {
17
- // return produce2.apply(null, args);
18
- // }) as typeof produce2;
19
-
20
- // export const current = getSnapshot;
21
-
22
- var produce = exports.produce = function produce(value, cb) {
23
- return (0, _immer.produce)(value, cb);
14
+ var produce = exports.produce = function produce() {
15
+ (0, _immer.setAutoFreeze)(false);
16
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
17
+ args[_key] = arguments[_key];
18
+ }
19
+ return _immer.produce.apply(null, args);
24
20
  };
@@ -1,3 +1,10 @@
1
+ import { Draft, PatchListener } from 'immer';
1
2
  export { current } from 'immer';
2
- export declare const produce: <T>(value: T, cb: (value: T) => void) => T;
3
+ declare const NOTHING: unique symbol;
4
+ type ValidRecipeReturnType<State> = State | void | undefined | (State extends undefined ? typeof NOTHING : never);
5
+ interface IProduce {
6
+ <Base, D = Draft<Base>>(// By using a default inferred D, rather than Draft<Base> in the recipe, we can override it.
7
+ base: Base, recipe: (draft: D) => ValidRecipeReturnType<D>, listener?: PatchListener): Base;
8
+ }
9
+ export declare const produce: IProduce;
3
10
  //# sourceMappingURL=immer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"immer.d.ts","sourceRoot":"","sources":["immer.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAChC,eAAO,MAAM,OAAO,kCAAmC,IAAI,MAE1D,CAAC"}
1
+ {"version":3,"file":"immer.d.ts","sourceRoot":"","sources":["immer.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAC7C,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAEhC,OAAO,CAAC,MAAM,OAAO,EAAE,OAAO,MAAM,CAAC;AACrC,KAAK,qBAAqB,CAAC,KAAK,IAC5B,KAAK,GACL,IAAI,GACJ,SAAS,GACT,CAAC,KAAK,SAAS,SAAS,GAAG,OAAO,OAAO,GAAG,KAAK,CAAC,CAAC;AACvD,UAAU,QAAQ;IAChB,CAAC,IAAI,EAAE,CAAC,GAAG,KAAK,CAAC,IAAI,CAAC,EAAG,4FAA4F;IACnH,IAAI,EAAE,IAAI,EACV,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,qBAAqB,CAAC,CAAC,CAAC,EAC9C,QAAQ,CAAC,EAAE,aAAa,GACvB,IAAI,CAAC;CACT;AAED,eAAO,MAAM,OAAO,UAGN,CAAC"}
@@ -1,13 +1,9 @@
1
- // import { produce as produce2, getSnapshot } from '@shined/reactive/vanilla';
2
-
3
- // export const produce = ((...args: any) => {
4
- // return produce2.apply(null, args);
5
- // }) as typeof produce2;
6
-
7
- // export const current = getSnapshot;
8
-
9
- import { produce as produce2 } from 'immer';
1
+ import { produce as produce2, setAutoFreeze } from 'immer';
10
2
  export { current } from 'immer';
11
- export var produce = function produce(value, cb) {
12
- return produce2(value, cb);
3
+ export var produce = function produce() {
4
+ setAutoFreeze(false);
5
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
6
+ args[_key] = arguments[_key];
7
+ }
8
+ return produce2.apply(null, args);
13
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sheinx/hooks",
3
- "version": "3.2.0-rc.2",
3
+ "version": "3.2.0-rc.3",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "MIT",