ice-entity-designer 0.0.21 → 0.0.22
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/README.md +71 -1
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/dist/index.umd.js +2 -2
- package/dist/react.cjs +2 -2
- package/dist/react.mjs +2 -2
- package/dist/types/bpmn/BpmnDesigner.d.mts +50 -0
- package/dist/types/bpmn/BpmnDesigner.d.ts +50 -0
- package/dist/types/bpmn/bpmn_shapes.d.mts +61 -0
- package/dist/types/bpmn/bpmn_shapes.d.ts +61 -0
- package/dist/types/bpmn/bpmn_validate.d.mts +24 -0
- package/dist/types/bpmn/bpmn_validate.d.ts +24 -0
- package/dist/types/bpmn/bpmn_xml.d.mts +46 -0
- package/dist/types/bpmn/bpmn_xml.d.ts +46 -0
- package/dist/types/flow/FlowDesigner.d.mts +7 -0
- package/dist/types/flow/FlowDesigner.d.ts +7 -0
- package/dist/types/flow/FlowEdge.d.mts +8 -0
- package/dist/types/flow/FlowEdge.d.ts +8 -0
- package/dist/types/flow/FlowNode.d.mts +40 -3
- package/dist/types/flow/FlowNode.d.ts +40 -3
- package/dist/types/ice-render/graphic/ICEComponent.d.mts +0 -8
- package/dist/types/ice-render/graphic/ICEComponent.d.ts +0 -8
- package/dist/types/ice-render/graphic/container/ICEGroup.d.mts +10 -0
- package/dist/types/ice-render/graphic/container/ICEGroup.d.ts +10 -0
- package/dist/types/index.d.mts +5 -0
- package/dist/types/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -20,6 +20,11 @@ export type { FlowPort } from './flow/FlowEdge';
|
|
|
20
20
|
export { default as FlowDesigner, validateFlowSnapshot } from './flow/FlowDesigner';
|
|
21
21
|
export type { FlowSnapshot, FlowLoadReport, FlowSnapshotValidationResult } from './flow/FlowDesigner';
|
|
22
22
|
export { FlowDiamond, FlowParallelogram } from './flow/flow_shapes';
|
|
23
|
+
export { default as BpmnDesigner } from './bpmn/BpmnDesigner';
|
|
24
|
+
export { validateBpmn } from './bpmn/bpmn_validate';
|
|
25
|
+
export type { BpmnIssue } from './bpmn/bpmn_validate';
|
|
26
|
+
export { toBpmnXml, fromBpmnXml } from './bpmn/bpmn_xml';
|
|
27
|
+
export type { BpmnImportResult } from './bpmn/bpmn_xml';
|
|
23
28
|
/**
|
|
24
29
|
* 引擎内核(ice-render)在构建时已被打包进本包,这里一并导出。
|
|
25
30
|
*
|