@arsedizioni/ars-utils 19.4.71 → 19.4.73
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/core/system.d.ts +1 -0
- package/fesm2022/arsedizioni-ars-utils-core.mjs +4 -4
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +13 -10
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +13 -13
- package/ui.application/ui/definitions.d.ts +2 -1
- package/ui.application/ui/dialogs/select-tree/select-tree-dialog.component.d.ts +12 -1
package/core/system.d.ts
CHANGED
|
@@ -708,10 +708,10 @@ class SystemUtils {
|
|
|
708
708
|
children: undefined,
|
|
709
709
|
bag: n,
|
|
710
710
|
};
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
711
|
+
const children = n.children ?? n.subFolders ?? [];
|
|
712
|
+
if (children.length > 0) {
|
|
713
|
+
node.children = this._toNodes(n.children ?? n.subFolders, node);
|
|
714
|
+
}
|
|
715
715
|
nodes.push(node);
|
|
716
716
|
});
|
|
717
717
|
return nodes;
|