@soonspacejs/plugin-cps-scheme 2.9.6 → 2.10.0-rc.0
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.d.ts +2 -13
- package/dist/index.esm.js +1 -1
- package/dist/types.d.ts +4 -0
- package/package.json +7 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,33 +1,22 @@
|
|
|
1
1
|
import SoonSpace from 'soonspacejs';
|
|
2
|
-
import
|
|
2
|
+
import CpsSoonmanagerPlugin from '@soonspacejs/plugin-cps-soonmanager';
|
|
3
3
|
import { Platter } from './controller/platter';
|
|
4
4
|
import { ISchemeData, TInitOptions } from './types';
|
|
5
5
|
declare class CpsSchemePlugin {
|
|
6
6
|
readonly ssp: SoonSpace;
|
|
7
|
-
|
|
8
|
-
soonflow: SoonFlow | null;
|
|
9
|
-
flowListData: any[];
|
|
7
|
+
cpsSoonmanagerPlugin: CpsSoonmanagerPlugin;
|
|
10
8
|
platter: Platter | null;
|
|
11
9
|
schemeData: ISchemeData[] | null;
|
|
12
10
|
platterDomElement: SVGElement | null;
|
|
13
11
|
private _platterListener;
|
|
14
12
|
private _platterState;
|
|
15
13
|
constructor(ssp: SoonSpace);
|
|
16
|
-
/**
|
|
17
|
-
* 设置 path
|
|
18
|
-
* @param path
|
|
19
|
-
*/
|
|
20
|
-
setPath(path: string): this;
|
|
21
14
|
/**
|
|
22
15
|
* 初始化预案八卦盘
|
|
23
16
|
* @param options
|
|
24
17
|
* @returns
|
|
25
18
|
*/
|
|
26
19
|
init(options: TInitOptions): Promise<void>;
|
|
27
|
-
/**
|
|
28
|
-
* 初始化流程数据
|
|
29
|
-
*/
|
|
30
|
-
private initFlowData;
|
|
31
20
|
/**
|
|
32
21
|
* 设置按钮状态
|
|
33
22
|
*/
|