@kengic/core.react 0.0.1-beta.5 → 0.0.1-beta.7
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/kengic-core.react.js +3545 -3551
- package/package.json +1 -1
- package/src/component/KgWorkStation/index.hooks.d.ts +0 -8
package/package.json
CHANGED
|
@@ -6,10 +6,6 @@ export interface IDoKgWorkStation {
|
|
|
6
6
|
* 关闭弹窗.
|
|
7
7
|
*/
|
|
8
8
|
closeModal(): void;
|
|
9
|
-
/**
|
|
10
|
-
* 挂载.
|
|
11
|
-
*/
|
|
12
|
-
mount(): void;
|
|
13
9
|
/**
|
|
14
10
|
* 监听事件: 挂载.
|
|
15
11
|
*
|
|
@@ -34,10 +30,6 @@ export interface IDoKgWorkStation {
|
|
|
34
30
|
* @param fn 回调函数, 可以通过参数 state 获取到最新的数据.
|
|
35
31
|
*/
|
|
36
32
|
subscribe(fn: (state: IKgWorkStationState[string]) => void): () => void;
|
|
37
|
-
/**
|
|
38
|
-
* 卸载.
|
|
39
|
-
*/
|
|
40
|
-
unmount(): void;
|
|
41
33
|
}
|
|
42
34
|
/**
|
|
43
35
|
*
|