udm-rules-vue 0.0.2 → 0.0.3
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/EventBus.d.ts +1 -0
- package/dist/FileDeployPackageBuilder.d.ts +0 -2
- package/dist/FileUtils.d.ts +17 -22
- package/dist/OutputChannelManager.d.ts +37 -6
- package/dist/ServerRequestResponse.d.ts +6 -0
- package/dist/assets/builtin/Constants.bom +9 -0
- package/dist/assets/builtin/Constants_zh_CN.voc +11 -1
- package/dist/assets/builtin/Scorecard.bom +8 -0
- package/dist/assets/builtin/Scorecard_zh_CN.voc +10 -0
- package/dist/assets/builtin/StaticMethod.bom +1 -0
- package/dist/assets/builtin/StaticMethod_zh_CN.voc +1 -0
- package/dist/assets/css/index.css +1 -1
- package/dist/bom/bomSerialize.d.ts +2 -1
- package/dist/bom/model.d.ts +2 -1
- package/dist/brl/PureWebRuleEditor.vue.d.ts +4 -3
- package/dist/brl/RuleDocument.d.ts +1 -1
- package/dist/brl/RuleEditor.vue.d.ts +2 -2
- package/dist/brl/RuleEditorComponent.vue.d.ts +3 -3
- package/dist/brl/RuleUtils.d.ts +1 -1
- package/dist/command/CompileB2xFilesCommand.d.ts +4 -0
- package/dist/command/CompileRuleFilesCommand.d.ts +9 -4
- package/dist/command/DiagnoseFileCommand.d.ts +6 -0
- package/dist/command/SyncCompiledFilesCommand.d.ts +3 -0
- package/dist/command/UpdateUuidCommand.d.ts +2 -2
- package/dist/compile/BomCompiler.d.ts +96 -0
- package/dist/compile/DecisionTableCompiler.d.ts +4 -4
- package/dist/compile/ExpressionBuilder.d.ts +0 -3
- package/dist/compile/FileCompiler.d.ts +11 -2
- package/dist/compile/FlowCompiler.d.ts +11 -4
- package/dist/compile/PureWebCompiler.d.ts +1 -0
- package/dist/compile/RuleCompiler.d.ts +2 -2
- package/dist/compile/ScoreCardCompiler.d.ts +14 -0
- package/dist/compile/compileRuleScript.d.ts +6 -1
- package/dist/components/message/Toast.vue.d.ts +6 -0
- package/dist/components/message/events.d.ts +20 -0
- package/dist/components/process/events.d.ts +0 -3
- package/dist/components/tree/TreeNode.vue.d.ts +2 -0
- package/dist/content.d.ts +2 -0
- package/dist/dta/component/DecisionTable.d.ts +1 -0
- package/dist/dta/webview/DecisionTableDocument.d.ts +1 -1
- package/dist/dtr/webview/DecisionTreeDocument.d.ts +1 -1
- package/dist/extension.d.ts +2 -1
- package/dist/grammar/BusinessParseRuleContext.d.ts +5 -0
- package/dist/grammar/ParserHelper.d.ts +15 -2
- package/dist/grammar/TokenAssertor.d.ts +0 -4
- package/dist/grammar/bom/BomLexer.d.ts +33 -32
- package/dist/grammar/bom/BomParser.d.ts +35 -33
- package/dist/grammar/diagnostic/SemanticDiagnostic.d.ts +13 -2
- package/dist/grammar/parser/BoostRuleParser.d.ts +24 -2
- package/dist/grammar/rule/RuleParser.d.ts +42 -35
- package/dist/index.d.ts +5 -4
- package/dist/index.js +126719 -116814
- package/dist/index.umd.js +384 -313
- package/dist/model/BO.d.ts +15 -1
- package/dist/model/Datatype.d.ts +1 -0
- package/dist/model/NavigationTree.d.ts +3 -3
- package/dist/model/VscodeBuiltinObjectsLoader.d.ts +2 -0
- package/dist/model/WebBuiltinObjectsLoader.d.ts +3 -1
- package/dist/model/WebViewBomFilesReader.d.ts +1 -1
- package/dist/model/expression/ArithExpression.d.ts +2 -1
- package/dist/model/expression/BatchExpression.d.ts +2 -1
- package/dist/model/expression/Expression.d.ts +2 -1
- package/dist/model/expression/MethodExpression.d.ts +5 -3
- package/dist/model/expression/PredefineExpression.d.ts +2 -1
- package/dist/model/expression/RuleExpression.d.ts +3 -2
- package/dist/model/expression/compile/commonMethodScriptCompile.d.ts +2 -1
- package/dist/model/expression/compile/compareMethodScriptCompile.d.ts +2 -1
- package/dist/monaco/ExpressionFinder.d.ts +4 -1
- package/dist/monaco/MonacoHoverProvider.d.ts +0 -2
- package/dist/monaco/parseTargetPartRuleScript.d.ts +1 -1
- package/dist/projectprops/ProjectProperties.d.ts +2 -0
- package/dist/projectprops/ProjectPropertiesEditor.vue.d.ts +20 -0
- package/dist/projectprops/PureWebProjectPropertiesEditor.vue.d.ts +20 -0
- package/dist/projectprops/Ruleset.vue.d.ts +10 -0
- package/dist/quicktest/TestUtils.d.ts +12 -4
- package/dist/rfl/MenuFactory.d.ts +3 -3
- package/dist/rfl/config/Enums.d.ts +2 -1
- package/dist/rfl/data/ActionNodeData.d.ts +1 -0
- package/dist/rfl/data/ConnectionData.d.ts +7 -4
- package/dist/rfl/data/NodeData.d.ts +7 -0
- package/dist/rfl/data/RuleFile.d.ts +4 -1
- package/dist/rfl/data/RuleNodeData.d.ts +1 -0
- package/dist/rfl/data/SubflowNodeData.d.ts +1 -0
- package/dist/rfl/data/TaskNodeData.d.ts +5 -0
- package/dist/rfl/definition/ProcessDef.d.ts +53 -7
- package/dist/rfl/definition/ProcessNodeDef.d.ts +11 -0
- package/dist/rfl/definition/node/ActionTaskNodeDef.d.ts +1 -6
- package/dist/rfl/definition/node/ConnectionFactoryDef.d.ts +2 -1
- package/dist/rfl/definition/node/FlowConnectionDef.d.ts +12 -0
- package/dist/rfl/definition/node/FlowProcessNodeDef.d.ts +1 -0
- package/dist/rfl/definition/node/ForkNodeDef.d.ts +7 -0
- package/dist/rfl/definition/node/JoinNodeDef.d.ts +11 -0
- package/dist/rfl/definition/node/RuleTaskNodeDef.d.ts +5 -0
- package/dist/rfl/definition/node/StartTaskNodeDef.d.ts +1 -5
- package/dist/rfl/definition/node/StopTaskNodeDef.d.ts +1 -0
- package/dist/rfl/definition/node/SubflowTaskNodeDef.d.ts +5 -0
- package/dist/rfl/designer/Designer.vue.d.ts +2 -2
- package/dist/rfl/designer/DesignerComponent.vue.d.ts +2 -2
- package/dist/rfl/designer/ProcessUtils.d.ts +2 -2
- package/dist/rfl/designer/PureWebFlowEditor.vue.d.ts +2 -2
- package/dist/rfl/designer/editor/BezierEdge.vue.d.ts +5 -0
- package/dist/rfl/designer/editor/HelperLines.vue.d.ts +9 -0
- package/dist/rfl/designer/editor/HelperLinseUtils.d.ts +8 -0
- package/dist/rfl/designer/editor/ProcessEditor.vue.d.ts +1 -1
- package/dist/rfl/designer/editor/SmoothStepEdge.vue.d.ts +5 -0
- package/dist/rfl/events.d.ts +6 -1
- package/dist/rfl/node/NodeUtils.d.ts +10 -4
- package/dist/rfl/props/ConnectionProperty.vue.d.ts +2 -1
- package/dist/rfl/props/ForkNodeProperty.vue.d.ts +1 -1
- package/dist/rfl/props/JoinNodeProperty.vue.d.ts +1 -1
- package/dist/rfl/webview/RuleFlowDocument.d.ts +1 -1
- package/dist/rfl/webview/RuleFlowEditorProvider.d.ts +4 -0
- package/dist/sca/AvaliablePredefineBuilder.d.ts +4 -0
- package/dist/sca/ContentEditableController.d.ts +50 -0
- package/dist/sca/PureWebScoreCardEditor.vue.d.ts +71 -0
- package/dist/sca/ScoreCardComponent.vue.d.ts +45 -0
- package/dist/sca/ScoreCardDeserialize.d.ts +5 -0
- package/dist/sca/ScoreCardEditor.vue.d.ts +24 -0
- package/dist/sca/ScoreCardModelInitializer.d.ts +8 -0
- package/dist/sca/ScoreCardSettingDialog.vue.d.ts +15 -0
- package/dist/sca/ScoreCardWebEditor.d.ts +1 -0
- package/dist/sca/component/ScoreCardTable.d.ts +81 -0
- package/dist/sca/component/ScoreCardTableCrossHeader.d.ts +11 -0
- package/dist/sca/component/ScoreCardTableHeader.d.ts +27 -0
- package/dist/sca/component/ScoreCardTableRowIndicate.d.ts +26 -0
- package/dist/sca/component/contextMenuBuilder.d.ts +3 -0
- package/dist/sca/component/edit/ScoreCardChangeEdit.d.ts +4 -0
- package/dist/sca/model/ScoreCardAttribute.d.ts +86 -0
- package/dist/sca/model/ScoreCardTableModel.d.ts +67 -0
- package/dist/sca/webview/ScoreCardDocument.d.ts +1 -1
- package/dist/sca/webview/ScoreCardEditorProvider.d.ts +1 -1
- package/dist/sync/SyncFileUitls.d.ts +1 -0
- package/dist/tst/PredictFormDialog.vue.d.ts +1 -1
- package/dist/utils.d.ts +26 -1
- package/dist/webviewFiles.d.ts +4 -0
- package/dist/webviewFilesOperator.d.ts +2 -2
- package/package.json +6 -2
- package/dist/FileSystemEventBus.d.ts +0 -6
- package/dist/components/process/Connection.d.ts +0 -122
- package/dist/components/process/Menu.d.ts +0 -12
- package/dist/components/process/MenuItemFactory.d.ts +0 -5
- package/dist/components/process/MergeGroup.d.ts +0 -12
- package/dist/components/process/OrthogonalPath.d.ts +0 -225
- package/dist/components/process/Process.d.ts +0 -111
- package/dist/components/process/ProcessNode.d.ts +0 -340
- package/dist/components/process/Tooltip.d.ts +0 -20
- package/dist/components/process/colors.d.ts +0 -2
- package/dist/rfl/FlowProcess.d.ts +0 -85
- package/dist/rfl/node/ActionTaskNode.d.ts +0 -22
- package/dist/rfl/node/BasicNode.d.ts +0 -8
- package/dist/rfl/node/BranchNode.d.ts +0 -48
- package/dist/rfl/node/ConnectionFactory.d.ts +0 -10
- package/dist/rfl/node/FlowConnection.d.ts +0 -52
- package/dist/rfl/node/FlowProcessNode.d.ts +0 -128
- package/dist/rfl/node/ForkNode.d.ts +0 -54
- package/dist/rfl/node/JoinNode.d.ts +0 -54
- package/dist/rfl/node/ProcessNodeFactory.d.ts +0 -41
- package/dist/rfl/node/RuleTaskNode.d.ts +0 -76
- package/dist/rfl/node/StartTaskNode.d.ts +0 -74
- package/dist/rfl/node/StopTaskNode.d.ts +0 -84
- package/dist/rfl/node/SubflowTaskNode.d.ts +0 -70
- package/dist/rfl/node/TaskNode.d.ts +0 -42
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ActionLanguage } from '../config/Enums';
|
|
1
2
|
import { default as ConnectionDef } from './ConnectionDef';
|
|
2
3
|
import { default as ProcessDef } from './ProcessDef';
|
|
3
4
|
/**
|
|
@@ -72,6 +73,10 @@ export default abstract class ProcessNodeDef {
|
|
|
72
73
|
* @param processNode 流程节点
|
|
73
74
|
*/
|
|
74
75
|
protected abstract addOutConnection(processNode: ProcessNodeDef): void;
|
|
76
|
+
/**
|
|
77
|
+
* 验证节点数据抽象方法
|
|
78
|
+
*/
|
|
79
|
+
abstract validate(): void;
|
|
75
80
|
/**
|
|
76
81
|
* 是否显示加号图标
|
|
77
82
|
* @returns 布尔值,true表示显示加号图标
|
|
@@ -142,4 +147,10 @@ export default abstract class ProcessNodeDef {
|
|
|
142
147
|
x: number;
|
|
143
148
|
y: number;
|
|
144
149
|
};
|
|
150
|
+
/**
|
|
151
|
+
* 验证并转换语言类型
|
|
152
|
+
* @param language 语言字符串
|
|
153
|
+
* @returns 有效的 ActionLanguage 枚举值,如果无效则返回 null
|
|
154
|
+
*/
|
|
155
|
+
validateLanguage(language: string): ActionLanguage | null;
|
|
145
156
|
}
|
|
@@ -48,12 +48,6 @@ export default class ActionTaskNodeDef extends TaskNodeDef {
|
|
|
48
48
|
* @param importType 导入类型
|
|
49
49
|
*/
|
|
50
50
|
initFromJson(taskNode: any, taskDataNode: any, positionInfo: any, importType: string): void;
|
|
51
|
-
/**
|
|
52
|
-
* 验证并转换语言类型
|
|
53
|
-
* @param language 语言字符串
|
|
54
|
-
* @returns 有效的 ActionLanguage 枚举值,如果无效则返回 null
|
|
55
|
-
*/
|
|
56
|
-
private validateLanguage;
|
|
57
51
|
/**
|
|
58
52
|
* 解析动作配置
|
|
59
53
|
* @param actionNodes 动作节点
|
|
@@ -71,4 +65,5 @@ export default class ActionTaskNodeDef extends TaskNodeDef {
|
|
|
71
65
|
* @returns 是否允许添加连接
|
|
72
66
|
*/
|
|
73
67
|
canAdd(sourceNode: ProcessNodeDef): boolean;
|
|
68
|
+
validate(): void;
|
|
74
69
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ActionLanguage } from '../../config/Enums';
|
|
1
2
|
import { default as ProcessNodeDef } from '../ProcessNodeDef';
|
|
2
3
|
import { default as FlowConnectionDef } from './FlowConnectionDef';
|
|
3
4
|
/**
|
|
@@ -7,4 +8,4 @@ import { default as FlowConnectionDef } from './FlowConnectionDef';
|
|
|
7
8
|
* @param conditions 连接条件(可选)
|
|
8
9
|
* @returns 新创建的流程连接定义对象
|
|
9
10
|
*/
|
|
10
|
-
export declare function newConnectionDef(startNode: ProcessNodeDef, endNode: ProcessNodeDef,
|
|
11
|
+
export declare function newConnectionDef(startNode: ProcessNodeDef, endNode: ProcessNodeDef, conditionLanguage?: ActionLanguage, conditionScript?: string): FlowConnectionDef;
|
|
@@ -51,6 +51,18 @@ export default class FlowConnectionDef extends ConnectionDef {
|
|
|
51
51
|
* @param resourceSetNode 资源集节点(iLog格式时为null)
|
|
52
52
|
*/
|
|
53
53
|
initFromJson(node: JsonNode, resourceSetNode: ResourceSetNode | null): void;
|
|
54
|
+
/**
|
|
55
|
+
* 解析动作配置
|
|
56
|
+
* @param actionNodes 动作节点
|
|
57
|
+
* @param setter 配置设置回调函数
|
|
58
|
+
*/
|
|
59
|
+
private parseActionConfig;
|
|
60
|
+
/**
|
|
61
|
+
* 验证并转换语言类型
|
|
62
|
+
* @param language 语言字符串
|
|
63
|
+
* @returns 有效的 ActionLanguage 枚举值,如果无效则返回 null
|
|
64
|
+
*/
|
|
65
|
+
private validateLanguage;
|
|
54
66
|
/**
|
|
55
67
|
* 在资源集中查找指定名称的数据节点
|
|
56
68
|
* @param resourceSetNode 资源集节点
|
|
@@ -37,4 +37,11 @@ export default class ForkNodeDef extends BasicNodeDef {
|
|
|
37
37
|
* @returns 是否允许添加连接
|
|
38
38
|
*/
|
|
39
39
|
canAdd(sourceNode: ProcessNodeDef): boolean;
|
|
40
|
+
validate(): void;
|
|
41
|
+
/**
|
|
42
|
+
* 查找关联的合并节点
|
|
43
|
+
* @param node 流程节点
|
|
44
|
+
* @returns 找到的合并节点,未找到则返回null
|
|
45
|
+
*/
|
|
46
|
+
private findJoinNode;
|
|
40
47
|
}
|
|
@@ -37,4 +37,15 @@ export default class JoinNodeDef extends BasicNodeDef {
|
|
|
37
37
|
* @returns 是否允许添加连接
|
|
38
38
|
*/
|
|
39
39
|
canAdd(sourceNode: ProcessNodeDef): boolean;
|
|
40
|
+
/**
|
|
41
|
+
* 查找关联的分支节点
|
|
42
|
+
* @param node 流程节点
|
|
43
|
+
* @returns 找到的分支节点,未找到则返回null
|
|
44
|
+
*/
|
|
45
|
+
private findForkNode;
|
|
46
|
+
/**
|
|
47
|
+
* 检查连接状态
|
|
48
|
+
* 验证Join节点与Fork节点的平衡性以及其他连接要求
|
|
49
|
+
*/
|
|
50
|
+
validate(): void;
|
|
40
51
|
}
|
|
@@ -24,11 +24,6 @@ export default class StartTaskNodeDef extends TaskNodeDef {
|
|
|
24
24
|
* @returns 开始任务节点类型
|
|
25
25
|
*/
|
|
26
26
|
getTaskNodeType(): TaskNodeType;
|
|
27
|
-
/**
|
|
28
|
-
* 检查连接状态
|
|
29
|
-
* 开始节点不需要检查连接
|
|
30
|
-
*/
|
|
31
|
-
protected checkConnection(): void;
|
|
32
27
|
/**
|
|
33
28
|
* 获取节点图标
|
|
34
29
|
* @returns 开始节点图标字符
|
|
@@ -68,4 +63,5 @@ export default class StartTaskNodeDef extends TaskNodeDef {
|
|
|
68
63
|
* @returns 总是返回false,开始节点不允许被其他节点连接
|
|
69
64
|
*/
|
|
70
65
|
canAdd(sourceNode: ProcessNodeDef): boolean;
|
|
66
|
+
validate(): void;
|
|
71
67
|
}
|
|
@@ -22,7 +22,7 @@ declare const _default: DefineComponent<__VLS_Props, {
|
|
|
22
22
|
processEditorRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
23
23
|
readonly?: boolean;
|
|
24
24
|
}> & Readonly<{}>, {
|
|
25
|
-
serializeToXml: () => string
|
|
25
|
+
serializeToXml: () => string;
|
|
26
26
|
setShowFloatingActions: (value: boolean) => void;
|
|
27
27
|
setReadonlyMode: (value: boolean) => void;
|
|
28
28
|
getReadonlyMode: () => boolean;
|
|
@@ -38,7 +38,7 @@ declare const _default: DefineComponent<__VLS_Props, {
|
|
|
38
38
|
}, Readonly<{
|
|
39
39
|
readonly?: boolean;
|
|
40
40
|
}> & Readonly<{}>, {
|
|
41
|
-
serializeToXml: () => string
|
|
41
|
+
serializeToXml: () => string;
|
|
42
42
|
setShowFloatingActions: (value: boolean) => void;
|
|
43
43
|
setReadonlyMode: (value: boolean) => void;
|
|
44
44
|
getReadonlyMode: () => boolean;
|
|
@@ -22,7 +22,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
22
22
|
processEditorRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
23
23
|
readonly?: boolean;
|
|
24
24
|
}> & Readonly<{}>, {
|
|
25
|
-
serializeToXml: () => string
|
|
25
|
+
serializeToXml: () => string;
|
|
26
26
|
setShowFloatingActions: (value: boolean) => void;
|
|
27
27
|
setReadonlyMode: (value: boolean) => void;
|
|
28
28
|
getReadonlyMode: () => boolean;
|
|
@@ -38,7 +38,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
38
38
|
}, Readonly<{
|
|
39
39
|
readonly?: boolean;
|
|
40
40
|
}> & Readonly<{}>, {
|
|
41
|
-
serializeToXml: () => string
|
|
41
|
+
serializeToXml: () => string;
|
|
42
42
|
setShowFloatingActions: (value: boolean) => void;
|
|
43
43
|
setReadonlyMode: (value: boolean) => void;
|
|
44
44
|
getReadonlyMode: () => boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { default as
|
|
1
|
+
import { default as ProcessDef } from '../definition/ProcessDef';
|
|
2
2
|
export declare class ProcessUtils {
|
|
3
3
|
private static process;
|
|
4
4
|
static setProcess(process: any): void;
|
|
5
|
-
static getProcess():
|
|
5
|
+
static getProcess(): ProcessDef;
|
|
6
6
|
}
|
|
@@ -47,7 +47,7 @@ declare const _default: DefineComponent<__VLS_Props, {
|
|
|
47
47
|
processEditorRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
48
48
|
readonly?: boolean;
|
|
49
49
|
}> & Readonly<{}>, {
|
|
50
|
-
serializeToXml: () => string
|
|
50
|
+
serializeToXml: () => string;
|
|
51
51
|
setShowFloatingActions: (value: boolean) => void;
|
|
52
52
|
setReadonlyMode: (value: boolean) => void;
|
|
53
53
|
getReadonlyMode: () => boolean;
|
|
@@ -63,7 +63,7 @@ declare const _default: DefineComponent<__VLS_Props, {
|
|
|
63
63
|
}, Readonly<{
|
|
64
64
|
readonly?: boolean;
|
|
65
65
|
}> & Readonly<{}>, {
|
|
66
|
-
serializeToXml: () => string
|
|
66
|
+
serializeToXml: () => string;
|
|
67
67
|
setShowFloatingActions: (value: boolean) => void;
|
|
68
68
|
setReadonlyMode: (value: boolean) => void;
|
|
69
69
|
getReadonlyMode: () => boolean;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { EdgeProps } from '@vue-flow/core';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from '../../../../npmconfig/vue/dist/vue.esm-bundler.js';
|
|
3
|
+
type __VLS_Props = EdgeProps;
|
|
4
|
+
declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from '../../../../npmconfig/vue/dist/vue.esm-bundler.js';
|
|
2
|
+
interface HelperLinesProps {
|
|
3
|
+
horizontal?: number;
|
|
4
|
+
vertical?: number;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: DefineComponent<HelperLinesProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<HelperLinesProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
7
|
+
canvasRef: HTMLCanvasElement;
|
|
8
|
+
}, HTMLCanvasElement>;
|
|
9
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { GraphNode, NodePositionChange, XYPosition } from '@vue-flow/core';
|
|
2
|
+
interface GetHelperLinesResult {
|
|
3
|
+
horizontal?: number;
|
|
4
|
+
vertical?: number;
|
|
5
|
+
snapPosition: Partial<XYPosition>;
|
|
6
|
+
}
|
|
7
|
+
export declare function getHelperLines(change: NodePositionChange, nodes: GraphNode[], distance?: number): GetHelperLinesResult;
|
|
8
|
+
export {};
|
|
@@ -3,7 +3,7 @@ type __VLS_Props = {
|
|
|
3
3
|
readonly?: boolean;
|
|
4
4
|
};
|
|
5
5
|
declare const _default: DefineComponent<__VLS_Props, {
|
|
6
|
-
serializeToXml: () => string
|
|
6
|
+
serializeToXml: () => string;
|
|
7
7
|
setShowFloatingActions: (value: boolean) => void;
|
|
8
8
|
setReadonlyMode: (value: boolean) => void;
|
|
9
9
|
getReadonlyMode: () => boolean;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { EdgeProps } from '@vue-flow/core';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from '../../../../npmconfig/vue/dist/vue.esm-bundler.js';
|
|
3
|
+
type __VLS_Props = EdgeProps;
|
|
4
|
+
declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
export default _default;
|
package/dist/rfl/events.d.ts
CHANGED
|
@@ -4,9 +4,15 @@ export declare const SELECT_STAGE = "select_stage";
|
|
|
4
4
|
export declare const NODE_ID_CHANGE = "node_id_change";
|
|
5
5
|
export declare const NODE_NAME_CHANGE = "node_name_change";
|
|
6
6
|
export declare const NODE_NAME_CHANGED = "node_name_changed";
|
|
7
|
+
export declare const CONNECTION_NAME_CHANGE = "connection_name_change";
|
|
7
8
|
export declare const AFTER_INSERT_NODE = "after_insert_node";
|
|
8
9
|
export declare const AFTER_DELETE_NODE = "after_delete_node";
|
|
10
|
+
export declare const SELECT_CONNECTION = "select_connection";
|
|
11
|
+
export declare const DELETE_CONNECTION = "delete_connection";
|
|
12
|
+
export declare const CHANGE_CONNECTION_NODE = "change_connection_node";
|
|
9
13
|
export declare const SHOW_NODE_COLOR_DIALOG = "show_node_color_dialog";
|
|
14
|
+
export declare const SHOW_PLUS_MENU = "show_plus_menu";
|
|
15
|
+
export declare const SELECT_PROCESS = "select_process";
|
|
10
16
|
export declare const SHOW_NODE_LABEL_DIALOG = "show_node_label_dialog";
|
|
11
17
|
export declare const SHOW_NIAOKAN_VIEW = "show_niaokan_view";
|
|
12
18
|
export declare const FILE_LOADED = "file_loaded";
|
|
@@ -17,5 +23,4 @@ export declare const FLOW_NODE_SELECTED = "flow_node_selected";
|
|
|
17
23
|
export declare const SHOW_FILE_SELECTED = "show_file_select";
|
|
18
24
|
export declare const SHOW_FLOW_FILE_SELECT_DIALOG = "show_flow_file_select_dialog";
|
|
19
25
|
export declare const SHOW_RULE_FILE_SELECT_DIALOG = "show_rule_file_select_dialog";
|
|
20
|
-
export declare const PROCESS_SCROLL_TO_POSITION = "process_scroll_to_position";
|
|
21
26
|
export declare const CREATE_LINE_CONNECTION = "create_line_connection";
|
|
@@ -1,15 +1,21 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { default as
|
|
1
|
+
import { default as FlowConnectionDef } from '../definition/node/FlowConnectionDef';
|
|
2
|
+
import { default as ProcessDef } from '../definition/ProcessDef';
|
|
3
3
|
/**
|
|
4
4
|
* 生成新的节点ID
|
|
5
5
|
* @param process 流程对象
|
|
6
6
|
* @returns 新的节点ID字符串
|
|
7
7
|
*/
|
|
8
|
-
export declare const genNewNodeId: (process:
|
|
8
|
+
export declare const genNewNodeId: (process: ProcessDef) => string;
|
|
9
|
+
/**
|
|
10
|
+
* 构建唯一的任务ID
|
|
11
|
+
* @param process 流程对象
|
|
12
|
+
* @returns 唯一的任务ID
|
|
13
|
+
*/
|
|
14
|
+
export declare const genNewTaskId: (process: ProcessDef) => string;
|
|
9
15
|
/**
|
|
10
16
|
* 根据ID获取连接对象
|
|
11
17
|
* @param process 流程对象
|
|
12
18
|
* @param id 连接ID
|
|
13
19
|
* @returns 找到的连接对象,未找到则返回null
|
|
14
20
|
*/
|
|
15
|
-
export declare const getConnectionById: (process:
|
|
21
|
+
export declare const getConnectionById: (process: ProcessDef, id: string) => FlowConnectionDef | null;
|
|
@@ -7,6 +7,7 @@ declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOp
|
|
|
7
7
|
darkMode: boolean;
|
|
8
8
|
readonly: boolean;
|
|
9
9
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
10
|
-
|
|
10
|
+
balEditorContainer: HTMLDivElement;
|
|
11
|
+
jrlEditorContainer: HTMLDivElement;
|
|
11
12
|
}, any>;
|
|
12
13
|
export default _default;
|
|
@@ -8,5 +8,5 @@ type __VLS_Props = {
|
|
|
8
8
|
declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
9
9
|
darkMode: boolean;
|
|
10
10
|
readonly: boolean;
|
|
11
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
11
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
12
12
|
export default _default;
|
|
@@ -8,5 +8,5 @@ type __VLS_Props = {
|
|
|
8
8
|
declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
9
9
|
darkMode: boolean;
|
|
10
10
|
readonly: boolean;
|
|
11
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
11
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
12
12
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CancellationToken, CustomDocument, CustomDocumentBackup,
|
|
1
|
+
import { CancellationToken, CustomDocument, CustomDocumentBackup, ExtensionContext, Uri, Event } from 'vscode';
|
|
2
2
|
import { DocumentDelegate, ViewEdit } from '../../view&document';
|
|
3
3
|
export declare class RuleFlowDocument implements CustomDocument {
|
|
4
4
|
private readonly _context;
|
|
@@ -15,6 +15,9 @@ export declare class RuleFlowEditorProvider implements CustomEditorProvider<Rule
|
|
|
15
15
|
private sendBomFileData;
|
|
16
16
|
private allBomFileParsed;
|
|
17
17
|
private needSendFileData;
|
|
18
|
+
private allUuidParsed;
|
|
19
|
+
private wattingFileData;
|
|
20
|
+
private allUuidParsedListener;
|
|
18
21
|
constructor(context: ExtensionContext);
|
|
19
22
|
static register(context: ExtensionContext): {
|
|
20
23
|
ruleFlowDisposable: vscode.Disposable;
|
|
@@ -29,5 +32,6 @@ export declare class RuleFlowEditorProvider implements CustomEditorProvider<Rule
|
|
|
29
32
|
backupCustomDocument(document: RuleFlowDocument, context: CustomDocumentBackupContext, cancellation: CancellationToken): Thenable<CustomDocumentBackup>;
|
|
30
33
|
private postMessageWithResponse;
|
|
31
34
|
private postMessage;
|
|
35
|
+
private postTheFileDataMessage;
|
|
32
36
|
private onMessage;
|
|
33
37
|
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Datatype } from '../model/Datatype';
|
|
2
|
+
import { default as monaco } from '../monaco/customMonaco';
|
|
3
|
+
export declare const buildAvaliablePredefineWithSCA: (preConditionMonacoEditor: monaco.editor.IStandaloneCodeEditor | null) => Map<string, Datatype>;
|
|
4
|
+
export declare const buildAvaliablePredefineWithoutSCA: (preConditionMonacoEditor: monaco.editor.IStandaloneCodeEditor | null) => Map<string, Datatype>;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Datatype } from '../model/Datatype';
|
|
2
|
+
import { default as monaco } from '../monaco/customMonaco';
|
|
3
|
+
import { RulePart } from '../utils';
|
|
4
|
+
import { ScoreCardTable } from './component/ScoreCardTable';
|
|
5
|
+
import { ContentCell } from './model/ScoreCardAttribute';
|
|
6
|
+
/**
|
|
7
|
+
* 实现代码编辑器的动态可部分编辑区域
|
|
8
|
+
*
|
|
9
|
+
* 可编辑区域由多个可编辑范围组成,每个可编辑范围由起始行号、起始列号、结束行号、结束列号组成
|
|
10
|
+
*/
|
|
11
|
+
export declare class ContentEditableController {
|
|
12
|
+
private readonly editPart;
|
|
13
|
+
private readonly editor;
|
|
14
|
+
private readonly loadAvaliablePredefineVariablesMapCallback;
|
|
15
|
+
private readonly CSS_EDITABLE;
|
|
16
|
+
private readonly CSS_READONLY;
|
|
17
|
+
private table?;
|
|
18
|
+
private contentCell?;
|
|
19
|
+
private editableRanges;
|
|
20
|
+
private readonlyMode;
|
|
21
|
+
constructor(editPart: {
|
|
22
|
+
part: RulePart;
|
|
23
|
+
}, editor: monaco.editor.IStandaloneCodeEditor, loadAvaliablePredefineVariablesMapCallback: () => Map<string, Datatype>);
|
|
24
|
+
setTable(table: ScoreCardTable): void;
|
|
25
|
+
getAvaliablePredefineVariablesMap(): Map<string, Datatype>;
|
|
26
|
+
disableContentEditor(): void;
|
|
27
|
+
setReadonlyMode(value: boolean): void;
|
|
28
|
+
getReadonlyMode(): boolean;
|
|
29
|
+
setContent(content: string, contentCell?: ContentCell): void;
|
|
30
|
+
/**
|
|
31
|
+
* 当点击列头时,显示当前列头中配置的脚本内容
|
|
32
|
+
* @param script 要显示的脚本内容
|
|
33
|
+
*/
|
|
34
|
+
showScript(script: string): void;
|
|
35
|
+
private initEventListeners;
|
|
36
|
+
private updateDecorations;
|
|
37
|
+
private createEditableDecorations;
|
|
38
|
+
private createReadonlyDecorations;
|
|
39
|
+
private inEditableRange;
|
|
40
|
+
private adjustEditableRanges;
|
|
41
|
+
private findTargetEditableRangeIndex;
|
|
42
|
+
private isPositionEditable;
|
|
43
|
+
private findNearestEditablePos;
|
|
44
|
+
private toNewMonacoRange;
|
|
45
|
+
private rangeContains;
|
|
46
|
+
private getStartLineNumber;
|
|
47
|
+
private getEndLineNumber;
|
|
48
|
+
private getStartColumn;
|
|
49
|
+
private getEndColumn;
|
|
50
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, Ref, GlobalComponents, GlobalDirectives } from '../../npmconfig/vue/dist/vue.esm-bundler.js';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
loadFileCallback: () => Promise<any>;
|
|
4
|
+
loadBomFilesCallback: () => Promise<{
|
|
5
|
+
fileName: string;
|
|
6
|
+
content: string;
|
|
7
|
+
}[]>;
|
|
8
|
+
loadVocFilesCallback: () => Promise<{
|
|
9
|
+
fileName: string;
|
|
10
|
+
content: string;
|
|
11
|
+
}[]>;
|
|
12
|
+
loadVarFilesCallback: () => Promise<{
|
|
13
|
+
fileName: string;
|
|
14
|
+
content: string;
|
|
15
|
+
}[]>;
|
|
16
|
+
loadProjectFilesCallback: () => Promise<{
|
|
17
|
+
fileName: string;
|
|
18
|
+
content: string;
|
|
19
|
+
}[]>;
|
|
20
|
+
readonly?: boolean;
|
|
21
|
+
};
|
|
22
|
+
declare const _default: DefineComponent<__VLS_Props, {
|
|
23
|
+
serializeToXml: () => any;
|
|
24
|
+
showQuickTestDialog: () => any;
|
|
25
|
+
setShowFloatingActions: (value: boolean) => void;
|
|
26
|
+
setReadonlyMode: (value: boolean) => void;
|
|
27
|
+
getReadonlyMode: () => any;
|
|
28
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
29
|
+
ruleEditor: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
30
|
+
loadFileCallback: () => Promise<any>;
|
|
31
|
+
darkMode?: boolean;
|
|
32
|
+
readonly?: boolean;
|
|
33
|
+
}> & Readonly<{
|
|
34
|
+
"onScore-card-table-editor-mounted"?: (() => any) | undefined;
|
|
35
|
+
}>, {
|
|
36
|
+
serializeToXml: () => string;
|
|
37
|
+
setShowFloatingActions: (value: boolean) => void;
|
|
38
|
+
setReadonlyMode: (value: boolean) => void;
|
|
39
|
+
getReadonlyMode: () => boolean;
|
|
40
|
+
showFloatingActions: Ref<boolean, boolean>;
|
|
41
|
+
showQuickTestDialog: () => void;
|
|
42
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
43
|
+
"score-card-table-editor-mounted": () => any;
|
|
44
|
+
}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
45
|
+
preConditionCodeEditorContainer: HTMLDivElement;
|
|
46
|
+
postActionCodeEditorContainer: HTMLDivElement;
|
|
47
|
+
contentCodeEditorContainer: HTMLDivElement;
|
|
48
|
+
tableEditorContainer: HTMLDivElement;
|
|
49
|
+
}, any, ComponentProvideOptions, {
|
|
50
|
+
P: {};
|
|
51
|
+
B: {};
|
|
52
|
+
D: {};
|
|
53
|
+
C: {};
|
|
54
|
+
M: {};
|
|
55
|
+
Defaults: {};
|
|
56
|
+
}, Readonly<{
|
|
57
|
+
loadFileCallback: () => Promise<any>;
|
|
58
|
+
darkMode?: boolean;
|
|
59
|
+
readonly?: boolean;
|
|
60
|
+
}> & Readonly<{
|
|
61
|
+
"onScore-card-table-editor-mounted"?: (() => any) | undefined;
|
|
62
|
+
}>, {
|
|
63
|
+
serializeToXml: () => string;
|
|
64
|
+
setShowFloatingActions: (value: boolean) => void;
|
|
65
|
+
setReadonlyMode: (value: boolean) => void;
|
|
66
|
+
getReadonlyMode: () => boolean;
|
|
67
|
+
showFloatingActions: Ref<boolean, boolean>;
|
|
68
|
+
showQuickTestDialog: () => void;
|
|
69
|
+
}, {}, {}, {}, {}> | null;
|
|
70
|
+
}, any>;
|
|
71
|
+
export default _default;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, Ref, GlobalComponents, GlobalDirectives } from '../../npmconfig/vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
3
|
+
scoreCardEditorRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4
|
+
loadFileCallback: () => Promise<any>;
|
|
5
|
+
darkMode?: boolean;
|
|
6
|
+
readonly?: boolean;
|
|
7
|
+
}> & Readonly<{
|
|
8
|
+
"onScore-card-table-editor-mounted"?: (() => any) | undefined;
|
|
9
|
+
}>, {
|
|
10
|
+
serializeToXml: () => string;
|
|
11
|
+
setShowFloatingActions: (value: boolean) => void;
|
|
12
|
+
setReadonlyMode: (value: boolean) => void;
|
|
13
|
+
getReadonlyMode: () => boolean;
|
|
14
|
+
showFloatingActions: Ref<boolean, boolean>;
|
|
15
|
+
showQuickTestDialog: () => void;
|
|
16
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
17
|
+
"score-card-table-editor-mounted": () => any;
|
|
18
|
+
}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
19
|
+
preConditionCodeEditorContainer: HTMLDivElement;
|
|
20
|
+
postActionCodeEditorContainer: HTMLDivElement;
|
|
21
|
+
contentCodeEditorContainer: HTMLDivElement;
|
|
22
|
+
tableEditorContainer: HTMLDivElement;
|
|
23
|
+
}, any, ComponentProvideOptions, {
|
|
24
|
+
P: {};
|
|
25
|
+
B: {};
|
|
26
|
+
D: {};
|
|
27
|
+
C: {};
|
|
28
|
+
M: {};
|
|
29
|
+
Defaults: {};
|
|
30
|
+
}, Readonly<{
|
|
31
|
+
loadFileCallback: () => Promise<any>;
|
|
32
|
+
darkMode?: boolean;
|
|
33
|
+
readonly?: boolean;
|
|
34
|
+
}> & Readonly<{
|
|
35
|
+
"onScore-card-table-editor-mounted"?: (() => any) | undefined;
|
|
36
|
+
}>, {
|
|
37
|
+
serializeToXml: () => string;
|
|
38
|
+
setShowFloatingActions: (value: boolean) => void;
|
|
39
|
+
setReadonlyMode: (value: boolean) => void;
|
|
40
|
+
getReadonlyMode: () => boolean;
|
|
41
|
+
showFloatingActions: Ref<boolean, boolean>;
|
|
42
|
+
showQuickTestDialog: () => void;
|
|
43
|
+
}, {}, {}, {}, {}> | null;
|
|
44
|
+
}, any>;
|
|
45
|
+
export default _default;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Datatype } from '../model/Datatype';
|
|
2
|
+
import { default as ScoreCardTableModel, ScoreCardReason, ScoreCardSetting } from './model/ScoreCardTableModel';
|
|
3
|
+
export declare const deserializeScoreCardTable: (xml: string, model: ScoreCardTableModel) => Map<string, Datatype>;
|
|
4
|
+
export declare const parseReasons: (reasonsNode: any) => ScoreCardReason[] | undefined;
|
|
5
|
+
export declare const parseSetting: (settingNode: any) => ScoreCardSetting;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from '../../npmconfig/vue/dist/vue.esm-bundler.js';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
loadFileCallback: () => Promise<any>;
|
|
4
|
+
darkMode?: boolean;
|
|
5
|
+
readonly?: boolean;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: DefineComponent<__VLS_Props, {
|
|
8
|
+
serializeToXml: () => string;
|
|
9
|
+
setShowFloatingActions: (value: boolean) => void;
|
|
10
|
+
setReadonlyMode: (value: boolean) => void;
|
|
11
|
+
getReadonlyMode: () => boolean;
|
|
12
|
+
showFloatingActions: Ref<boolean, boolean>;
|
|
13
|
+
showQuickTestDialog: () => void;
|
|
14
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
15
|
+
"score-card-table-editor-mounted": () => any;
|
|
16
|
+
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
17
|
+
"onScore-card-table-editor-mounted"?: (() => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
19
|
+
preConditionCodeEditorContainer: HTMLDivElement;
|
|
20
|
+
postActionCodeEditorContainer: HTMLDivElement;
|
|
21
|
+
contentCodeEditorContainer: HTMLDivElement;
|
|
22
|
+
tableEditorContainer: HTMLDivElement;
|
|
23
|
+
}, any>;
|
|
24
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Datatype } from '../model/Datatype';
|
|
2
|
+
import { ScoreCardTable } from './component/ScoreCardTable';
|
|
3
|
+
export default class ScoreCardModelInitializer {
|
|
4
|
+
private table;
|
|
5
|
+
private avaliablePredefineVariablesMap;
|
|
6
|
+
constructor(table: ScoreCardTable, avaliablePredefineVariablesMap: Map<string, Datatype>);
|
|
7
|
+
initialize(): void;
|
|
8
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from '../../npmconfig/vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
3
|
+
darkMode: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
8
|
+
darkMode: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
}>> & Readonly<{}>, {
|
|
13
|
+
darkMode: boolean;
|
|
14
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|