@lcap/nasl 0.3.15-beta → 1.0.0-alpha
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/DEVELOPMENT.md +39 -55
- package/README.md +78 -5
- package/bak/basicTypes.ts +76 -0
- package/bak/dataTypeUtils.ts +429 -0
- package/bak/dataTypes.ts +51 -0
- package/bak/entityUtils.ts +660 -0
- package/bak/genericTypes.ts +131 -0
- package/bak/systemTypes.ts +1590 -0
- package/bak/tools.js +174 -0
- package/bak/translator.js +129 -0
- package/bak/translator_backup.js +601 -0
- package/bin/naslc +3 -0
- package/docs/.nojekyll +1 -0
- package/docs/assets/custom.css +3 -0
- package/docs/assets/highlight.css +78 -0
- package/docs/assets/icons.css +1043 -0
- package/docs/assets/icons.png +0 -0
- package/docs/assets/icons@2x.png +0 -0
- package/docs/assets/main.js +52 -0
- package/docs/assets/search.js +1 -0
- package/docs/assets/style.css +1414 -0
- package/docs/assets/widgets.png +0 -0
- package/docs/assets/widgets@2x.png +0 -0
- package/docs/classes/App.html +509 -0
- package/docs/classes/Argument.html +191 -0
- package/docs/classes/Assignment.html +195 -0
- package/docs/classes/Attribute.html +169 -0
- package/docs/classes/BaseNode.html +128 -0
- package/docs/classes/BinaryExpression.html +199 -0
- package/docs/classes/BindAttribute.html +209 -0
- package/docs/classes/BindDirective.html +161 -0
- package/docs/classes/BindEvent.html +173 -0
- package/docs/classes/BooleanLiteral.html +177 -0
- package/docs/classes/CallFunction.html +201 -0
- package/docs/classes/CallInterface.html +201 -0
- package/docs/classes/CallLogic.html +207 -0
- package/docs/classes/CallQueryComponent.html +301 -0
- package/docs/classes/Comment.html +175 -0
- package/docs/classes/CompletionProperty.html +165 -0
- package/docs/classes/Constant.html +161 -0
- package/docs/classes/DataElement.html +143 -0
- package/docs/classes/Destination.html +205 -0
- package/docs/classes/End.html +173 -0
- package/docs/classes/Entity.html +205 -0
- package/docs/classes/EntityIndex.html +153 -0
- package/docs/classes/EntityProperty.html +211 -0
- package/docs/classes/Enum.html +171 -0
- package/docs/classes/EnumItem.html +143 -0
- package/docs/classes/Event.html +173 -0
- package/docs/classes/ForEachStatement.html +253 -0
- package/docs/classes/Function.html +259 -0
- package/docs/classes/Identifier.html +181 -0
- package/docs/classes/IfStatement.html +229 -0
- package/docs/classes/Interface.html +211 -0
- package/docs/classes/InterfaceParam.html +171 -0
- package/docs/classes/JSBlock.html +179 -0
- package/docs/classes/Logic.html +327 -0
- package/docs/classes/LogicItem.html +175 -0
- package/docs/classes/MemberExpression.html +196 -0
- package/docs/classes/Module.html +386 -0
- package/docs/classes/Namespace.html +497 -0
- package/docs/classes/NullLiteral.html +175 -0
- package/docs/classes/NumericLiteral.html +187 -0
- package/docs/classes/Param.html +173 -0
- package/docs/classes/Point.html +131 -0
- package/docs/classes/Process.html +261 -0
- package/docs/classes/ProcessComponent.html +199 -0
- package/docs/classes/ProcessElement.html +333 -0
- package/docs/classes/ProcessOutcome.html +179 -0
- package/docs/classes/QueryAggregateExpression.html +185 -0
- package/docs/classes/QueryFieldExpression.html +185 -0
- package/docs/classes/QueryFromExpression.html +205 -0
- package/docs/classes/QueryGroupByExpression.html +187 -0
- package/docs/classes/QueryJoinExpression.html +237 -0
- package/docs/classes/QueryLimitExpression.html +199 -0
- package/docs/classes/QueryOrderByExpression.html +197 -0
- package/docs/classes/QuerySelectExpression.html +213 -0
- package/docs/classes/Rect.html +135 -0
- package/docs/classes/Return.html +169 -0
- package/docs/classes/Role.html +139 -0
- package/docs/classes/Slot.html +143 -0
- package/docs/classes/SqlQueryComponent.html +191 -0
- package/docs/classes/Start.html +173 -0
- package/docs/classes/StringLiteral.html +177 -0
- package/docs/classes/Structure.html +203 -0
- package/docs/classes/StructureProperty.html +171 -0
- package/docs/classes/SwitchCase.html +207 -0
- package/docs/classes/SwitchStatement.html +193 -0
- package/docs/classes/Theme.html +133 -0
- package/docs/classes/Transactional.html +151 -0
- package/docs/classes/TypeAnnotation.html +163 -0
- package/docs/classes/TypeParam.html +129 -0
- package/docs/classes/UnaryExpression.html +187 -0
- package/docs/classes/Unparsed.html +177 -0
- package/docs/classes/UseComponent.html +131 -0
- package/docs/classes/ValidationRule.html +201 -0
- package/docs/classes/Variable.html +167 -0
- package/docs/classes/View.html +366 -0
- package/docs/classes/ViewComponent.html +289 -0
- package/docs/classes/ViewElement.html +296 -0
- package/docs/classes/WhileStatement.html +207 -0
- package/docs/index.html +69 -313
- package/docs/modules.html +31 -377
- package/docs-theme/LICENSE +21 -0
- package/docs-theme/README.md +9 -0
- package/docs-theme/package.json +81 -0
- package/docs-theme/src/assets/common.js +2 -0
- package/docs-theme/src/assets/common.js.LICENSE.txt +61 -0
- package/docs-theme/src/assets/css/main.css +1 -0
- package/docs-theme/src/assets/images/icons.png +0 -0
- package/docs-theme/src/assets/images/icons@2x.png +0 -0
- package/docs-theme/src/config.json +25 -0
- package/docs-theme/src/index.js +45 -0
- package/docs-theme/src/layouts/default.js +88 -0
- package/docs-theme/src/partials/analytics.js +22 -0
- package/docs-theme/src/partials/breadcrumb.js +9 -0
- package/docs-theme/src/partials/footer.js +96 -0
- package/docs-theme/src/partials/header.js +25 -0
- package/docs-theme/src/partials/infrafoot.js +113 -0
- package/docs-theme/src/partials/infranav.js +187 -0
- package/docs-theme/src/partials/navigation.js +39 -0
- package/docs-theme/src/templates/index.js +7 -0
- package/docs-theme/src/templates/reflection.js +41 -0
- package/docs-theme/src/utils/lib.js +109 -0
- package/out/bak/translator.d.ts +1 -0
- package/out/bak/translator.js +117 -0
- package/out/bak/translator.js.map +1 -0
- package/out/baseService/index.d.ts +2 -0
- package/out/baseService/index.js +12 -0
- package/out/baseService/index.js.map +1 -0
- package/out/baseTypes/App__.d.ts +169 -0
- package/out/baseTypes/App__.js +344 -0
- package/out/baseTypes/App__.js.map +1 -0
- package/out/baseTypes/AssignmentExpression__.d.ts +42 -0
- package/out/baseTypes/AssignmentExpression__.js +112 -0
- package/out/baseTypes/AssignmentExpression__.js.map +1 -0
- package/out/baseTypes/Attr__.d.ts +96 -0
- package/out/baseTypes/Attr__.js +191 -0
- package/out/baseTypes/Attr__.js.map +1 -0
- package/out/baseTypes/BinaryExpression__.d.ts +40 -0
- package/out/baseTypes/BinaryExpression__.js +92 -0
- package/out/baseTypes/BinaryExpression__.js.map +1 -0
- package/out/baseTypes/BooleanLiteral__.d.ts +25 -0
- package/out/baseTypes/BooleanLiteral__.js +64 -0
- package/out/baseTypes/BooleanLiteral__.js.map +1 -0
- package/out/baseTypes/Comment__.d.ts +27 -0
- package/out/baseTypes/Comment__.js +60 -0
- package/out/baseTypes/Comment__.js.map +1 -0
- package/out/baseTypes/Directive__.d.ts +100 -0
- package/out/baseTypes/Directive__.js +198 -0
- package/out/baseTypes/Directive__.js.map +1 -0
- package/out/baseTypes/Element__.d.ts +303 -0
- package/out/baseTypes/Element__.js +555 -0
- package/out/baseTypes/Element__.js.map +1 -0
- package/out/baseTypes/End__.d.ts +24 -0
- package/out/baseTypes/End__.js +61 -0
- package/out/baseTypes/End__.js.map +1 -0
- package/out/baseTypes/EntityProperty__.d.ts +116 -0
- package/out/baseTypes/EntityProperty__.js +230 -0
- package/out/baseTypes/EntityProperty__.js.map +1 -0
- package/out/baseTypes/Entity__.d.ts +106 -0
- package/out/baseTypes/Entity__.js +222 -0
- package/out/baseTypes/Entity__.js.map +1 -0
- package/out/baseTypes/EnumItem__.d.ts +56 -0
- package/out/baseTypes/EnumItem__.js +125 -0
- package/out/baseTypes/EnumItem__.js.map +1 -0
- package/out/baseTypes/Enum__.d.ts +98 -0
- package/out/baseTypes/Enum__.js +211 -0
- package/out/baseTypes/Enum__.js.map +1 -0
- package/out/baseTypes/Event__.d.ts +93 -0
- package/out/baseTypes/Event__.js +181 -0
- package/out/baseTypes/Event__.js.map +1 -0
- package/out/baseTypes/ForEachStatement__.d.ts +89 -0
- package/out/baseTypes/ForEachStatement__.js +169 -0
- package/out/baseTypes/ForEachStatement__.js.map +1 -0
- package/out/baseTypes/Identifier__.d.ts +24 -0
- package/out/baseTypes/Identifier__.js +60 -0
- package/out/baseTypes/Identifier__.js.map +1 -0
- package/out/baseTypes/IfStatement__.d.ts +60 -0
- package/out/baseTypes/IfStatement__.js +109 -0
- package/out/baseTypes/IfStatement__.js.map +1 -0
- package/out/baseTypes/Lifecycle__.d.ts +89 -0
- package/out/baseTypes/Lifecycle__.js +175 -0
- package/out/baseTypes/Lifecycle__.js.map +1 -0
- package/out/baseTypes/LogicItem__.d.ts +103 -0
- package/out/baseTypes/LogicItem__.js +211 -0
- package/out/baseTypes/LogicItem__.js.map +1 -0
- package/out/baseTypes/Logic__.d.ts +280 -0
- package/out/baseTypes/Logic__.js +598 -0
- package/out/baseTypes/Logic__.js.map +1 -0
- package/out/baseTypes/Module__.d.ts +278 -0
- package/out/baseTypes/Module__.js +511 -0
- package/out/baseTypes/Module__.js.map +1 -0
- package/out/baseTypes/NullLiteral__.d.ts +20 -0
- package/out/baseTypes/NullLiteral__.js +53 -0
- package/out/baseTypes/NullLiteral__.js.map +1 -0
- package/out/baseTypes/Page__.d.ts +85 -0
- package/out/baseTypes/Page__.js +166 -0
- package/out/baseTypes/Page__.js.map +1 -0
- package/out/baseTypes/Param__.d.ts +88 -0
- package/out/baseTypes/Param__.js +194 -0
- package/out/baseTypes/Param__.js.map +1 -0
- package/out/baseTypes/ProcessComponent__.d.ts +67 -0
- package/out/baseTypes/ProcessComponent__.js +142 -0
- package/out/baseTypes/ProcessComponent__.js.map +1 -0
- package/out/baseTypes/Process__.d.ts +134 -0
- package/out/baseTypes/Process__.js +255 -0
- package/out/baseTypes/Process__.js.map +1 -0
- package/out/baseTypes/Return__.d.ts +88 -0
- package/out/baseTypes/Return__.js +194 -0
- package/out/baseTypes/Return__.js.map +1 -0
- package/out/baseTypes/Start__.d.ts +24 -0
- package/out/baseTypes/Start__.js +60 -0
- package/out/baseTypes/Start__.js.map +1 -0
- package/out/baseTypes/StringLiteral__.d.ts +25 -0
- package/out/baseTypes/StringLiteral__.js +73 -0
- package/out/baseTypes/StringLiteral__.js.map +1 -0
- package/out/baseTypes/StructureProperty__.d.ts +107 -0
- package/out/baseTypes/StructureProperty__.js +206 -0
- package/out/baseTypes/StructureProperty__.js.map +1 -0
- package/out/baseTypes/Structure__.d.ts +129 -0
- package/out/baseTypes/Structure__.js +296 -0
- package/out/baseTypes/Structure__.js.map +1 -0
- package/out/baseTypes/SwitchCase__.d.ts +56 -0
- package/out/baseTypes/SwitchCase__.js +105 -0
- package/out/baseTypes/SwitchCase__.js.map +1 -0
- package/out/baseTypes/SwitchStatement__.d.ts +49 -0
- package/out/baseTypes/SwitchStatement__.js +90 -0
- package/out/baseTypes/SwitchStatement__.js.map +1 -0
- package/out/baseTypes/TypeAnnotation__.d.ts +62 -0
- package/out/baseTypes/TypeAnnotation__.js +156 -0
- package/out/baseTypes/TypeAnnotation__.js.map +1 -0
- package/out/baseTypes/UnaryExpression__.d.ts +32 -0
- package/out/baseTypes/UnaryExpression__.js +76 -0
- package/out/baseTypes/UnaryExpression__.js.map +1 -0
- package/out/baseTypes/Variable__.d.ts +88 -0
- package/out/baseTypes/Variable__.js +194 -0
- package/out/baseTypes/Variable__.js.map +1 -0
- package/out/baseTypes/View__.d.ts +359 -0
- package/out/baseTypes/View__.js +644 -0
- package/out/baseTypes/View__.js.map +1 -0
- package/out/baseTypes/WhileStatement__.d.ts +56 -0
- package/out/baseTypes/WhileStatement__.js +105 -0
- package/out/baseTypes/WhileStatement__.js.map +1 -0
- package/out/baseTypes/basics/types/index.d.ts +8 -0
- package/out/baseTypes/basics/types/index.js +14 -0
- package/out/baseTypes/basics/types/index.js.map +1 -0
- package/out/baseTypes/basics/types/primitiveTypes.d.ts +2 -0
- package/out/baseTypes/basics/types/primitiveTypes.js +17 -0
- package/out/baseTypes/basics/types/primitiveTypes.js.map +1 -0
- package/out/baseTypes/basics/types/systemTypes.d.ts +2 -0
- package/out/baseTypes/basics/types/systemTypes.js +30 -0
- package/out/baseTypes/basics/types/systemTypes.js.map +1 -0
- package/out/baseTypes/index.d.ts +6 -0
- package/out/baseTypes/index.js +21 -0
- package/out/baseTypes/index.js.map +1 -0
- package/out/baseTypes/index__.d.ts +38 -0
- package/out/baseTypes/index__.js +51 -0
- package/out/baseTypes/index__.js.map +1 -0
- package/out/generator/debugInFileStorage.d.ts +3 -0
- package/out/generator/debugInFileStorage.js +15 -0
- package/out/generator/debugInFileStorage.js.map +1 -0
- package/out/generator/genAllEmbeddedTS.d.ts +7 -0
- package/out/generator/genAllEmbeddedTS.js +20 -0
- package/out/generator/genAllEmbeddedTS.js.map +1 -0
- package/out/generator/index.d.ts +2 -0
- package/out/generator/index.js +15 -0
- package/out/generator/index.js.map +1 -0
- package/out/index.d.ts +3 -0
- package/out/index.js +16 -0
- package/out/index.js.map +1 -0
- package/out/manager/diagnostic.d.ts +30 -0
- package/out/manager/diagnostic.js +82 -0
- package/out/manager/diagnostic.js.map +1 -0
- package/{analysis/mergeBlock/raw1.json → out/manager/history.d.ts} +0 -0
- package/out/manager/history.js +1 -0
- package/out/manager/history.js.map +1 -0
- package/out/manager/problem.d.ts +0 -0
- package/out/manager/problem.js +1 -0
- package/out/manager/problem.js.map +1 -0
- package/out/service/app/api.d.ts +1 -15
- package/out/service/app/api.js +1 -11
- package/out/service/app/api.js.map +1 -1
- package/out/service/create/index.js +2 -2
- package/out/service/create/index.js.map +1 -1
- package/out/service/debugger/debugger.d.ts +3 -0
- package/out/service/debugger/debugger.js +95 -0
- package/out/service/debugger/debugger.js.map +1 -0
- package/out/service/logic/index.d.ts +0 -3
- package/out/service/logic/index.js +1 -4
- package/out/service/logic/index.js.map +1 -1
- package/out/service/logic/logic.d.ts +0 -9
- package/out/service/logic/logic.js +0 -7
- package/out/service/logic/logic.js.map +1 -1
- package/out/service/page/api.d.ts +1 -1
- package/out/service/page/api.js +0 -15
- package/out/service/page/api.js.map +1 -1
- package/out/service/page/view.d.ts +1 -1
- package/out/service/page/view.js +0 -15
- package/out/service/page/view.js.map +1 -1
- package/out/src/bak/basicTypes.d.ts +25 -0
- package/out/src/bak/basicTypes.js +77 -0
- package/out/src/bak/basicTypes.js.map +1 -0
- package/out/src/bak/dataTypeUtils.d.ts +94 -0
- package/out/src/bak/dataTypeUtils.js +449 -0
- package/out/src/bak/dataTypeUtils.js.map +1 -0
- package/out/src/bak/dataTypes.d.ts +20 -0
- package/out/src/bak/dataTypes.js +47 -0
- package/out/src/bak/dataTypes.js.map +1 -0
- package/out/src/bak/entityUtils.d.ts +164 -0
- package/out/src/bak/entityUtils.js +621 -0
- package/out/src/bak/entityUtils.js.map +1 -0
- package/out/src/bak/genericTypes.d.ts +40 -0
- package/out/src/bak/genericTypes.js +134 -0
- package/out/src/bak/genericTypes.js.map +1 -0
- package/out/src/bak/systemTypes.d.ts +9 -0
- package/out/src/bak/systemTypes.js +1563 -0
- package/out/src/bak/systemTypes.js.map +1 -0
- package/out/src/baseService/index.d.ts +2 -0
- package/out/src/baseService/index.js +10 -0
- package/out/src/baseService/index.js.map +1 -0
- package/out/src/baseTypes/App__.d.ts +181 -0
- package/out/src/baseTypes/App__.js +381 -0
- package/out/src/baseTypes/App__.js.map +1 -0
- package/out/src/baseTypes/Argument__.d.ts +40 -0
- package/out/src/baseTypes/Argument__.js +147 -0
- package/out/src/baseTypes/Argument__.js.map +1 -0
- package/out/src/baseTypes/AssignmentExpression__.d.ts +45 -0
- package/out/src/baseTypes/AssignmentExpression__.js +172 -0
- package/out/src/baseTypes/AssignmentExpression__.js.map +1 -0
- package/out/src/baseTypes/Attr__.d.ts +79 -0
- package/out/src/baseTypes/Attr__.js +210 -0
- package/out/src/baseTypes/Attr__.js.map +1 -0
- package/out/src/baseTypes/BinaryExpression__.d.ts +43 -0
- package/out/src/baseTypes/BinaryExpression__.js +152 -0
- package/out/src/baseTypes/BinaryExpression__.js.map +1 -0
- package/out/src/baseTypes/BooleanLiteral__.d.ts +28 -0
- package/out/src/baseTypes/BooleanLiteral__.js +118 -0
- package/out/src/baseTypes/BooleanLiteral__.js.map +1 -0
- package/out/src/baseTypes/CallLogic__.d.ts +45 -0
- package/out/src/baseTypes/CallLogic__.js +162 -0
- package/out/src/baseTypes/CallLogic__.js.map +1 -0
- package/out/src/baseTypes/CallQueryComponent__.d.ts +83 -0
- package/out/src/baseTypes/CallQueryComponent__.js +235 -0
- package/out/src/baseTypes/CallQueryComponent__.js.map +1 -0
- package/out/src/baseTypes/Comment__.d.ts +30 -0
- package/out/src/baseTypes/Comment__.js +114 -0
- package/out/src/baseTypes/Comment__.js.map +1 -0
- package/out/src/baseTypes/Directive__.d.ts +83 -0
- package/out/src/baseTypes/Directive__.js +218 -0
- package/out/src/baseTypes/Directive__.js.map +1 -0
- package/out/src/baseTypes/Element__.d.ts +389 -0
- package/out/src/baseTypes/Element__.js +589 -0
- package/out/src/baseTypes/Element__.js.map +1 -0
- package/out/src/baseTypes/End__.d.ts +27 -0
- package/out/src/baseTypes/End__.js +115 -0
- package/out/src/baseTypes/End__.js.map +1 -0
- package/out/src/baseTypes/EntityProperty__.d.ts +99 -0
- package/out/src/baseTypes/EntityProperty__.js +254 -0
- package/out/src/baseTypes/EntityProperty__.js.map +1 -0
- package/out/src/baseTypes/Entity__.d.ts +121 -0
- package/out/src/baseTypes/Entity__.js +250 -0
- package/out/src/baseTypes/Entity__.js.map +1 -0
- package/out/src/baseTypes/EnumItem__.d.ts +131 -0
- package/out/src/baseTypes/EnumItem__.js +271 -0
- package/out/src/baseTypes/EnumItem__.js.map +1 -0
- package/out/src/baseTypes/Enum__.d.ts +114 -0
- package/out/src/baseTypes/Enum__.js +226 -0
- package/out/src/baseTypes/Enum__.js.map +1 -0
- package/out/src/baseTypes/Event__.d.ts +76 -0
- package/out/src/baseTypes/Event__.js +205 -0
- package/out/src/baseTypes/Event__.js.map +1 -0
- package/out/src/baseTypes/ForEachStatement__.d.ts +116 -0
- package/out/src/baseTypes/ForEachStatement__.js +242 -0
- package/out/src/baseTypes/ForEachStatement__.js.map +1 -0
- package/out/src/baseTypes/Identifier__.d.ts +29 -0
- package/out/src/baseTypes/Identifier__.js +121 -0
- package/out/src/baseTypes/Identifier__.js.map +1 -0
- package/out/src/baseTypes/IfStatement__.d.ts +87 -0
- package/out/src/baseTypes/IfStatement__.js +175 -0
- package/out/src/baseTypes/IfStatement__.js.map +1 -0
- package/out/src/baseTypes/Lifecycle__.d.ts +71 -0
- package/out/src/baseTypes/Lifecycle__.js +196 -0
- package/out/src/baseTypes/Lifecycle__.js.map +1 -0
- package/out/src/baseTypes/LogicItem__.d.ts +100 -0
- package/out/src/baseTypes/LogicItem__.js +265 -0
- package/out/src/baseTypes/LogicItem__.js.map +1 -0
- package/out/src/baseTypes/Logic__.d.ts +382 -0
- package/out/src/baseTypes/Logic__.js +622 -0
- package/out/src/baseTypes/Logic__.js.map +1 -0
- package/out/src/baseTypes/Module__.d.ts +521 -0
- package/out/src/baseTypes/Module__.js +728 -0
- package/out/src/baseTypes/Module__.js.map +1 -0
- package/out/src/baseTypes/NullLiteral__.d.ts +23 -0
- package/out/src/baseTypes/NullLiteral__.js +106 -0
- package/out/src/baseTypes/NullLiteral__.js.map +1 -0
- package/out/src/baseTypes/Page__.d.ts +65 -0
- package/out/src/baseTypes/Page__.js +186 -0
- package/out/src/baseTypes/Page__.js.map +1 -0
- package/out/src/baseTypes/Param__.d.ts +107 -0
- package/out/src/baseTypes/Param__.js +278 -0
- package/out/src/baseTypes/Param__.js.map +1 -0
- package/out/src/baseTypes/ProcessComponent__.d.ts +50 -0
- package/out/src/baseTypes/ProcessComponent__.js +153 -0
- package/out/src/baseTypes/ProcessComponent__.js.map +1 -0
- package/out/src/baseTypes/Process__.d.ts +285 -0
- package/out/src/baseTypes/Process__.js +450 -0
- package/out/src/baseTypes/Process__.js.map +1 -0
- package/out/src/baseTypes/QuerSelectExpression__.d.ts +39 -0
- package/out/src/baseTypes/QuerSelectExpression__.js +133 -0
- package/out/src/baseTypes/QuerSelectExpression__.js.map +1 -0
- package/out/src/baseTypes/QueryAggregateExpression__.d.ts +35 -0
- package/out/src/baseTypes/QueryAggregateExpression__.js +126 -0
- package/out/src/baseTypes/QueryAggregateExpression__.js.map +1 -0
- package/out/src/baseTypes/QueryFieldExpression__.d.ts +38 -0
- package/out/src/baseTypes/QueryFieldExpression__.js +131 -0
- package/out/src/baseTypes/QueryFieldExpression__.js.map +1 -0
- package/out/src/baseTypes/QueryFromExpression__.d.ts +40 -0
- package/out/src/baseTypes/QueryFromExpression__.js +136 -0
- package/out/src/baseTypes/QueryFromExpression__.js.map +1 -0
- package/out/src/baseTypes/QueryGroupByExpression__.d.ts +30 -0
- package/out/src/baseTypes/QueryGroupByExpression__.js +118 -0
- package/out/src/baseTypes/QueryGroupByExpression__.js.map +1 -0
- package/out/src/baseTypes/QueryJoinExpression__.d.ts +48 -0
- package/out/src/baseTypes/QueryJoinExpression__.js +155 -0
- package/out/src/baseTypes/QueryJoinExpression__.js.map +1 -0
- package/out/src/baseTypes/QueryLimitExpression__.d.ts +38 -0
- package/out/src/baseTypes/QueryLimitExpression__.js +137 -0
- package/out/src/baseTypes/QueryLimitExpression__.js.map +1 -0
- package/out/src/baseTypes/QueryOrderByExpression__.d.ts +38 -0
- package/out/src/baseTypes/QueryOrderByExpression__.js +137 -0
- package/out/src/baseTypes/QueryOrderByExpression__.js.map +1 -0
- package/out/src/baseTypes/Return__.d.ts +107 -0
- package/out/src/baseTypes/Return__.js +274 -0
- package/out/src/baseTypes/Return__.js.map +1 -0
- package/out/src/baseTypes/Start__.d.ts +27 -0
- package/out/src/baseTypes/Start__.js +114 -0
- package/out/src/baseTypes/Start__.js.map +1 -0
- package/out/src/baseTypes/StringLiteral__.d.ts +28 -0
- package/out/src/baseTypes/StringLiteral__.js +127 -0
- package/out/src/baseTypes/StringLiteral__.js.map +1 -0
- package/out/src/baseTypes/StructureProperty__.d.ts +97 -0
- package/out/src/baseTypes/StructureProperty__.js +253 -0
- package/out/src/baseTypes/StructureProperty__.js.map +1 -0
- package/out/src/baseTypes/Structure__.d.ts +153 -0
- package/out/src/baseTypes/Structure__.js +329 -0
- package/out/src/baseTypes/Structure__.js.map +1 -0
- package/out/src/baseTypes/SwitchCase__.d.ts +83 -0
- package/out/src/baseTypes/SwitchCase__.js +165 -0
- package/out/src/baseTypes/SwitchCase__.js.map +1 -0
- package/out/src/baseTypes/SwitchStatement__.d.ts +76 -0
- package/out/src/baseTypes/SwitchStatement__.js +147 -0
- package/out/src/baseTypes/SwitchStatement__.js.map +1 -0
- package/out/src/baseTypes/TypeAnnotation__.d.ts +60 -0
- package/out/src/baseTypes/TypeAnnotation__.js +201 -0
- package/out/src/baseTypes/TypeAnnotation__.js.map +1 -0
- package/out/src/baseTypes/UnaryExpression__.d.ts +35 -0
- package/out/src/baseTypes/UnaryExpression__.js +133 -0
- package/out/src/baseTypes/UnaryExpression__.js.map +1 -0
- package/out/src/baseTypes/Variable__.d.ts +107 -0
- package/out/src/baseTypes/Variable__.js +278 -0
- package/out/src/baseTypes/Variable__.js.map +1 -0
- package/out/src/baseTypes/View__.d.ts +472 -0
- package/out/src/baseTypes/View__.js +692 -0
- package/out/src/baseTypes/View__.js.map +1 -0
- package/out/src/baseTypes/WhileStatement__.d.ts +83 -0
- package/out/src/baseTypes/WhileStatement__.js +165 -0
- package/out/src/baseTypes/WhileStatement__.js.map +1 -0
- package/out/src/baseTypes/basics/types/collectionTypeList.d.ts +2 -0
- package/out/src/baseTypes/basics/types/collectionTypeList.js +30 -0
- package/out/src/baseTypes/basics/types/collectionTypeList.js.map +1 -0
- package/out/src/baseTypes/basics/types/coreTypes.d.ts +2 -0
- package/out/src/baseTypes/basics/types/coreTypes.js +17 -0
- package/out/src/baseTypes/basics/types/coreTypes.js.map +1 -0
- package/out/src/baseTypes/basics/types/index.d.ts +8 -0
- package/out/src/baseTypes/basics/types/index.js +14 -0
- package/out/src/baseTypes/basics/types/index.js.map +1 -0
- package/out/src/baseTypes/basics/types/stdlibModule.d.ts +7 -0
- package/out/src/baseTypes/basics/types/stdlibModule.js +48 -0
- package/out/src/baseTypes/basics/types/stdlibModule.js.map +1 -0
- package/out/src/baseTypes/index.d.ts +6 -0
- package/out/src/baseTypes/index.js +21 -0
- package/out/src/baseTypes/index.js.map +1 -0
- package/out/src/baseTypes/index__.d.ts +49 -0
- package/out/src/baseTypes/index__.js +62 -0
- package/out/src/baseTypes/index__.js.map +1 -0
- package/out/src/common/BaseNode.d.ts +231 -0
- package/out/src/common/BaseNode.js +683 -0
- package/out/src/common/BaseNode.js.map +1 -0
- package/out/src/common/Command.d.ts +8 -0
- package/out/src/common/Command.js +32 -0
- package/out/src/common/Command.js.map +1 -0
- package/out/src/common/ComponentAPI.d.ts +110 -0
- package/out/src/common/ComponentAPI.js +3 -0
- package/out/src/common/ComponentAPI.js.map +1 -0
- package/out/src/common/EventEmitter.d.ts +54 -0
- package/out/src/common/EventEmitter.js +68 -0
- package/out/src/common/EventEmitter.js.map +1 -0
- package/out/src/common/Messager.d.ts +86 -0
- package/out/src/common/Messager.js +187 -0
- package/out/src/common/Messager.js.map +1 -0
- package/out/src/common/classMap.d.ts +4 -0
- package/out/src/common/classMap.js +5 -0
- package/out/src/common/classMap.js.map +1 -0
- package/out/src/common/index.d.ts +4 -0
- package/out/src/common/index.js +21 -0
- package/out/src/common/index.js.map +1 -0
- package/out/src/concepts/App__.d.ts +1077 -0
- package/out/src/concepts/App__.js +1453 -0
- package/out/src/concepts/App__.js.map +1 -0
- package/out/src/concepts/Argument__.d.ts +56 -0
- package/out/src/concepts/Argument__.js +177 -0
- package/out/src/concepts/Argument__.js.map +1 -0
- package/out/src/concepts/Assignment__.d.ts +72 -0
- package/out/src/concepts/Assignment__.js +200 -0
- package/out/src/concepts/Assignment__.js.map +1 -0
- package/out/src/concepts/Attribute__.d.ts +101 -0
- package/out/src/concepts/Attribute__.js +221 -0
- package/out/src/concepts/Attribute__.js.map +1 -0
- package/out/src/concepts/BinaryExpression__.d.ts +66 -0
- package/out/src/concepts/BinaryExpression__.js +237 -0
- package/out/src/concepts/BinaryExpression__.js.map +1 -0
- package/out/src/concepts/BindAttribute__.d.ts +211 -0
- package/out/src/concepts/BindAttribute__.js +395 -0
- package/out/src/concepts/BindAttribute__.js.map +1 -0
- package/out/src/concepts/BindDirective__.d.ts +92 -0
- package/out/src/concepts/BindDirective__.js +221 -0
- package/out/src/concepts/BindDirective__.js.map +1 -0
- package/out/src/concepts/BindEvent__.d.ts +133 -0
- package/out/src/concepts/BindEvent__.js +258 -0
- package/out/src/concepts/BindEvent__.js.map +1 -0
- package/out/src/concepts/BooleanLiteral__.d.ts +27 -0
- package/out/src/concepts/BooleanLiteral__.js +74 -0
- package/out/src/concepts/BooleanLiteral__.js.map +1 -0
- package/out/src/concepts/CallFunction__.d.ts +100 -0
- package/out/src/concepts/CallFunction__.js +231 -0
- package/out/src/concepts/CallFunction__.js.map +1 -0
- package/out/src/concepts/CallInterface__.d.ts +100 -0
- package/out/src/concepts/CallInterface__.js +220 -0
- package/out/src/concepts/CallInterface__.js.map +1 -0
- package/out/src/concepts/CallLogic__.d.ts +116 -0
- package/out/src/concepts/CallLogic__.js +305 -0
- package/out/src/concepts/CallLogic__.js.map +1 -0
- package/out/src/concepts/CallQueryComponent__.d.ts +312 -0
- package/out/src/concepts/CallQueryComponent__.js +738 -0
- package/out/src/concepts/CallQueryComponent__.js.map +1 -0
- package/out/src/concepts/Comment__.d.ts +35 -0
- package/out/src/concepts/Comment__.js +99 -0
- package/out/src/concepts/Comment__.js.map +1 -0
- package/out/src/concepts/CompletionProperty__.d.ts +95 -0
- package/out/src/concepts/CompletionProperty__.js +231 -0
- package/out/src/concepts/CompletionProperty__.js.map +1 -0
- package/out/src/concepts/Constant__.d.ts +96 -0
- package/out/src/concepts/Constant__.js +220 -0
- package/out/src/concepts/Constant__.js.map +1 -0
- package/out/src/concepts/DataElement__.d.ts +45 -0
- package/out/src/concepts/DataElement__.js +114 -0
- package/out/src/concepts/DataElement__.js.map +1 -0
- package/out/src/concepts/Destination__.d.ts +106 -0
- package/out/src/concepts/Destination__.js +263 -0
- package/out/src/concepts/Destination__.js.map +1 -0
- package/out/src/concepts/End__.d.ts +28 -0
- package/out/src/concepts/End__.js +102 -0
- package/out/src/concepts/End__.js.map +1 -0
- package/out/src/concepts/EntityIndex__.d.ts +81 -0
- package/out/src/concepts/EntityIndex__.js +189 -0
- package/out/src/concepts/EntityIndex__.js.map +1 -0
- package/out/src/concepts/EntityProperty__.d.ts +207 -0
- package/out/src/concepts/EntityProperty__.js +472 -0
- package/out/src/concepts/EntityProperty__.js.map +1 -0
- package/out/src/concepts/Entity__.d.ts +282 -0
- package/out/src/concepts/Entity__.js +520 -0
- package/out/src/concepts/Entity__.js.map +1 -0
- package/out/src/concepts/EnumItem__.d.ts +60 -0
- package/out/src/concepts/EnumItem__.js +136 -0
- package/out/src/concepts/EnumItem__.js.map +1 -0
- package/out/src/concepts/Enum__.d.ts +130 -0
- package/out/src/concepts/Enum__.js +259 -0
- package/out/src/concepts/Enum__.js.map +1 -0
- package/out/src/concepts/Event__.d.ts +142 -0
- package/out/src/concepts/Event__.js +242 -0
- package/out/src/concepts/Event__.js.map +1 -0
- package/out/src/concepts/ForEachStatement__.d.ts +194 -0
- package/out/src/concepts/ForEachStatement__.js +410 -0
- package/out/src/concepts/ForEachStatement__.js.map +1 -0
- package/out/src/concepts/Function__.d.ts +387 -0
- package/out/src/concepts/Function__.js +557 -0
- package/out/src/concepts/Function__.js.map +1 -0
- package/out/src/concepts/Identifier__.d.ts +44 -0
- package/out/src/concepts/Identifier__.js +159 -0
- package/out/src/concepts/Identifier__.js.map +1 -0
- package/out/src/concepts/IfStatement__.d.ts +150 -0
- package/out/src/concepts/IfStatement__.js +310 -0
- package/out/src/concepts/IfStatement__.js.map +1 -0
- package/out/src/concepts/InterfaceParam__.d.ts +110 -0
- package/out/src/concepts/InterfaceParam__.js +273 -0
- package/out/src/concepts/InterfaceParam__.js.map +1 -0
- package/out/src/concepts/Interface__.d.ts +247 -0
- package/out/src/concepts/Interface__.js +441 -0
- package/out/src/concepts/Interface__.js.map +1 -0
- package/out/src/concepts/JSBlock__.d.ts +35 -0
- package/out/src/concepts/JSBlock__.js +106 -0
- package/out/src/concepts/JSBlock__.js.map +1 -0
- package/out/src/concepts/LogicItem__.d.ts +114 -0
- package/out/src/concepts/LogicItem__.js +216 -0
- package/out/src/concepts/LogicItem__.js.map +1 -0
- package/out/src/concepts/Logic__.d.ts +571 -0
- package/out/src/concepts/Logic__.js +951 -0
- package/out/src/concepts/Logic__.js.map +1 -0
- package/out/src/concepts/MemberExpression__.d.ts +69 -0
- package/out/src/concepts/MemberExpression__.js +204 -0
- package/out/src/concepts/MemberExpression__.js.map +1 -0
- package/out/src/concepts/Module__.d.ts +747 -0
- package/out/src/concepts/Module__.js +982 -0
- package/out/src/concepts/Module__.js.map +1 -0
- package/out/src/concepts/Namespace__.d.ts +1068 -0
- package/out/src/concepts/Namespace__.js +1397 -0
- package/out/src/concepts/Namespace__.js.map +1 -0
- package/out/src/concepts/NullLiteral__.d.ts +23 -0
- package/out/src/concepts/NullLiteral__.js +67 -0
- package/out/src/concepts/NullLiteral__.js.map +1 -0
- package/out/src/concepts/NumericLiteral__.d.ts +55 -0
- package/out/src/concepts/NumericLiteral__.js +164 -0
- package/out/src/concepts/NumericLiteral__.js.map +1 -0
- package/out/src/concepts/Param__.d.ts +143 -0
- package/out/src/concepts/Param__.js +327 -0
- package/out/src/concepts/Param__.js.map +1 -0
- package/out/src/concepts/Point__.d.ts +30 -0
- package/out/src/concepts/Point__.js +75 -0
- package/out/src/concepts/Point__.js.map +1 -0
- package/out/src/concepts/ProcessComponent__.d.ts +218 -0
- package/out/src/concepts/ProcessComponent__.js +333 -0
- package/out/src/concepts/ProcessComponent__.js.map +1 -0
- package/out/src/concepts/ProcessElement__.d.ts +557 -0
- package/out/src/concepts/ProcessElement__.js +889 -0
- package/out/src/concepts/ProcessElement__.js.map +1 -0
- package/out/src/concepts/ProcessOutcome__.d.ts +34 -0
- package/out/src/concepts/ProcessOutcome__.js +94 -0
- package/out/src/concepts/ProcessOutcome__.js.map +1 -0
- package/out/src/concepts/Process__.d.ts +425 -0
- package/out/src/concepts/Process__.js +736 -0
- package/out/src/concepts/Process__.js.map +1 -0
- package/out/src/concepts/QueryAggregateExpression__.d.ts +56 -0
- package/out/src/concepts/QueryAggregateExpression__.js +177 -0
- package/out/src/concepts/QueryAggregateExpression__.js.map +1 -0
- package/out/src/concepts/QueryFieldExpression__.d.ts +51 -0
- package/out/src/concepts/QueryFieldExpression__.js +129 -0
- package/out/src/concepts/QueryFieldExpression__.js.map +1 -0
- package/out/src/concepts/QueryFromExpression__.d.ts +95 -0
- package/out/src/concepts/QueryFromExpression__.js +188 -0
- package/out/src/concepts/QueryFromExpression__.js.map +1 -0
- package/out/src/concepts/QueryGroupByExpression__.d.ts +46 -0
- package/out/src/concepts/QueryGroupByExpression__.js +126 -0
- package/out/src/concepts/QueryGroupByExpression__.js.map +1 -0
- package/out/src/concepts/QueryJoinExpression__.d.ts +182 -0
- package/out/src/concepts/QueryJoinExpression__.js +308 -0
- package/out/src/concepts/QueryJoinExpression__.js.map +1 -0
- package/out/src/concepts/QueryLimitExpression__.d.ts +60 -0
- package/out/src/concepts/QueryLimitExpression__.js +163 -0
- package/out/src/concepts/QueryLimitExpression__.js.map +1 -0
- package/out/src/concepts/QueryOrderByExpression__.d.ts +71 -0
- package/out/src/concepts/QueryOrderByExpression__.js +176 -0
- package/out/src/concepts/QueryOrderByExpression__.js.map +1 -0
- package/out/src/concepts/QuerySelectExpression__.d.ts +118 -0
- package/out/src/concepts/QuerySelectExpression__.js +210 -0
- package/out/src/concepts/QuerySelectExpression__.js.map +1 -0
- package/out/src/concepts/Rect__.d.ts +38 -0
- package/out/src/concepts/Rect__.js +89 -0
- package/out/src/concepts/Rect__.js.map +1 -0
- package/out/src/concepts/Return__.d.ts +129 -0
- package/out/src/concepts/Return__.js +291 -0
- package/out/src/concepts/Return__.js.map +1 -0
- package/out/src/concepts/Role__.d.ts +52 -0
- package/out/src/concepts/Role__.js +131 -0
- package/out/src/concepts/Role__.js.map +1 -0
- package/out/src/concepts/Slot__.d.ts +57 -0
- package/out/src/concepts/Slot__.js +114 -0
- package/out/src/concepts/Slot__.js.map +1 -0
- package/out/src/concepts/SqlQueryComponent__.d.ts +49 -0
- package/out/src/concepts/SqlQueryComponent__.js +125 -0
- package/out/src/concepts/SqlQueryComponent__.js.map +1 -0
- package/out/src/concepts/Start__.d.ts +28 -0
- package/out/src/concepts/Start__.js +81 -0
- package/out/src/concepts/Start__.js.map +1 -0
- package/out/src/concepts/StringLiteral__.d.ts +37 -0
- package/out/src/concepts/StringLiteral__.js +135 -0
- package/out/src/concepts/StringLiteral__.js.map +1 -0
- package/out/src/concepts/StructureProperty__.d.ts +123 -0
- package/out/src/concepts/StructureProperty__.js +294 -0
- package/out/src/concepts/StructureProperty__.js.map +1 -0
- package/out/src/concepts/Structure__.d.ts +231 -0
- package/out/src/concepts/Structure__.js +386 -0
- package/out/src/concepts/Structure__.js.map +1 -0
- package/out/src/concepts/SwitchCase__.d.ts +97 -0
- package/out/src/concepts/SwitchCase__.js +270 -0
- package/out/src/concepts/SwitchCase__.js.map +1 -0
- package/out/src/concepts/SwitchStatement__.d.ts +86 -0
- package/out/src/concepts/SwitchStatement__.js +187 -0
- package/out/src/concepts/SwitchStatement__.js.map +1 -0
- package/out/src/concepts/Theme__.d.ts +36 -0
- package/out/src/concepts/Theme__.js +86 -0
- package/out/src/concepts/Theme__.js.map +1 -0
- package/out/src/concepts/Transactional__.d.ts +76 -0
- package/out/src/concepts/Transactional__.js +151 -0
- package/out/src/concepts/Transactional__.js.map +1 -0
- package/out/src/concepts/TypeAnnotation__.d.ts +125 -0
- package/out/src/concepts/TypeAnnotation__.js +305 -0
- package/out/src/concepts/TypeAnnotation__.js.map +1 -0
- package/out/src/concepts/TypeParam__.d.ts +20 -0
- package/out/src/concepts/TypeParam__.js +57 -0
- package/out/src/concepts/TypeParam__.js.map +1 -0
- package/out/src/concepts/UnaryExpression__.d.ts +48 -0
- package/out/src/concepts/UnaryExpression__.js +163 -0
- package/out/src/concepts/UnaryExpression__.js.map +1 -0
- package/out/src/concepts/Unparsed__.d.ts +32 -0
- package/out/src/concepts/Unparsed__.js +92 -0
- package/out/src/concepts/Unparsed__.js.map +1 -0
- package/out/src/concepts/UseComponent__.d.ts +30 -0
- package/out/src/concepts/UseComponent__.js +75 -0
- package/out/src/concepts/UseComponent__.js.map +1 -0
- package/out/src/concepts/ValidationRule__.d.ts +95 -0
- package/out/src/concepts/ValidationRule__.js +212 -0
- package/out/src/concepts/ValidationRule__.js.map +1 -0
- package/out/src/concepts/Variable__.d.ts +119 -0
- package/out/src/concepts/Variable__.js +277 -0
- package/out/src/concepts/Variable__.js.map +1 -0
- package/out/src/concepts/ViewComponent__.d.ts +472 -0
- package/out/src/concepts/ViewComponent__.js +644 -0
- package/out/src/concepts/ViewComponent__.js.map +1 -0
- package/out/src/concepts/ViewElement__.d.ts +483 -0
- package/out/src/concepts/ViewElement__.js +1167 -0
- package/out/src/concepts/ViewElement__.js.map +1 -0
- package/out/src/concepts/View__.d.ts +676 -0
- package/out/src/concepts/View__.js +1268 -0
- package/out/src/concepts/View__.js.map +1 -0
- package/out/src/concepts/WhileStatement__.d.ts +97 -0
- package/out/src/concepts/WhileStatement__.js +228 -0
- package/out/src/concepts/WhileStatement__.js.map +1 -0
- package/out/src/concepts/basics/stdlib/index.d.ts +4 -0
- package/out/src/concepts/basics/stdlib/index.js +23 -0
- package/out/src/concepts/basics/stdlib/index.js.map +1 -0
- package/out/src/concepts/basics/stdlib/nasl.collection.d.ts +5 -0
- package/out/src/concepts/basics/stdlib/nasl.collection.js +54 -0
- package/out/src/concepts/basics/stdlib/nasl.collection.js.map +1 -0
- package/out/src/concepts/basics/stdlib/nasl.core.d.ts +3 -0
- package/out/src/concepts/basics/stdlib/nasl.core.js +15 -0
- package/out/src/concepts/basics/stdlib/nasl.core.js.map +1 -0
- package/out/src/concepts/basics/stdlib/nasl.interface.d.ts +5 -0
- package/out/src/concepts/basics/stdlib/nasl.interface.js +43 -0
- package/out/src/concepts/basics/stdlib/nasl.interface.js.map +1 -0
- package/out/src/concepts/basics/stdlib/nasl.process.d.ts +3 -0
- package/out/src/concepts/basics/stdlib/nasl.process.js +43 -0
- package/out/src/concepts/basics/stdlib/nasl.process.js.map +1 -0
- package/out/src/concepts/basics/stdlib/nasl.ui.d.ts +5 -0
- package/out/src/concepts/basics/stdlib/nasl.ui.js +85 -0
- package/out/src/concepts/basics/stdlib/nasl.ui.js.map +1 -0
- package/out/src/concepts/basics/stdlib/nasl.util.d.ts +3 -0
- package/out/src/concepts/basics/stdlib/nasl.util.js +587 -0
- package/out/src/concepts/basics/stdlib/nasl.util.js.map +1 -0
- package/out/src/concepts/basics/stdlib/nasl.validate.d.ts +3 -0
- package/out/src/concepts/basics/stdlib/nasl.validate.js +527 -0
- package/out/src/concepts/basics/stdlib/nasl.validate.js.map +1 -0
- package/out/src/concepts/basics/stdlib/reference2TypeAnnotationList.d.ts +5 -0
- package/out/src/concepts/basics/stdlib/reference2TypeAnnotationList.js +26 -0
- package/out/src/concepts/basics/stdlib/reference2TypeAnnotationList.js.map +1 -0
- package/out/src/concepts/basics/types/coreTypeList.d.ts +2 -0
- package/out/src/concepts/basics/types/coreTypeList.js +17 -0
- package/out/src/concepts/basics/types/coreTypeList.js.map +1 -0
- package/out/src/concepts/basics/types/index.d.ts +11 -0
- package/out/src/concepts/basics/types/index.js +20 -0
- package/out/src/concepts/basics/types/index.js.map +1 -0
- package/out/src/concepts/index.d.ts +5 -0
- package/out/src/concepts/index.js +24 -0
- package/out/src/concepts/index.js.map +1 -0
- package/out/src/concepts/index__.d.ts +77 -0
- package/out/src/concepts/index__.js +94 -0
- package/out/src/concepts/index__.js.map +1 -0
- package/out/src/config.d.ts +43 -0
- package/out/src/config.js +72 -0
- package/out/src/config.js.map +1 -0
- package/out/src/decorators/index.d.ts +54 -0
- package/out/src/decorators/index.js +146 -0
- package/out/src/decorators/index.js.map +1 -0
- package/out/src/generator/compileComponent.d.ts +11 -0
- package/out/src/generator/compileComponent.js +12 -0
- package/out/src/generator/compileComponent.js.map +1 -0
- package/out/src/generator/debugInFileStorage.d.ts +3 -0
- package/out/src/generator/debugInFileStorage.js +15 -0
- package/out/src/generator/debugInFileStorage.js.map +1 -0
- package/out/src/generator/genAllEmbeddedTS.d.ts +7 -0
- package/out/src/generator/genAllEmbeddedTS.js +20 -0
- package/out/src/generator/genAllEmbeddedTS.js.map +1 -0
- package/out/src/generator/genBundleFiles.d.ts +38 -0
- package/out/src/generator/genBundleFiles.js +219 -0
- package/out/src/generator/genBundleFiles.js.map +1 -0
- package/out/src/generator/genHash.d.ts +7 -0
- package/out/src/generator/genHash.js +39 -0
- package/out/src/generator/genHash.js.map +1 -0
- package/out/src/generator/index.d.ts +4 -0
- package/out/src/generator/index.js +21 -0
- package/out/src/generator/index.js.map +1 -0
- package/out/src/generator/styleReplacer.d.ts +3 -0
- package/out/src/generator/styleReplacer.js +71 -0
- package/out/src/generator/styleReplacer.js.map +1 -0
- package/out/src/index.d.ts +9 -0
- package/out/src/index.js +48 -0
- package/out/src/index.js.map +1 -0
- package/out/src/init.d.ts +1 -0
- package/out/src/init.js +140 -0
- package/out/src/init.js.map +1 -0
- package/out/src/manager/diagnostic.d.ts +38 -0
- package/out/src/manager/diagnostic.js +84 -0
- package/out/src/manager/diagnostic.js.map +1 -0
- package/out/src/manager/history.d.ts +0 -0
- package/out/src/manager/history.js +1 -0
- package/out/src/manager/history.js.map +1 -0
- package/out/src/manager/problem.d.ts +0 -0
- package/out/src/manager/problem.js +1 -0
- package/out/src/manager/problem.js.map +1 -0
- package/out/src/map.d.ts +4 -0
- package/out/src/map.js +62 -0
- package/out/src/map.js.map +1 -0
- package/out/src/naslServer/index.d.ts +55 -0
- package/out/src/naslServer/index.js +296 -0
- package/out/src/naslServer/index.js.map +1 -0
- package/out/src/naslServer/translator.d.ts +3 -0
- package/out/src/naslServer/translator.js +78 -0
- package/out/src/naslServer/translator.js.map +1 -0
- package/out/src/server/entity2LogicNamespace.d.ts +2 -0
- package/out/src/server/entity2LogicNamespace.js +192 -0
- package/out/src/server/entity2LogicNamespace.js.map +1 -0
- package/out/src/server/getFunctions.d.ts +2 -0
- package/out/src/server/getFunctions.js +14 -0
- package/out/src/server/getFunctions.js.map +1 -0
- package/out/src/server/getInterfaces.d.ts +2 -0
- package/out/src/server/getInterfaces.js +48 -0
- package/out/src/server/getInterfaces.js.map +1 -0
- package/out/src/server/getLogics.d.ts +2 -0
- package/out/src/server/getLogics.js +83 -0
- package/out/src/server/getLogics.js.map +1 -0
- package/out/src/server/getMemberIdentifier.d.ts +5 -0
- package/out/src/server/getMemberIdentifier.js +102 -0
- package/out/src/server/getMemberIdentifier.js.map +1 -0
- package/out/src/server/getProcessComponents.d.ts +2 -0
- package/out/src/server/getProcessComponents.js +13 -0
- package/out/src/server/getProcessComponents.js.map +1 -0
- package/out/src/server/getProcesses.d.ts +19 -0
- package/out/src/server/getProcesses.js +106 -0
- package/out/src/server/getProcesses.js.map +1 -0
- package/out/src/server/getValidates.d.ts +3 -0
- package/out/src/server/getValidates.js +14 -0
- package/out/src/server/getValidates.js.map +1 -0
- package/out/src/server/index.d.ts +2 -0
- package/out/src/server/index.js +26 -0
- package/out/src/server/index.js.map +1 -0
- package/out/src/server/naslServer.d.ts +139 -0
- package/out/src/server/naslServer.js +1120 -0
- package/out/src/server/naslServer.js.map +1 -0
- package/out/src/server/process2LogicNamespace.d.ts +2 -0
- package/out/src/server/process2LogicNamespace.js +24 -0
- package/out/src/server/process2LogicNamespace.js.map +1 -0
- package/out/src/server/translator.d.ts +5 -0
- package/out/src/server/translator.js +150 -0
- package/out/src/server/translator.js.map +1 -0
- package/out/src/service/app/api.d.ts +61 -0
- package/out/src/service/app/api.js +77 -0
- package/out/src/service/app/api.js.map +1 -0
- package/out/src/service/app/index.d.ts +2 -0
- package/out/src/service/app/index.js +10 -0
- package/out/src/service/app/index.js.map +1 -0
- package/out/src/service/assets/asset.d.ts +104 -0
- package/out/src/service/assets/asset.js +78 -0
- package/out/src/service/assets/asset.js.map +1 -0
- package/out/src/service/assets/block.d.ts +9 -0
- package/out/src/service/assets/block.js +11 -0
- package/out/src/service/assets/block.js.map +1 -0
- package/out/src/service/assets/index.d.ts +2 -0
- package/out/src/service/assets/index.js +12 -0
- package/out/src/service/assets/index.js.map +1 -0
- package/out/src/service/common/findUsage.d.ts +9 -0
- package/out/src/service/common/findUsage.js +11 -0
- package/out/src/service/common/findUsage.js.map +1 -0
- package/out/src/service/common/index.d.ts +2 -0
- package/out/src/service/common/index.js +12 -0
- package/out/src/service/common/index.js.map +1 -0
- package/out/src/service/common/preprocess.d.ts +14 -0
- package/out/src/service/common/preprocess.js +75 -0
- package/out/src/service/common/preprocess.js.map +1 -0
- package/out/src/service/common/schema.d.ts +9 -0
- package/out/src/service/common/schema.js +12 -0
- package/out/src/service/common/schema.js.map +1 -0
- package/out/src/service/create/add.configs.d.ts +1 -0
- package/out/src/service/create/add.configs.js +68 -0
- package/out/src/service/create/add.configs.js.map +1 -0
- package/out/src/service/create/errHandles.d.ts +18 -0
- package/out/src/service/create/errHandles.js +57 -0
- package/out/src/service/create/errHandles.js.map +1 -0
- package/out/src/service/create/index.d.ts +1 -0
- package/out/src/service/create/index.js +77 -0
- package/out/src/service/create/index.js.map +1 -0
- package/out/src/service/data/api.d.ts +36 -0
- package/out/src/service/data/api.js +36 -0
- package/out/src/service/data/api.js.map +1 -0
- package/out/src/service/data/entity.d.ts +135 -0
- package/out/src/service/data/entity.js +103 -0
- package/out/src/service/data/entity.js.map +1 -0
- package/out/src/service/data/enum.d.ts +63 -0
- package/out/src/service/data/enum.js +55 -0
- package/out/src/service/data/enum.js.map +1 -0
- package/out/src/service/data/enumProperty.d.ts +28 -0
- package/out/src/service/data/enumProperty.js +23 -0
- package/out/src/service/data/enumProperty.js.map +1 -0
- package/out/src/service/data/generic.d.ts +9 -0
- package/out/src/service/data/generic.js +11 -0
- package/out/src/service/data/generic.js.map +1 -0
- package/out/src/service/data/index.d.ts +8 -0
- package/out/src/service/data/index.js +23 -0
- package/out/src/service/data/index.js.map +1 -0
- package/out/src/service/data/interface.d.ts +67 -0
- package/out/src/service/data/interface.js +58 -0
- package/out/src/service/data/interface.js.map +1 -0
- package/out/src/service/data/structure.d.ts +92 -0
- package/out/src/service/data/structure.js +77 -0
- package/out/src/service/data/structure.js.map +1 -0
- package/out/src/service/logic/index.d.ts +2 -0
- package/out/src/service/logic/index.js +14 -0
- package/out/src/service/logic/index.js.map +1 -0
- package/out/src/service/logic/logic.d.ts +157 -0
- package/out/src/service/logic/logic.js +116 -0
- package/out/src/service/logic/logic.js.map +1 -0
- package/out/src/service/logic/param.d.ts +37 -0
- package/out/src/service/logic/param.js +29 -0
- package/out/src/service/logic/param.js.map +1 -0
- package/out/src/service/nuims/api.d.ts +264 -0
- package/out/src/service/nuims/api.js +194 -0
- package/out/src/service/nuims/api.js.map +1 -0
- package/out/src/service/nuims/index.d.ts +2 -0
- package/out/src/service/nuims/index.js +17 -0
- package/out/src/service/nuims/index.js.map +1 -0
- package/out/src/service/page/api.d.ts +186 -0
- package/out/src/service/page/api.js +1361 -0
- package/out/src/service/page/api.js.map +1 -0
- package/out/src/service/page/attribute.d.ts +28 -0
- package/out/src/service/page/attribute.js +23 -0
- package/out/src/service/page/attribute.js.map +1 -0
- package/out/src/service/page/directive.d.ts +28 -0
- package/out/src/service/page/directive.js +23 -0
- package/out/src/service/page/directive.js.map +1 -0
- package/out/src/service/page/element.d.ts +45 -0
- package/out/src/service/page/element.js +42 -0
- package/out/src/service/page/element.js.map +1 -0
- package/out/src/service/page/event.d.ts +28 -0
- package/out/src/service/page/event.js +23 -0
- package/out/src/service/page/event.js.map +1 -0
- package/out/src/service/page/index.d.ts +8 -0
- package/out/src/service/page/index.js +23 -0
- package/out/src/service/page/index.js.map +1 -0
- package/out/src/service/page/lifecycle.d.ts +28 -0
- package/out/src/service/page/lifecycle.js +23 -0
- package/out/src/service/page/lifecycle.js.map +1 -0
- package/out/src/service/page/templates.d.ts +14 -0
- package/out/src/service/page/templates.js +70 -0
- package/out/src/service/page/templates.js.map +1 -0
- package/out/src/service/page/view.d.ts +130 -0
- package/out/src/service/page/view.js +101 -0
- package/out/src/service/page/view.js.map +1 -0
- package/out/src/service/permission/api.d.ts +57 -0
- package/out/src/service/permission/api.js +41 -0
- package/out/src/service/permission/api.js.map +1 -0
- package/out/src/service/permission/index.d.ts +2 -0
- package/out/src/service/permission/index.js +17 -0
- package/out/src/service/permission/index.js.map +1 -0
- package/out/src/service/process/api.d.ts +136 -0
- package/out/src/service/process/api.js +95 -0
- package/out/src/service/process/api.js.map +1 -0
- package/out/src/service/process/index.d.ts +2 -0
- package/out/src/service/process/index.js +10 -0
- package/out/src/service/process/index.js.map +1 -0
- package/out/src/service/storage/index.d.ts +2 -0
- package/out/src/service/storage/index.js +10 -0
- package/out/src/service/storage/index.js.map +1 -0
- package/out/src/service/storage/init.d.ts +7 -0
- package/out/src/service/storage/init.js +187 -0
- package/out/src/service/storage/init.js.map +1 -0
- package/out/src/service/storage/jsoner.d.ts +29 -0
- package/out/src/service/storage/jsoner.js +130 -0
- package/out/src/service/storage/jsoner.js.map +1 -0
- package/out/src/service/storage/map.d.ts +4 -0
- package/out/src/service/storage/map.js +54 -0
- package/out/src/service/storage/map.js.map +1 -0
- package/out/src/service/storage/storagePoint.d.ts +30 -0
- package/out/src/service/storage/storagePoint.js +76 -0
- package/out/src/service/storage/storagePoint.js.map +1 -0
- package/out/src/service/undoredo/api.d.ts +36 -0
- package/out/src/service/undoredo/api.js +29 -0
- package/out/src/service/undoredo/api.js.map +1 -0
- package/out/src/service/undoredo/index.d.ts +2 -0
- package/out/src/service/undoredo/index.js +10 -0
- package/out/src/service/undoredo/index.js.map +1 -0
- package/out/src/service/webFile/api.d.ts +45 -0
- package/out/src/service/webFile/api.js +35 -0
- package/out/src/service/webFile/api.js.map +1 -0
- package/out/src/service/webFile/index.d.ts +3 -0
- package/out/src/service/webFile/index.js +32 -0
- package/out/src/service/webFile/index.js.map +1 -0
- package/out/src/service/webFile/loadCache.d.ts +18 -0
- package/out/src/service/webFile/loadCache.js +17 -0
- package/out/src/service/webFile/loadCache.js.map +1 -0
- package/out/src/storagePoint.d.ts +16 -0
- package/out/src/storagePoint.js +49 -0
- package/out/src/storagePoint.js.map +1 -0
- package/out/src/templator/genCallComponentLogic.d.ts +17 -0
- package/out/src/templator/genCallComponentLogic.js +30 -0
- package/out/src/templator/genCallComponentLogic.js.map +1 -0
- package/out/src/templator/genCallInterface.d.ts +12 -0
- package/out/src/templator/genCallInterface.js +20 -0
- package/out/src/templator/genCallInterface.js.map +1 -0
- package/out/src/templator/genCallLogic.d.ts +12 -0
- package/out/src/templator/genCallLogic.js +26 -0
- package/out/src/templator/genCallLogic.js.map +1 -0
- package/out/src/templator/genCreateBlock.d.ts +10 -0
- package/out/src/templator/genCreateBlock.js +304 -0
- package/out/src/templator/genCreateBlock.js.map +1 -0
- package/out/src/templator/genCurdEditMultipleKeyBlock.d.ts +2 -0
- package/out/src/templator/genCurdEditMultipleKeyBlock.js +453 -0
- package/out/src/templator/genCurdEditMultipleKeyBlock.js.map +1 -0
- package/out/src/templator/genCurdMultipleKeyBlock.d.ts +3 -0
- package/out/src/templator/genCurdMultipleKeyBlock.js +640 -0
- package/out/src/templator/genCurdMultipleKeyBlock.js.map +1 -0
- package/out/src/templator/genEditTableBlock.d.ts +51 -0
- package/out/src/templator/genEditTableBlock.js +301 -0
- package/out/src/templator/genEditTableBlock.js.map +1 -0
- package/out/src/templator/genEnumSelectBlock.d.ts +10 -0
- package/out/src/templator/genEnumSelectBlock.js +23 -0
- package/out/src/templator/genEnumSelectBlock.js.map +1 -0
- package/out/src/templator/genGetBlock.d.ts +6 -0
- package/out/src/templator/genGetBlock.js +133 -0
- package/out/src/templator/genGetBlock.js.map +1 -0
- package/out/src/templator/genGridViewBlock.d.ts +53 -0
- package/out/src/templator/genGridViewBlock.js +308 -0
- package/out/src/templator/genGridViewBlock.js.map +1 -0
- package/out/src/templator/genListViewBlock.d.ts +19 -0
- package/out/src/templator/genListViewBlock.js +137 -0
- package/out/src/templator/genListViewBlock.js.map +1 -0
- package/out/src/templator/genQueryComponent.d.ts +32 -0
- package/out/src/templator/genQueryComponent.js +307 -0
- package/out/src/templator/genQueryComponent.js.map +1 -0
- package/out/src/templator/genSelectBlock.d.ts +34 -0
- package/out/src/templator/genSelectBlock.js +142 -0
- package/out/src/templator/genSelectBlock.js.map +1 -0
- package/out/src/templator/genTableBlock.d.ts +53 -0
- package/out/src/templator/genTableBlock.js +295 -0
- package/out/src/templator/genTableBlock.js.map +1 -0
- package/out/src/templator/genUpdateBlock.d.ts +6 -0
- package/out/src/templator/genUpdateBlock.js +347 -0
- package/out/src/templator/genUpdateBlock.js.map +1 -0
- package/out/src/templator/index.d.ts +15 -0
- package/out/src/templator/index.js +33 -0
- package/out/src/templator/index.js.map +1 -0
- package/out/src/templator/utils.d.ts +634 -0
- package/out/src/templator/utils.js +412 -0
- package/out/src/templator/utils.js.map +1 -0
- package/out/src/terms/LEVEL_NAME_MAP.d.ts +26 -0
- package/out/src/terms/LEVEL_NAME_MAP.js +30 -0
- package/out/src/terms/LEVEL_NAME_MAP.js.map +1 -0
- package/out/src/test/fixtures/env.d.ts +5 -0
- package/out/src/test/fixtures/env.js +21 -0
- package/out/src/test/fixtures/env.js.map +1 -0
- package/out/src/test/integration/connect-file.d.ts +1 -0
- package/out/src/test/integration/connect-file.js +49 -0
- package/out/src/test/integration/connect-file.js.map +1 -0
- package/out/src/test/units/app/App.spec.d.ts +1 -0
- package/out/src/test/units/app/App.spec.js +17 -0
- package/out/src/test/units/app/App.spec.js.map +1 -0
- package/out/src/test/units/app/Service.spec.d.ts +1 -0
- package/out/src/test/units/app/Service.spec.js +24 -0
- package/out/src/test/units/app/Service.spec.js.map +1 -0
- package/out/src/test/units/baseTypes/Assignment.spec.d.ts +1 -0
- package/out/src/test/units/baseTypes/Assignment.spec.js +43 -0
- package/out/src/test/units/baseTypes/Assignment.spec.js.map +1 -0
- package/out/src/test/units/baseTypes/AssignmentExpression.spec.d.ts +1 -0
- package/out/src/test/units/baseTypes/AssignmentExpression.spec.js +39 -0
- package/out/src/test/units/baseTypes/AssignmentExpression.spec.js.map +1 -0
- package/out/src/test/units/baseTypes/CallLogic.spec.d.ts +1 -0
- package/out/src/test/units/baseTypes/CallLogic.spec.js +44 -0
- package/out/src/test/units/baseTypes/CallLogic.spec.js.map +1 -0
- package/out/src/test/units/baseTypes/StringLiteral.spec.d.ts +1 -0
- package/out/src/test/units/baseTypes/StringLiteral.spec.js +75 -0
- package/out/src/test/units/baseTypes/StringLiteral.spec.js.map +1 -0
- package/out/src/test/units/baseTypes/new.spec.d.ts +1 -0
- package/out/src/test/units/baseTypes/new.spec.js +37 -0
- package/out/src/test/units/baseTypes/new.spec.js.map +1 -0
- package/out/src/test/units/common/Vertex.spec.d.ts +1 -0
- package/out/src/test/units/common/Vertex.spec.js +22 -0
- package/out/src/test/units/common/Vertex.spec.js.map +1 -0
- package/out/src/test/units/data/Entity.spec.d.ts +1 -0
- package/out/src/test/units/data/Entity.spec.js +12 -0
- package/out/src/test/units/data/Entity.spec.js.map +1 -0
- package/out/src/test/units/login.spec.d.ts +1 -0
- package/out/src/test/units/login.spec.js +12 -0
- package/out/src/test/units/login.spec.js.map +1 -0
- package/out/src/test/units/page/Block.spec.d.ts +0 -0
- package/out/src/test/units/page/Block.spec.js +13 -0
- package/out/src/test/units/page/Block.spec.js.map +1 -0
- package/out/src/test/units/page/Element.spec.d.ts +1 -0
- package/out/src/test/units/page/Element.spec.js +44 -0
- package/out/src/test/units/page/Element.spec.js.map +1 -0
- package/out/src/test/units/temp/temp.spec.d.ts +1 -0
- package/out/src/test/units/temp/temp.spec.js +68 -0
- package/out/src/test/units/temp/temp.spec.js.map +1 -0
- package/out/src/translator/index.d.ts +47 -0
- package/out/src/translator/index.js +108 -0
- package/out/src/translator/index.js.map +1 -0
- package/out/src/translator/lsp.d.ts +45 -0
- package/out/src/translator/lsp.js +6 -0
- package/out/src/translator/lsp.js.map +1 -0
- package/out/src/translator/tsp.d.ts +12 -0
- package/out/src/translator/tsp.js +3 -0
- package/out/src/translator/tsp.js.map +1 -0
- package/out/src/types/app/App.d.ts +148 -0
- package/out/src/types/app/App.js +358 -0
- package/out/src/types/app/App.js.map +1 -0
- package/out/src/types/app/History.d.ts +36 -0
- package/out/src/types/app/History.js +366 -0
- package/out/src/types/app/History.js.map +1 -0
- package/out/src/types/app/Service.d.ts +220 -0
- package/out/src/types/app/Service.js +831 -0
- package/out/src/types/app/Service.js.map +1 -0
- package/out/src/types/cache.d.ts +6 -0
- package/out/src/types/cache.js +54 -0
- package/out/src/types/cache.js.map +1 -0
- package/out/src/types/cacheData.d.ts +4 -0
- package/out/src/types/cacheData.js +34 -0
- package/out/src/types/cacheData.js.map +1 -0
- package/out/src/types/classMap.d.ts +4 -0
- package/out/src/types/classMap.js +5 -0
- package/out/src/types/classMap.js.map +1 -0
- package/out/src/types/common/ComponentAPI.d.ts +110 -0
- package/out/src/types/common/ComponentAPI.js +3 -0
- package/out/src/types/common/ComponentAPI.js.map +1 -0
- package/out/src/types/common/EventEmitter.d.ts +37 -0
- package/out/src/types/common/EventEmitter.js +70 -0
- package/out/src/types/common/EventEmitter.js.map +1 -0
- package/out/src/types/common/PackageJSON.d.ts +32 -0
- package/out/src/types/common/PackageJSON.js +3 -0
- package/out/src/types/common/PackageJSON.js.map +1 -0
- package/out/src/types/common/Vertex.d.ts +205 -0
- package/out/src/types/common/Vertex.js +591 -0
- package/out/src/types/common/Vertex.js.map +1 -0
- package/out/src/types/config.d.ts +32 -0
- package/out/src/types/config.js +30 -0
- package/out/src/types/config.js.map +1 -0
- package/out/src/types/data/DataNode.d.ts +24 -0
- package/out/src/types/data/DataNode.js +52 -0
- package/out/src/types/data/DataNode.js.map +1 -0
- package/out/src/types/data/Entity.d.ts +124 -0
- package/out/src/types/data/Entity.js +537 -0
- package/out/src/types/data/Entity.js.map +1 -0
- package/out/src/types/data/EntityIndex.d.ts +87 -0
- package/out/src/types/data/EntityIndex.js +262 -0
- package/out/src/types/data/EntityIndex.js.map +1 -0
- package/out/src/types/data/EntityProperty.d.ts +196 -0
- package/out/src/types/data/EntityProperty.js +584 -0
- package/out/src/types/data/EntityProperty.js.map +1 -0
- package/out/src/types/data/Enum.d.ts +97 -0
- package/out/src/types/data/Enum.js +267 -0
- package/out/src/types/data/Enum.js.map +1 -0
- package/out/src/types/data/EnumItem.d.ts +57 -0
- package/out/src/types/data/EnumItem.js +170 -0
- package/out/src/types/data/EnumItem.js.map +1 -0
- package/out/src/types/data/GlobalLogicNode.d.ts +44 -0
- package/out/src/types/data/GlobalLogicNode.js +201 -0
- package/out/src/types/data/GlobalLogicNode.js.map +1 -0
- package/out/src/types/data/Interface.d.ts +153 -0
- package/out/src/types/data/Interface.js +482 -0
- package/out/src/types/data/Interface.js.map +1 -0
- package/out/src/types/data/Schema.d.ts +121 -0
- package/out/src/types/data/Schema.js +3 -0
- package/out/src/types/data/Schema.js.map +1 -0
- package/out/src/types/data/Structure.d.ts +104 -0
- package/out/src/types/data/Structure.js +319 -0
- package/out/src/types/data/Structure.js.map +1 -0
- package/out/src/types/data/StructureProperty.d.ts +134 -0
- package/out/src/types/data/StructureProperty.js +380 -0
- package/out/src/types/data/StructureProperty.js.map +1 -0
- package/out/src/types/data/basicTypes.d.ts +25 -0
- package/out/src/types/data/basicTypes.js +77 -0
- package/out/src/types/data/basicTypes.js.map +1 -0
- package/out/src/types/data/dataTypeUtils.d.ts +94 -0
- package/out/src/types/data/dataTypeUtils.js +441 -0
- package/out/src/types/data/dataTypeUtils.js.map +1 -0
- package/out/src/types/data/dataTypes.d.ts +20 -0
- package/out/src/types/data/dataTypes.js +47 -0
- package/out/src/types/data/dataTypes.js.map +1 -0
- package/out/src/types/data/entityUtils.d.ts +164 -0
- package/out/src/types/data/entityUtils.js +632 -0
- package/out/src/types/data/entityUtils.js.map +1 -0
- package/out/src/types/data/genBlock/builtInFunctions.json +545 -0
- package/out/src/types/data/genBlock/genCallComponentLogic.d.ts +20 -0
- package/out/src/types/data/genBlock/genCallComponentLogic.js +32 -0
- package/out/src/types/data/genBlock/genCallComponentLogic.js.map +1 -0
- package/out/src/types/data/genBlock/genCallInterface.d.ts +41 -0
- package/out/src/types/data/genBlock/genCallInterface.js +86 -0
- package/out/src/types/data/genBlock/genCallInterface.js.map +1 -0
- package/out/src/types/data/genBlock/genCreateBlock.d.ts +10 -0
- package/out/src/types/data/genBlock/genCreateBlock.js +313 -0
- package/out/src/types/data/genBlock/genCreateBlock.js.map +1 -0
- package/out/src/types/data/genBlock/genCurdBlock.d.ts +4 -0
- package/out/src/types/data/genBlock/genCurdBlock.js +648 -0
- package/out/src/types/data/genBlock/genCurdBlock.js.map +1 -0
- package/out/src/types/data/genBlock/genCurdEditTableBlock.d.ts +3 -0
- package/out/src/types/data/genBlock/genCurdEditTableBlock.js +578 -0
- package/out/src/types/data/genBlock/genCurdEditTableBlock.js.map +1 -0
- package/out/src/types/data/genBlock/genEditTableBlock.d.ts +234 -0
- package/out/src/types/data/genBlock/genEditTableBlock.js +419 -0
- package/out/src/types/data/genBlock/genEditTableBlock.js.map +1 -0
- package/out/src/types/data/genBlock/genEnumSelectBlock.d.ts +10 -0
- package/out/src/types/data/genBlock/genEnumSelectBlock.js +23 -0
- package/out/src/types/data/genBlock/genEnumSelectBlock.js.map +1 -0
- package/out/src/types/data/genBlock/genGetBlock.d.ts +6 -0
- package/out/src/types/data/genBlock/genGetBlock.js +151 -0
- package/out/src/types/data/genBlock/genGetBlock.js.map +1 -0
- package/out/src/types/data/genBlock/genGridViewBlock.d.ts +136 -0
- package/out/src/types/data/genBlock/genGridViewBlock.js +274 -0
- package/out/src/types/data/genBlock/genGridViewBlock.js.map +1 -0
- package/out/src/types/data/genBlock/genListViewBlock.d.ts +63 -0
- package/out/src/types/data/genBlock/genListViewBlock.js +110 -0
- package/out/src/types/data/genBlock/genListViewBlock.js.map +1 -0
- package/out/src/types/data/genBlock/genQueryComponent.d.ts +336 -0
- package/out/src/types/data/genBlock/genQueryComponent.js +526 -0
- package/out/src/types/data/genBlock/genQueryComponent.js.map +1 -0
- package/out/src/types/data/genBlock/genSelectBlock.d.ts +63 -0
- package/out/src/types/data/genBlock/genSelectBlock.js +106 -0
- package/out/src/types/data/genBlock/genSelectBlock.js.map +1 -0
- package/out/src/types/data/genBlock/genTableBlock.d.ts +136 -0
- package/out/src/types/data/genBlock/genTableBlock.js +270 -0
- package/out/src/types/data/genBlock/genTableBlock.js.map +1 -0
- package/out/src/types/data/genBlock/genUpdateBlock.d.ts +6 -0
- package/out/src/types/data/genBlock/genUpdateBlock.js +384 -0
- package/out/src/types/data/genBlock/genUpdateBlock.js.map +1 -0
- package/out/src/types/data/genBlock/index.d.ts +17 -0
- package/out/src/types/data/genBlock/index.js +31 -0
- package/out/src/types/data/genBlock/index.js.map +1 -0
- package/out/src/types/data/genBlock/utils.d.ts +99 -0
- package/out/src/types/data/genBlock/utils.js +224 -0
- package/out/src/types/data/genBlock/utils.js.map +1 -0
- package/out/src/types/data/genericTypes.d.ts +40 -0
- package/out/src/types/data/genericTypes.js +145 -0
- package/out/src/types/data/genericTypes.js.map +1 -0
- package/out/src/types/data/systemTypes.d.ts +9 -0
- package/out/src/types/data/systemTypes.js +1563 -0
- package/out/src/types/data/systemTypes.js.map +1 -0
- package/out/src/types/decorators/index.d.ts +31 -0
- package/out/src/types/decorators/index.js +121 -0
- package/out/src/types/decorators/index.js.map +1 -0
- package/out/src/types/enum.d.ts +6 -0
- package/out/src/types/enum.js +11 -0
- package/out/src/types/enum.js.map +1 -0
- package/out/src/types/index.d.ts +145 -0
- package/out/src/types/index.js +226 -0
- package/out/src/types/index.js.map +1 -0
- package/out/src/types/logic/BaseVariable.d.ts +75 -0
- package/out/src/types/logic/BaseVariable.js +159 -0
- package/out/src/types/logic/BaseVariable.js.map +1 -0
- package/out/src/types/logic/Logic.d.ts +180 -0
- package/out/src/types/logic/Logic.js +591 -0
- package/out/src/types/logic/Logic.js.map +1 -0
- package/out/src/types/logic/LogicItem.d.ts +320 -0
- package/out/src/types/logic/LogicItem.js +1295 -0
- package/out/src/types/logic/LogicItem.js.map +1 -0
- package/out/src/types/logic/Param.d.ts +86 -0
- package/out/src/types/logic/Param.js +367 -0
- package/out/src/types/logic/Param.js.map +1 -0
- package/out/src/types/logic/Return.d.ts +73 -0
- package/out/src/types/logic/Return.js +313 -0
- package/out/src/types/logic/Return.js.map +1 -0
- package/out/src/types/logic/Variable.d.ts +72 -0
- package/out/src/types/logic/Variable.js +309 -0
- package/out/src/types/logic/Variable.js.map +1 -0
- package/out/src/types/logic/expressions/MemberExpression.d.ts +23 -0
- package/out/src/types/logic/expressions/MemberExpression.js +52 -0
- package/out/src/types/logic/expressions/MemberExpression.js.map +1 -0
- package/out/src/types/logic/expressions/NumericLiteral.d.ts +19 -0
- package/out/src/types/logic/expressions/NumericLiteral.js +42 -0
- package/out/src/types/logic/expressions/NumericLiteral.js.map +1 -0
- package/out/src/types/logic/expressions/Unparsed.d.ts +19 -0
- package/out/src/types/logic/expressions/Unparsed.js +42 -0
- package/out/src/types/logic/expressions/Unparsed.js.map +1 -0
- package/out/src/types/logic/nodes/BuiltInFuncParam.d.ts +27 -0
- package/out/src/types/logic/nodes/BuiltInFuncParam.js +56 -0
- package/out/src/types/logic/nodes/BuiltInFuncParam.js.map +1 -0
- package/out/src/types/logic/nodes/BuiltInFunction.d.ts +24 -0
- package/out/src/types/logic/nodes/BuiltInFunction.js +55 -0
- package/out/src/types/logic/nodes/BuiltInFunction.js.map +1 -0
- package/out/src/types/logic/nodes/CallConsoleLog.d.ts +19 -0
- package/out/src/types/logic/nodes/CallConsoleLog.js +42 -0
- package/out/src/types/logic/nodes/CallConsoleLog.js.map +1 -0
- package/out/src/types/logic/nodes/CallInterParam.d.ts +23 -0
- package/out/src/types/logic/nodes/CallInterParam.js +49 -0
- package/out/src/types/logic/nodes/CallInterParam.js.map +1 -0
- package/out/src/types/logic/nodes/CallInterface.d.ts +24 -0
- package/out/src/types/logic/nodes/CallInterface.js +49 -0
- package/out/src/types/logic/nodes/CallInterface.js.map +1 -0
- package/out/src/types/logic/nodes/CallLogic.d.ts +24 -0
- package/out/src/types/logic/nodes/CallLogic.js +55 -0
- package/out/src/types/logic/nodes/CallLogic.js.map +1 -0
- package/out/src/types/logic/nodes/CallMessageShow.d.ts +27 -0
- package/out/src/types/logic/nodes/CallMessageShow.js +56 -0
- package/out/src/types/logic/nodes/CallMessageShow.js.map +1 -0
- package/out/src/types/logic/nodes/Destination.d.ts +32 -0
- package/out/src/types/logic/nodes/Destination.js +73 -0
- package/out/src/types/logic/nodes/Destination.js.map +1 -0
- package/out/src/types/logic/nodes/DestinationParam.d.ts +24 -0
- package/out/src/types/logic/nodes/DestinationParam.js +49 -0
- package/out/src/types/logic/nodes/DestinationParam.js.map +1 -0
- package/out/src/types/logic/nodes/JSBlock.d.ts +19 -0
- package/out/src/types/logic/nodes/JSBlock.js +46 -0
- package/out/src/types/logic/nodes/JSBlock.js.map +1 -0
- package/out/src/types/logic/nodes/JSONDeserialize.d.ts +19 -0
- package/out/src/types/logic/nodes/JSONDeserialize.js +42 -0
- package/out/src/types/logic/nodes/JSONDeserialize.js.map +1 -0
- package/out/src/types/logic/nodes/JSONSerialize.d.ts +19 -0
- package/out/src/types/logic/nodes/JSONSerialize.js +42 -0
- package/out/src/types/logic/nodes/JSONSerialize.js.map +1 -0
- package/out/src/types/logic/nodes/ProcessOutcome.d.ts +27 -0
- package/out/src/types/logic/nodes/ProcessOutcome.js +56 -0
- package/out/src/types/logic/nodes/ProcessOutcome.js.map +1 -0
- package/out/src/types/logic/tools.d.ts +15 -0
- package/out/src/types/logic/tools.js +164 -0
- package/out/src/types/logic/tools.js.map +1 -0
- package/out/src/types/logic/translator.d.ts +1 -0
- package/out/src/types/logic/translator.js +624 -0
- package/out/src/types/logic/translator.js.map +1 -0
- package/out/src/types/login.d.ts +7 -0
- package/out/src/types/login.js +39 -0
- package/out/src/types/login.js.map +1 -0
- package/out/src/types/nuims/Nuims.d.ts +128 -0
- package/out/src/types/nuims/Nuims.js +446 -0
- package/out/src/types/nuims/Nuims.js.map +1 -0
- package/out/src/types/page/Attr.d.ts +79 -0
- package/out/src/types/page/Attr.js +217 -0
- package/out/src/types/page/Attr.js.map +1 -0
- package/out/src/types/page/Block.d.ts +65 -0
- package/out/src/types/page/Block.js +82 -0
- package/out/src/types/page/Block.js.map +1 -0
- package/out/src/types/page/Directive.d.ts +78 -0
- package/out/src/types/page/Directive.js +202 -0
- package/out/src/types/page/Directive.js.map +1 -0
- package/out/src/types/page/Element.d.ts +266 -0
- package/out/src/types/page/Element.js +1418 -0
- package/out/src/types/page/Element.js.map +1 -0
- package/out/src/types/page/Event.d.ts +63 -0
- package/out/src/types/page/Event.js +212 -0
- package/out/src/types/page/Event.js.map +1 -0
- package/out/src/types/page/Lifecycle.d.ts +58 -0
- package/out/src/types/page/Lifecycle.js +192 -0
- package/out/src/types/page/Lifecycle.js.map +1 -0
- package/out/src/types/page/Page.d.ts +95 -0
- package/out/src/types/page/Page.js +394 -0
- package/out/src/types/page/Page.js.map +1 -0
- package/out/src/types/page/View.d.ts +253 -0
- package/out/src/types/page/View.js +1178 -0
- package/out/src/types/page/View.js.map +1 -0
- package/out/src/types/page/ViewParam.d.ts +73 -0
- package/out/src/types/page/ViewParam.js +296 -0
- package/out/src/types/page/ViewParam.js.map +1 -0
- package/out/src/types/page/ViewVariable.d.ts +73 -0
- package/out/src/types/page/ViewVariable.js +276 -0
- package/out/src/types/page/ViewVariable.js.map +1 -0
- package/out/src/types/permission/Permission.d.ts +41 -0
- package/out/src/types/permission/Permission.js +122 -0
- package/out/src/types/permission/Permission.js.map +1 -0
- package/out/src/types/process/Process.d.ts +118 -0
- package/out/src/types/process/Process.js +357 -0
- package/out/src/types/process/Process.js.map +1 -0
- package/out/src/types/process/ProcessComponent.d.ts +133 -0
- package/out/src/types/process/ProcessComponent.js +339 -0
- package/out/src/types/process/ProcessComponent.js.map +1 -0
- package/out/src/types/process/ProcessComponentAttribute.d.ts +63 -0
- package/out/src/types/process/ProcessComponentAttribute.js +163 -0
- package/out/src/types/process/ProcessComponentAttribute.js.map +1 -0
- package/out/src/types/process/ProcessComponentProperty.d.ts +37 -0
- package/out/src/types/process/ProcessComponentProperty.js +81 -0
- package/out/src/types/process/ProcessComponentProperty.js.map +1 -0
- package/out/src/types/process/ProcessComponentReturn.d.ts +77 -0
- package/out/src/types/process/ProcessComponentReturn.js +260 -0
- package/out/src/types/process/ProcessComponentReturn.js.map +1 -0
- package/out/src/types/process/ProcessComponentVariable.d.ts +78 -0
- package/out/src/types/process/ProcessComponentVariable.js +252 -0
- package/out/src/types/process/ProcessComponentVariable.js.map +1 -0
- package/out/src/types/process/ProcessInterface.d.ts +112 -0
- package/out/src/types/process/ProcessInterface.js +227 -0
- package/out/src/types/process/ProcessInterface.js.map +1 -0
- package/out/src/types/process/ProcessParam.d.ts +77 -0
- package/out/src/types/process/ProcessParam.js +261 -0
- package/out/src/types/process/ProcessParam.js.map +1 -0
- package/out/src/types/process/ProcessProperty.d.ts +37 -0
- package/out/src/types/process/ProcessProperty.js +81 -0
- package/out/src/types/process/ProcessProperty.js.map +1 -0
- package/out/src/types/process/ProcessReturn.d.ts +73 -0
- package/out/src/types/process/ProcessReturn.js +237 -0
- package/out/src/types/process/ProcessReturn.js.map +1 -0
- package/out/src/types/utils/index.d.ts +26 -0
- package/out/src/types/utils/index.js +90 -0
- package/out/src/types/utils/index.js.map +1 -0
- package/out/src/types/utils/logger.d.ts +3 -0
- package/out/src/types/utils/logger.js +14 -0
- package/out/src/types/utils/logger.js.map +1 -0
- package/out/src/types/utils/string.d.ts +38 -0
- package/out/src/types/utils/string.js +66 -0
- package/out/src/types/utils/string.js.map +1 -0
- package/out/src/types/utils/traverse.d.ts +35 -0
- package/out/src/types/utils/traverse.js +126 -0
- package/out/src/types/utils/traverse.js.map +1 -0
- package/out/src/utils/index.d.ts +26 -0
- package/out/src/utils/index.js +52 -0
- package/out/src/utils/index.js.map +1 -0
- package/out/src/utils/logger.d.ts +3 -0
- package/out/src/utils/logger.js +11 -0
- package/out/src/utils/logger.js.map +1 -0
- package/out/src/utils/string.d.ts +38 -0
- package/out/src/utils/string.js +66 -0
- package/out/src/utils/string.js.map +1 -0
- package/out/src/utils/traverse.d.ts +35 -0
- package/out/src/utils/traverse.js +126 -0
- package/out/src/utils/traverse.js.map +1 -0
- package/out/test/units/baseTypes/StringLiteral.spec.d.ts +1 -0
- package/out/test/units/baseTypes/StringLiteral.spec.js +71 -0
- package/out/test/units/baseTypes/StringLiteral.spec.js.map +1 -0
- package/out/test/units/baseTypes/new.spec.d.ts +1 -0
- package/out/test/units/baseTypes/new.spec.js +33 -0
- package/out/test/units/baseTypes/new.spec.js.map +1 -0
- package/out/test/units/baseTypes/toEmbeddedTS.spec.d.ts +1 -0
- package/out/test/units/baseTypes/toEmbeddedTS.spec.js +39 -0
- package/out/test/units/baseTypes/toEmbeddedTS.spec.js.map +1 -0
- package/out/test/units/config.spec.d.ts +1 -0
- package/out/test/units/config.spec.js +12 -0
- package/out/test/units/config.spec.js.map +1 -0
- package/out/translator/index.d.ts +39 -0
- package/out/translator/index.js +86 -0
- package/out/translator/index.js.map +1 -0
- package/out/translator/lsp.d.ts +45 -0
- package/out/translator/lsp.js +6 -0
- package/out/translator/lsp.js.map +1 -0
- package/out/translator/tsp.d.ts +12 -0
- package/out/translator/tsp.js +3 -0
- package/out/translator/tsp.js.map +1 -0
- package/out/types/app/App.d.ts +2 -5
- package/out/types/app/App.js +2 -29
- package/out/types/app/App.js.map +1 -1
- package/out/types/app/Service.d.ts +0 -31
- package/out/types/app/Service.js +4 -128
- package/out/types/app/Service.js.map +1 -1
- package/out/types/classMap.d.ts +4 -0
- package/out/types/classMap.js +5 -0
- package/out/types/classMap.js.map +1 -0
- package/out/types/common/Vertex.d.ts +16 -34
- package/out/types/common/Vertex.js +81 -63
- package/out/types/common/Vertex.js.map +1 -1
- package/out/types/config.d.ts +0 -1
- package/out/types/config.js +0 -1
- package/out/types/config.js.map +1 -1
- package/out/types/data/Entity.d.ts +1 -19
- package/out/types/data/Entity.js +2 -38
- package/out/types/data/Entity.js.map +1 -1
- package/out/types/data/EntityProperty.d.ts +0 -4
- package/out/types/data/EntityProperty.js +0 -7
- package/out/types/data/EntityProperty.js.map +1 -1
- package/out/types/data/Enum.d.ts +0 -4
- package/out/types/data/Enum.js +0 -7
- package/out/types/data/Enum.js.map +1 -1
- package/out/types/data/Interface.js +1 -2
- package/out/types/data/Interface.js.map +1 -1
- package/out/types/data/Structure.d.ts +0 -8
- package/out/types/data/Structure.js +0 -19
- package/out/types/data/Structure.js.map +1 -1
- package/out/types/data/dataTypes.d.ts +1 -2
- package/out/types/data/dataTypes.js +7 -41
- package/out/types/data/dataTypes.js.map +1 -1
- package/out/types/data/genBlock/builtInFunctions.json +0 -15
- package/out/types/data/genBlock/genCreateBlock.js +6 -5
- package/out/types/data/genBlock/genCreateBlock.js.map +1 -1
- package/out/types/data/genBlock/genEnumSelectBlock.js +1 -1
- package/out/types/data/genBlock/genEnumSelectBlock.js.map +1 -1
- package/out/types/data/genBlock/genGetBlock.js +1 -1
- package/out/types/data/genBlock/genGetBlock.js.map +1 -1
- package/out/types/data/genBlock/genListViewBlock.js +1 -1
- package/out/types/data/genBlock/genListViewBlock.js.map +1 -1
- package/out/types/data/genBlock/genQueryComponent.js +1 -1
- package/out/types/data/genBlock/genQueryComponent.js.map +1 -1
- package/out/types/data/genBlock/genSelectBlock.js +1 -2
- package/out/types/data/genBlock/genSelectBlock.js.map +1 -1
- package/out/types/data/genBlock/genTableBlock.js +2 -2
- package/out/types/data/genBlock/genTableBlock.js.map +1 -1
- package/out/types/data/genBlock/genUpdateBlock.js +6 -5
- package/out/types/data/genBlock/genUpdateBlock.js.map +1 -1
- package/out/types/data/genBlock/index.d.ts +2 -2
- package/out/types/data/genBlock/index.js +2 -2
- package/out/types/data/genBlock/index.js.map +1 -1
- package/out/types/data/genericTypes.d.ts +1 -1
- package/out/types/data/genericTypes.js +2 -6
- package/out/types/data/genericTypes.js.map +1 -1
- package/out/types/data/systemTypes.js +0 -73
- package/out/types/data/systemTypes.js.map +1 -1
- package/out/types/decorators/index.d.ts +1 -1
- package/out/types/decorators/index.js +7 -2
- package/out/types/decorators/index.js.map +1 -1
- package/out/types/generator/data.js +0 -4
- package/out/types/generator/data.js.map +1 -1
- package/out/types/index.d.ts +2 -5
- package/out/types/index.js +5 -10
- package/out/types/index.js.map +1 -1
- package/out/types/logic/BreakPoint.d.ts +42 -0
- package/out/types/logic/BreakPoint.js +155 -0
- package/out/types/logic/BreakPoint.js.map +1 -0
- package/out/types/logic/Debugger.d.ts +156 -0
- package/out/types/logic/Debugger.js +912 -0
- package/out/types/logic/Debugger.js.map +1 -0
- package/out/types/logic/Logic.d.ts +0 -20
- package/out/types/logic/Logic.js +1 -47
- package/out/types/logic/Logic.js.map +1 -1
- package/out/types/logic/LogicItem.d.ts +2 -3
- package/out/types/logic/LogicItem.js +48 -113
- package/out/types/logic/LogicItem.js.map +1 -1
- package/out/types/logic/Param.js +1 -1
- package/out/types/logic/Param.js.map +1 -1
- package/out/types/logic/translator.js +51 -74
- package/out/types/logic/translator.js.map +1 -1
- package/out/types/page/Element.js +9 -21
- package/out/types/page/Element.js.map +1 -1
- package/out/types/page/Page.js +0 -7
- package/out/types/page/Page.js.map +1 -1
- package/out/types/page/View.d.ts +1 -1
- package/out/types/page/View.js +1 -29
- package/out/types/page/View.js.map +1 -1
- package/out/types/process/Process.js +3 -3
- package/out/types/process/Process.js.map +1 -1
- package/out/types/process/ProcessComponent.js +1 -1
- package/out/types/process/ProcessComponent.js.map +1 -1
- package/out/types/process/ProcessParam.js +1 -1
- package/out/types/process/ProcessParam.js.map +1 -1
- package/out/types/typeCheck.js +2 -12
- package/out/types/typeCheck.js.map +1 -1
- package/out/types/utils/string.d.ts +4 -0
- package/out/types/utils/string.js +4 -0
- package/out/types/utils/string.js.map +1 -1
- package/package.json +10 -14
- package/src/automate/engine/index.js +308 -0
- package/src/automate/engine/utils.js +312 -0
- package/src/common/BaseNode.ts +635 -0
- package/src/common/Command.ts +27 -0
- package/src/common/ComponentAPI.ts +103 -0
- package/src/common/EventEmitter.ts +86 -0
- package/src/common/Messager.ts +225 -0
- package/src/common/classMap.ts +3 -0
- package/src/common/index.ts +4 -0
- package/src/concepts/App__.ts +2492 -0
- package/src/concepts/Argument__.ts +191 -0
- package/src/concepts/Assignment__.ts +235 -0
- package/src/concepts/Attribute__.ts +251 -0
- package/src/concepts/BinaryExpression__.ts +270 -0
- package/src/concepts/BindAttribute__.ts +500 -0
- package/src/concepts/BindDirective__.ts +238 -0
- package/src/concepts/BindEvent__.ts +339 -0
- package/src/concepts/BooleanLiteral__.ts +82 -0
- package/src/concepts/CallFunction__.ts +307 -0
- package/src/concepts/CallInterface__.ts +295 -0
- package/src/concepts/CallLogic__.ts +390 -0
- package/src/concepts/CallQueryComponent__.ts +1006 -0
- package/src/concepts/Comment__.ts +104 -0
- package/src/concepts/CompletionProperty__.ts +244 -0
- package/src/concepts/Constant__.ts +243 -0
- package/src/concepts/DataElement__.ts +134 -0
- package/src/concepts/Destination__.ts +316 -0
- package/src/concepts/End__.ts +108 -0
- package/src/concepts/EntityIndex__.ts +197 -0
- package/src/concepts/EntityProperty__.ts +497 -0
- package/src/concepts/Entity__.ts +695 -0
- package/src/concepts/EnumItem__.ts +139 -0
- package/src/concepts/Enum__.ts +337 -0
- package/src/concepts/Event__.ts +316 -0
- package/src/concepts/ForEachStatement__.ts +562 -0
- package/src/concepts/Function__.ts +915 -0
- package/src/concepts/Identifier__.ts +171 -0
- package/src/concepts/IfStatement__.ts +478 -0
- package/src/concepts/InterfaceParam__.ts +305 -0
- package/src/concepts/Interface__.ts +610 -0
- package/src/concepts/JSBlock__.ts +113 -0
- package/src/concepts/LogicItem__.ts +232 -0
- package/src/concepts/Logic__.ts +1487 -0
- package/src/concepts/MemberExpression__.ts +240 -0
- package/src/concepts/Module__.ts +1718 -0
- package/src/concepts/Namespace__.ts +2517 -0
- package/src/concepts/NullLiteral__.ts +78 -0
- package/src/concepts/NumericLiteral__.ts +182 -0
- package/src/concepts/Param__.ts +364 -0
- package/src/concepts/Point__.ts +84 -0
- package/src/concepts/ProcessComponent__.ts +502 -0
- package/src/concepts/ProcessElement__.ts +1370 -0
- package/src/concepts/ProcessOutcome__.ts +97 -0
- package/src/concepts/Process__.ts +1113 -0
- package/src/concepts/QueryAggregateExpression__.ts +197 -0
- package/src/concepts/QueryFieldExpression__.ts +133 -0
- package/src/concepts/QueryFromExpression__.ts +261 -0
- package/src/concepts/QueryGroupByExpression__.ts +144 -0
- package/src/concepts/QueryJoinExpression__.ts +448 -0
- package/src/concepts/QueryLimitExpression__.ts +193 -0
- package/src/concepts/QueryOrderByExpression__.ts +207 -0
- package/src/concepts/QuerySelectExpression__.ts +285 -0
- package/src/concepts/Rect__.ts +96 -0
- package/src/concepts/Return__.ts +334 -0
- package/src/concepts/Role__.ts +139 -0
- package/src/concepts/Slot__.ts +121 -0
- package/src/concepts/SqlQueryComponent__.ts +145 -0
- package/src/concepts/Start__.ts +86 -0
- package/src/concepts/StringLiteral__.ts +140 -0
- package/src/concepts/StructureProperty__.ts +327 -0
- package/src/concepts/Structure__.ts +559 -0
- package/src/concepts/SwitchCase__.ts +363 -0
- package/src/concepts/SwitchStatement__.ts +261 -0
- package/src/concepts/Theme__.ts +94 -0
- package/src/concepts/Transactional__.ts +164 -0
- package/src/concepts/TypeAnnotation__.ts +373 -0
- package/src/concepts/TypeParam__.ts +68 -0
- package/src/concepts/UnaryExpression__.ts +177 -0
- package/src/concepts/Unparsed__.ts +98 -0
- package/src/concepts/UseComponent__.ts +84 -0
- package/src/concepts/ValidationRule__.ts +292 -0
- package/src/concepts/Variable__.ts +312 -0
- package/src/concepts/ViewComponent__.ts +1098 -0
- package/src/concepts/ViewElement__.ts +1562 -0
- package/src/concepts/View__.ts +1842 -0
- package/src/concepts/WhileStatement__.ts +323 -0
- package/src/concepts/basics/stdlib/index.ts +20 -0
- package/src/concepts/basics/stdlib/nasl.collection.ts +54 -0
- package/src/concepts/basics/stdlib/nasl.core.ts +12 -0
- package/src/concepts/basics/stdlib/nasl.interface.ts +43 -0
- package/src/concepts/basics/stdlib/nasl.process.ts +47 -0
- package/src/concepts/basics/stdlib/nasl.ui.ts +84 -0
- package/src/concepts/basics/stdlib/nasl.util.ts +585 -0
- package/src/concepts/basics/stdlib/nasl.validate.ts +523 -0
- package/src/concepts/basics/stdlib/reference2TypeAnnotationList.ts +26 -0
- package/src/concepts/basics/types/coreTypeList.ts +14 -0
- package/src/concepts/basics/types/index.ts +20 -0
- package/src/concepts/index.ts +5 -0
- package/src/concepts/index__.ts +77 -0
- package/src/config.ts +80 -0
- package/src/decorators/index.ts +153 -0
- package/src/generator/compileComponent.ts +19 -0
- package/src/generator/genBundleFiles.ts +258 -0
- package/src/generator/genHash.ts +13 -0
- package/src/generator/index.ts +4 -0
- package/src/generator/styleReplacer.ts +41 -0
- package/src/index.ts +10 -0
- package/src/manager/diagnostic.ts +129 -0
- package/src/manager/history.ts +0 -0
- package/src/manager/problem.ts +0 -0
- package/src/server/entity2LogicNamespace.ts +188 -0
- package/src/server/getFunctions.ts +10 -0
- package/src/server/getInterfaces.ts +47 -0
- package/src/server/getLogics.ts +94 -0
- package/src/server/getMemberIdentifier.ts +110 -0
- package/src/server/getProcessComponents.ts +9 -0
- package/src/server/getProcesses.ts +129 -0
- package/src/server/getValidates.ts +10 -0
- package/src/server/index.ts +21 -0
- package/src/server/naslServer.ts +1194 -0
- package/src/server/process2LogicNamespace.ts +20 -0
- package/src/server/translator.ts +148 -0
- package/src/service/app/index.js +1 -1
- package/src/service/assets/index.js +1 -1
- package/src/service/{create → creator}/add.configs.js +0 -0
- package/src/service/{create → creator}/errHandles.js +0 -0
- package/src/service/creator/index.js +80 -0
- package/src/service/storage/index.ts +6 -0
- package/src/service/storage/init.ts +160 -0
- package/src/service/storage/jsoner.ts +139 -0
- package/src/service/storage/map.ts +57 -0
- package/src/service/storage/storagePoint.ts +73 -0
- package/src/service/video/BaseService.js +68 -0
- package/src/service/video/MainCallbackService.js +207 -0
- package/src/service/video/VideoTranscribe.js +102 -0
- package/src/service/video/publishService.js +61 -0
- package/src/templator/builtInFunctions.json +1 -0
- package/src/templator/genCallComponentLogic.ts +27 -0
- package/src/templator/genCreateBlock.ts +281 -0
- package/src/templator/genCurdEditMultipleKeyBlock.ts +432 -0
- package/src/templator/genCurdMultipleKeyBlock.ts +624 -0
- package/src/templator/genEditTableBlock.ts +284 -0
- package/src/templator/genEnumSelectBlock.ts +22 -0
- package/src/templator/genGetBlock.ts +121 -0
- package/src/templator/genGridViewBlock.ts +306 -0
- package/src/templator/genListViewBlock.ts +122 -0
- package/src/templator/genQueryComponent.ts +287 -0
- package/src/templator/genSelectBlock.ts +125 -0
- package/src/templator/genTableBlock.ts +295 -0
- package/src/templator/genUpdateBlock.ts +324 -0
- package/src/templator/index.ts +18 -0
- package/src/templator/utils.ts +640 -0
- package/src/terms/LEVEL_NAME_MAP.ts +31 -0
- package/src/test/examples/app1.json +17 -0
- package/src/test/fixtures/env.ts +4 -4
- package/src/test/integration/connect-create-file.ts +14 -0
- package/src/test/integration/connect-file.ts +24 -0
- package/src/test/units/baseTypes/Assignment.spec.ts +20 -0
- package/src/test/units/baseTypes/CallLogic.spec.ts +22 -0
- package/src/test/units/baseTypes/StringLiteral.spec.ts +60 -0
- package/src/test/units/baseTypes/new.spec.ts +13 -0
- package/src/test/units/common/Vertex.spec.ts +17 -19
- package/src/test/units/data/Entity.spec.ts +1 -1
- package/src/test/units/login.spec.ts +3 -3
- package/src/test/units/page/Block.spec.ts +12 -12
- package/src/test/units/page/Element.spec.ts +11 -11
- package/src/test/units/temp/temp.spec.ts +2 -2
- package/src/translator/index.ts +131 -0
- package/src/translator/lsp.ts +50 -0
- package/src/translator/tsp.ts +14 -0
- package/src/utils/index.ts +52 -0
- package/src/utils/logger.ts +8 -0
- package/src/utils/string.ts +60 -0
- package/src/utils/traverse.ts +152 -0
- package/tsconfig.json +6 -13
- package/analysis/mergeBlock/README.md +0 -14
- package/analysis/mergeBlock/raw2.json +0 -2522
- package/analysis/mergeBlock/raw3.json +0 -505
- package/analysis/mergeBlock/req2.json +0 -2219
- package/analysis/mergeBlock/req3.json +0 -462
- package/analysis/mergeBlock/script.js +0 -159
- package/docs/assets/css/main.css +0 -2638
- package/docs/assets/js/main.js +0 -248
- package/docs/assets/js/search.js +0 -1
- package/docs/classes/app_app.app.html +0 -1359
- package/docs/classes/app_service.microservice.html +0 -1572
- package/docs/classes/app_service.service.html +0 -1233
- package/docs/classes/app_service.webservice.html +0 -1635
- package/docs/classes/common_eventemitter.eventemitter.html +0 -387
- package/docs/classes/common_vertex.vertex.html +0 -1086
- package/docs/classes/data_datanode.datanode.html +0 -1157
- package/docs/classes/data_entity.entity.html +0 -1656
- package/docs/classes/data_entityproperty.entityproperty.html +0 -1903
- package/docs/classes/data_enum.enum.html +0 -1402
- package/docs/classes/data_enumitem.enumitem.html +0 -1252
- package/docs/classes/data_interface.interface.html +0 -1673
- package/docs/classes/data_structure.structure.html +0 -1427
- package/docs/classes/data_structureproperty.structureproperty.html +0 -1656
- package/docs/classes/logic_basevariable.basevariable.html +0 -1261
- package/docs/classes/logic_logic.logic.html +0 -1639
- package/docs/classes/logic_logicitem.expressionnode.html +0 -1982
- package/docs/classes/logic_logicitem.logicitem.html +0 -1828
- package/docs/classes/logic_logicitem.logicnode.html +0 -2229
- package/docs/classes/logic_param.param.html +0 -1707
- package/docs/classes/logic_return.return.html +0 -1605
- package/docs/classes/logic_variable.variable.html +0 -1631
- package/docs/classes/nuims_nuims.nuims.html +0 -596
- package/docs/classes/page_attr.attr.html +0 -1335
- package/docs/classes/page_block.block.html +0 -1272
- package/docs/classes/page_directive.directive.html +0 -1350
- package/docs/classes/page_element.element.html +0 -2118
- package/docs/classes/page_event.event.html +0 -1284
- package/docs/classes/page_lifecycle.lifecycle.html +0 -1286
- package/docs/classes/page_page.page.html +0 -1389
- package/docs/classes/page_view.view.html +0 -2299
- package/docs/classes/page_viewparam.viewparam.html +0 -1727
- package/docs/classes/page_viewvariable.viewvariable.html +0 -1668
- package/docs/classes/process_process.process.html +0 -1532
- package/docs/classes/process_processcomponent.processcomponent.html +0 -1589
- package/docs/classes/process_processcomponentattribute.processcomponentattribute.html +0 -1236
- package/docs/classes/process_processcomponentproperty.processcomponentproperty.html +0 -1727
- package/docs/classes/process_processcomponentreturn.processcomponentreturn.html +0 -1704
- package/docs/classes/process_processcomponentvariable.processcomponentvariable.html +0 -1679
- package/docs/classes/process_processinterface.processinterface.html +0 -1462
- package/docs/classes/process_processparam.processparam.html +0 -1778
- package/docs/classes/process_processproperty.processproperty.html +0 -1727
- package/docs/classes/process_processreturn.processreturn.html +0 -1678
- package/docs/enums/app_service.service_type.html +0 -186
- package/docs/enums/data_basictypes.basic_type.html +0 -312
- package/docs/enums/index.level_enum.html +0 -655
- package/docs/enums/logic_logicitem.logic_type.html +0 -441
- package/docs/interfaces/app_service.assetsinfo.html +0 -209
- package/docs/interfaces/common_packagejson.default.html +0 -431
- package/docs/interfaces/data_entity.resolver.html +0 -228
- package/docs/interfaces/data_entityproperty.display.html +0 -214
- package/docs/interfaces/data_schema.arrayschema.html +0 -306
- package/docs/interfaces/data_schema.baseschema.html +0 -361
- package/docs/interfaces/data_schema.basicrefschema.html +0 -362
- package/docs/interfaces/data_schema.basicschema.html +0 -334
- package/docs/interfaces/data_schema.booleanschema.html +0 -306
- package/docs/interfaces/data_schema.enumitemschema.html +0 -225
- package/docs/interfaces/data_schema.enumschema.html +0 -306
- package/docs/interfaces/data_schema.integerschema.html +0 -334
- package/docs/interfaces/data_schema.mapschema.html +0 -320
- package/docs/interfaces/data_schema.numberschema.html +0 -334
- package/docs/interfaces/data_schema.objectschema.html +0 -313
- package/docs/interfaces/data_schema.refschema.html +0 -332
- package/docs/interfaces/data_schema.schema.html +0 -511
- package/docs/interfaces/data_schema.setschema.html +0 -306
- package/docs/interfaces/data_schema.stringschema.html +0 -334
- package/docs/interfaces/history.historyrecord.html +0 -183
- package/docs/interfaces/index.arrayschema.html +0 -261
- package/docs/interfaces/index.baseschema.html +0 -236
- package/docs/interfaces/index.basicrefschema.html +0 -317
- package/docs/interfaces/index.basicschema.html +0 -289
- package/docs/interfaces/index.booleanschema.html +0 -261
- package/docs/interfaces/index.enumitemschema.html +0 -180
- package/docs/interfaces/index.enumschema.html +0 -261
- package/docs/interfaces/index.integerschema.html +0 -289
- package/docs/interfaces/index.mapschema.html +0 -275
- package/docs/interfaces/index.numberschema.html +0 -289
- package/docs/interfaces/index.objectschema.html +0 -261
- package/docs/interfaces/index.refschema.html +0 -287
- package/docs/interfaces/index.schema.html +0 -459
- package/docs/interfaces/index.setschema.html +0 -261
- package/docs/interfaces/index.stringschema.html +0 -289
- package/docs/interfaces/page_element.elementtovueoptions.html +0 -283
- package/docs/interfaces/typecheck.typecheckrecord.html +0 -211
- package/docs/interfaces/utils.inode.html +0 -212
- package/docs/interfaces/utils.inodeinfo.html +0 -295
- package/docs/interfaces/utils_traverse.inode.html +0 -191
- package/docs/interfaces/utils_traverse.inodeinfo.html +0 -274
- package/docs/modules/app_app.html +0 -149
- package/docs/modules/app_service.html +0 -175
- package/docs/modules/cachedata.html +0 -198
- package/docs/modules/common_eventemitter.html +0 -192
- package/docs/modules/common_packagejson.html +0 -132
- package/docs/modules/common_vertex.html +0 -149
- package/docs/modules/config.html +0 -168
- package/docs/modules/data_basictypes.html +0 -271
- package/docs/modules/data_datanode.html +0 -149
- package/docs/modules/data_datatypes.html +0 -196
- package/docs/modules/data_datatypeutils.html +0 -430
- package/docs/modules/data_entity.html +0 -158
- package/docs/modules/data_entityproperty.html +0 -158
- package/docs/modules/data_entityutils.html +0 -342
- package/docs/modules/data_enum.html +0 -149
- package/docs/modules/data_enumitem.html +0 -149
- package/docs/modules/data_interface.html +0 -149
- package/docs/modules/data_schema.html +0 -205
- package/docs/modules/data_structure.html +0 -149
- package/docs/modules/data_structureproperty.html +0 -149
- package/docs/modules/data_systemtypes.html +0 -167
- package/docs/modules/decorators.html +0 -333
- package/docs/modules/eventbus.html +0 -116
- package/docs/modules/generator.html +0 -749
- package/docs/modules/generator_data.html +0 -495
- package/docs/modules/generator_hotreload.html +0 -200
- package/docs/modules/generator_load.html +0 -247
- package/docs/modules/generator_page.html +0 -200
- package/docs/modules/history.html +0 -200
- package/docs/modules/index.html +0 -1163
- package/docs/modules/logic_basevariable.html +0 -238
- package/docs/modules/logic_callinterface.html +0 -116
- package/docs/modules/logic_logic.html +0 -149
- package/docs/modules/logic_logicitem.html +0 -220
- package/docs/modules/logic_param.html +0 -149
- package/docs/modules/logic_return.html +0 -149
- package/docs/modules/logic_tools.html +0 -326
- package/docs/modules/logic_translator.html +0 -158
- package/docs/modules/logic_variable.html +0 -149
- package/docs/modules/nuims_nuims.html +0 -149
- package/docs/modules/page_attr.html +0 -149
- package/docs/modules/page_block.html +0 -149
- package/docs/modules/page_directive.html +0 -149
- package/docs/modules/page_element.html +0 -158
- package/docs/modules/page_event.html +0 -149
- package/docs/modules/page_lifecycle.html +0 -149
- package/docs/modules/page_page.html +0 -149
- package/docs/modules/page_view.html +0 -149
- package/docs/modules/page_viewparam.html +0 -149
- package/docs/modules/page_viewvariable.html +0 -149
- package/docs/modules/process_process.html +0 -149
- package/docs/modules/process_processcomponent.html +0 -149
- package/docs/modules/process_processcomponentattribute.html +0 -149
- package/docs/modules/process_processcomponentproperty.html +0 -149
- package/docs/modules/process_processcomponentreturn.html +0 -149
- package/docs/modules/process_processcomponentvariable.html +0 -149
- package/docs/modules/process_processinterface.html +0 -149
- package/docs/modules/process_processparam.html +0 -149
- package/docs/modules/process_processproperty.html +0 -149
- package/docs/modules/process_processreturn.html +0 -149
- package/docs/modules/typecheck.html +0 -269
- package/docs/modules/utils.html +0 -536
- package/docs/modules/utils_logger.html +0 -172
- package/docs/modules/utils_string.html +0 -347
- package/docs/modules/utils_traverse.html +0 -248
- package/index.js +0 -12
- package/module/base.js +0 -11
- package/out/service/logic/checktypeSocket.d.ts +0 -5
- package/out/service/logic/checktypeSocket.js +0 -55
- package/out/service/logic/checktypeSocket.js.map +0 -1
- package/out/types/data/Module.d.ts +0 -34
- package/out/types/data/Module.js +0 -53
- package/out/types/data/Module.js.map +0 -1
- package/out/types/data/genBlock/genCurdEditMultipleKeyBlock.d.ts +0 -7
- package/out/types/data/genBlock/genCurdEditMultipleKeyBlock.js +0 -470
- package/out/types/data/genBlock/genCurdEditMultipleKeyBlock.js.map +0 -1
- package/out/types/data/genBlock/genCurdMultipleKeyBlock.d.ts +0 -9
- package/out/types/data/genBlock/genCurdMultipleKeyBlock.js +0 -662
- package/out/types/data/genBlock/genCurdMultipleKeyBlock.js.map +0 -1
- package/spec/conceptMap.json +0 -3310
- package/spec/spec.yaml +0 -416
- package/spec-build/index.ts +0 -98
- package/src/routes.map.js +0 -5
- package/src/service/common/findUsage.js +0 -8
- package/src/service/common/index.js +0 -6
- package/src/service/common/preprocess.js +0 -54
- package/src/service/common/schema.js +0 -9
- package/src/service/config/api.js +0 -32
- package/src/service/config/index.js +0 -6
- package/src/service/create/index.js +0 -80
- package/src/service/data/api.js +0 -33
- package/src/service/data/entity.js +0 -101
- package/src/service/data/enum.js +0 -53
- package/src/service/data/enumProperty.js +0 -20
- package/src/service/data/generic.js +0 -8
- package/src/service/data/index.js +0 -18
- package/src/service/data/interface.js +0 -56
- package/src/service/data/structure.js +0 -75
- package/src/service/developPermission/api.js +0 -37
- package/src/service/developPermission/index.js +0 -13
- package/src/service/logic/checktypeSocket.js +0 -49
- package/src/service/logic/index.js +0 -14
- package/src/service/logic/logic.js +0 -121
- package/src/service/logic/param.js +0 -26
- package/src/service/modules/api.js +0 -20
- package/src/service/modules/index.js +0 -6
- package/src/service/nuims/api.js +0 -192
- package/src/service/nuims/index.js +0 -13
- package/src/service/page/api.js +0 -1374
- package/src/service/page/attribute.js +0 -20
- package/src/service/page/directive.js +0 -20
- package/src/service/page/element.js +0 -40
- package/src/service/page/event.js +0 -20
- package/src/service/page/index.js +0 -19
- package/src/service/page/lifecycle.js +0 -20
- package/src/service/page/templates.ts +0 -72
- package/src/service/page/view.js +0 -116
- package/src/service/permission/api.js +0 -38
- package/src/service/permission/index.js +0 -13
- package/src/service/process/api.js +0 -92
- package/src/service/process/index.js +0 -6
- package/src/service/undoredo/api.js +0 -26
- package/src/service/undoredo/index.js +0 -6
- package/src/service/webFile/api.js +0 -32
- package/src/service/webFile/index.d.tmp +0 -62
- package/src/service/webFile/index.js +0 -28
- package/src/service/webFile/loadCache.js +0 -14
- package/src/test/units/app/App.spec.ts +0 -16
- package/src/test/units/app/Service.spec.ts +0 -31
- package/src/types/app/App.ts +0 -349
- package/src/types/app/History.ts +0 -389
- package/src/types/app/Service.ts +0 -1036
- package/src/types/cache.ts +0 -50
- package/src/types/cacheData.ts +0 -33
- package/src/types/common/ComponentAPI.ts +0 -103
- package/src/types/common/EventEmitter.ts +0 -56
- package/src/types/common/PackageJSON.ts +0 -22
- package/src/types/common/Vertex.ts +0 -296
- package/src/types/config.ts +0 -23
- package/src/types/data/DataNode.ts +0 -37
- package/src/types/data/Entity.ts +0 -556
- package/src/types/data/EntityIndex.ts +0 -238
- package/src/types/data/EntityProperty.ts +0 -524
- package/src/types/data/Enum.ts +0 -245
- package/src/types/data/EnumItem.ts +0 -156
- package/src/types/data/GlobalLogicNode.ts +0 -208
- package/src/types/data/Interface.ts +0 -438
- package/src/types/data/Module.ts +0 -51
- package/src/types/data/Schema.ts +0 -133
- package/src/types/data/Structure.ts +0 -315
- package/src/types/data/StructureProperty.ts +0 -332
- package/src/types/data/basicTypes.ts +0 -76
- package/src/types/data/dataTypeUtils.ts +0 -426
- package/src/types/data/dataTypes.ts +0 -88
- package/src/types/data/entityUtils.ts +0 -681
- package/src/types/data/genBlock/builtInFunctions.json +0 -560
- package/src/types/data/genBlock/genCallComponentLogic.ts +0 -28
- package/src/types/data/genBlock/genCallInterface.ts +0 -87
- package/src/types/data/genBlock/genCreateBlock.ts +0 -305
- package/src/types/data/genBlock/genCurdEditMultipleKeyBlock.ts +0 -468
- package/src/types/data/genBlock/genCurdMultipleKeyBlock.ts +0 -665
- package/src/types/data/genBlock/genEditTableBlock.ts +0 -470
- package/src/types/data/genBlock/genEnumSelectBlock.ts +0 -21
- package/src/types/data/genBlock/genGetBlock.ts +0 -160
- package/src/types/data/genBlock/genGridViewBlock.ts +0 -316
- package/src/types/data/genBlock/genListViewBlock.ts +0 -130
- package/src/types/data/genBlock/genQueryComponent.ts +0 -548
- package/src/types/data/genBlock/genSelectBlock.ts +0 -124
- package/src/types/data/genBlock/genTableBlock.ts +0 -315
- package/src/types/data/genBlock/genUpdateBlock.ts +0 -389
- package/src/types/data/genBlock/index.ts +0 -20
- package/src/types/data/genBlock/utils.ts +0 -252
- package/src/types/data/genericTypes.ts +0 -151
- package/src/types/data/systemTypes.ts +0 -1635
- package/src/types/decorators/index.ts +0 -52
- package/src/types/enum.ts +0 -6
- package/src/types/generator/data.ts +0 -210
- package/src/types/generator/hotReload.ts +0 -41
- package/src/types/generator/index.ts +0 -4
- package/src/types/generator/load.ts +0 -97
- package/src/types/generator/page.ts +0 -37
- package/src/types/history.ts +0 -14
- package/src/types/index.ts +0 -167
- package/src/types/logic/BaseVariable.ts +0 -130
- package/src/types/logic/Logic.ts +0 -591
- package/src/types/logic/LogicItem.ts +0 -1371
- package/src/types/logic/Param.ts +0 -336
- package/src/types/logic/Return.ts +0 -292
- package/src/types/logic/Variable.ts +0 -288
- package/src/types/logic/expressions/BinaryExpression.ts +0 -35
- package/src/types/logic/expressions/BooleanLiteral.ts +0 -25
- package/src/types/logic/expressions/Identifier.ts +0 -36
- package/src/types/logic/expressions/LogicalExpression.ts +0 -35
- package/src/types/logic/expressions/MemberExpression.ts +0 -33
- package/src/types/logic/expressions/NullLiteral.ts +0 -20
- package/src/types/logic/expressions/NumericLiteral.ts +0 -25
- package/src/types/logic/expressions/StringLiteral.ts +0 -25
- package/src/types/logic/expressions/UnaryExpression.ts +0 -30
- package/src/types/logic/expressions/Unparsed.ts +0 -25
- package/src/types/logic/nodes/AssignmentExpression.ts +0 -30
- package/src/types/logic/nodes/BuiltInFuncParam.ts +0 -35
- package/src/types/logic/nodes/BuiltInFunction.ts +0 -39
- package/src/types/logic/nodes/CallConsoleLog.ts +0 -25
- package/src/types/logic/nodes/CallGraphQL.ts +0 -36
- package/src/types/logic/nodes/CallInterParam.ts +0 -30
- package/src/types/logic/nodes/CallInterface.ts +0 -31
- package/src/types/logic/nodes/CallLogic.ts +0 -39
- package/src/types/logic/nodes/CallMessageShow.ts +0 -35
- package/src/types/logic/nodes/Comment.ts +0 -25
- package/src/types/logic/nodes/CronJob.ts +0 -25
- package/src/types/logic/nodes/DBQuery.ts +0 -25
- package/src/types/logic/nodes/Destination.ts +0 -52
- package/src/types/logic/nodes/DestinationParam.ts +0 -31
- package/src/types/logic/nodes/End.ts +0 -21
- package/src/types/logic/nodes/ForEachStatement.ts +0 -52
- package/src/types/logic/nodes/IfStatement.ts +0 -35
- package/src/types/logic/nodes/JSBlock.ts +0 -29
- package/src/types/logic/nodes/JSONDeserialize.ts +0 -25
- package/src/types/logic/nodes/JSONSerialize.ts +0 -25
- package/src/types/logic/nodes/ProcessOutcome.ts +0 -35
- package/src/types/logic/nodes/Start.ts +0 -20
- package/src/types/logic/nodes/SwitchCase.ts +0 -30
- package/src/types/logic/nodes/SwitchStatement.ts +0 -26
- package/src/types/logic/nodes/TypeNote.ts +0 -25
- package/src/types/logic/nodes/WhileStatement.ts +0 -30
- package/src/types/logic/tools.js +0 -170
- package/src/types/logic/translator.js +0 -684
- package/src/types/logic/translator_backup.js +0 -632
- package/src/types/login.ts +0 -36
- package/src/types/nuims/Nuims.ts +0 -499
- package/src/types/page/Attr.ts +0 -217
- package/src/types/page/Block.ts +0 -103
- package/src/types/page/Directive.ts +0 -208
- package/src/types/page/Element.ts +0 -1444
- package/src/types/page/Event.ts +0 -188
- package/src/types/page/Lifecycle.ts +0 -172
- package/src/types/page/Page.ts +0 -414
- package/src/types/page/View.ts +0 -1236
- package/src/types/page/ViewParam.ts +0 -284
- package/src/types/page/ViewVariable.ts +0 -264
- package/src/types/page/dist/View.js +0 -727
- package/src/types/permission/Permission.ts +0 -112
- package/src/types/process/Process.ts +0 -306
- package/src/types/process/ProcessComponent.ts +0 -276
- package/src/types/process/ProcessComponentAttribute.ts +0 -131
- package/src/types/process/ProcessComponentProperty.ts +0 -68
- package/src/types/process/ProcessComponentReturn.ts +0 -235
- package/src/types/process/ProcessComponentVariable.ts +0 -225
- package/src/types/process/ProcessInterface.ts +0 -175
- package/src/types/process/ProcessParam.ts +0 -237
- package/src/types/process/ProcessProperty.ts +0 -69
- package/src/types/process/ProcessReturn.ts +0 -210
- package/src/types/typeCheck.ts +0 -120
- package/src/types/utils/index.ts +0 -91
- package/src/types/utils/logger.ts +0 -8
- package/src/types/utils/string.ts +0 -56
- package/src/types/utils/traverse.ts +0 -160
- package/src/views/components/lcap-json-view/README.md +0 -80
- package/src/views/components/lcap-json-view/index.js +0 -9
- package/src/views/components/lcap-json-view/index.vue +0 -61
- package/src/views/components/lcap-json-view/node.vue +0 -328
- package/src/views/components/lcap-json-view/utils.js +0 -41
- package/src/views/examples/index.vue +0 -44
- package/src/views/examples/logic.json +0 -1576
- package/src/views/index.vue +0 -28
- package/src/views/specification/README.md +0 -10
- package/src/views/specification/conceptTree.js +0 -1179
- package/src/views/specification/index.vue +0 -255
- package/src/views/theme.css +0 -138
|
@@ -1,2522 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$def": {
|
|
3
|
-
"logics": [
|
|
4
|
-
{
|
|
5
|
-
"level": "logic",
|
|
6
|
-
"id": "cc92674d56654c6d993d6d9d37b7bd01",
|
|
7
|
-
"createdTime": 1628752964609,
|
|
8
|
-
"ideVersion": "1.7",
|
|
9
|
-
"editable": true,
|
|
10
|
-
"name": "load",
|
|
11
|
-
"moduleId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
12
|
-
"moduleType": "view",
|
|
13
|
-
"params": [
|
|
14
|
-
{
|
|
15
|
-
"level": "param",
|
|
16
|
-
"id": "d35bb3808b314c198e84644cf43062ab",
|
|
17
|
-
"ideVersion": "1.7",
|
|
18
|
-
"editable": true,
|
|
19
|
-
"type": "Identifier",
|
|
20
|
-
"code": "ID_d35bb3808b314c198e84644cf43062ab",
|
|
21
|
-
"name": "params",
|
|
22
|
-
"_posIndex": 0,
|
|
23
|
-
"schema": {
|
|
24
|
-
"id": "d43f76d9-4aee-4613-a499-e4b7d55cca79",
|
|
25
|
-
"$ref": "#/systemTypes/DataSourceParams",
|
|
26
|
-
"typeKey": "#/systemTypes/DataSourceParams"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
],
|
|
30
|
-
"returns": [
|
|
31
|
-
{
|
|
32
|
-
"level": "return",
|
|
33
|
-
"id": "a3feac7f28c44847b4a59ea74e531044",
|
|
34
|
-
"ideVersion": "1.7",
|
|
35
|
-
"editable": true,
|
|
36
|
-
"type": "Identifier",
|
|
37
|
-
"code": "ID_a3feac7f28c44847b4a59ea74e531044",
|
|
38
|
-
"name": "result",
|
|
39
|
-
"_posIndex": 0,
|
|
40
|
-
"schema": {
|
|
41
|
-
"typeKey": "#/genericTypes/PageOf",
|
|
42
|
-
"type": "genericType",
|
|
43
|
-
"typeInstantiation": {
|
|
44
|
-
"typeName": "PageOf",
|
|
45
|
-
"typeParams": [
|
|
46
|
-
{
|
|
47
|
-
"typeParamValue": {
|
|
48
|
-
"$ref": "#/38fb7087-77d8-42f5-8be9-2416e39d4622/e22d1d38f9034c2c913d3480ca84d41d",
|
|
49
|
-
"typeKey": "#/38fb7087-77d8-42f5-8be9-2416e39d4622/e22d1d38f9034c2c913d3480ca84d41d"
|
|
50
|
-
},
|
|
51
|
-
"type": "typeParam",
|
|
52
|
-
"typeParamName": "T"
|
|
53
|
-
}
|
|
54
|
-
]
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
],
|
|
59
|
-
"variables": [],
|
|
60
|
-
"body": [
|
|
61
|
-
{
|
|
62
|
-
"level": "logicNode",
|
|
63
|
-
"id": "a0146082274e47daa98fc0ced48effd9",
|
|
64
|
-
"ideVersion": "1.7",
|
|
65
|
-
"editable": true,
|
|
66
|
-
"logicId": "cc92674d56654c6d993d6d9d37b7bd01",
|
|
67
|
-
"label": "开始",
|
|
68
|
-
"folded": false,
|
|
69
|
-
"type": "Start"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"level": "logicNode",
|
|
73
|
-
"id": "aa42994f526d49bd84b6aaf0d61e1d12",
|
|
74
|
-
"ideVersion": "1.7",
|
|
75
|
-
"editable": true,
|
|
76
|
-
"parentId": "a0146082274e47daa98fc0ced48effd9",
|
|
77
|
-
"logicId": "cc92674d56654c6d993d6d9d37b7bd01",
|
|
78
|
-
"label": "赋值",
|
|
79
|
-
"folded": false,
|
|
80
|
-
"type": "AssignmentExpression",
|
|
81
|
-
"operator": "=",
|
|
82
|
-
"left": {
|
|
83
|
-
"level": "expressionNode",
|
|
84
|
-
"id": "4dfb0902982942fab3587549fbbcc272",
|
|
85
|
-
"ideVersion": "1.7",
|
|
86
|
-
"editable": true,
|
|
87
|
-
"parentId": "aa42994f526d49bd84b6aaf0d61e1d12",
|
|
88
|
-
"parentAttr": "left",
|
|
89
|
-
"logicId": "cc92674d56654c6d993d6d9d37b7bd01",
|
|
90
|
-
"folded": false,
|
|
91
|
-
"type": "Identifier",
|
|
92
|
-
"code": "ID_a3feac7f28c44847b4a59ea74e531044",
|
|
93
|
-
"name": "result",
|
|
94
|
-
"schemaRef": "#/a3feac7f28c44847b4a59ea74e531044"
|
|
95
|
-
},
|
|
96
|
-
"right": {
|
|
97
|
-
"level": "logicNode",
|
|
98
|
-
"id": "33256d408d884097b323011c2370e266",
|
|
99
|
-
"ideVersion": "1.7",
|
|
100
|
-
"editable": true,
|
|
101
|
-
"parentId": "aa42994f526d49bd84b6aaf0d61e1d12",
|
|
102
|
-
"parentAttr": "right",
|
|
103
|
-
"logicId": "cc92674d56654c6d993d6d9d37b7bd01",
|
|
104
|
-
"label": "调用接口",
|
|
105
|
-
"folded": false,
|
|
106
|
-
"type": "CallInterface",
|
|
107
|
-
"params": [
|
|
108
|
-
{
|
|
109
|
-
"level": "param",
|
|
110
|
-
"id": "09b8e40fb516475cbd59663a061a5e35",
|
|
111
|
-
"ideVersion": "1.7",
|
|
112
|
-
"editable": true,
|
|
113
|
-
"parentId": "33256d408d884097b323011c2370e266",
|
|
114
|
-
"parentAttr": "params",
|
|
115
|
-
"logicId": "ea2e4cab41e340d3998635ebdaaad528",
|
|
116
|
-
"folded": false,
|
|
117
|
-
"_posIndex": 0,
|
|
118
|
-
"type": "CallInterParam",
|
|
119
|
-
"callInterParam": "#/ea2e4cab41e340d3998635ebdaaad528/1a55900dd4664214851cb73be274988e",
|
|
120
|
-
"callInterParamValue": {
|
|
121
|
-
"level": "expressionNode",
|
|
122
|
-
"id": "17dfabd489004201b0575c5404c4e2aa",
|
|
123
|
-
"ideVersion": "1.7",
|
|
124
|
-
"editable": true,
|
|
125
|
-
"parentId": "09b8e40fb516475cbd59663a061a5e35",
|
|
126
|
-
"parentAttr": "callInterParamValue",
|
|
127
|
-
"logicId": "cc92674d56654c6d993d6d9d37b7bd01",
|
|
128
|
-
"folded": false,
|
|
129
|
-
"type": "Identifier",
|
|
130
|
-
"code": "ID_d35bb3808b314c198e84644cf43062ab",
|
|
131
|
-
"name": "params",
|
|
132
|
-
"schemaRef": "d35bb3808b314c198e84644cf43062ab"
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
],
|
|
136
|
-
"interfaceKey": "#/38fb7087-77d8-42f5-8be9-2416e39d4622/e307ce22-952c-400e-be9d-898368db52e0"
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
"level": "logicNode",
|
|
141
|
-
"id": "36e9947a30114928b0509afad7bf273a",
|
|
142
|
-
"ideVersion": "1.7",
|
|
143
|
-
"editable": true,
|
|
144
|
-
"parentId": "aa42994f526d49bd84b6aaf0d61e1d12",
|
|
145
|
-
"logicId": "cc92674d56654c6d993d6d9d37b7bd01",
|
|
146
|
-
"label": "结束",
|
|
147
|
-
"folded": false,
|
|
148
|
-
"type": "End"
|
|
149
|
-
}
|
|
150
|
-
],
|
|
151
|
-
"playgroundId": "a4693dffb9d3487ba5b361c6ac8f0cee",
|
|
152
|
-
"playground": []
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"level": "logic",
|
|
156
|
-
"id": "e737249c4bf84bcb82dbac17d1911155",
|
|
157
|
-
"createdTime": 1628752964666,
|
|
158
|
-
"ideVersion": "1.7",
|
|
159
|
-
"editable": true,
|
|
160
|
-
"name": "remove",
|
|
161
|
-
"moduleId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
162
|
-
"moduleType": "view",
|
|
163
|
-
"params": [
|
|
164
|
-
{
|
|
165
|
-
"level": "param",
|
|
166
|
-
"id": "4a6c929e50c0447984f6bf85b0c5543c",
|
|
167
|
-
"ideVersion": "1.7",
|
|
168
|
-
"editable": true,
|
|
169
|
-
"type": "Identifier",
|
|
170
|
-
"code": "ID_4a6c929e50c0447984f6bf85b0c5543c",
|
|
171
|
-
"name": "event",
|
|
172
|
-
"_posIndex": 0,
|
|
173
|
-
"schema": {
|
|
174
|
-
"id": "c17995aa-7780-4027-b64b-d75c3200ec0d",
|
|
175
|
-
"typeKey": "#/basicTypes/String",
|
|
176
|
-
"type": "string",
|
|
177
|
-
"format": ""
|
|
178
|
-
}
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
"level": "param",
|
|
182
|
-
"id": "5b7819b70bb24b5fbd9f799f9df149c7",
|
|
183
|
-
"ideVersion": "1.7",
|
|
184
|
-
"editable": true,
|
|
185
|
-
"type": "Identifier",
|
|
186
|
-
"code": "ID_5b7819b70bb24b5fbd9f799f9df149c7",
|
|
187
|
-
"name": "scope",
|
|
188
|
-
"_posIndex": 1,
|
|
189
|
-
"schema": {
|
|
190
|
-
"typeKey": "#/genericTypes/ScopeOf",
|
|
191
|
-
"type": "genericType",
|
|
192
|
-
"typeInstantiation": {
|
|
193
|
-
"typeName": "ScopeOf",
|
|
194
|
-
"typeParams": [
|
|
195
|
-
{
|
|
196
|
-
"typeParamValue": {
|
|
197
|
-
"$ref": "#/38fb7087-77d8-42f5-8be9-2416e39d4622/e22d1d38f9034c2c913d3480ca84d41d",
|
|
198
|
-
"typeKey": "#/38fb7087-77d8-42f5-8be9-2416e39d4622/e22d1d38f9034c2c913d3480ca84d41d"
|
|
199
|
-
},
|
|
200
|
-
"type": "typeParam",
|
|
201
|
-
"typeParamName": "T"
|
|
202
|
-
}
|
|
203
|
-
]
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
],
|
|
208
|
-
"returns": [],
|
|
209
|
-
"variables": [],
|
|
210
|
-
"body": [
|
|
211
|
-
{
|
|
212
|
-
"level": "logicNode",
|
|
213
|
-
"id": "e93d27a1cc364d4baff1cceb8927e46f",
|
|
214
|
-
"ideVersion": "1.7",
|
|
215
|
-
"editable": true,
|
|
216
|
-
"logicId": "e737249c4bf84bcb82dbac17d1911155",
|
|
217
|
-
"label": "开始",
|
|
218
|
-
"folded": false,
|
|
219
|
-
"type": "Start"
|
|
220
|
-
},
|
|
221
|
-
{
|
|
222
|
-
"level": "logicNode",
|
|
223
|
-
"id": "832149f7857d4b73be9142f3c419f3e2",
|
|
224
|
-
"ideVersion": "1.7",
|
|
225
|
-
"editable": true,
|
|
226
|
-
"parentId": "e93d27a1cc364d4baff1cceb8927e46f",
|
|
227
|
-
"logicId": "e737249c4bf84bcb82dbac17d1911155",
|
|
228
|
-
"label": "调用接口",
|
|
229
|
-
"folded": false,
|
|
230
|
-
"type": "CallInterface",
|
|
231
|
-
"params": [
|
|
232
|
-
{
|
|
233
|
-
"level": "param",
|
|
234
|
-
"id": "5c4a39c7dcaf4782baa9414d30ccac42",
|
|
235
|
-
"ideVersion": "1.7",
|
|
236
|
-
"editable": true,
|
|
237
|
-
"parentId": "832149f7857d4b73be9142f3c419f3e2",
|
|
238
|
-
"parentAttr": "params",
|
|
239
|
-
"logicId": "e737249c4bf84bcb82dbac17d1911155",
|
|
240
|
-
"folded": false,
|
|
241
|
-
"_posIndex": 0,
|
|
242
|
-
"type": "CallInterParam",
|
|
243
|
-
"callInterParam": "#/e882b04b9865485f901c03b1df5491ce",
|
|
244
|
-
"callInterParamValue": {
|
|
245
|
-
"level": "expressionNode",
|
|
246
|
-
"id": "a3de3459bb334ecc8f4f65b0f2402c1a",
|
|
247
|
-
"ideVersion": "1.7",
|
|
248
|
-
"editable": true,
|
|
249
|
-
"parentId": "5c4a39c7dcaf4782baa9414d30ccac42",
|
|
250
|
-
"parentAttr": "callInterParamValue",
|
|
251
|
-
"logicId": "e737249c4bf84bcb82dbac17d1911155",
|
|
252
|
-
"folded": false,
|
|
253
|
-
"type": "MemberExpression",
|
|
254
|
-
"object": {
|
|
255
|
-
"level": "expressionNode",
|
|
256
|
-
"type": "MemberExpression",
|
|
257
|
-
"object": {
|
|
258
|
-
"level": "expressionNode",
|
|
259
|
-
"type": "MemberExpression",
|
|
260
|
-
"object": {
|
|
261
|
-
"level": "expressionNode",
|
|
262
|
-
"type": "Identifier",
|
|
263
|
-
"code": "ID_5b7819b70bb24b5fbd9f799f9df149c7",
|
|
264
|
-
"schemaRef": "5b7819b70bb24b5fbd9f799f9df149c7"
|
|
265
|
-
},
|
|
266
|
-
"property": {
|
|
267
|
-
"level": "expressionNode",
|
|
268
|
-
"type": "Identifier",
|
|
269
|
-
"name": "item"
|
|
270
|
-
}
|
|
271
|
-
},
|
|
272
|
-
"property": {
|
|
273
|
-
"level": "expressionNode",
|
|
274
|
-
"type": "Identifier",
|
|
275
|
-
"code": "ID_943de1e73cfd40d5a2c6e563ac1e44d0",
|
|
276
|
-
"schemaRef": "943de1e73cfd40d5a2c6e563ac1e44d0"
|
|
277
|
-
}
|
|
278
|
-
},
|
|
279
|
-
"property": {
|
|
280
|
-
"level": "expressionNode",
|
|
281
|
-
"type": "Identifier",
|
|
282
|
-
"code": "ID_652f0947b8374748aa146aa6f6cd9bff",
|
|
283
|
-
"schemaRef": "652f0947b8374748aa146aa6f6cd9bff"
|
|
284
|
-
}
|
|
285
|
-
},
|
|
286
|
-
"name": ""
|
|
287
|
-
}
|
|
288
|
-
],
|
|
289
|
-
"interfaceKey": "#/38fb7087-77d8-42f5-8be9-2416e39d4622/e4535f1ff8474d77b10e1fb83c8616f2"
|
|
290
|
-
},
|
|
291
|
-
{
|
|
292
|
-
"level": "logicNode",
|
|
293
|
-
"id": "852090ea678f40a8a6e96f627e8a584b",
|
|
294
|
-
"ideVersion": "1.7",
|
|
295
|
-
"editable": true,
|
|
296
|
-
"parentId": "832149f7857d4b73be9142f3c419f3e2",
|
|
297
|
-
"logicId": "e737249c4bf84bcb82dbac17d1911155",
|
|
298
|
-
"label": "调用逻辑",
|
|
299
|
-
"folded": false,
|
|
300
|
-
"type": "CallLogic",
|
|
301
|
-
"params": [],
|
|
302
|
-
"calleeCode": "$refs.ID_c4d1d06d486c4da1922b56a4a6340999.reload",
|
|
303
|
-
"callee": ""
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"level": "logicNode",
|
|
307
|
-
"id": "cba38c1a59c043eebcbbce703d7732a0",
|
|
308
|
-
"ideVersion": "1.7",
|
|
309
|
-
"editable": true,
|
|
310
|
-
"parentId": "852090ea678f40a8a6e96f627e8a584b",
|
|
311
|
-
"logicId": "e737249c4bf84bcb82dbac17d1911155",
|
|
312
|
-
"label": "结束",
|
|
313
|
-
"folded": false,
|
|
314
|
-
"type": "End"
|
|
315
|
-
}
|
|
316
|
-
],
|
|
317
|
-
"playgroundId": "429ea524bd9f450098e22773925f699c",
|
|
318
|
-
"playground": []
|
|
319
|
-
}
|
|
320
|
-
],
|
|
321
|
-
"params": [],
|
|
322
|
-
"variables": [],
|
|
323
|
-
"lifecycles": []
|
|
324
|
-
},
|
|
325
|
-
"$html": {
|
|
326
|
-
"level": "element",
|
|
327
|
-
"id": "7c49ced2d7b749e9b856921415c9a6c5",
|
|
328
|
-
"ideVersion": "1.7",
|
|
329
|
-
"editable": true,
|
|
330
|
-
"type": 0,
|
|
331
|
-
"tag": "u-linear-layout",
|
|
332
|
-
"attrList": [
|
|
333
|
-
{
|
|
334
|
-
"level": "attr",
|
|
335
|
-
"id": "48d8badb2e0d42ee8b82a4706fc31af1",
|
|
336
|
-
"ideVersion": "1.7",
|
|
337
|
-
"editable": true,
|
|
338
|
-
"type": "string",
|
|
339
|
-
"model": false,
|
|
340
|
-
"sync": false,
|
|
341
|
-
"name": "direction",
|
|
342
|
-
"value": "vertical"
|
|
343
|
-
}
|
|
344
|
-
],
|
|
345
|
-
"eventList": [],
|
|
346
|
-
"directiveList": [],
|
|
347
|
-
"children": [
|
|
348
|
-
{
|
|
349
|
-
"level": "element",
|
|
350
|
-
"id": "59adca76ac944cc693ed17c04f7eb313",
|
|
351
|
-
"ideVersion": "1.7",
|
|
352
|
-
"editable": true,
|
|
353
|
-
"type": 0,
|
|
354
|
-
"tag": "div",
|
|
355
|
-
"attrList": [],
|
|
356
|
-
"eventList": [],
|
|
357
|
-
"directiveList": [],
|
|
358
|
-
"children": [
|
|
359
|
-
{
|
|
360
|
-
"level": "element",
|
|
361
|
-
"id": "f6e7214d2a9e43428d8eafd13a2c9e7f",
|
|
362
|
-
"ideVersion": "1.7",
|
|
363
|
-
"editable": true,
|
|
364
|
-
"type": 0,
|
|
365
|
-
"tag": "u-text",
|
|
366
|
-
"attrList": [
|
|
367
|
-
{
|
|
368
|
-
"level": "attr",
|
|
369
|
-
"id": "6f13ac0629794c40929c34ba79aa695c",
|
|
370
|
-
"ideVersion": "1.7",
|
|
371
|
-
"editable": true,
|
|
372
|
-
"type": "string",
|
|
373
|
-
"model": false,
|
|
374
|
-
"sync": false,
|
|
375
|
-
"name": "text",
|
|
376
|
-
"value": "view2页面的内容"
|
|
377
|
-
}
|
|
378
|
-
],
|
|
379
|
-
"eventList": [],
|
|
380
|
-
"directiveList": [],
|
|
381
|
-
"children": []
|
|
382
|
-
}
|
|
383
|
-
]
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
"level": "element",
|
|
387
|
-
"id": "c4d1d06d486c4da1922b56a4a6340999",
|
|
388
|
-
"ideVersion": "1.7",
|
|
389
|
-
"editable": true,
|
|
390
|
-
"type": 0,
|
|
391
|
-
"tag": "u-table-view",
|
|
392
|
-
"name": "tableView",
|
|
393
|
-
"attrList": [
|
|
394
|
-
{
|
|
395
|
-
"level": "attr",
|
|
396
|
-
"id": "694f05a8f573473a9c87dd19edad2c52",
|
|
397
|
-
"createdTime": 1628752964733,
|
|
398
|
-
"ideVersion": "1.7",
|
|
399
|
-
"editable": true,
|
|
400
|
-
"type": "dynamic",
|
|
401
|
-
"model": false,
|
|
402
|
-
"sync": false,
|
|
403
|
-
"name": "data-source",
|
|
404
|
-
"value": "",
|
|
405
|
-
"expression": {
|
|
406
|
-
"id": "3b15ad34b94d44eb8a4a46f845e19372",
|
|
407
|
-
"level": "expressionNode",
|
|
408
|
-
"type": "Identifier",
|
|
409
|
-
"editable": true,
|
|
410
|
-
"name": "load",
|
|
411
|
-
"schemaRef": "#/cc92674d56654c6d993d6d9d37b7bd01",
|
|
412
|
-
"code": "ID_cc92674d56654c6d993d6d9d37b7bd01",
|
|
413
|
-
"folded": false
|
|
414
|
-
},
|
|
415
|
-
"elementId": "c4d1d06d486c4da1922b56a4a6340999"
|
|
416
|
-
},
|
|
417
|
-
{
|
|
418
|
-
"level": "attr",
|
|
419
|
-
"id": "b92d6c8044014fc6a24a596f7f5a1445",
|
|
420
|
-
"createdTime": 1628752964734,
|
|
421
|
-
"ideVersion": "1.7",
|
|
422
|
-
"editable": true,
|
|
423
|
-
"type": "static",
|
|
424
|
-
"model": false,
|
|
425
|
-
"sync": false,
|
|
426
|
-
"name": "pageable",
|
|
427
|
-
"value": "true",
|
|
428
|
-
"expression": null,
|
|
429
|
-
"elementId": "c4d1d06d486c4da1922b56a4a6340999"
|
|
430
|
-
},
|
|
431
|
-
{
|
|
432
|
-
"level": "attr",
|
|
433
|
-
"id": "28995de316944527bea4c58374ca0697",
|
|
434
|
-
"createdTime": 1628752964734,
|
|
435
|
-
"ideVersion": "1.7",
|
|
436
|
-
"editable": true,
|
|
437
|
-
"type": "static",
|
|
438
|
-
"model": false,
|
|
439
|
-
"sync": false,
|
|
440
|
-
"name": "remote-paging",
|
|
441
|
-
"value": "true",
|
|
442
|
-
"expression": null,
|
|
443
|
-
"elementId": "c4d1d06d486c4da1922b56a4a6340999"
|
|
444
|
-
},
|
|
445
|
-
{
|
|
446
|
-
"level": "attr",
|
|
447
|
-
"id": "1a91e229fe96470089ca869610287975",
|
|
448
|
-
"createdTime": 1628752964734,
|
|
449
|
-
"ideVersion": "1.7",
|
|
450
|
-
"editable": true,
|
|
451
|
-
"type": "string",
|
|
452
|
-
"model": false,
|
|
453
|
-
"sync": false,
|
|
454
|
-
"name": "data-schema",
|
|
455
|
-
"value": "#/38fb7087-77d8-42f5-8be9-2416e39d4622/e22d1d38f9034c2c913d3480ca84d41d",
|
|
456
|
-
"expression": null,
|
|
457
|
-
"elementId": "c4d1d06d486c4da1922b56a4a6340999"
|
|
458
|
-
}
|
|
459
|
-
],
|
|
460
|
-
"eventList": [],
|
|
461
|
-
"directiveList": [],
|
|
462
|
-
"slotTarget": null,
|
|
463
|
-
"slotScope": null,
|
|
464
|
-
"staticClass": null,
|
|
465
|
-
"staticStyle": null,
|
|
466
|
-
"parentId": "7c49ced2d7b749e9b856921415c9a6c5",
|
|
467
|
-
"_posIndex": 1,
|
|
468
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
469
|
-
"children": [
|
|
470
|
-
{
|
|
471
|
-
"level": "element",
|
|
472
|
-
"id": "cf14c3692acb47e38c42d428421ddb32",
|
|
473
|
-
"ideVersion": "1.7",
|
|
474
|
-
"editable": true,
|
|
475
|
-
"type": 0,
|
|
476
|
-
"tag": "u-table-view-column",
|
|
477
|
-
"name": null,
|
|
478
|
-
"attrList": [
|
|
479
|
-
{
|
|
480
|
-
"level": "attr",
|
|
481
|
-
"id": "439333561aec488daa94faf27a7a58e6",
|
|
482
|
-
"createdTime": 1628752964737,
|
|
483
|
-
"ideVersion": "1.7",
|
|
484
|
-
"editable": true,
|
|
485
|
-
"type": "string",
|
|
486
|
-
"model": false,
|
|
487
|
-
"sync": false,
|
|
488
|
-
"name": "type",
|
|
489
|
-
"value": "index",
|
|
490
|
-
"expression": null,
|
|
491
|
-
"elementId": "cf14c3692acb47e38c42d428421ddb32"
|
|
492
|
-
},
|
|
493
|
-
{
|
|
494
|
-
"level": "attr",
|
|
495
|
-
"id": "70a3aa5a5d5140c4b3e554408e46a698",
|
|
496
|
-
"createdTime": 1628752964737,
|
|
497
|
-
"ideVersion": "1.7",
|
|
498
|
-
"editable": true,
|
|
499
|
-
"type": "string",
|
|
500
|
-
"model": false,
|
|
501
|
-
"sync": false,
|
|
502
|
-
"name": "width",
|
|
503
|
-
"value": "60",
|
|
504
|
-
"expression": null,
|
|
505
|
-
"elementId": "cf14c3692acb47e38c42d428421ddb32"
|
|
506
|
-
},
|
|
507
|
-
{
|
|
508
|
-
"level": "attr",
|
|
509
|
-
"id": "06202bcd0456432da7455af38fe83007",
|
|
510
|
-
"createdTime": 1628752964737,
|
|
511
|
-
"ideVersion": "1.7",
|
|
512
|
-
"editable": true,
|
|
513
|
-
"type": "string",
|
|
514
|
-
"model": false,
|
|
515
|
-
"sync": false,
|
|
516
|
-
"name": "title",
|
|
517
|
-
"value": "序号",
|
|
518
|
-
"expression": null,
|
|
519
|
-
"elementId": "cf14c3692acb47e38c42d428421ddb32"
|
|
520
|
-
}
|
|
521
|
-
],
|
|
522
|
-
"eventList": [],
|
|
523
|
-
"directiveList": [],
|
|
524
|
-
"slotTarget": null,
|
|
525
|
-
"slotScope": null,
|
|
526
|
-
"staticClass": null,
|
|
527
|
-
"staticStyle": null,
|
|
528
|
-
"parentId": null,
|
|
529
|
-
"_posIndex": 0,
|
|
530
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
531
|
-
"children": []
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
"level": "element",
|
|
535
|
-
"id": "0c39dbf5f6ea4d38844d86ba28bd98fd",
|
|
536
|
-
"ideVersion": "1.7",
|
|
537
|
-
"editable": true,
|
|
538
|
-
"type": 0,
|
|
539
|
-
"tag": "u-table-view-column",
|
|
540
|
-
"name": null,
|
|
541
|
-
"attrList": [
|
|
542
|
-
{
|
|
543
|
-
"level": "attr",
|
|
544
|
-
"id": "55999078d03f42f5a29d719ebf4a635c",
|
|
545
|
-
"createdTime": 1628752964741,
|
|
546
|
-
"ideVersion": "1.7",
|
|
547
|
-
"editable": true,
|
|
548
|
-
"type": "string",
|
|
549
|
-
"model": false,
|
|
550
|
-
"sync": false,
|
|
551
|
-
"name": "title",
|
|
552
|
-
"value": "发票名称",
|
|
553
|
-
"expression": null,
|
|
554
|
-
"elementId": "0c39dbf5f6ea4d38844d86ba28bd98fd"
|
|
555
|
-
},
|
|
556
|
-
{
|
|
557
|
-
"level": "attr",
|
|
558
|
-
"id": "40d459addb18426d98b94535d3c89a54",
|
|
559
|
-
"createdTime": 1628752964741,
|
|
560
|
-
"ideVersion": "1.7",
|
|
561
|
-
"editable": true,
|
|
562
|
-
"type": "string",
|
|
563
|
-
"model": false,
|
|
564
|
-
"sync": false,
|
|
565
|
-
"name": "field",
|
|
566
|
-
"value": "name",
|
|
567
|
-
"expression": null,
|
|
568
|
-
"elementId": "0c39dbf5f6ea4d38844d86ba28bd98fd"
|
|
569
|
-
}
|
|
570
|
-
],
|
|
571
|
-
"eventList": [],
|
|
572
|
-
"directiveList": [],
|
|
573
|
-
"slotTarget": null,
|
|
574
|
-
"slotScope": null,
|
|
575
|
-
"staticClass": null,
|
|
576
|
-
"staticStyle": null,
|
|
577
|
-
"parentId": null,
|
|
578
|
-
"_posIndex": 1,
|
|
579
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
580
|
-
"children": [
|
|
581
|
-
{
|
|
582
|
-
"level": "element",
|
|
583
|
-
"id": "676c8d479e474747907ba9b0f65a9c6e",
|
|
584
|
-
"ideVersion": "1.7",
|
|
585
|
-
"editable": true,
|
|
586
|
-
"type": 0,
|
|
587
|
-
"tag": "template",
|
|
588
|
-
"name": null,
|
|
589
|
-
"attrList": [],
|
|
590
|
-
"eventList": [],
|
|
591
|
-
"directiveList": [],
|
|
592
|
-
"slotTarget": "cell",
|
|
593
|
-
"slotScope": "scope",
|
|
594
|
-
"staticClass": null,
|
|
595
|
-
"staticStyle": null,
|
|
596
|
-
"parentId": null,
|
|
597
|
-
"_posIndex": 0,
|
|
598
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
599
|
-
"children": [
|
|
600
|
-
{
|
|
601
|
-
"level": "element",
|
|
602
|
-
"id": "5744a9295afc43b1b4965b2780b8c78d",
|
|
603
|
-
"ideVersion": "1.7",
|
|
604
|
-
"editable": true,
|
|
605
|
-
"type": 0,
|
|
606
|
-
"tag": "u-linear-layout",
|
|
607
|
-
"name": null,
|
|
608
|
-
"attrList": [
|
|
609
|
-
{
|
|
610
|
-
"level": "attr",
|
|
611
|
-
"id": "96f63867709e4bc692728ec432f65b43",
|
|
612
|
-
"createdTime": 1628752964747,
|
|
613
|
-
"ideVersion": "1.7",
|
|
614
|
-
"editable": true,
|
|
615
|
-
"type": "string",
|
|
616
|
-
"model": false,
|
|
617
|
-
"sync": false,
|
|
618
|
-
"name": "gap",
|
|
619
|
-
"value": "small",
|
|
620
|
-
"expression": null,
|
|
621
|
-
"elementId": "5744a9295afc43b1b4965b2780b8c78d"
|
|
622
|
-
}
|
|
623
|
-
],
|
|
624
|
-
"eventList": [],
|
|
625
|
-
"directiveList": [],
|
|
626
|
-
"slotTarget": null,
|
|
627
|
-
"slotScope": null,
|
|
628
|
-
"staticClass": null,
|
|
629
|
-
"staticStyle": null,
|
|
630
|
-
"parentId": null,
|
|
631
|
-
"_posIndex": 0,
|
|
632
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
633
|
-
"children": [
|
|
634
|
-
{
|
|
635
|
-
"level": "element",
|
|
636
|
-
"id": "e728f3f8d10a46419811ca64df97e6ec",
|
|
637
|
-
"ideVersion": "1.7",
|
|
638
|
-
"editable": true,
|
|
639
|
-
"type": 0,
|
|
640
|
-
"tag": "u-text",
|
|
641
|
-
"name": null,
|
|
642
|
-
"attrList": [
|
|
643
|
-
{
|
|
644
|
-
"level": "attr",
|
|
645
|
-
"id": "3db3158f8413460ea9a6938c946447f4",
|
|
646
|
-
"createdTime": 1628752964751,
|
|
647
|
-
"ideVersion": "1.7",
|
|
648
|
-
"editable": true,
|
|
649
|
-
"type": "dynamic",
|
|
650
|
-
"model": false,
|
|
651
|
-
"sync": false,
|
|
652
|
-
"name": "text",
|
|
653
|
-
"value": "",
|
|
654
|
-
"expression": {
|
|
655
|
-
"level": "expressionNode",
|
|
656
|
-
"ideVersion": "1.7",
|
|
657
|
-
"editable": true,
|
|
658
|
-
"folded": false,
|
|
659
|
-
"type": "MemberExpression",
|
|
660
|
-
"object": {
|
|
661
|
-
"level": "expressionNode",
|
|
662
|
-
"type": "MemberExpression",
|
|
663
|
-
"object": {
|
|
664
|
-
"level": "expressionNode",
|
|
665
|
-
"type": "MemberExpression",
|
|
666
|
-
"object": {
|
|
667
|
-
"level": "expressionNode",
|
|
668
|
-
"type": "Identifier",
|
|
669
|
-
"name": "scope"
|
|
670
|
-
},
|
|
671
|
-
"property": {
|
|
672
|
-
"level": "expressionNode",
|
|
673
|
-
"type": "Identifier",
|
|
674
|
-
"name": "item"
|
|
675
|
-
}
|
|
676
|
-
},
|
|
677
|
-
"property": {
|
|
678
|
-
"level": "expressionNode",
|
|
679
|
-
"type": "Identifier",
|
|
680
|
-
"code": "ID_943de1e73cfd40d5a2c6e563ac1e44d0",
|
|
681
|
-
"schemaRef": "943de1e73cfd40d5a2c6e563ac1e44d0"
|
|
682
|
-
}
|
|
683
|
-
},
|
|
684
|
-
"property": {
|
|
685
|
-
"level": "expressionNode",
|
|
686
|
-
"type": "Identifier",
|
|
687
|
-
"code": "ID_a32dc165f6644e86ab7739aefcc8306b",
|
|
688
|
-
"schemaRef": "a32dc165f6644e86ab7739aefcc8306b"
|
|
689
|
-
}
|
|
690
|
-
},
|
|
691
|
-
"elementId": "e728f3f8d10a46419811ca64df97e6ec"
|
|
692
|
-
}
|
|
693
|
-
],
|
|
694
|
-
"eventList": [],
|
|
695
|
-
"directiveList": [],
|
|
696
|
-
"slotTarget": null,
|
|
697
|
-
"slotScope": null,
|
|
698
|
-
"staticClass": null,
|
|
699
|
-
"staticStyle": null,
|
|
700
|
-
"parentId": null,
|
|
701
|
-
"_posIndex": 0,
|
|
702
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
703
|
-
"children": [],
|
|
704
|
-
"events": {}
|
|
705
|
-
}
|
|
706
|
-
]
|
|
707
|
-
}
|
|
708
|
-
]
|
|
709
|
-
}
|
|
710
|
-
]
|
|
711
|
-
},
|
|
712
|
-
{
|
|
713
|
-
"level": "element",
|
|
714
|
-
"id": "7c957e9b0c1a459086ffa2a826f8f89b",
|
|
715
|
-
"ideVersion": "1.7",
|
|
716
|
-
"editable": true,
|
|
717
|
-
"type": 0,
|
|
718
|
-
"tag": "u-table-view-column",
|
|
719
|
-
"name": null,
|
|
720
|
-
"attrList": [
|
|
721
|
-
{
|
|
722
|
-
"level": "attr",
|
|
723
|
-
"id": "77b0163335244e77b6158208d9ed3df2",
|
|
724
|
-
"createdTime": 1628752964761,
|
|
725
|
-
"ideVersion": "1.7",
|
|
726
|
-
"editable": true,
|
|
727
|
-
"type": "string",
|
|
728
|
-
"model": false,
|
|
729
|
-
"sync": false,
|
|
730
|
-
"name": "title",
|
|
731
|
-
"value": "发票邮件",
|
|
732
|
-
"expression": null,
|
|
733
|
-
"elementId": "7c957e9b0c1a459086ffa2a826f8f89b"
|
|
734
|
-
},
|
|
735
|
-
{
|
|
736
|
-
"level": "attr",
|
|
737
|
-
"id": "afe9f673d50141558b100dfbe5c5ccb7",
|
|
738
|
-
"createdTime": 1628752964761,
|
|
739
|
-
"ideVersion": "1.7",
|
|
740
|
-
"editable": true,
|
|
741
|
-
"type": "string",
|
|
742
|
-
"model": false,
|
|
743
|
-
"sync": false,
|
|
744
|
-
"name": "field",
|
|
745
|
-
"value": "email",
|
|
746
|
-
"expression": null,
|
|
747
|
-
"elementId": "7c957e9b0c1a459086ffa2a826f8f89b"
|
|
748
|
-
}
|
|
749
|
-
],
|
|
750
|
-
"eventList": [],
|
|
751
|
-
"directiveList": [],
|
|
752
|
-
"slotTarget": null,
|
|
753
|
-
"slotScope": null,
|
|
754
|
-
"staticClass": null,
|
|
755
|
-
"staticStyle": null,
|
|
756
|
-
"parentId": null,
|
|
757
|
-
"_posIndex": 2,
|
|
758
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
759
|
-
"children": [
|
|
760
|
-
{
|
|
761
|
-
"level": "element",
|
|
762
|
-
"id": "34c551578ef34673ad041284e11e0db6",
|
|
763
|
-
"ideVersion": "1.7",
|
|
764
|
-
"editable": true,
|
|
765
|
-
"type": 0,
|
|
766
|
-
"tag": "template",
|
|
767
|
-
"name": null,
|
|
768
|
-
"attrList": [],
|
|
769
|
-
"eventList": [],
|
|
770
|
-
"directiveList": [],
|
|
771
|
-
"slotTarget": "cell",
|
|
772
|
-
"slotScope": "scope",
|
|
773
|
-
"staticClass": null,
|
|
774
|
-
"staticStyle": null,
|
|
775
|
-
"parentId": null,
|
|
776
|
-
"_posIndex": 0,
|
|
777
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
778
|
-
"children": [
|
|
779
|
-
{
|
|
780
|
-
"level": "element",
|
|
781
|
-
"id": "f1b75381b09f4b4baae819fbec735ceb",
|
|
782
|
-
"ideVersion": "1.7",
|
|
783
|
-
"editable": true,
|
|
784
|
-
"type": 0,
|
|
785
|
-
"tag": "u-linear-layout",
|
|
786
|
-
"name": null,
|
|
787
|
-
"attrList": [
|
|
788
|
-
{
|
|
789
|
-
"level": "attr",
|
|
790
|
-
"id": "e61fabeb7eae46cebbe819dc6e51e3b9",
|
|
791
|
-
"createdTime": 1628752964768,
|
|
792
|
-
"ideVersion": "1.7",
|
|
793
|
-
"editable": true,
|
|
794
|
-
"type": "string",
|
|
795
|
-
"model": false,
|
|
796
|
-
"sync": false,
|
|
797
|
-
"name": "gap",
|
|
798
|
-
"value": "small",
|
|
799
|
-
"expression": null,
|
|
800
|
-
"elementId": "f1b75381b09f4b4baae819fbec735ceb"
|
|
801
|
-
}
|
|
802
|
-
],
|
|
803
|
-
"eventList": [],
|
|
804
|
-
"directiveList": [],
|
|
805
|
-
"slotTarget": null,
|
|
806
|
-
"slotScope": null,
|
|
807
|
-
"staticClass": null,
|
|
808
|
-
"staticStyle": null,
|
|
809
|
-
"parentId": null,
|
|
810
|
-
"_posIndex": 0,
|
|
811
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
812
|
-
"children": [
|
|
813
|
-
{
|
|
814
|
-
"level": "element",
|
|
815
|
-
"id": "b880d37205d44f86b6b3fb1e8e3a63e5",
|
|
816
|
-
"ideVersion": "1.7",
|
|
817
|
-
"editable": true,
|
|
818
|
-
"type": 0,
|
|
819
|
-
"tag": "u-text",
|
|
820
|
-
"name": null,
|
|
821
|
-
"attrList": [
|
|
822
|
-
{
|
|
823
|
-
"level": "attr",
|
|
824
|
-
"id": "44d5bc80bb78434787b126b2c7326876",
|
|
825
|
-
"createdTime": 1628752964771,
|
|
826
|
-
"ideVersion": "1.7",
|
|
827
|
-
"editable": true,
|
|
828
|
-
"type": "dynamic",
|
|
829
|
-
"model": false,
|
|
830
|
-
"sync": false,
|
|
831
|
-
"name": "text",
|
|
832
|
-
"value": "",
|
|
833
|
-
"expression": {
|
|
834
|
-
"level": "expressionNode",
|
|
835
|
-
"ideVersion": "1.7",
|
|
836
|
-
"editable": true,
|
|
837
|
-
"folded": false,
|
|
838
|
-
"type": "MemberExpression",
|
|
839
|
-
"object": {
|
|
840
|
-
"level": "expressionNode",
|
|
841
|
-
"type": "MemberExpression",
|
|
842
|
-
"object": {
|
|
843
|
-
"level": "expressionNode",
|
|
844
|
-
"type": "MemberExpression",
|
|
845
|
-
"object": {
|
|
846
|
-
"level": "expressionNode",
|
|
847
|
-
"type": "Identifier",
|
|
848
|
-
"name": "scope"
|
|
849
|
-
},
|
|
850
|
-
"property": {
|
|
851
|
-
"level": "expressionNode",
|
|
852
|
-
"type": "Identifier",
|
|
853
|
-
"name": "item"
|
|
854
|
-
}
|
|
855
|
-
},
|
|
856
|
-
"property": {
|
|
857
|
-
"level": "expressionNode",
|
|
858
|
-
"type": "Identifier",
|
|
859
|
-
"code": "ID_943de1e73cfd40d5a2c6e563ac1e44d0",
|
|
860
|
-
"schemaRef": "943de1e73cfd40d5a2c6e563ac1e44d0"
|
|
861
|
-
}
|
|
862
|
-
},
|
|
863
|
-
"property": {
|
|
864
|
-
"level": "expressionNode",
|
|
865
|
-
"type": "Identifier",
|
|
866
|
-
"code": "ID_1bac331a7ece49daaccbeb529b0523ee",
|
|
867
|
-
"schemaRef": "1bac331a7ece49daaccbeb529b0523ee"
|
|
868
|
-
}
|
|
869
|
-
},
|
|
870
|
-
"elementId": "b880d37205d44f86b6b3fb1e8e3a63e5"
|
|
871
|
-
}
|
|
872
|
-
],
|
|
873
|
-
"eventList": [],
|
|
874
|
-
"directiveList": [],
|
|
875
|
-
"slotTarget": null,
|
|
876
|
-
"slotScope": null,
|
|
877
|
-
"staticClass": null,
|
|
878
|
-
"staticStyle": null,
|
|
879
|
-
"parentId": null,
|
|
880
|
-
"_posIndex": 0,
|
|
881
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
882
|
-
"children": [],
|
|
883
|
-
"events": {}
|
|
884
|
-
}
|
|
885
|
-
]
|
|
886
|
-
}
|
|
887
|
-
]
|
|
888
|
-
}
|
|
889
|
-
]
|
|
890
|
-
},
|
|
891
|
-
{
|
|
892
|
-
"level": "element",
|
|
893
|
-
"id": "2704964858aa44928bb8a3c2515f3141",
|
|
894
|
-
"ideVersion": "1.7",
|
|
895
|
-
"editable": true,
|
|
896
|
-
"type": 0,
|
|
897
|
-
"tag": "u-table-view-column",
|
|
898
|
-
"name": null,
|
|
899
|
-
"attrList": [
|
|
900
|
-
{
|
|
901
|
-
"level": "attr",
|
|
902
|
-
"id": "8fcafab1e1384383a4454cf7026bb11b",
|
|
903
|
-
"createdTime": 1628752964781,
|
|
904
|
-
"ideVersion": "1.7",
|
|
905
|
-
"editable": true,
|
|
906
|
-
"type": "string",
|
|
907
|
-
"model": false,
|
|
908
|
-
"sync": false,
|
|
909
|
-
"name": "title",
|
|
910
|
-
"value": "发票类型",
|
|
911
|
-
"expression": null,
|
|
912
|
-
"elementId": "2704964858aa44928bb8a3c2515f3141"
|
|
913
|
-
},
|
|
914
|
-
{
|
|
915
|
-
"level": "attr",
|
|
916
|
-
"id": "d7388a661cb74661bdbf18d20e0f00bc",
|
|
917
|
-
"createdTime": 1628752964781,
|
|
918
|
-
"ideVersion": "1.7",
|
|
919
|
-
"editable": true,
|
|
920
|
-
"type": "string",
|
|
921
|
-
"model": false,
|
|
922
|
-
"sync": false,
|
|
923
|
-
"name": "field",
|
|
924
|
-
"value": "type",
|
|
925
|
-
"expression": null,
|
|
926
|
-
"elementId": "2704964858aa44928bb8a3c2515f3141"
|
|
927
|
-
}
|
|
928
|
-
],
|
|
929
|
-
"eventList": [],
|
|
930
|
-
"directiveList": [],
|
|
931
|
-
"slotTarget": null,
|
|
932
|
-
"slotScope": null,
|
|
933
|
-
"staticClass": null,
|
|
934
|
-
"staticStyle": null,
|
|
935
|
-
"parentId": null,
|
|
936
|
-
"_posIndex": 3,
|
|
937
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
938
|
-
"children": [
|
|
939
|
-
{
|
|
940
|
-
"level": "element",
|
|
941
|
-
"id": "adcc1e6b94344786b06aca82bd5fbae2",
|
|
942
|
-
"ideVersion": "1.7",
|
|
943
|
-
"editable": true,
|
|
944
|
-
"type": 0,
|
|
945
|
-
"tag": "template",
|
|
946
|
-
"name": null,
|
|
947
|
-
"attrList": [],
|
|
948
|
-
"eventList": [],
|
|
949
|
-
"directiveList": [],
|
|
950
|
-
"slotTarget": "cell",
|
|
951
|
-
"slotScope": "scope",
|
|
952
|
-
"staticClass": null,
|
|
953
|
-
"staticStyle": null,
|
|
954
|
-
"parentId": null,
|
|
955
|
-
"_posIndex": 0,
|
|
956
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
957
|
-
"children": [
|
|
958
|
-
{
|
|
959
|
-
"level": "element",
|
|
960
|
-
"id": "3053993f0f984904bde39ecc31e1e493",
|
|
961
|
-
"ideVersion": "1.7",
|
|
962
|
-
"editable": true,
|
|
963
|
-
"type": 0,
|
|
964
|
-
"tag": "u-linear-layout",
|
|
965
|
-
"name": null,
|
|
966
|
-
"attrList": [
|
|
967
|
-
{
|
|
968
|
-
"level": "attr",
|
|
969
|
-
"id": "fcb8be04811c4b51872ded3ba23a08d8",
|
|
970
|
-
"createdTime": 1628752964788,
|
|
971
|
-
"ideVersion": "1.7",
|
|
972
|
-
"editable": true,
|
|
973
|
-
"type": "string",
|
|
974
|
-
"model": false,
|
|
975
|
-
"sync": false,
|
|
976
|
-
"name": "gap",
|
|
977
|
-
"value": "small",
|
|
978
|
-
"expression": null,
|
|
979
|
-
"elementId": "3053993f0f984904bde39ecc31e1e493"
|
|
980
|
-
}
|
|
981
|
-
],
|
|
982
|
-
"eventList": [],
|
|
983
|
-
"directiveList": [],
|
|
984
|
-
"slotTarget": null,
|
|
985
|
-
"slotScope": null,
|
|
986
|
-
"staticClass": null,
|
|
987
|
-
"staticStyle": null,
|
|
988
|
-
"parentId": null,
|
|
989
|
-
"_posIndex": 0,
|
|
990
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
991
|
-
"children": [
|
|
992
|
-
{
|
|
993
|
-
"level": "element",
|
|
994
|
-
"id": "814a3f1aef554f2494343134c68a8d3a",
|
|
995
|
-
"ideVersion": "1.7",
|
|
996
|
-
"editable": true,
|
|
997
|
-
"type": 0,
|
|
998
|
-
"tag": "u-text",
|
|
999
|
-
"name": null,
|
|
1000
|
-
"attrList": [
|
|
1001
|
-
{
|
|
1002
|
-
"level": "attr",
|
|
1003
|
-
"id": "2fafb26dcdb8482aab3466466c949bb4",
|
|
1004
|
-
"createdTime": 1628752964792,
|
|
1005
|
-
"ideVersion": "1.7",
|
|
1006
|
-
"editable": true,
|
|
1007
|
-
"type": "dynamic",
|
|
1008
|
-
"model": false,
|
|
1009
|
-
"sync": false,
|
|
1010
|
-
"name": "text",
|
|
1011
|
-
"value": "",
|
|
1012
|
-
"expression": {
|
|
1013
|
-
"level": "expressionNode",
|
|
1014
|
-
"id": "fb23b1a50bd34e1c9b476ae7071f5b44",
|
|
1015
|
-
"ideVersion": "1.7",
|
|
1016
|
-
"editable": true,
|
|
1017
|
-
"label": "内置函数",
|
|
1018
|
-
"folded": false,
|
|
1019
|
-
"type": "BuiltInFunction",
|
|
1020
|
-
"value": "Enum",
|
|
1021
|
-
"builtInFuncParams": [
|
|
1022
|
-
{
|
|
1023
|
-
"level": "expressionNode",
|
|
1024
|
-
"id": "be530e2236e2445cb2c1186c9196aac7",
|
|
1025
|
-
"ideVersion": "1.7",
|
|
1026
|
-
"editable": true,
|
|
1027
|
-
"parentId": "fb23b1a50bd34e1c9b476ae7071f5b44",
|
|
1028
|
-
"parentAttr": "builtInFuncParams",
|
|
1029
|
-
"logicId": "",
|
|
1030
|
-
"folded": false,
|
|
1031
|
-
"_posIndex": 0,
|
|
1032
|
-
"type": "BuiltInFuncParam",
|
|
1033
|
-
"builtInFuncParamValue": {
|
|
1034
|
-
"level": "expressionNode",
|
|
1035
|
-
"id": "c500587cc222436897e8135ad107a4b7",
|
|
1036
|
-
"ideVersion": "1.7",
|
|
1037
|
-
"editable": true,
|
|
1038
|
-
"parentId": "be530e2236e2445cb2c1186c9196aac7",
|
|
1039
|
-
"parentAttr": "builtInFuncParamValue",
|
|
1040
|
-
"logicId": "",
|
|
1041
|
-
"folded": false,
|
|
1042
|
-
"type": "StringLiteral",
|
|
1043
|
-
"code": "ID_a6a7f72320a641ea9793c44d1d8700fb",
|
|
1044
|
-
"value": "ID_a6a7f72320a641ea9793c44d1d8700fb"
|
|
1045
|
-
},
|
|
1046
|
-
"name": ""
|
|
1047
|
-
},
|
|
1048
|
-
{
|
|
1049
|
-
"level": "expressionNode",
|
|
1050
|
-
"id": "9018bcf983754a36b24bef25495f862c",
|
|
1051
|
-
"ideVersion": "1.7",
|
|
1052
|
-
"editable": true,
|
|
1053
|
-
"parentId": "fb23b1a50bd34e1c9b476ae7071f5b44",
|
|
1054
|
-
"parentAttr": "builtInFuncParams",
|
|
1055
|
-
"logicId": "",
|
|
1056
|
-
"folded": false,
|
|
1057
|
-
"_posIndex": 1,
|
|
1058
|
-
"type": "BuiltInFuncParam",
|
|
1059
|
-
"builtInFuncParamValue": {
|
|
1060
|
-
"level": "expressionNode",
|
|
1061
|
-
"ideVersion": "1.7",
|
|
1062
|
-
"editable": true,
|
|
1063
|
-
"parentAttr": "builtInFuncParamValue",
|
|
1064
|
-
"folded": false,
|
|
1065
|
-
"type": "MemberExpression",
|
|
1066
|
-
"object": {
|
|
1067
|
-
"level": "expressionNode",
|
|
1068
|
-
"type": "MemberExpression",
|
|
1069
|
-
"object": {
|
|
1070
|
-
"level": "expressionNode",
|
|
1071
|
-
"type": "MemberExpression",
|
|
1072
|
-
"object": {
|
|
1073
|
-
"level": "expressionNode",
|
|
1074
|
-
"type": "Identifier",
|
|
1075
|
-
"name": "scope"
|
|
1076
|
-
},
|
|
1077
|
-
"property": {
|
|
1078
|
-
"level": "expressionNode",
|
|
1079
|
-
"type": "Identifier",
|
|
1080
|
-
"name": "item"
|
|
1081
|
-
}
|
|
1082
|
-
},
|
|
1083
|
-
"property": {
|
|
1084
|
-
"level": "expressionNode",
|
|
1085
|
-
"type": "Identifier",
|
|
1086
|
-
"code": "ID_943de1e73cfd40d5a2c6e563ac1e44d0",
|
|
1087
|
-
"schemaRef": "943de1e73cfd40d5a2c6e563ac1e44d0"
|
|
1088
|
-
}
|
|
1089
|
-
},
|
|
1090
|
-
"property": {
|
|
1091
|
-
"level": "expressionNode",
|
|
1092
|
-
"type": "Identifier",
|
|
1093
|
-
"code": "ID_03c22429119d4ef5bff4a33f88d4a783",
|
|
1094
|
-
"schemaRef": "03c22429119d4ef5bff4a33f88d4a783"
|
|
1095
|
-
}
|
|
1096
|
-
},
|
|
1097
|
-
"name": ""
|
|
1098
|
-
}
|
|
1099
|
-
],
|
|
1100
|
-
"calleeCode": "Enum"
|
|
1101
|
-
},
|
|
1102
|
-
"elementId": "814a3f1aef554f2494343134c68a8d3a"
|
|
1103
|
-
}
|
|
1104
|
-
],
|
|
1105
|
-
"eventList": [],
|
|
1106
|
-
"directiveList": [],
|
|
1107
|
-
"slotTarget": null,
|
|
1108
|
-
"slotScope": null,
|
|
1109
|
-
"staticClass": null,
|
|
1110
|
-
"staticStyle": null,
|
|
1111
|
-
"parentId": null,
|
|
1112
|
-
"_posIndex": 0,
|
|
1113
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1114
|
-
"children": [],
|
|
1115
|
-
"events": {}
|
|
1116
|
-
}
|
|
1117
|
-
]
|
|
1118
|
-
}
|
|
1119
|
-
]
|
|
1120
|
-
}
|
|
1121
|
-
]
|
|
1122
|
-
},
|
|
1123
|
-
{
|
|
1124
|
-
"level": "element",
|
|
1125
|
-
"id": "43e53e1229fa4fe8ba5e91359a48621a",
|
|
1126
|
-
"ideVersion": "1.7",
|
|
1127
|
-
"editable": true,
|
|
1128
|
-
"type": 0,
|
|
1129
|
-
"tag": "u-table-view-column",
|
|
1130
|
-
"name": null,
|
|
1131
|
-
"attrList": [
|
|
1132
|
-
{
|
|
1133
|
-
"level": "attr",
|
|
1134
|
-
"id": "3d97d8c888824e8cbfb925f129d432f3",
|
|
1135
|
-
"createdTime": 1628752964809,
|
|
1136
|
-
"ideVersion": "1.7",
|
|
1137
|
-
"editable": true,
|
|
1138
|
-
"type": "string",
|
|
1139
|
-
"model": false,
|
|
1140
|
-
"sync": false,
|
|
1141
|
-
"name": "title",
|
|
1142
|
-
"value": "发票状态",
|
|
1143
|
-
"expression": null,
|
|
1144
|
-
"elementId": "43e53e1229fa4fe8ba5e91359a48621a"
|
|
1145
|
-
},
|
|
1146
|
-
{
|
|
1147
|
-
"level": "attr",
|
|
1148
|
-
"id": "f56626112b574a7b9dbcece5f0190f10",
|
|
1149
|
-
"createdTime": 1628752964809,
|
|
1150
|
-
"ideVersion": "1.7",
|
|
1151
|
-
"editable": true,
|
|
1152
|
-
"type": "string",
|
|
1153
|
-
"model": false,
|
|
1154
|
-
"sync": false,
|
|
1155
|
-
"name": "field",
|
|
1156
|
-
"value": "status",
|
|
1157
|
-
"expression": null,
|
|
1158
|
-
"elementId": "43e53e1229fa4fe8ba5e91359a48621a"
|
|
1159
|
-
}
|
|
1160
|
-
],
|
|
1161
|
-
"eventList": [],
|
|
1162
|
-
"directiveList": [],
|
|
1163
|
-
"slotTarget": null,
|
|
1164
|
-
"slotScope": null,
|
|
1165
|
-
"staticClass": null,
|
|
1166
|
-
"staticStyle": null,
|
|
1167
|
-
"parentId": null,
|
|
1168
|
-
"_posIndex": 4,
|
|
1169
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1170
|
-
"children": [
|
|
1171
|
-
{
|
|
1172
|
-
"level": "element",
|
|
1173
|
-
"id": "a67b72159c344f3b9cbeb26a8ba48764",
|
|
1174
|
-
"ideVersion": "1.7",
|
|
1175
|
-
"editable": true,
|
|
1176
|
-
"type": 0,
|
|
1177
|
-
"tag": "template",
|
|
1178
|
-
"name": null,
|
|
1179
|
-
"attrList": [],
|
|
1180
|
-
"eventList": [],
|
|
1181
|
-
"directiveList": [],
|
|
1182
|
-
"slotTarget": "cell",
|
|
1183
|
-
"slotScope": "scope",
|
|
1184
|
-
"staticClass": null,
|
|
1185
|
-
"staticStyle": null,
|
|
1186
|
-
"parentId": null,
|
|
1187
|
-
"_posIndex": 0,
|
|
1188
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1189
|
-
"children": [
|
|
1190
|
-
{
|
|
1191
|
-
"level": "element",
|
|
1192
|
-
"id": "ac78e6566e8e4725ab6ed9286ca43b27",
|
|
1193
|
-
"ideVersion": "1.7",
|
|
1194
|
-
"editable": true,
|
|
1195
|
-
"type": 0,
|
|
1196
|
-
"tag": "u-linear-layout",
|
|
1197
|
-
"name": null,
|
|
1198
|
-
"attrList": [
|
|
1199
|
-
{
|
|
1200
|
-
"level": "attr",
|
|
1201
|
-
"id": "ce236390f80e4580983938a5b64897cb",
|
|
1202
|
-
"createdTime": 1628752964816,
|
|
1203
|
-
"ideVersion": "1.7",
|
|
1204
|
-
"editable": true,
|
|
1205
|
-
"type": "string",
|
|
1206
|
-
"model": false,
|
|
1207
|
-
"sync": false,
|
|
1208
|
-
"name": "gap",
|
|
1209
|
-
"value": "small",
|
|
1210
|
-
"expression": null,
|
|
1211
|
-
"elementId": "ac78e6566e8e4725ab6ed9286ca43b27"
|
|
1212
|
-
}
|
|
1213
|
-
],
|
|
1214
|
-
"eventList": [],
|
|
1215
|
-
"directiveList": [],
|
|
1216
|
-
"slotTarget": null,
|
|
1217
|
-
"slotScope": null,
|
|
1218
|
-
"staticClass": null,
|
|
1219
|
-
"staticStyle": null,
|
|
1220
|
-
"parentId": null,
|
|
1221
|
-
"_posIndex": 0,
|
|
1222
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1223
|
-
"children": [
|
|
1224
|
-
{
|
|
1225
|
-
"level": "element",
|
|
1226
|
-
"id": "c0a08cc3ff0945bc99a27a55e9361474",
|
|
1227
|
-
"ideVersion": "1.7",
|
|
1228
|
-
"editable": true,
|
|
1229
|
-
"type": 0,
|
|
1230
|
-
"tag": "u-text",
|
|
1231
|
-
"name": null,
|
|
1232
|
-
"attrList": [
|
|
1233
|
-
{
|
|
1234
|
-
"level": "attr",
|
|
1235
|
-
"id": "f3fea3a0db5c4b65b44c8308c6ec68d9",
|
|
1236
|
-
"createdTime": 1628752964820,
|
|
1237
|
-
"ideVersion": "1.7",
|
|
1238
|
-
"editable": true,
|
|
1239
|
-
"type": "dynamic",
|
|
1240
|
-
"model": false,
|
|
1241
|
-
"sync": false,
|
|
1242
|
-
"name": "text",
|
|
1243
|
-
"value": "",
|
|
1244
|
-
"expression": {
|
|
1245
|
-
"level": "expressionNode",
|
|
1246
|
-
"id": "35e8be03bade45109d7547a957c1bdc4",
|
|
1247
|
-
"ideVersion": "1.7",
|
|
1248
|
-
"editable": true,
|
|
1249
|
-
"label": "内置函数",
|
|
1250
|
-
"folded": false,
|
|
1251
|
-
"type": "BuiltInFunction",
|
|
1252
|
-
"value": "Enum",
|
|
1253
|
-
"builtInFuncParams": [
|
|
1254
|
-
{
|
|
1255
|
-
"level": "expressionNode",
|
|
1256
|
-
"id": "c7d6f31ac53f4c17afe6960cf93157db",
|
|
1257
|
-
"ideVersion": "1.7",
|
|
1258
|
-
"editable": true,
|
|
1259
|
-
"parentId": "35e8be03bade45109d7547a957c1bdc4",
|
|
1260
|
-
"parentAttr": "builtInFuncParams",
|
|
1261
|
-
"logicId": "",
|
|
1262
|
-
"folded": false,
|
|
1263
|
-
"_posIndex": 0,
|
|
1264
|
-
"type": "BuiltInFuncParam",
|
|
1265
|
-
"builtInFuncParamValue": {
|
|
1266
|
-
"level": "expressionNode",
|
|
1267
|
-
"id": "761019ba6a444ab68457720e99aaf1c5",
|
|
1268
|
-
"ideVersion": "1.7",
|
|
1269
|
-
"editable": true,
|
|
1270
|
-
"parentId": "c7d6f31ac53f4c17afe6960cf93157db",
|
|
1271
|
-
"parentAttr": "builtInFuncParamValue",
|
|
1272
|
-
"logicId": "",
|
|
1273
|
-
"folded": false,
|
|
1274
|
-
"type": "StringLiteral",
|
|
1275
|
-
"code": "ID_f0f77a47f8ac4ad39f4847146387d73e",
|
|
1276
|
-
"value": "ID_f0f77a47f8ac4ad39f4847146387d73e"
|
|
1277
|
-
},
|
|
1278
|
-
"name": ""
|
|
1279
|
-
},
|
|
1280
|
-
{
|
|
1281
|
-
"level": "expressionNode",
|
|
1282
|
-
"id": "f0278e8366044cdb81ad8644d37d8fe9",
|
|
1283
|
-
"ideVersion": "1.7",
|
|
1284
|
-
"editable": true,
|
|
1285
|
-
"parentId": "35e8be03bade45109d7547a957c1bdc4",
|
|
1286
|
-
"parentAttr": "builtInFuncParams",
|
|
1287
|
-
"logicId": "",
|
|
1288
|
-
"folded": false,
|
|
1289
|
-
"_posIndex": 1,
|
|
1290
|
-
"type": "BuiltInFuncParam",
|
|
1291
|
-
"builtInFuncParamValue": {
|
|
1292
|
-
"level": "expressionNode",
|
|
1293
|
-
"ideVersion": "1.7",
|
|
1294
|
-
"editable": true,
|
|
1295
|
-
"parentAttr": "builtInFuncParamValue",
|
|
1296
|
-
"folded": false,
|
|
1297
|
-
"type": "MemberExpression",
|
|
1298
|
-
"object": {
|
|
1299
|
-
"level": "expressionNode",
|
|
1300
|
-
"type": "MemberExpression",
|
|
1301
|
-
"object": {
|
|
1302
|
-
"level": "expressionNode",
|
|
1303
|
-
"type": "MemberExpression",
|
|
1304
|
-
"object": {
|
|
1305
|
-
"level": "expressionNode",
|
|
1306
|
-
"type": "Identifier",
|
|
1307
|
-
"name": "scope"
|
|
1308
|
-
},
|
|
1309
|
-
"property": {
|
|
1310
|
-
"level": "expressionNode",
|
|
1311
|
-
"type": "Identifier",
|
|
1312
|
-
"name": "item"
|
|
1313
|
-
}
|
|
1314
|
-
},
|
|
1315
|
-
"property": {
|
|
1316
|
-
"level": "expressionNode",
|
|
1317
|
-
"type": "Identifier",
|
|
1318
|
-
"code": "ID_943de1e73cfd40d5a2c6e563ac1e44d0",
|
|
1319
|
-
"schemaRef": "943de1e73cfd40d5a2c6e563ac1e44d0"
|
|
1320
|
-
}
|
|
1321
|
-
},
|
|
1322
|
-
"property": {
|
|
1323
|
-
"level": "expressionNode",
|
|
1324
|
-
"type": "Identifier",
|
|
1325
|
-
"code": "ID_d5a9c772e45e4a64b9f1777d153442f4",
|
|
1326
|
-
"schemaRef": "d5a9c772e45e4a64b9f1777d153442f4"
|
|
1327
|
-
}
|
|
1328
|
-
},
|
|
1329
|
-
"name": ""
|
|
1330
|
-
}
|
|
1331
|
-
],
|
|
1332
|
-
"calleeCode": "Enum"
|
|
1333
|
-
},
|
|
1334
|
-
"elementId": "c0a08cc3ff0945bc99a27a55e9361474"
|
|
1335
|
-
}
|
|
1336
|
-
],
|
|
1337
|
-
"eventList": [],
|
|
1338
|
-
"directiveList": [],
|
|
1339
|
-
"slotTarget": null,
|
|
1340
|
-
"slotScope": null,
|
|
1341
|
-
"staticClass": null,
|
|
1342
|
-
"staticStyle": null,
|
|
1343
|
-
"parentId": null,
|
|
1344
|
-
"_posIndex": 0,
|
|
1345
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1346
|
-
"children": [],
|
|
1347
|
-
"events": {}
|
|
1348
|
-
}
|
|
1349
|
-
]
|
|
1350
|
-
}
|
|
1351
|
-
]
|
|
1352
|
-
}
|
|
1353
|
-
]
|
|
1354
|
-
},
|
|
1355
|
-
{
|
|
1356
|
-
"level": "element",
|
|
1357
|
-
"id": "8fb2b983165f4669bb1f86ce39028a4c",
|
|
1358
|
-
"ideVersion": "1.7",
|
|
1359
|
-
"editable": true,
|
|
1360
|
-
"type": 0,
|
|
1361
|
-
"tag": "u-table-view-column",
|
|
1362
|
-
"name": null,
|
|
1363
|
-
"attrList": [
|
|
1364
|
-
{
|
|
1365
|
-
"level": "attr",
|
|
1366
|
-
"id": "191e237f43d64504b6f60ccd60408733",
|
|
1367
|
-
"createdTime": 1628752964837,
|
|
1368
|
-
"ideVersion": "1.7",
|
|
1369
|
-
"editable": true,
|
|
1370
|
-
"type": "string",
|
|
1371
|
-
"model": false,
|
|
1372
|
-
"sync": false,
|
|
1373
|
-
"name": "title",
|
|
1374
|
-
"value": "开票日期",
|
|
1375
|
-
"expression": null,
|
|
1376
|
-
"elementId": "8fb2b983165f4669bb1f86ce39028a4c"
|
|
1377
|
-
},
|
|
1378
|
-
{
|
|
1379
|
-
"level": "attr",
|
|
1380
|
-
"id": "b1025f380b344590a9005aa1dbc836b4",
|
|
1381
|
-
"createdTime": 1628752964837,
|
|
1382
|
-
"ideVersion": "1.7",
|
|
1383
|
-
"editable": true,
|
|
1384
|
-
"type": "string",
|
|
1385
|
-
"model": false,
|
|
1386
|
-
"sync": false,
|
|
1387
|
-
"name": "field",
|
|
1388
|
-
"value": "createdDate",
|
|
1389
|
-
"expression": null,
|
|
1390
|
-
"elementId": "8fb2b983165f4669bb1f86ce39028a4c"
|
|
1391
|
-
}
|
|
1392
|
-
],
|
|
1393
|
-
"eventList": [],
|
|
1394
|
-
"directiveList": [],
|
|
1395
|
-
"slotTarget": null,
|
|
1396
|
-
"slotScope": null,
|
|
1397
|
-
"staticClass": null,
|
|
1398
|
-
"staticStyle": null,
|
|
1399
|
-
"parentId": null,
|
|
1400
|
-
"_posIndex": 5,
|
|
1401
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1402
|
-
"children": [
|
|
1403
|
-
{
|
|
1404
|
-
"level": "element",
|
|
1405
|
-
"id": "94212c3b159844dea9a8e6797946b242",
|
|
1406
|
-
"ideVersion": "1.7",
|
|
1407
|
-
"editable": true,
|
|
1408
|
-
"type": 0,
|
|
1409
|
-
"tag": "template",
|
|
1410
|
-
"name": null,
|
|
1411
|
-
"attrList": [],
|
|
1412
|
-
"eventList": [],
|
|
1413
|
-
"directiveList": [],
|
|
1414
|
-
"slotTarget": "cell",
|
|
1415
|
-
"slotScope": "scope",
|
|
1416
|
-
"staticClass": null,
|
|
1417
|
-
"staticStyle": null,
|
|
1418
|
-
"parentId": null,
|
|
1419
|
-
"_posIndex": 0,
|
|
1420
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1421
|
-
"children": [
|
|
1422
|
-
{
|
|
1423
|
-
"level": "element",
|
|
1424
|
-
"id": "8552bd8914c64a25b17d5683ccf6f64a",
|
|
1425
|
-
"ideVersion": "1.7",
|
|
1426
|
-
"editable": true,
|
|
1427
|
-
"type": 0,
|
|
1428
|
-
"tag": "u-linear-layout",
|
|
1429
|
-
"name": null,
|
|
1430
|
-
"attrList": [
|
|
1431
|
-
{
|
|
1432
|
-
"level": "attr",
|
|
1433
|
-
"id": "0176425bff48430db17a16d1036ea618",
|
|
1434
|
-
"createdTime": 1628752964844,
|
|
1435
|
-
"ideVersion": "1.7",
|
|
1436
|
-
"editable": true,
|
|
1437
|
-
"type": "string",
|
|
1438
|
-
"model": false,
|
|
1439
|
-
"sync": false,
|
|
1440
|
-
"name": "gap",
|
|
1441
|
-
"value": "small",
|
|
1442
|
-
"expression": null,
|
|
1443
|
-
"elementId": "8552bd8914c64a25b17d5683ccf6f64a"
|
|
1444
|
-
}
|
|
1445
|
-
],
|
|
1446
|
-
"eventList": [],
|
|
1447
|
-
"directiveList": [],
|
|
1448
|
-
"slotTarget": null,
|
|
1449
|
-
"slotScope": null,
|
|
1450
|
-
"staticClass": null,
|
|
1451
|
-
"staticStyle": null,
|
|
1452
|
-
"parentId": null,
|
|
1453
|
-
"_posIndex": 0,
|
|
1454
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1455
|
-
"children": [
|
|
1456
|
-
{
|
|
1457
|
-
"level": "element",
|
|
1458
|
-
"id": "da437c133c1942b2af9c0e49921b3225",
|
|
1459
|
-
"ideVersion": "1.7",
|
|
1460
|
-
"editable": true,
|
|
1461
|
-
"type": 0,
|
|
1462
|
-
"tag": "u-text",
|
|
1463
|
-
"name": null,
|
|
1464
|
-
"attrList": [
|
|
1465
|
-
{
|
|
1466
|
-
"level": "attr",
|
|
1467
|
-
"id": "25c3859ce8914ab2aa91667217ec2274",
|
|
1468
|
-
"createdTime": 1628752964847,
|
|
1469
|
-
"ideVersion": "1.7",
|
|
1470
|
-
"editable": true,
|
|
1471
|
-
"type": "dynamic",
|
|
1472
|
-
"model": false,
|
|
1473
|
-
"sync": false,
|
|
1474
|
-
"name": "text",
|
|
1475
|
-
"value": "",
|
|
1476
|
-
"expression": {
|
|
1477
|
-
"level": "expressionNode",
|
|
1478
|
-
"id": "bca1a1fd62794036a2e733fa1ab632c0",
|
|
1479
|
-
"ideVersion": "1.7",
|
|
1480
|
-
"editable": true,
|
|
1481
|
-
"label": "内置函数",
|
|
1482
|
-
"folded": false,
|
|
1483
|
-
"type": "BuiltInFunction",
|
|
1484
|
-
"value": "FormatDate",
|
|
1485
|
-
"builtInFuncParams": [
|
|
1486
|
-
{
|
|
1487
|
-
"level": "expressionNode",
|
|
1488
|
-
"id": "6222f4bac77742fcb72091e41bbcee7f",
|
|
1489
|
-
"ideVersion": "1.7",
|
|
1490
|
-
"editable": true,
|
|
1491
|
-
"parentId": "bca1a1fd62794036a2e733fa1ab632c0",
|
|
1492
|
-
"parentAttr": "builtInFuncParams",
|
|
1493
|
-
"logicId": "",
|
|
1494
|
-
"folded": false,
|
|
1495
|
-
"_posIndex": 0,
|
|
1496
|
-
"type": "BuiltInFuncParam",
|
|
1497
|
-
"builtInFuncParamValue": {
|
|
1498
|
-
"level": "expressionNode",
|
|
1499
|
-
"ideVersion": "1.7",
|
|
1500
|
-
"editable": true,
|
|
1501
|
-
"parentAttr": "builtInFuncParamValue",
|
|
1502
|
-
"folded": false,
|
|
1503
|
-
"type": "MemberExpression",
|
|
1504
|
-
"object": {
|
|
1505
|
-
"level": "expressionNode",
|
|
1506
|
-
"type": "MemberExpression",
|
|
1507
|
-
"object": {
|
|
1508
|
-
"level": "expressionNode",
|
|
1509
|
-
"type": "MemberExpression",
|
|
1510
|
-
"object": {
|
|
1511
|
-
"level": "expressionNode",
|
|
1512
|
-
"type": "Identifier",
|
|
1513
|
-
"name": "scope"
|
|
1514
|
-
},
|
|
1515
|
-
"property": {
|
|
1516
|
-
"level": "expressionNode",
|
|
1517
|
-
"type": "Identifier",
|
|
1518
|
-
"name": "item"
|
|
1519
|
-
}
|
|
1520
|
-
},
|
|
1521
|
-
"property": {
|
|
1522
|
-
"level": "expressionNode",
|
|
1523
|
-
"type": "Identifier",
|
|
1524
|
-
"code": "ID_943de1e73cfd40d5a2c6e563ac1e44d0",
|
|
1525
|
-
"schemaRef": "943de1e73cfd40d5a2c6e563ac1e44d0"
|
|
1526
|
-
}
|
|
1527
|
-
},
|
|
1528
|
-
"property": {
|
|
1529
|
-
"level": "expressionNode",
|
|
1530
|
-
"type": "Identifier",
|
|
1531
|
-
"code": "ID_35597ec7fa824b34b140bbcffd27b30f",
|
|
1532
|
-
"schemaRef": "35597ec7fa824b34b140bbcffd27b30f"
|
|
1533
|
-
}
|
|
1534
|
-
},
|
|
1535
|
-
"name": ""
|
|
1536
|
-
},
|
|
1537
|
-
{
|
|
1538
|
-
"level": "expressionNode",
|
|
1539
|
-
"id": "9fdea6ce83b147f59dacf21e62a6b472",
|
|
1540
|
-
"ideVersion": "1.7",
|
|
1541
|
-
"editable": true,
|
|
1542
|
-
"parentId": "bca1a1fd62794036a2e733fa1ab632c0",
|
|
1543
|
-
"parentAttr": "builtInFuncParams",
|
|
1544
|
-
"logicId": "",
|
|
1545
|
-
"folded": false,
|
|
1546
|
-
"_posIndex": 1,
|
|
1547
|
-
"type": "BuiltInFuncParam",
|
|
1548
|
-
"builtInFuncParamValue": {
|
|
1549
|
-
"level": "expressionNode",
|
|
1550
|
-
"id": "fcfef07759964bd79d0c7842afd637c1",
|
|
1551
|
-
"ideVersion": "1.7",
|
|
1552
|
-
"editable": true,
|
|
1553
|
-
"parentId": "9fdea6ce83b147f59dacf21e62a6b472",
|
|
1554
|
-
"parentAttr": "builtInFuncParamValue",
|
|
1555
|
-
"logicId": "",
|
|
1556
|
-
"folded": false,
|
|
1557
|
-
"type": "StringLiteral",
|
|
1558
|
-
"value": "YYYY-MM-DD"
|
|
1559
|
-
},
|
|
1560
|
-
"name": ""
|
|
1561
|
-
}
|
|
1562
|
-
],
|
|
1563
|
-
"calleeCode": "FormatDate"
|
|
1564
|
-
},
|
|
1565
|
-
"elementId": "da437c133c1942b2af9c0e49921b3225"
|
|
1566
|
-
}
|
|
1567
|
-
],
|
|
1568
|
-
"eventList": [],
|
|
1569
|
-
"directiveList": [],
|
|
1570
|
-
"slotTarget": null,
|
|
1571
|
-
"slotScope": null,
|
|
1572
|
-
"staticClass": null,
|
|
1573
|
-
"staticStyle": null,
|
|
1574
|
-
"parentId": null,
|
|
1575
|
-
"_posIndex": 0,
|
|
1576
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1577
|
-
"children": [],
|
|
1578
|
-
"events": {}
|
|
1579
|
-
}
|
|
1580
|
-
]
|
|
1581
|
-
}
|
|
1582
|
-
]
|
|
1583
|
-
}
|
|
1584
|
-
]
|
|
1585
|
-
},
|
|
1586
|
-
{
|
|
1587
|
-
"level": "element",
|
|
1588
|
-
"id": "cfe02c26f0c040189d44b628a75bb068",
|
|
1589
|
-
"ideVersion": "1.7",
|
|
1590
|
-
"editable": true,
|
|
1591
|
-
"type": 0,
|
|
1592
|
-
"tag": "u-table-view-column",
|
|
1593
|
-
"name": null,
|
|
1594
|
-
"attrList": [
|
|
1595
|
-
{
|
|
1596
|
-
"level": "attr",
|
|
1597
|
-
"id": "714ff0d2401b435e97b12780774a3351",
|
|
1598
|
-
"createdTime": 1628752964864,
|
|
1599
|
-
"ideVersion": "1.7",
|
|
1600
|
-
"editable": true,
|
|
1601
|
-
"type": "string",
|
|
1602
|
-
"model": false,
|
|
1603
|
-
"sync": false,
|
|
1604
|
-
"name": "title",
|
|
1605
|
-
"value": "附件",
|
|
1606
|
-
"expression": null,
|
|
1607
|
-
"elementId": "cfe02c26f0c040189d44b628a75bb068"
|
|
1608
|
-
},
|
|
1609
|
-
{
|
|
1610
|
-
"level": "attr",
|
|
1611
|
-
"id": "4dbe86c5faa840d39f0a7224011d6014",
|
|
1612
|
-
"createdTime": 1628752964864,
|
|
1613
|
-
"ideVersion": "1.7",
|
|
1614
|
-
"editable": true,
|
|
1615
|
-
"type": "string",
|
|
1616
|
-
"model": false,
|
|
1617
|
-
"sync": false,
|
|
1618
|
-
"name": "field",
|
|
1619
|
-
"value": "attachments",
|
|
1620
|
-
"expression": null,
|
|
1621
|
-
"elementId": "cfe02c26f0c040189d44b628a75bb068"
|
|
1622
|
-
}
|
|
1623
|
-
],
|
|
1624
|
-
"eventList": [],
|
|
1625
|
-
"directiveList": [],
|
|
1626
|
-
"slotTarget": null,
|
|
1627
|
-
"slotScope": null,
|
|
1628
|
-
"staticClass": null,
|
|
1629
|
-
"staticStyle": null,
|
|
1630
|
-
"parentId": null,
|
|
1631
|
-
"_posIndex": 6,
|
|
1632
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1633
|
-
"children": [
|
|
1634
|
-
{
|
|
1635
|
-
"level": "element",
|
|
1636
|
-
"id": "e03700bc7a2b4e3b9bcf2ab996ead410",
|
|
1637
|
-
"ideVersion": "1.7",
|
|
1638
|
-
"editable": true,
|
|
1639
|
-
"type": 0,
|
|
1640
|
-
"tag": "template",
|
|
1641
|
-
"name": null,
|
|
1642
|
-
"attrList": [],
|
|
1643
|
-
"eventList": [],
|
|
1644
|
-
"directiveList": [],
|
|
1645
|
-
"slotTarget": "cell",
|
|
1646
|
-
"slotScope": "scope",
|
|
1647
|
-
"staticClass": null,
|
|
1648
|
-
"staticStyle": null,
|
|
1649
|
-
"parentId": null,
|
|
1650
|
-
"_posIndex": 0,
|
|
1651
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1652
|
-
"children": [
|
|
1653
|
-
{
|
|
1654
|
-
"level": "element",
|
|
1655
|
-
"id": "c382fbada96444b7b565ca281bffa782",
|
|
1656
|
-
"ideVersion": "1.7",
|
|
1657
|
-
"editable": true,
|
|
1658
|
-
"type": 0,
|
|
1659
|
-
"tag": "u-linear-layout",
|
|
1660
|
-
"name": null,
|
|
1661
|
-
"attrList": [
|
|
1662
|
-
{
|
|
1663
|
-
"level": "attr",
|
|
1664
|
-
"id": "b41761593c3145328a770794214d288f",
|
|
1665
|
-
"createdTime": 1628752964871,
|
|
1666
|
-
"ideVersion": "1.7",
|
|
1667
|
-
"editable": true,
|
|
1668
|
-
"type": "string",
|
|
1669
|
-
"model": false,
|
|
1670
|
-
"sync": false,
|
|
1671
|
-
"name": "gap",
|
|
1672
|
-
"value": "small",
|
|
1673
|
-
"expression": null,
|
|
1674
|
-
"elementId": "c382fbada96444b7b565ca281bffa782"
|
|
1675
|
-
}
|
|
1676
|
-
],
|
|
1677
|
-
"eventList": [],
|
|
1678
|
-
"directiveList": [],
|
|
1679
|
-
"slotTarget": null,
|
|
1680
|
-
"slotScope": null,
|
|
1681
|
-
"staticClass": null,
|
|
1682
|
-
"staticStyle": null,
|
|
1683
|
-
"parentId": null,
|
|
1684
|
-
"_posIndex": 0,
|
|
1685
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1686
|
-
"children": [
|
|
1687
|
-
{
|
|
1688
|
-
"level": "element",
|
|
1689
|
-
"id": "a1142882e9014d2c901df0612e2a4ca2",
|
|
1690
|
-
"ideVersion": "1.7",
|
|
1691
|
-
"editable": true,
|
|
1692
|
-
"type": 0,
|
|
1693
|
-
"tag": "u-text",
|
|
1694
|
-
"name": null,
|
|
1695
|
-
"attrList": [
|
|
1696
|
-
{
|
|
1697
|
-
"level": "attr",
|
|
1698
|
-
"id": "8929dcb984af4a0880c3db0784df327a",
|
|
1699
|
-
"createdTime": 1628752964874,
|
|
1700
|
-
"ideVersion": "1.7",
|
|
1701
|
-
"editable": true,
|
|
1702
|
-
"type": "dynamic",
|
|
1703
|
-
"model": false,
|
|
1704
|
-
"sync": false,
|
|
1705
|
-
"name": "text",
|
|
1706
|
-
"value": "",
|
|
1707
|
-
"expression": {
|
|
1708
|
-
"level": "expressionNode",
|
|
1709
|
-
"ideVersion": "1.7",
|
|
1710
|
-
"editable": true,
|
|
1711
|
-
"folded": false,
|
|
1712
|
-
"type": "MemberExpression",
|
|
1713
|
-
"object": {
|
|
1714
|
-
"level": "expressionNode",
|
|
1715
|
-
"type": "MemberExpression",
|
|
1716
|
-
"object": {
|
|
1717
|
-
"level": "expressionNode",
|
|
1718
|
-
"type": "MemberExpression",
|
|
1719
|
-
"object": {
|
|
1720
|
-
"level": "expressionNode",
|
|
1721
|
-
"type": "Identifier",
|
|
1722
|
-
"name": "scope"
|
|
1723
|
-
},
|
|
1724
|
-
"property": {
|
|
1725
|
-
"level": "expressionNode",
|
|
1726
|
-
"type": "Identifier",
|
|
1727
|
-
"name": "item"
|
|
1728
|
-
}
|
|
1729
|
-
},
|
|
1730
|
-
"property": {
|
|
1731
|
-
"level": "expressionNode",
|
|
1732
|
-
"type": "Identifier",
|
|
1733
|
-
"code": "ID_943de1e73cfd40d5a2c6e563ac1e44d0",
|
|
1734
|
-
"schemaRef": "943de1e73cfd40d5a2c6e563ac1e44d0"
|
|
1735
|
-
}
|
|
1736
|
-
},
|
|
1737
|
-
"property": {
|
|
1738
|
-
"level": "expressionNode",
|
|
1739
|
-
"type": "Identifier",
|
|
1740
|
-
"code": "ID_df3cab14dac24159850042c46bc9ba45",
|
|
1741
|
-
"schemaRef": "df3cab14dac24159850042c46bc9ba45"
|
|
1742
|
-
}
|
|
1743
|
-
},
|
|
1744
|
-
"elementId": "a1142882e9014d2c901df0612e2a4ca2"
|
|
1745
|
-
}
|
|
1746
|
-
],
|
|
1747
|
-
"eventList": [],
|
|
1748
|
-
"directiveList": [],
|
|
1749
|
-
"slotTarget": null,
|
|
1750
|
-
"slotScope": null,
|
|
1751
|
-
"staticClass": null,
|
|
1752
|
-
"staticStyle": null,
|
|
1753
|
-
"parentId": null,
|
|
1754
|
-
"_posIndex": 0,
|
|
1755
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1756
|
-
"children": [],
|
|
1757
|
-
"events": {}
|
|
1758
|
-
}
|
|
1759
|
-
],
|
|
1760
|
-
"events": {}
|
|
1761
|
-
}
|
|
1762
|
-
]
|
|
1763
|
-
}
|
|
1764
|
-
]
|
|
1765
|
-
},
|
|
1766
|
-
{
|
|
1767
|
-
"level": "element",
|
|
1768
|
-
"id": "3dc0595c467241fdbecb79b99f9aa7ca",
|
|
1769
|
-
"ideVersion": "1.7",
|
|
1770
|
-
"editable": true,
|
|
1771
|
-
"type": 0,
|
|
1772
|
-
"tag": "u-table-view-column",
|
|
1773
|
-
"name": null,
|
|
1774
|
-
"attrList": [
|
|
1775
|
-
{
|
|
1776
|
-
"level": "attr",
|
|
1777
|
-
"id": "afb097431c7845eb8c8f495fa4a6d036",
|
|
1778
|
-
"createdTime": 1628752964884,
|
|
1779
|
-
"ideVersion": "1.7",
|
|
1780
|
-
"editable": true,
|
|
1781
|
-
"type": "string",
|
|
1782
|
-
"model": false,
|
|
1783
|
-
"sync": false,
|
|
1784
|
-
"name": "title",
|
|
1785
|
-
"value": "金额",
|
|
1786
|
-
"expression": null,
|
|
1787
|
-
"elementId": "3dc0595c467241fdbecb79b99f9aa7ca"
|
|
1788
|
-
},
|
|
1789
|
-
{
|
|
1790
|
-
"level": "attr",
|
|
1791
|
-
"id": "9edc196ebf3340d99a811afce52051e5",
|
|
1792
|
-
"createdTime": 1628752964884,
|
|
1793
|
-
"ideVersion": "1.7",
|
|
1794
|
-
"editable": true,
|
|
1795
|
-
"type": "string",
|
|
1796
|
-
"model": false,
|
|
1797
|
-
"sync": false,
|
|
1798
|
-
"name": "field",
|
|
1799
|
-
"value": "amount",
|
|
1800
|
-
"expression": null,
|
|
1801
|
-
"elementId": "3dc0595c467241fdbecb79b99f9aa7ca"
|
|
1802
|
-
}
|
|
1803
|
-
],
|
|
1804
|
-
"eventList": [],
|
|
1805
|
-
"directiveList": [],
|
|
1806
|
-
"slotTarget": null,
|
|
1807
|
-
"slotScope": null,
|
|
1808
|
-
"staticClass": null,
|
|
1809
|
-
"staticStyle": null,
|
|
1810
|
-
"parentId": null,
|
|
1811
|
-
"_posIndex": 7,
|
|
1812
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1813
|
-
"children": [
|
|
1814
|
-
{
|
|
1815
|
-
"level": "element",
|
|
1816
|
-
"id": "4f297f8ff52842a38c2db057a55357c9",
|
|
1817
|
-
"ideVersion": "1.7",
|
|
1818
|
-
"editable": true,
|
|
1819
|
-
"type": 0,
|
|
1820
|
-
"tag": "template",
|
|
1821
|
-
"name": null,
|
|
1822
|
-
"attrList": [],
|
|
1823
|
-
"eventList": [],
|
|
1824
|
-
"directiveList": [],
|
|
1825
|
-
"slotTarget": "cell",
|
|
1826
|
-
"slotScope": "scope",
|
|
1827
|
-
"staticClass": null,
|
|
1828
|
-
"staticStyle": null,
|
|
1829
|
-
"parentId": null,
|
|
1830
|
-
"_posIndex": 0,
|
|
1831
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1832
|
-
"children": [
|
|
1833
|
-
{
|
|
1834
|
-
"level": "element",
|
|
1835
|
-
"id": "aa1d8761b05c4a909d2411bc0d011a9b",
|
|
1836
|
-
"ideVersion": "1.7",
|
|
1837
|
-
"editable": true,
|
|
1838
|
-
"type": 0,
|
|
1839
|
-
"tag": "u-linear-layout",
|
|
1840
|
-
"name": null,
|
|
1841
|
-
"attrList": [
|
|
1842
|
-
{
|
|
1843
|
-
"level": "attr",
|
|
1844
|
-
"id": "8f0100e9f16b4c00a529daa61bc19cec",
|
|
1845
|
-
"createdTime": 1628752964891,
|
|
1846
|
-
"ideVersion": "1.7",
|
|
1847
|
-
"editable": true,
|
|
1848
|
-
"type": "string",
|
|
1849
|
-
"model": false,
|
|
1850
|
-
"sync": false,
|
|
1851
|
-
"name": "gap",
|
|
1852
|
-
"value": "small",
|
|
1853
|
-
"expression": null,
|
|
1854
|
-
"elementId": "aa1d8761b05c4a909d2411bc0d011a9b"
|
|
1855
|
-
}
|
|
1856
|
-
],
|
|
1857
|
-
"eventList": [],
|
|
1858
|
-
"directiveList": [],
|
|
1859
|
-
"slotTarget": null,
|
|
1860
|
-
"slotScope": null,
|
|
1861
|
-
"staticClass": null,
|
|
1862
|
-
"staticStyle": null,
|
|
1863
|
-
"parentId": null,
|
|
1864
|
-
"_posIndex": 0,
|
|
1865
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1866
|
-
"children": [
|
|
1867
|
-
{
|
|
1868
|
-
"level": "element",
|
|
1869
|
-
"id": "1cf5e77642d14046abe38566e5eadb41",
|
|
1870
|
-
"ideVersion": "1.7",
|
|
1871
|
-
"editable": true,
|
|
1872
|
-
"type": 0,
|
|
1873
|
-
"tag": "u-text",
|
|
1874
|
-
"name": null,
|
|
1875
|
-
"attrList": [
|
|
1876
|
-
{
|
|
1877
|
-
"level": "attr",
|
|
1878
|
-
"id": "e47927aab9974e339a7000a9150a0584",
|
|
1879
|
-
"createdTime": 1628752964894,
|
|
1880
|
-
"ideVersion": "1.7",
|
|
1881
|
-
"editable": true,
|
|
1882
|
-
"type": "dynamic",
|
|
1883
|
-
"model": false,
|
|
1884
|
-
"sync": false,
|
|
1885
|
-
"name": "text",
|
|
1886
|
-
"value": "",
|
|
1887
|
-
"expression": {
|
|
1888
|
-
"level": "expressionNode",
|
|
1889
|
-
"ideVersion": "1.7",
|
|
1890
|
-
"editable": true,
|
|
1891
|
-
"folded": false,
|
|
1892
|
-
"type": "MemberExpression",
|
|
1893
|
-
"object": {
|
|
1894
|
-
"level": "expressionNode",
|
|
1895
|
-
"type": "MemberExpression",
|
|
1896
|
-
"object": {
|
|
1897
|
-
"level": "expressionNode",
|
|
1898
|
-
"type": "MemberExpression",
|
|
1899
|
-
"object": {
|
|
1900
|
-
"level": "expressionNode",
|
|
1901
|
-
"type": "Identifier",
|
|
1902
|
-
"name": "scope"
|
|
1903
|
-
},
|
|
1904
|
-
"property": {
|
|
1905
|
-
"level": "expressionNode",
|
|
1906
|
-
"type": "Identifier",
|
|
1907
|
-
"name": "item"
|
|
1908
|
-
}
|
|
1909
|
-
},
|
|
1910
|
-
"property": {
|
|
1911
|
-
"level": "expressionNode",
|
|
1912
|
-
"type": "Identifier",
|
|
1913
|
-
"code": "ID_943de1e73cfd40d5a2c6e563ac1e44d0",
|
|
1914
|
-
"schemaRef": "943de1e73cfd40d5a2c6e563ac1e44d0"
|
|
1915
|
-
}
|
|
1916
|
-
},
|
|
1917
|
-
"property": {
|
|
1918
|
-
"level": "expressionNode",
|
|
1919
|
-
"type": "Identifier",
|
|
1920
|
-
"code": "ID_00a2989b927d457598d3e277ac6ec6ce",
|
|
1921
|
-
"schemaRef": "00a2989b927d457598d3e277ac6ec6ce"
|
|
1922
|
-
}
|
|
1923
|
-
},
|
|
1924
|
-
"elementId": "1cf5e77642d14046abe38566e5eadb41"
|
|
1925
|
-
}
|
|
1926
|
-
],
|
|
1927
|
-
"eventList": [],
|
|
1928
|
-
"directiveList": [],
|
|
1929
|
-
"slotTarget": null,
|
|
1930
|
-
"slotScope": null,
|
|
1931
|
-
"staticClass": null,
|
|
1932
|
-
"staticStyle": null,
|
|
1933
|
-
"parentId": null,
|
|
1934
|
-
"_posIndex": 0,
|
|
1935
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1936
|
-
"children": [],
|
|
1937
|
-
"events": {}
|
|
1938
|
-
}
|
|
1939
|
-
]
|
|
1940
|
-
}
|
|
1941
|
-
]
|
|
1942
|
-
}
|
|
1943
|
-
]
|
|
1944
|
-
},
|
|
1945
|
-
{
|
|
1946
|
-
"level": "element",
|
|
1947
|
-
"id": "443048dd54ad44ee85f026e387c1d21f",
|
|
1948
|
-
"ideVersion": "1.7",
|
|
1949
|
-
"editable": true,
|
|
1950
|
-
"type": 0,
|
|
1951
|
-
"tag": "u-table-view-column",
|
|
1952
|
-
"name": null,
|
|
1953
|
-
"attrList": [
|
|
1954
|
-
{
|
|
1955
|
-
"level": "attr",
|
|
1956
|
-
"id": "7d03e141d0bf455a944d7c01387c0dde",
|
|
1957
|
-
"createdTime": 1628752964904,
|
|
1958
|
-
"ideVersion": "1.7",
|
|
1959
|
-
"editable": true,
|
|
1960
|
-
"type": "string",
|
|
1961
|
-
"model": false,
|
|
1962
|
-
"sync": false,
|
|
1963
|
-
"name": "title",
|
|
1964
|
-
"value": "修改时间",
|
|
1965
|
-
"expression": null,
|
|
1966
|
-
"elementId": "443048dd54ad44ee85f026e387c1d21f"
|
|
1967
|
-
},
|
|
1968
|
-
{
|
|
1969
|
-
"level": "attr",
|
|
1970
|
-
"id": "fc7a7981f0db40db82de335dec19a12c",
|
|
1971
|
-
"createdTime": 1628752964904,
|
|
1972
|
-
"ideVersion": "1.7",
|
|
1973
|
-
"editable": true,
|
|
1974
|
-
"type": "string",
|
|
1975
|
-
"model": false,
|
|
1976
|
-
"sync": false,
|
|
1977
|
-
"name": "field",
|
|
1978
|
-
"value": "updatedTime",
|
|
1979
|
-
"expression": null,
|
|
1980
|
-
"elementId": "443048dd54ad44ee85f026e387c1d21f"
|
|
1981
|
-
}
|
|
1982
|
-
],
|
|
1983
|
-
"eventList": [],
|
|
1984
|
-
"directiveList": [],
|
|
1985
|
-
"slotTarget": null,
|
|
1986
|
-
"slotScope": null,
|
|
1987
|
-
"staticClass": null,
|
|
1988
|
-
"staticStyle": null,
|
|
1989
|
-
"parentId": null,
|
|
1990
|
-
"_posIndex": 8,
|
|
1991
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
1992
|
-
"children": [
|
|
1993
|
-
{
|
|
1994
|
-
"level": "element",
|
|
1995
|
-
"id": "e0059d13e7264a8ca66a25234172b0ee",
|
|
1996
|
-
"ideVersion": "1.7",
|
|
1997
|
-
"editable": true,
|
|
1998
|
-
"type": 0,
|
|
1999
|
-
"tag": "template",
|
|
2000
|
-
"name": null,
|
|
2001
|
-
"attrList": [],
|
|
2002
|
-
"eventList": [],
|
|
2003
|
-
"directiveList": [],
|
|
2004
|
-
"slotTarget": "cell",
|
|
2005
|
-
"slotScope": "scope",
|
|
2006
|
-
"staticClass": null,
|
|
2007
|
-
"staticStyle": null,
|
|
2008
|
-
"parentId": null,
|
|
2009
|
-
"_posIndex": 0,
|
|
2010
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
2011
|
-
"children": [
|
|
2012
|
-
{
|
|
2013
|
-
"level": "element",
|
|
2014
|
-
"id": "83ffec45a5f6462d90376c5267c65f13",
|
|
2015
|
-
"ideVersion": "1.7",
|
|
2016
|
-
"editable": true,
|
|
2017
|
-
"type": 0,
|
|
2018
|
-
"tag": "u-linear-layout",
|
|
2019
|
-
"name": null,
|
|
2020
|
-
"attrList": [
|
|
2021
|
-
{
|
|
2022
|
-
"level": "attr",
|
|
2023
|
-
"id": "24c79cc1bf7c4797b244d314ab4b8d64",
|
|
2024
|
-
"createdTime": 1628752964911,
|
|
2025
|
-
"ideVersion": "1.7",
|
|
2026
|
-
"editable": true,
|
|
2027
|
-
"type": "string",
|
|
2028
|
-
"model": false,
|
|
2029
|
-
"sync": false,
|
|
2030
|
-
"name": "gap",
|
|
2031
|
-
"value": "small",
|
|
2032
|
-
"expression": null,
|
|
2033
|
-
"elementId": "83ffec45a5f6462d90376c5267c65f13"
|
|
2034
|
-
}
|
|
2035
|
-
],
|
|
2036
|
-
"eventList": [],
|
|
2037
|
-
"directiveList": [],
|
|
2038
|
-
"slotTarget": null,
|
|
2039
|
-
"slotScope": null,
|
|
2040
|
-
"staticClass": null,
|
|
2041
|
-
"staticStyle": null,
|
|
2042
|
-
"parentId": null,
|
|
2043
|
-
"_posIndex": 0,
|
|
2044
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
2045
|
-
"children": [
|
|
2046
|
-
{
|
|
2047
|
-
"level": "element",
|
|
2048
|
-
"id": "97f0e366847d49cf857216edb23247f5",
|
|
2049
|
-
"ideVersion": "1.7",
|
|
2050
|
-
"editable": true,
|
|
2051
|
-
"type": 0,
|
|
2052
|
-
"tag": "u-text",
|
|
2053
|
-
"name": null,
|
|
2054
|
-
"attrList": [
|
|
2055
|
-
{
|
|
2056
|
-
"level": "attr",
|
|
2057
|
-
"id": "05d697b370ff4001a81d5ccd36b07120",
|
|
2058
|
-
"createdTime": 1628752964915,
|
|
2059
|
-
"ideVersion": "1.7",
|
|
2060
|
-
"editable": true,
|
|
2061
|
-
"type": "dynamic",
|
|
2062
|
-
"model": false,
|
|
2063
|
-
"sync": false,
|
|
2064
|
-
"name": "text",
|
|
2065
|
-
"value": "",
|
|
2066
|
-
"expression": {
|
|
2067
|
-
"level": "expressionNode",
|
|
2068
|
-
"id": "9fe70e5ed9bb4c1e940a984764b9943d",
|
|
2069
|
-
"ideVersion": "1.7",
|
|
2070
|
-
"editable": true,
|
|
2071
|
-
"label": "内置函数",
|
|
2072
|
-
"folded": false,
|
|
2073
|
-
"type": "BuiltInFunction",
|
|
2074
|
-
"value": "FormatDate",
|
|
2075
|
-
"builtInFuncParams": [
|
|
2076
|
-
{
|
|
2077
|
-
"level": "expressionNode",
|
|
2078
|
-
"id": "95af8bf6a04f41abb0c1eef8d1a5e606",
|
|
2079
|
-
"ideVersion": "1.7",
|
|
2080
|
-
"editable": true,
|
|
2081
|
-
"parentId": "9fe70e5ed9bb4c1e940a984764b9943d",
|
|
2082
|
-
"parentAttr": "builtInFuncParams",
|
|
2083
|
-
"logicId": "",
|
|
2084
|
-
"folded": false,
|
|
2085
|
-
"_posIndex": 0,
|
|
2086
|
-
"type": "BuiltInFuncParam",
|
|
2087
|
-
"builtInFuncParamValue": {
|
|
2088
|
-
"level": "expressionNode",
|
|
2089
|
-
"ideVersion": "1.7",
|
|
2090
|
-
"editable": true,
|
|
2091
|
-
"parentAttr": "builtInFuncParamValue",
|
|
2092
|
-
"folded": false,
|
|
2093
|
-
"type": "MemberExpression",
|
|
2094
|
-
"object": {
|
|
2095
|
-
"level": "expressionNode",
|
|
2096
|
-
"type": "MemberExpression",
|
|
2097
|
-
"object": {
|
|
2098
|
-
"level": "expressionNode",
|
|
2099
|
-
"type": "MemberExpression",
|
|
2100
|
-
"object": {
|
|
2101
|
-
"level": "expressionNode",
|
|
2102
|
-
"type": "Identifier",
|
|
2103
|
-
"name": "scope"
|
|
2104
|
-
},
|
|
2105
|
-
"property": {
|
|
2106
|
-
"level": "expressionNode",
|
|
2107
|
-
"type": "Identifier",
|
|
2108
|
-
"name": "item"
|
|
2109
|
-
}
|
|
2110
|
-
},
|
|
2111
|
-
"property": {
|
|
2112
|
-
"level": "expressionNode",
|
|
2113
|
-
"type": "Identifier",
|
|
2114
|
-
"code": "ID_943de1e73cfd40d5a2c6e563ac1e44d0",
|
|
2115
|
-
"schemaRef": "943de1e73cfd40d5a2c6e563ac1e44d0"
|
|
2116
|
-
}
|
|
2117
|
-
},
|
|
2118
|
-
"property": {
|
|
2119
|
-
"level": "expressionNode",
|
|
2120
|
-
"type": "Identifier",
|
|
2121
|
-
"code": "ID_08b2257b280d484ea48dddfb0565ee8c",
|
|
2122
|
-
"schemaRef": "08b2257b280d484ea48dddfb0565ee8c"
|
|
2123
|
-
}
|
|
2124
|
-
},
|
|
2125
|
-
"name": ""
|
|
2126
|
-
},
|
|
2127
|
-
{
|
|
2128
|
-
"level": "expressionNode",
|
|
2129
|
-
"id": "2f2967e3c317492292800362e6c5b888",
|
|
2130
|
-
"ideVersion": "1.7",
|
|
2131
|
-
"editable": true,
|
|
2132
|
-
"parentId": "9fe70e5ed9bb4c1e940a984764b9943d",
|
|
2133
|
-
"parentAttr": "builtInFuncParams",
|
|
2134
|
-
"logicId": "",
|
|
2135
|
-
"folded": false,
|
|
2136
|
-
"_posIndex": 1,
|
|
2137
|
-
"type": "BuiltInFuncParam",
|
|
2138
|
-
"builtInFuncParamValue": {
|
|
2139
|
-
"level": "expressionNode",
|
|
2140
|
-
"id": "913818155b074765b632a4aa4a8a2594",
|
|
2141
|
-
"ideVersion": "1.7",
|
|
2142
|
-
"editable": true,
|
|
2143
|
-
"parentId": "2f2967e3c317492292800362e6c5b888",
|
|
2144
|
-
"parentAttr": "builtInFuncParamValue",
|
|
2145
|
-
"logicId": "",
|
|
2146
|
-
"folded": false,
|
|
2147
|
-
"type": "StringLiteral",
|
|
2148
|
-
"value": "YYYY-MM-DD HH:mm:ss"
|
|
2149
|
-
},
|
|
2150
|
-
"name": ""
|
|
2151
|
-
}
|
|
2152
|
-
],
|
|
2153
|
-
"calleeCode": "FormatDate"
|
|
2154
|
-
},
|
|
2155
|
-
"elementId": "97f0e366847d49cf857216edb23247f5"
|
|
2156
|
-
}
|
|
2157
|
-
],
|
|
2158
|
-
"eventList": [],
|
|
2159
|
-
"directiveList": [],
|
|
2160
|
-
"slotTarget": null,
|
|
2161
|
-
"slotScope": null,
|
|
2162
|
-
"staticClass": null,
|
|
2163
|
-
"staticStyle": null,
|
|
2164
|
-
"parentId": null,
|
|
2165
|
-
"_posIndex": 0,
|
|
2166
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
2167
|
-
"children": [],
|
|
2168
|
-
"events": {}
|
|
2169
|
-
}
|
|
2170
|
-
]
|
|
2171
|
-
}
|
|
2172
|
-
]
|
|
2173
|
-
}
|
|
2174
|
-
]
|
|
2175
|
-
},
|
|
2176
|
-
{
|
|
2177
|
-
"level": "element",
|
|
2178
|
-
"id": "37195ec7e5e944fc9bf69f43228ca797",
|
|
2179
|
-
"ideVersion": "1.7",
|
|
2180
|
-
"editable": true,
|
|
2181
|
-
"type": 0,
|
|
2182
|
-
"tag": "u-table-view-column",
|
|
2183
|
-
"name": null,
|
|
2184
|
-
"attrList": [
|
|
2185
|
-
{
|
|
2186
|
-
"level": "attr",
|
|
2187
|
-
"id": "143a4f6e9c6144c5ab4937b5c087dbb6",
|
|
2188
|
-
"createdTime": 1628752964932,
|
|
2189
|
-
"ideVersion": "1.7",
|
|
2190
|
-
"editable": true,
|
|
2191
|
-
"type": "string",
|
|
2192
|
-
"model": false,
|
|
2193
|
-
"sync": false,
|
|
2194
|
-
"name": "title",
|
|
2195
|
-
"value": "操作",
|
|
2196
|
-
"expression": null,
|
|
2197
|
-
"elementId": "37195ec7e5e944fc9bf69f43228ca797"
|
|
2198
|
-
}
|
|
2199
|
-
],
|
|
2200
|
-
"eventList": [],
|
|
2201
|
-
"directiveList": [],
|
|
2202
|
-
"slotTarget": null,
|
|
2203
|
-
"slotScope": null,
|
|
2204
|
-
"staticClass": null,
|
|
2205
|
-
"staticStyle": null,
|
|
2206
|
-
"parentId": null,
|
|
2207
|
-
"_posIndex": 9,
|
|
2208
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
2209
|
-
"children": [
|
|
2210
|
-
{
|
|
2211
|
-
"level": "element",
|
|
2212
|
-
"id": "47c3943456cc49eaa205acf8fe9a5e7c",
|
|
2213
|
-
"ideVersion": "1.7",
|
|
2214
|
-
"editable": true,
|
|
2215
|
-
"type": 0,
|
|
2216
|
-
"tag": "template",
|
|
2217
|
-
"name": null,
|
|
2218
|
-
"attrList": [],
|
|
2219
|
-
"eventList": [],
|
|
2220
|
-
"directiveList": [],
|
|
2221
|
-
"slotTarget": "cell",
|
|
2222
|
-
"slotScope": "scope",
|
|
2223
|
-
"staticClass": null,
|
|
2224
|
-
"staticStyle": null,
|
|
2225
|
-
"parentId": null,
|
|
2226
|
-
"_posIndex": 0,
|
|
2227
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
2228
|
-
"children": [
|
|
2229
|
-
{
|
|
2230
|
-
"level": "element",
|
|
2231
|
-
"id": "e79667bc58f949988390cc9a9cf7a0e5",
|
|
2232
|
-
"ideVersion": "1.7",
|
|
2233
|
-
"editable": true,
|
|
2234
|
-
"type": 0,
|
|
2235
|
-
"tag": "u-linear-layout",
|
|
2236
|
-
"name": null,
|
|
2237
|
-
"attrList": [
|
|
2238
|
-
{
|
|
2239
|
-
"level": "attr",
|
|
2240
|
-
"id": "25c682c19aea4c8f8b5e7d010f6e4f87",
|
|
2241
|
-
"createdTime": 1628752964941,
|
|
2242
|
-
"ideVersion": "1.7",
|
|
2243
|
-
"editable": true,
|
|
2244
|
-
"type": "string",
|
|
2245
|
-
"model": false,
|
|
2246
|
-
"sync": false,
|
|
2247
|
-
"name": "gap",
|
|
2248
|
-
"value": "small",
|
|
2249
|
-
"expression": null,
|
|
2250
|
-
"elementId": "e79667bc58f949988390cc9a9cf7a0e5"
|
|
2251
|
-
}
|
|
2252
|
-
],
|
|
2253
|
-
"eventList": [],
|
|
2254
|
-
"directiveList": [],
|
|
2255
|
-
"slotTarget": null,
|
|
2256
|
-
"slotScope": null,
|
|
2257
|
-
"staticClass": null,
|
|
2258
|
-
"staticStyle": null,
|
|
2259
|
-
"parentId": null,
|
|
2260
|
-
"_posIndex": 0,
|
|
2261
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
2262
|
-
"children": [
|
|
2263
|
-
{
|
|
2264
|
-
"level": "element",
|
|
2265
|
-
"id": "874867448a174a38b8d381c587fadff4",
|
|
2266
|
-
"ideVersion": "1.7",
|
|
2267
|
-
"editable": true,
|
|
2268
|
-
"type": 0,
|
|
2269
|
-
"tag": "u-link",
|
|
2270
|
-
"name": null,
|
|
2271
|
-
"attrList": [
|
|
2272
|
-
{
|
|
2273
|
-
"level": "attr",
|
|
2274
|
-
"id": "116873d4d1934a88886c5a710a8dd3fd",
|
|
2275
|
-
"createdTime": 1628752964945,
|
|
2276
|
-
"ideVersion": "1.7",
|
|
2277
|
-
"editable": true,
|
|
2278
|
-
"type": "string",
|
|
2279
|
-
"model": false,
|
|
2280
|
-
"sync": false,
|
|
2281
|
-
"name": "text",
|
|
2282
|
-
"value": "修改",
|
|
2283
|
-
"expression": null,
|
|
2284
|
-
"elementId": "874867448a174a38b8d381c587fadff4"
|
|
2285
|
-
}
|
|
2286
|
-
],
|
|
2287
|
-
"eventList": [
|
|
2288
|
-
{
|
|
2289
|
-
"level": "event",
|
|
2290
|
-
"id": "8f38765a57ef461490fd9db4184a80f9",
|
|
2291
|
-
"createdTime": 1628752964945,
|
|
2292
|
-
"ideVersion": "1.7",
|
|
2293
|
-
"editable": true,
|
|
2294
|
-
"logicId": "modify",
|
|
2295
|
-
"name": "click",
|
|
2296
|
-
"value": "modify",
|
|
2297
|
-
"elementId": "874867448a174a38b8d381c587fadff4"
|
|
2298
|
-
}
|
|
2299
|
-
],
|
|
2300
|
-
"directiveList": [],
|
|
2301
|
-
"slotTarget": null,
|
|
2302
|
-
"slotScope": null,
|
|
2303
|
-
"staticClass": null,
|
|
2304
|
-
"staticStyle": null,
|
|
2305
|
-
"parentId": null,
|
|
2306
|
-
"_posIndex": 0,
|
|
2307
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
2308
|
-
"children": []
|
|
2309
|
-
},
|
|
2310
|
-
{
|
|
2311
|
-
"level": "element",
|
|
2312
|
-
"id": "742eb3e472794b1987677fc371565750",
|
|
2313
|
-
"ideVersion": "1.7",
|
|
2314
|
-
"editable": true,
|
|
2315
|
-
"type": 0,
|
|
2316
|
-
"tag": "u-link",
|
|
2317
|
-
"name": null,
|
|
2318
|
-
"attrList": [
|
|
2319
|
-
{
|
|
2320
|
-
"level": "attr",
|
|
2321
|
-
"id": "9bd08daee98041de9edbed86daad3a5b",
|
|
2322
|
-
"createdTime": 1628752964952,
|
|
2323
|
-
"ideVersion": "1.7",
|
|
2324
|
-
"editable": true,
|
|
2325
|
-
"type": "string",
|
|
2326
|
-
"model": false,
|
|
2327
|
-
"sync": false,
|
|
2328
|
-
"name": "text",
|
|
2329
|
-
"value": "删除",
|
|
2330
|
-
"expression": null,
|
|
2331
|
-
"elementId": "742eb3e472794b1987677fc371565750"
|
|
2332
|
-
}
|
|
2333
|
-
],
|
|
2334
|
-
"eventList": [
|
|
2335
|
-
{
|
|
2336
|
-
"level": "event",
|
|
2337
|
-
"id": "0902c570e7c444ed9574ce5606d34cfa",
|
|
2338
|
-
"createdTime": 1628752964952,
|
|
2339
|
-
"ideVersion": "1.7",
|
|
2340
|
-
"editable": true,
|
|
2341
|
-
"logicId": "e737249c4bf84bcb82dbac17d1911155",
|
|
2342
|
-
"name": "click",
|
|
2343
|
-
"value": "ID_e737249c4bf84bcb82dbac17d1911155",
|
|
2344
|
-
"elementId": "742eb3e472794b1987677fc371565750"
|
|
2345
|
-
}
|
|
2346
|
-
],
|
|
2347
|
-
"directiveList": [],
|
|
2348
|
-
"slotTarget": null,
|
|
2349
|
-
"slotScope": null,
|
|
2350
|
-
"staticClass": null,
|
|
2351
|
-
"staticStyle": null,
|
|
2352
|
-
"parentId": null,
|
|
2353
|
-
"_posIndex": 1,
|
|
2354
|
-
"viewId": "edac38f8eef84b8a8bceb6751acc35c0",
|
|
2355
|
-
"children": []
|
|
2356
|
-
}
|
|
2357
|
-
]
|
|
2358
|
-
}
|
|
2359
|
-
]
|
|
2360
|
-
}
|
|
2361
|
-
]
|
|
2362
|
-
}
|
|
2363
|
-
],
|
|
2364
|
-
"events": {}
|
|
2365
|
-
},
|
|
2366
|
-
{
|
|
2367
|
-
"level": "element",
|
|
2368
|
-
"id": "fdf1a8a814504ae2a98744e607b92445",
|
|
2369
|
-
"ideVersion": "1.7",
|
|
2370
|
-
"editable": true,
|
|
2371
|
-
"type": 0,
|
|
2372
|
-
"tag": "u-router-view",
|
|
2373
|
-
"attrList": [],
|
|
2374
|
-
"eventList": [],
|
|
2375
|
-
"directiveList": [],
|
|
2376
|
-
"children": []
|
|
2377
|
-
}
|
|
2378
|
-
]
|
|
2379
|
-
},
|
|
2380
|
-
"interfaces": [
|
|
2381
|
-
{
|
|
2382
|
-
"level": "interface",
|
|
2383
|
-
"id": "e307ce22-952c-400e-be9d-898368db52e0",
|
|
2384
|
-
"ideVersion": "1.7",
|
|
2385
|
-
"editable": true,
|
|
2386
|
-
"key": "#/38fb7087-77d8-42f5-8be9-2416e39d4622/e307ce22-952c-400e-be9d-898368db52e0",
|
|
2387
|
-
"name": "load_view2_tableView",
|
|
2388
|
-
"path": "/interface1",
|
|
2389
|
-
"method": "GET",
|
|
2390
|
-
"description": "",
|
|
2391
|
-
"logicId": "ea2e4cab41e340d3998635ebdaaad528",
|
|
2392
|
-
"serviceType": "micro",
|
|
2393
|
-
"serviceId": "38fb7087-77d8-42f5-8be9-2416e39d4622",
|
|
2394
|
-
"parameters": "{\"params\":{\"name\":\"params\",\"description\":\"\",\"in\":\"query\",\"required\":true,\"schema\":{\"typeKey\":\"#/systemTypes/DataSourceParams\",\"id\":\"dddc9a26-b086-4687-aa3a-642d78621144\",\"$ref\":\"#/systemTypes/DataSourceParams\"}}}",
|
|
2395
|
-
"responses": "{\"200\":{\"description\":\"\",\"content\":{\"application/json\":{\"schema\":{\"typeKey\":\"#/genericTypes/PageOf\",\"type\":\"genericType\",\"typeInstantiation\":{\"typeName\":\"PageOf\",\"typeParams\":[{\"typeParamValue\":{\"$ref\":\"#/38fb7087-77d8-42f5-8be9-2416e39d4622/e22d1d38f9034c2c913d3480ca84d41d\",\"typeKey\":\"#/38fb7087-77d8-42f5-8be9-2416e39d4622/e22d1d38f9034c2c913d3480ca84d41d\"},\"type\":\"typeParam\",\"typeParamName\":\"T\"}]}}}}}}",
|
|
2396
|
-
"logic": {
|
|
2397
|
-
"level": "logic",
|
|
2398
|
-
"id": "ea2e4cab41e340d3998635ebdaaad528",
|
|
2399
|
-
"ideVersion": "1.7",
|
|
2400
|
-
"editable": true,
|
|
2401
|
-
"name": "load_view2_tableView",
|
|
2402
|
-
"description": "",
|
|
2403
|
-
"moduleId": "38fb7087-77d8-42f5-8be9-2416e39d4622",
|
|
2404
|
-
"moduleType": "microService",
|
|
2405
|
-
"params": [
|
|
2406
|
-
{
|
|
2407
|
-
"level": "param",
|
|
2408
|
-
"id": "1a55900dd4664214851cb73be274988e",
|
|
2409
|
-
"ideVersion": "1.7",
|
|
2410
|
-
"editable": true,
|
|
2411
|
-
"type": "Identifier",
|
|
2412
|
-
"code": "ID_1a55900dd4664214851cb73be274988e",
|
|
2413
|
-
"name": "params",
|
|
2414
|
-
"description": "",
|
|
2415
|
-
"logicId": "ea2e4cab41e340d3998635ebdaaad528",
|
|
2416
|
-
"schema": {
|
|
2417
|
-
"typeKey": "#/systemTypes/DataSourceParams",
|
|
2418
|
-
"id": "dddc9a26-b086-4687-aa3a-642d78621144",
|
|
2419
|
-
"$ref": "#/systemTypes/DataSourceParams"
|
|
2420
|
-
},
|
|
2421
|
-
"required": true,
|
|
2422
|
-
"in": "query"
|
|
2423
|
-
}
|
|
2424
|
-
],
|
|
2425
|
-
"returns": [
|
|
2426
|
-
{
|
|
2427
|
-
"level": "return",
|
|
2428
|
-
"id": "2ff7c21923e44ac198fdbfa91a1b3976",
|
|
2429
|
-
"ideVersion": "1.7",
|
|
2430
|
-
"editable": true,
|
|
2431
|
-
"type": "Identifier",
|
|
2432
|
-
"code": "ID_2ff7c21923e44ac198fdbfa91a1b3976",
|
|
2433
|
-
"name": "result",
|
|
2434
|
-
"description": "",
|
|
2435
|
-
"logicId": "ea2e4cab41e340d3998635ebdaaad528",
|
|
2436
|
-
"schema": {
|
|
2437
|
-
"typeKey": "#/genericTypes/PageOf",
|
|
2438
|
-
"type": "genericType",
|
|
2439
|
-
"typeInstantiation": {
|
|
2440
|
-
"typeName": "PageOf",
|
|
2441
|
-
"typeParams": [
|
|
2442
|
-
{
|
|
2443
|
-
"typeParamValue": {
|
|
2444
|
-
"$ref": "#/38fb7087-77d8-42f5-8be9-2416e39d4622/e22d1d38f9034c2c913d3480ca84d41d",
|
|
2445
|
-
"typeKey": "#/38fb7087-77d8-42f5-8be9-2416e39d4622/e22d1d38f9034c2c913d3480ca84d41d"
|
|
2446
|
-
},
|
|
2447
|
-
"type": "typeParam",
|
|
2448
|
-
"typeParamName": "T"
|
|
2449
|
-
}
|
|
2450
|
-
]
|
|
2451
|
-
}
|
|
2452
|
-
}
|
|
2453
|
-
}
|
|
2454
|
-
],
|
|
2455
|
-
"variables": [],
|
|
2456
|
-
"body": [
|
|
2457
|
-
{
|
|
2458
|
-
"level": "logicNode",
|
|
2459
|
-
"id": "2f08b01565424767b9b1aabad6471624",
|
|
2460
|
-
"ideVersion": "1.7",
|
|
2461
|
-
"editable": true,
|
|
2462
|
-
"logicId": "",
|
|
2463
|
-
"label": "开始",
|
|
2464
|
-
"folded": false,
|
|
2465
|
-
"type": "Start"
|
|
2466
|
-
},
|
|
2467
|
-
{
|
|
2468
|
-
"level": "logicNode",
|
|
2469
|
-
"id": "25b8bf8e79ff43d0abb47e3095ea657f",
|
|
2470
|
-
"ideVersion": "1.7",
|
|
2471
|
-
"editable": true,
|
|
2472
|
-
"parentId": "2f08b01565424767b9b1aabad6471624",
|
|
2473
|
-
"logicId": "ea2e4cab41e340d3998635ebdaaad528",
|
|
2474
|
-
"label": "赋值",
|
|
2475
|
-
"folded": false,
|
|
2476
|
-
"type": "AssignmentExpression",
|
|
2477
|
-
"operator": "=",
|
|
2478
|
-
"left": {
|
|
2479
|
-
"level": "expressionNode",
|
|
2480
|
-
"id": "68aca6d68eac4ca68d8b9080cbb994bd",
|
|
2481
|
-
"ideVersion": "1.7",
|
|
2482
|
-
"editable": true,
|
|
2483
|
-
"parentId": "25b8bf8e79ff43d0abb47e3095ea657f",
|
|
2484
|
-
"parentAttr": "left",
|
|
2485
|
-
"folded": false,
|
|
2486
|
-
"type": "Identifier",
|
|
2487
|
-
"code": "ID_2ff7c21923e44ac198fdbfa91a1b3976",
|
|
2488
|
-
"schemaRef": "2ff7c21923e44ac198fdbfa91a1b3976"
|
|
2489
|
-
},
|
|
2490
|
-
"right": {
|
|
2491
|
-
"level": "logicNode",
|
|
2492
|
-
"id": "5a81e874109d49a18bfd2fe028195d4d",
|
|
2493
|
-
"ideVersion": "1.7",
|
|
2494
|
-
"editable": true,
|
|
2495
|
-
"parentId": "25b8bf8e79ff43d0abb47e3095ea657f",
|
|
2496
|
-
"parentAttr": "right",
|
|
2497
|
-
"logicId": "ea2e4cab41e340d3998635ebdaaad528",
|
|
2498
|
-
"label": "调用接口",
|
|
2499
|
-
"folded": false,
|
|
2500
|
-
"type": "CallInterface",
|
|
2501
|
-
"params": [],
|
|
2502
|
-
"interfaceKey": ""
|
|
2503
|
-
}
|
|
2504
|
-
},
|
|
2505
|
-
{
|
|
2506
|
-
"level": "logicNode",
|
|
2507
|
-
"id": "11b40ca0df4a4319882c5287e69ed5b2",
|
|
2508
|
-
"ideVersion": "1.7",
|
|
2509
|
-
"editable": true,
|
|
2510
|
-
"parentId": "25b8bf8e79ff43d0abb47e3095ea657f",
|
|
2511
|
-
"logicId": "",
|
|
2512
|
-
"label": "结束",
|
|
2513
|
-
"folded": false,
|
|
2514
|
-
"type": "End"
|
|
2515
|
-
}
|
|
2516
|
-
],
|
|
2517
|
-
"playgroundId": "6d2ae5e194514742b425de01117d82b4",
|
|
2518
|
-
"playground": []
|
|
2519
|
-
}
|
|
2520
|
-
}
|
|
2521
|
-
]
|
|
2522
|
-
}
|