@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.
Files changed (23) hide show
  1. package/fesm2022/acorex-components-flow-chart.mjs +24 -0
  2. package/fesm2022/acorex-components-flow-chart.mjs.map +1 -1
  3. package/fesm2022/acorex-components-form.mjs +10 -1
  4. package/fesm2022/acorex-components-form.mjs.map +1 -1
  5. package/fesm2022/acorex-components-kbd.mjs +8 -7
  6. package/fesm2022/acorex-components-kbd.mjs.map +1 -1
  7. package/fesm2022/acorex-components-label.mjs +2 -2
  8. package/fesm2022/acorex-components-label.mjs.map +1 -1
  9. package/fesm2022/acorex-components-loading-dialog.mjs +2 -2
  10. package/fesm2022/acorex-components-loading-dialog.mjs.map +1 -1
  11. package/fesm2022/{acorex-components-modal-acorex-components-modal-DykbEbg0.mjs → acorex-components-modal-acorex-components-modal-yzX5PZMM.mjs} +83 -4
  12. package/fesm2022/acorex-components-modal-acorex-components-modal-yzX5PZMM.mjs.map +1 -0
  13. package/fesm2022/{acorex-components-modal-modal-content.component-73xLTLTg.mjs → acorex-components-modal-modal-content.component-Bt8c43qi.mjs} +2 -2
  14. package/fesm2022/{acorex-components-modal-modal-content.component-73xLTLTg.mjs.map → acorex-components-modal-modal-content.component-Bt8c43qi.mjs.map} +1 -1
  15. package/fesm2022/acorex-components-modal.mjs +1 -1
  16. package/fesm2022/acorex-components-select-box.mjs +17 -15
  17. package/fesm2022/acorex-components-select-box.mjs.map +1 -1
  18. package/flow-chart/index.d.ts +24 -0
  19. package/form/index.d.ts +4 -0
  20. package/kbd/index.d.ts +4 -3
  21. package/modal/index.d.ts +43 -0
  22. package/package.json +9 -9
  23. 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
  }