@bigbinary/neeto-commons-frontend 2.0.67 → 2.0.69
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.
- package/configs/babel.js +2 -1
- package/configs/webpack/resolve.js +1 -0
- package/cypress-utils.cjs.js +152 -10329
- package/cypress-utils.cjs.js.map +1 -1
- package/cypress-utils.js +152 -10329
- package/cypress-utils.js.map +1 -1
- package/initializers.cjs.js +84 -5029
- package/initializers.cjs.js.map +1 -1
- package/initializers.js +84 -5029
- package/initializers.js.map +1 -1
- package/package.json +3 -1
- package/pure.cjs.js +108 -5385
- package/pure.cjs.js.map +1 -1
- package/pure.js +109 -5386
- package/pure.js.map +1 -1
- package/react-utils.cjs.js +189 -7558
- package/react-utils.cjs.js.map +1 -1
- package/react-utils.d.ts +2 -3
- package/react-utils.js +189 -7558
- package/react-utils.js.map +1 -1
- package/utils.cjs.js +47 -2497
- package/utils.cjs.js.map +1 -1
- package/utils.d.ts +3 -3
- package/utils.js +47 -2497
- package/utils.js.map +1 -1
package/react-utils.d.ts
CHANGED
|
@@ -396,9 +396,8 @@ type ZustandConfigType = (set: (data: any) => void, get: () => any, api: any) =>
|
|
|
396
396
|
* @endexample
|
|
397
397
|
*/
|
|
398
398
|
export function withImmutableActions(config: ZustandConfigType): ZustandConfigType;
|
|
399
|
-
export declare type ZustandStoreHook = {
|
|
400
|
-
|
|
401
|
-
(): any;
|
|
399
|
+
export declare type ZustandStoreHook = UseBoundStore<StoreApi<any>> & {
|
|
400
|
+
pick: (path?: string | string[]) => any;
|
|
402
401
|
};
|
|
403
402
|
/**
|
|
404
403
|
*
|