@lcap/nasl-types
Advanced tools
Comparing version 3.12.0-beta.4 to 3.12.0-beta.5
@@ -130,3 +130,15 @@ export interface OptionAPI { | ||
}; | ||
cssInfo?: { | ||
cssRules: Array<{ | ||
selector: string; | ||
description: string; | ||
parsedStyle: { | ||
[name: string]: any; | ||
}; | ||
}>; | ||
mainSelectorMap: { | ||
[name: string]: boolean; | ||
}; | ||
}; | ||
} | ||
//# sourceMappingURL=component.d.ts.map |
@@ -9,4 +9,4 @@ import type { BaseNodeObject } from '../common/BaseNodeObject'; | ||
*/ | ||
readonly concept: 'InputSetter' | 'SwitchSetter' | 'EnumSelectSetter' | 'CapsulesSetter' | 'NumberInputSetter' | 'IconSetter' | 'ImageSetter' | 'PropertySelectSetter'; | ||
readonly concept: 'InputSetter' | 'SwitchSetter' | 'EnumSelectSetter' | 'CapsulesSetter' | 'NumberInputSetter' | 'IconSetter' | 'ImageSetter' | 'PropertySelectSetter' | 'PropertyTransformSetter' | 'AnonymousFunctionSetter'; | ||
} | ||
//# sourceMappingURL=BaseSetter__.d.ts.map |
@@ -33,2 +33,6 @@ import * as types from './types'; | ||
/** | ||
* 属性表达式示例数据 | ||
*/ | ||
readonly expressionExample?: string | null; | ||
/** | ||
* 跳转页面 | ||
@@ -35,0 +39,0 @@ */ |
@@ -8,2 +8,3 @@ import type { ModuleObject } from './Module__'; | ||
import type { AuthLogicForCallInterfaceObject } from './AuthLogicForCallInterface__'; | ||
import type { DependencyObject } from './Dependency__'; | ||
/** | ||
@@ -57,3 +58,7 @@ * 连接器数据类型 | ||
readonly isLocal?: boolean | null; | ||
/** | ||
* 依赖项配置信息 | ||
*/ | ||
readonly dependencies: ReadonlyArray<DependencyObject>; | ||
} | ||
//# sourceMappingURL=Connector__.d.ts.map |
@@ -26,2 +26,6 @@ import type { BaseNodeObject } from '../common/BaseNodeObject'; | ||
/** | ||
* UI库 | ||
*/ | ||
readonly frameworkUI?: string | null; | ||
/** | ||
* 依赖库逻辑声明列表 | ||
@@ -28,0 +32,0 @@ */ |
@@ -38,2 +38,6 @@ import type { BaseNodeObject } from '../common/BaseNodeObject'; | ||
/** | ||
* UI库 | ||
*/ | ||
readonly frameworkUI: string; | ||
/** | ||
* 组件面板配置 | ||
@@ -40,0 +44,0 @@ */ |
@@ -42,2 +42,4 @@ export * from "./Annotation__"; | ||
export * from "./PropertySelectSetter__"; | ||
export * from "./PropertyTransformSetter__"; | ||
export * from "./AnonymousFunctionSetter__"; | ||
export * from "./ViewComponentDeclaration__"; | ||
@@ -51,2 +53,3 @@ export * from "./BusinessComponent__"; | ||
export * from "./LogicDeclaration__"; | ||
export * from "./CSSRule__"; | ||
export * from "./Theme__"; | ||
@@ -119,2 +122,3 @@ export * from "./Slot__"; | ||
export * from "./NewComposite__"; | ||
export * from "./NewStructure__"; | ||
export * from "./NewList__"; | ||
@@ -121,0 +125,0 @@ export * from "./NewMap__"; |
@@ -58,2 +58,4 @@ "use strict"; | ||
__exportStar(require("./PropertySelectSetter__"), exports); | ||
__exportStar(require("./PropertyTransformSetter__"), exports); | ||
__exportStar(require("./AnonymousFunctionSetter__"), exports); | ||
__exportStar(require("./ViewComponentDeclaration__"), exports); | ||
@@ -67,2 +69,3 @@ __exportStar(require("./BusinessComponent__"), exports); | ||
__exportStar(require("./LogicDeclaration__"), exports); | ||
__exportStar(require("./CSSRule__"), exports); | ||
__exportStar(require("./Theme__"), exports); | ||
@@ -135,2 +138,3 @@ __exportStar(require("./Slot__"), exports); | ||
__exportStar(require("./NewComposite__"), exports); | ||
__exportStar(require("./NewStructure__"), exports); | ||
__exportStar(require("./NewList__"), exports); | ||
@@ -137,0 +141,0 @@ __exportStar(require("./NewMap__"), exports); |
@@ -10,3 +10,3 @@ import type { BaseNodeObject } from '../common/BaseNodeObject'; | ||
*/ | ||
readonly concept: 'SubLogic' | 'AnonymousFunction' | 'Abort' | 'Start' | 'End' | 'IfStatement' | 'SwitchStatement' | 'SwitchCase' | 'ForEachStatement' | 'WhileStatement' | 'Assignment' | 'BatchAssignment' | 'Comment' | 'CallLogic' | 'CallConnector' | 'CallEvent' | 'CallFunction' | 'CallInterface' | 'CallMicroserviceInterface' | 'CallAuthInterface' | 'Destination' | 'ExternalDestination' | 'ValidationRule' | 'Argument' | 'Anchor' | 'JSBlock' | 'JavaLogic' | 'Block' | 'Identifier' | 'NullLiteral' | 'BooleanLiteral' | 'StringLiteral' | 'StringInterpolation' | 'NumericLiteral' | 'BinaryExpression' | 'MatchCase' | 'Match' | 'UnaryExpression' | 'MemberExpression' | 'Unparsed' | 'New' | 'NewComposite' | 'NewList' | 'NewMap' | 'Paginate' | 'CallQueryComponent' | 'QuerySelectExpression' | 'QueryFromExpression' | 'QueryJoinExpression' | 'QueryFieldExpression' | 'QueryAggregateExpression' | 'QueryOrderByExpression' | 'QueryGroupByExpression' | 'QueryLimitExpression' | 'SqlQueryComponent' | 'OqlQueryComponent' | 'ProcessOutcome' | 'Assignee' | 'ProcessOutcomes'; | ||
readonly concept: 'SubLogic' | 'AnonymousFunction' | 'Abort' | 'Start' | 'End' | 'IfStatement' | 'SwitchStatement' | 'SwitchCase' | 'ForEachStatement' | 'WhileStatement' | 'Assignment' | 'BatchAssignment' | 'Comment' | 'CallLogic' | 'CallConnector' | 'CallEvent' | 'CallFunction' | 'CallInterface' | 'CallMicroserviceInterface' | 'CallAuthInterface' | 'Destination' | 'ExternalDestination' | 'ValidationRule' | 'Argument' | 'Anchor' | 'JSBlock' | 'JavaLogic' | 'Block' | 'Identifier' | 'NullLiteral' | 'BooleanLiteral' | 'StringLiteral' | 'StringInterpolation' | 'NumericLiteral' | 'BinaryExpression' | 'MatchCase' | 'Match' | 'UnaryExpression' | 'MemberExpression' | 'Unparsed' | 'New' | 'NewComposite' | 'NewStructure' | 'NewList' | 'NewMap' | 'Paginate' | 'CallQueryComponent' | 'QuerySelectExpression' | 'QueryFromExpression' | 'QueryJoinExpression' | 'QueryFieldExpression' | 'QueryAggregateExpression' | 'QueryOrderByExpression' | 'QueryGroupByExpression' | 'QueryLimitExpression' | 'SqlQueryComponent' | 'OqlQueryComponent' | 'ProcessOutcome' | 'Assignee' | 'ProcessOutcomes'; | ||
/** | ||
@@ -13,0 +13,0 @@ * 逻辑项标题 |
@@ -29,4 +29,4 @@ import type { BaseNodeObject } from '../common/BaseNodeObject'; | ||
*/ | ||
readonly moveTo?: 'start' | 'nextNode' | 'end'; | ||
readonly moveTo?: 'start' | 'nextNode' | 'end' | null; | ||
} | ||
//# sourceMappingURL=OperatePermissionV2__.d.ts.map |
import type { BaseNodeObject } from '../common/BaseNodeObject'; | ||
import type { CSSRuleObject } from './CSSRule__'; | ||
/** | ||
@@ -24,3 +25,7 @@ * 主题数据类型 | ||
readonly scopeVariableMap: Record<string, Record<string, string>>; | ||
/** | ||
* 主题样式增强 CSS 规则 | ||
*/ | ||
readonly cssRules?: ReadonlyArray<CSSRuleObject> | null; | ||
} | ||
//# sourceMappingURL=Theme__.d.ts.map |
@@ -40,2 +40,4 @@ import type { AnnotationObject } from "./Annotation__"; | ||
import type { PropertySelectSetterObject } from "./PropertySelectSetter__"; | ||
import type { PropertyTransformSetterObject } from "./PropertyTransformSetter__"; | ||
import type { AnonymousFunctionSetterObject } from "./AnonymousFunctionSetter__"; | ||
import type { ViewComponentDeclarationObject } from "./ViewComponentDeclaration__"; | ||
@@ -49,2 +51,3 @@ import type { BusinessComponentObject } from "./BusinessComponent__"; | ||
import type { LogicDeclarationObject } from "./LogicDeclaration__"; | ||
import type { CSSRuleObject } from "./CSSRule__"; | ||
import type { ThemeObject } from "./Theme__"; | ||
@@ -114,2 +117,3 @@ import type { SlotObject } from "./Slot__"; | ||
import type { NewCompositeObject } from "./NewComposite__"; | ||
import type { NewStructureObject } from "./NewStructure__"; | ||
import type { NewListObject } from "./NewList__"; | ||
@@ -186,3 +190,3 @@ import type { NewMapObject } from "./NewMap__"; | ||
import type { ReassignUnmannedV2Object } from "./ReassignUnmannedV2__"; | ||
export type SyntaxNodeObject = AnnotationObject | AnnotationPropertyObject | ApplyAnnotationObject | AppObject | ModuleObject | NamespaceObject | FrontendTypeObject | FrontendObject | BackendObject | IntegrationObject | MicroAppObject | TypeAnnotationObject | DatabaseTypeAnnotationObject | TypeParamObject | StructureObject | StructurePropertyObject | EnumObject | EnumItemObject | DataSourceObject | EntityObject | EntityPropertyObject | EntityIndexObject | MetadataTypeObject | ViewObject | ViewElementObject | BindAttributeObject | BindDirectiveObject | BindEventObject | BindStyleObject | ThemeVariableObject | InputSetterObject | SwitchSetterObject | SetterOptionObject | EnumSelectSetterObject | CapsulesSetterObject | NumberInputSetterObject | IconSetterObject | ImageSetterObject | PropertySelectSetterObject | ViewComponentDeclarationObject | BusinessComponentObject | AttributeObject | EventObject | PropDeclarationObject | EventDeclarationObject | SlotDeclarationObject | LogicDeclarationObject | ThemeObject | SlotObject | ViewComponentObject | LogicObject | AuthLogicObject | AuthLogicForCallInterfaceObject | OverriddenLogicObject | BusinessLogicObject | ParamObject | ParamWithGroupObject | ReturnObject | VariableObject | BackendVariableObject | FrontendVariableObject | ConstantObject | SubLogicObject | FunctionObject | AnonymousFunctionObject | RetryConfigObject | InterfaceObject | ConnectionInfoObject | MicroserviceInterfaceObject | InterfaceParamObject | TransactionalObject | DefaultValueObject | AbortObject | StartObject | EndObject | IfStatementObject | SwitchStatementObject | SwitchCaseObject | ForEachStatementObject | WhileStatementObject | AssignmentObject | BatchAssignmentObject | CommentObject | CallLogicObject | CallEventObject | CallFunctionObject | CallInterfaceObject | CallMicroserviceInterfaceObject | DestinationObject | ExternalDestinationObject | ValidationRuleObject | ArgumentObject | AnchorObject | JSBlockObject | JavaLogicObject | BlockObject | IdentifierObject | NullLiteralObject | BooleanLiteralObject | StringLiteralObject | StringInterpolationObject | StaticStringObject | NumericLiteralObject | BinaryExpressionObject | MatchCaseObject | MatchObject | UnaryExpressionObject | MemberExpressionObject | UnparsedObject | NewObject | NewCompositeObject | NewListObject | NewMapObject | PaginateObject | CallQueryComponentObject | QuerySelectExpressionObject | QueryFromExpressionObject | QueryJoinExpressionObject | QueryFieldExpressionObject | QueryAggregateExpressionObject | QueryOrderByExpressionObject | QueryGroupByExpressionObject | QueryLimitExpressionObject | SqlQueryComponentObject | OqlQueryComponentObject | ProcessObject | ProcessElementObject | ProcessComponentObject | SequentialPolicyObject | CountersignPolicyObject | ProcessOutcomeObject | AssigneeObject | ProcessOutcomesObject | RoleObject | ConfigurationObject | ConfigGroupObject | ConfigPropertyObject | ConfigPropertyValueObject | I18nInfoObject | CompletionPropertyObject | UseComponentObject | PointObject | RectObject | SelectMembersObject | AssignmentLineObject | FrontendLibraryObject | ViewBlockObject | ViewBlockWithImageObject | AuthInterfaceObject | CallAuthInterfaceObject | MsgTriggerEventObject | InterfaceTriggerEventObject | ConnectorTriggerObject | TriggerLauncherObject | ConnectorTriggerLauncherObject | MsgTriggerLauncherObject | DependencyObject | ConnectorObject | CallConnectorObject | ConnectionObject | ConnectorLogicObject | ProcessV2Object | ProcessDefinitionV2Object | HistoryProcessV2Object | ProcessBindV2Object | FieldPermissionV2Object | ProcessElementV2Object | OperatePermissionV2Object | AssigneeV2Object | DepartmentV2Object | DirectManagerV2Object | DepartmentManagerV2Object | UserAssigneesObject | RoleAssigneesObject | DepartmentAssigneesObject | FlowConditionV2Object | SequentialPolicyV2Object | CountersignPolicyV2Object | OrSignPolicyV2Object | AutoApproveUnmannedV2Object | AutoRejectUnmannedV2Object | ReassignUnmannedV2Object; | ||
export type SyntaxNodeObject = AnnotationObject | AnnotationPropertyObject | ApplyAnnotationObject | AppObject | ModuleObject | NamespaceObject | FrontendTypeObject | FrontendObject | BackendObject | IntegrationObject | MicroAppObject | TypeAnnotationObject | DatabaseTypeAnnotationObject | TypeParamObject | StructureObject | StructurePropertyObject | EnumObject | EnumItemObject | DataSourceObject | EntityObject | EntityPropertyObject | EntityIndexObject | MetadataTypeObject | ViewObject | ViewElementObject | BindAttributeObject | BindDirectiveObject | BindEventObject | BindStyleObject | ThemeVariableObject | InputSetterObject | SwitchSetterObject | SetterOptionObject | EnumSelectSetterObject | CapsulesSetterObject | NumberInputSetterObject | IconSetterObject | ImageSetterObject | PropertySelectSetterObject | PropertyTransformSetterObject | AnonymousFunctionSetterObject | ViewComponentDeclarationObject | BusinessComponentObject | AttributeObject | EventObject | PropDeclarationObject | EventDeclarationObject | SlotDeclarationObject | LogicDeclarationObject | CSSRuleObject | ThemeObject | SlotObject | ViewComponentObject | LogicObject | AuthLogicObject | AuthLogicForCallInterfaceObject | OverriddenLogicObject | BusinessLogicObject | ParamObject | ParamWithGroupObject | ReturnObject | VariableObject | BackendVariableObject | FrontendVariableObject | ConstantObject | SubLogicObject | FunctionObject | AnonymousFunctionObject | RetryConfigObject | InterfaceObject | ConnectionInfoObject | MicroserviceInterfaceObject | InterfaceParamObject | TransactionalObject | DefaultValueObject | AbortObject | StartObject | EndObject | IfStatementObject | SwitchStatementObject | SwitchCaseObject | ForEachStatementObject | WhileStatementObject | AssignmentObject | BatchAssignmentObject | CommentObject | CallLogicObject | CallEventObject | CallFunctionObject | CallInterfaceObject | CallMicroserviceInterfaceObject | DestinationObject | ExternalDestinationObject | ValidationRuleObject | ArgumentObject | AnchorObject | JSBlockObject | JavaLogicObject | BlockObject | IdentifierObject | NullLiteralObject | BooleanLiteralObject | StringLiteralObject | StringInterpolationObject | StaticStringObject | NumericLiteralObject | BinaryExpressionObject | MatchCaseObject | MatchObject | UnaryExpressionObject | MemberExpressionObject | UnparsedObject | NewObject | NewCompositeObject | NewStructureObject | NewListObject | NewMapObject | PaginateObject | CallQueryComponentObject | QuerySelectExpressionObject | QueryFromExpressionObject | QueryJoinExpressionObject | QueryFieldExpressionObject | QueryAggregateExpressionObject | QueryOrderByExpressionObject | QueryGroupByExpressionObject | QueryLimitExpressionObject | SqlQueryComponentObject | OqlQueryComponentObject | ProcessObject | ProcessElementObject | ProcessComponentObject | SequentialPolicyObject | CountersignPolicyObject | ProcessOutcomeObject | AssigneeObject | ProcessOutcomesObject | RoleObject | ConfigurationObject | ConfigGroupObject | ConfigPropertyObject | ConfigPropertyValueObject | I18nInfoObject | CompletionPropertyObject | UseComponentObject | PointObject | RectObject | SelectMembersObject | AssignmentLineObject | FrontendLibraryObject | ViewBlockObject | ViewBlockWithImageObject | AuthInterfaceObject | CallAuthInterfaceObject | MsgTriggerEventObject | InterfaceTriggerEventObject | ConnectorTriggerObject | TriggerLauncherObject | ConnectorTriggerLauncherObject | MsgTriggerLauncherObject | DependencyObject | ConnectorObject | CallConnectorObject | ConnectionObject | ConnectorLogicObject | ProcessV2Object | ProcessDefinitionV2Object | HistoryProcessV2Object | ProcessBindV2Object | FieldPermissionV2Object | ProcessElementV2Object | OperatePermissionV2Object | AssigneeV2Object | DepartmentV2Object | DirectManagerV2Object | DepartmentManagerV2Object | UserAssigneesObject | RoleAssigneesObject | DepartmentAssigneesObject | FlowConditionV2Object | SequentialPolicyV2Object | CountersignPolicyV2Object | OrSignPolicyV2Object | AutoApproveUnmannedV2Object | AutoRejectUnmannedV2Object | ReassignUnmannedV2Object; | ||
export type SyntaxNodeConcept = SyntaxNodeObject["concept"]; | ||
@@ -193,3 +197,3 @@ export type AnnotatableNodeObject = EntityObject | ViewObject | ViewElementObject | LogicObject | AuthLogicObject | AuthLogicForCallInterfaceObject | BusinessLogicObject | ConnectorLogicObject; | ||
export type ModuleNodeConcept = ModuleNodeObject["concept"]; | ||
export type BaseSetterNodeObject = InputSetterObject | SwitchSetterObject | EnumSelectSetterObject | CapsulesSetterObject | NumberInputSetterObject | IconSetterObject | ImageSetterObject | PropertySelectSetterObject; | ||
export type BaseSetterNodeObject = InputSetterObject | SwitchSetterObject | EnumSelectSetterObject | CapsulesSetterObject | NumberInputSetterObject | IconSetterObject | ImageSetterObject | PropertySelectSetterObject | PropertyTransformSetterObject | AnonymousFunctionSetterObject; | ||
export type BaseSetterNodeConcept = BaseSetterNodeObject["concept"]; | ||
@@ -206,3 +210,3 @@ export type LogicNodeObject = LogicObject | AuthLogicObject | AuthLogicForCallInterfaceObject | BusinessLogicObject | ConnectorLogicObject; | ||
export type VariableNodeConcept = VariableNodeObject["concept"]; | ||
export type LogicItemNodeObject = SubLogicObject | AnonymousFunctionObject | AbortObject | StartObject | EndObject | IfStatementObject | SwitchStatementObject | SwitchCaseObject | ForEachStatementObject | WhileStatementObject | AssignmentObject | BatchAssignmentObject | CommentObject | CallLogicObject | CallConnectorObject | CallEventObject | CallFunctionObject | CallInterfaceObject | CallMicroserviceInterfaceObject | CallAuthInterfaceObject | DestinationObject | ExternalDestinationObject | ValidationRuleObject | ArgumentObject | AnchorObject | JSBlockObject | JavaLogicObject | BlockObject | IdentifierObject | NullLiteralObject | BooleanLiteralObject | StringLiteralObject | StringInterpolationObject | NumericLiteralObject | BinaryExpressionObject | MatchCaseObject | MatchObject | UnaryExpressionObject | MemberExpressionObject | UnparsedObject | NewObject | NewCompositeObject | NewListObject | NewMapObject | PaginateObject | CallQueryComponentObject | QuerySelectExpressionObject | QueryFromExpressionObject | QueryJoinExpressionObject | QueryFieldExpressionObject | QueryAggregateExpressionObject | QueryOrderByExpressionObject | QueryGroupByExpressionObject | QueryLimitExpressionObject | SqlQueryComponentObject | OqlQueryComponentObject | ProcessOutcomeObject | AssigneeObject | ProcessOutcomesObject; | ||
export type LogicItemNodeObject = SubLogicObject | AnonymousFunctionObject | AbortObject | StartObject | EndObject | IfStatementObject | SwitchStatementObject | SwitchCaseObject | ForEachStatementObject | WhileStatementObject | AssignmentObject | BatchAssignmentObject | CommentObject | CallLogicObject | CallConnectorObject | CallEventObject | CallFunctionObject | CallInterfaceObject | CallMicroserviceInterfaceObject | CallAuthInterfaceObject | DestinationObject | ExternalDestinationObject | ValidationRuleObject | ArgumentObject | AnchorObject | JSBlockObject | JavaLogicObject | BlockObject | IdentifierObject | NullLiteralObject | BooleanLiteralObject | StringLiteralObject | StringInterpolationObject | NumericLiteralObject | BinaryExpressionObject | MatchCaseObject | MatchObject | UnaryExpressionObject | MemberExpressionObject | UnparsedObject | NewObject | NewCompositeObject | NewStructureObject | NewListObject | NewMapObject | PaginateObject | CallQueryComponentObject | QuerySelectExpressionObject | QueryFromExpressionObject | QueryJoinExpressionObject | QueryFieldExpressionObject | QueryAggregateExpressionObject | QueryOrderByExpressionObject | QueryGroupByExpressionObject | QueryLimitExpressionObject | SqlQueryComponentObject | OqlQueryComponentObject | ProcessOutcomeObject | AssigneeObject | ProcessOutcomesObject; | ||
export type LogicItemNodeConcept = LogicItemNodeObject["concept"]; | ||
@@ -209,0 +213,0 @@ export type ImportedInterfaceNodeObject = InterfaceObject | MicroserviceInterfaceObject | AuthInterfaceObject; |
import type { AnnotatableObject } from './Annotatable__'; | ||
import type { CSSRuleObject } from './CSSRule__'; | ||
import type { BindAttributeObject } from './BindAttribute__'; | ||
@@ -35,2 +36,6 @@ import type { BindEventObject } from './BindEvent__'; | ||
/** | ||
* 组件样式增强 CSS 规则 | ||
*/ | ||
readonly cssRules?: ReadonlyArray<CSSRuleObject> | null; | ||
/** | ||
* 权限资源描述 | ||
@@ -37,0 +42,0 @@ */ |
{ | ||
"name": "@lcap/nasl-types", | ||
"description": "NetEase Application Specific Language", | ||
"version": "3.12.0-beta.4", | ||
"version": "3.12.0-beta.5", | ||
"main": "./out", | ||
@@ -6,0 +6,0 @@ "types": "./out", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
613719
870
10671