@rkmodules/rules 0.0.53 → 0.0.54
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/dist/index.cjs.js +9 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +9 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/lib/Flow/Context.d.ts +1 -1
- package/package.json +4 -3
|
@@ -7,5 +7,5 @@ type FlowContextState = {
|
|
|
7
7
|
};
|
|
8
8
|
export declare const FlowContext: React.Context<FlowContextState>;
|
|
9
9
|
export declare const useEngine: () => Engine;
|
|
10
|
-
export declare const useControls: () =>
|
|
10
|
+
export declare const useControls: () => {};
|
|
11
11
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rkmodules/rules",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.54",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -18,9 +18,10 @@
|
|
|
18
18
|
"exports": {
|
|
19
19
|
".": {
|
|
20
20
|
"import": "./dist/index.esm.js",
|
|
21
|
-
"require": "./dist/index.cjs.js"
|
|
21
|
+
"require": "./dist/index.cjs.js",
|
|
22
|
+
"types": "./dist/index.d.ts"
|
|
22
23
|
},
|
|
23
|
-
"./index.css": "./dist/index.css"
|
|
24
|
+
"./index.css": "./dist/index.cjs.css"
|
|
24
25
|
},
|
|
25
26
|
"scripts": {
|
|
26
27
|
"test": "jest",
|