udm-rules-vue 0.0.3 → 0.0.4
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/FileUtils.d.ts +1 -1
- package/dist/assets/css/index.css +1 -1
- package/dist/compile/FlowCompiler.d.ts +9 -0
- package/dist/dta/DecisionTableDeserialize.d.ts +2 -1
- package/dist/dta/DecisionTableJsonSerialize.d.ts +2 -0
- package/dist/dta/DecisionTableXmlSerialize.d.ts +2 -0
- package/dist/dta/model/DecisionTableModel.d.ts +3 -0
- package/dist/grammar/ParserHelper.d.ts +5 -0
- package/dist/grammar/parser/BoostRuleParser.d.ts +12 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +30569 -29705
- package/dist/index.umd.js +288 -274
- package/dist/monaco/ExpressionFinder.d.ts +0 -2
- package/dist/projectprops/ProjectProperties.d.ts +2 -2
- package/dist/rfl/definition/node/CustomTaskNodeDef.d.ts +32 -0
- package/dist/rfl/definition/node/NodeType.d.ts +16 -3
- package/dist/rfl/designer/PureWebFlowEditor.vue.d.ts +2 -0
- package/dist/rfl/events.d.ts +1 -0
- package/dist/rfl/props/SchemaFormProperty.vue.d.ts +13 -0
- package/dist/rfl/registry/TaskNodeTypeRegistry.d.ts +195 -0
- package/dist/rfl/webview/RuleFlowEditorProvider.d.ts +1 -0
- package/dist/utils.d.ts +2 -0
- package/dist/webviewFilesOperator.d.ts +1 -0
- package/package.json +5 -2
- package/dist/dta/DecisionTableSerialize.d.ts +0 -2
package/dist/FileUtils.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export declare class FileUtils {
|
|
|
49
49
|
private static loadProjectProperties;
|
|
50
50
|
static getProjectUuid: () => Promise<string>;
|
|
51
51
|
static getProjectSourceFolder: () => Promise<string>;
|
|
52
|
-
static getProjectRulesetProperties: () => Promise<
|
|
52
|
+
static getProjectRulesetProperties: () => Promise<Record<string, string>>;
|
|
53
53
|
/**
|
|
54
54
|
* 替换决策流中RuleNode下的包名,替换FileInfo中的path和name
|
|
55
55
|
* @param oldPath 旧包名
|