@acorex/components 20.2.0-next.14 → 20.2.0-next.15
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/fesm2022/acorex-components-flow-chart.mjs +24 -0
- package/fesm2022/acorex-components-flow-chart.mjs.map +1 -1
- package/fesm2022/acorex-components-form.mjs +10 -1
- package/fesm2022/acorex-components-form.mjs.map +1 -1
- package/fesm2022/acorex-components-kbd.mjs +8 -7
- package/fesm2022/acorex-components-kbd.mjs.map +1 -1
- package/fesm2022/acorex-components-label.mjs +2 -2
- package/fesm2022/acorex-components-label.mjs.map +1 -1
- package/fesm2022/acorex-components-loading-dialog.mjs +2 -2
- package/fesm2022/acorex-components-loading-dialog.mjs.map +1 -1
- package/fesm2022/{acorex-components-modal-acorex-components-modal-DykbEbg0.mjs → acorex-components-modal-acorex-components-modal-yzX5PZMM.mjs} +83 -4
- package/fesm2022/acorex-components-modal-acorex-components-modal-yzX5PZMM.mjs.map +1 -0
- package/fesm2022/{acorex-components-modal-modal-content.component-73xLTLTg.mjs → acorex-components-modal-modal-content.component-Bt8c43qi.mjs} +2 -2
- package/fesm2022/{acorex-components-modal-modal-content.component-73xLTLTg.mjs.map → acorex-components-modal-modal-content.component-Bt8c43qi.mjs.map} +1 -1
- package/fesm2022/acorex-components-modal.mjs +1 -1
- package/fesm2022/acorex-components-select-box.mjs +17 -15
- package/fesm2022/acorex-components-select-box.mjs.map +1 -1
- package/flow-chart/index.d.ts +24 -0
- package/form/index.d.ts +4 -0
- package/kbd/index.d.ts +4 -3
- package/modal/index.d.ts +43 -0
- package/package.json +9 -9
- package/fesm2022/acorex-components-modal-acorex-components-modal-DykbEbg0.mjs.map +0 -1
@@ -622,15 +622,39 @@ class AXFlowChartComponent extends NXComponent {
|
|
622
622
|
}
|
623
623
|
}
|
624
624
|
}
|
625
|
+
/**
|
626
|
+
* Draws edges on the flow chart.
|
627
|
+
*
|
628
|
+
* @param edges Array of edges to draw.
|
629
|
+
* @returns void
|
630
|
+
*/
|
625
631
|
drawEdges(edges) {
|
626
632
|
this.flowChartService.drawEdges(edges);
|
627
633
|
}
|
634
|
+
/**
|
635
|
+
* Removes a specific edge from the flow chart.
|
636
|
+
*
|
637
|
+
* @param edge The edge object to remove.
|
638
|
+
* @returns void
|
639
|
+
*/
|
628
640
|
removeEdge(edge) {
|
629
641
|
this.flowChartService.removeEdge(edge);
|
630
642
|
}
|
643
|
+
/**
|
644
|
+
* Creates one or more nodes on the flow chart.
|
645
|
+
*
|
646
|
+
* @param nodes Array of node definitions to create.
|
647
|
+
* @returns void
|
648
|
+
*/
|
631
649
|
createNode(nodes) {
|
632
650
|
this.flowChartService.createNode(nodes);
|
633
651
|
}
|
652
|
+
/**
|
653
|
+
* Removes a node by its identifier.
|
654
|
+
*
|
655
|
+
* @param nodeId The unique id of the node to remove.
|
656
|
+
* @returns void
|
657
|
+
*/
|
634
658
|
removeNode(nodeId) {
|
635
659
|
this.flowChartService.removeNode(nodeId);
|
636
660
|
}
|