@ng-nest/ui 20.0.4 → 20.0.6
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/index.d.ts +10 -0
- package/fesm2022/ng-nest-ui-core.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-table.mjs +138 -12
- package/fesm2022/ng-nest-ui-table.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-tree-select.mjs +32 -5
- package/fesm2022/ng-nest-ui-tree-select.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-tree.mjs +42 -6
- package/fesm2022/ng-nest-ui-tree.mjs.map +1 -1
- package/package.json +28 -28
- package/table/index.d.ts +14 -2
- package/tree/index.d.ts +7 -1
- package/tree-select/index.d.ts +38 -4
|
@@ -188,6 +188,11 @@ class XTreeProperty extends XPropertyFunction(X_TREE_CONFIG_NAME) {
|
|
|
188
188
|
* @en_US When multiple selection is enabled, the value of activatedId is an array of objects
|
|
189
189
|
*/
|
|
190
190
|
this.objectArray = input(false, { transform: XToBoolean });
|
|
191
|
+
/**
|
|
192
|
+
* @zh_CN 当开启多选的时候,点击父节点,包含子节点
|
|
193
|
+
* @en_US When selecting multiple options, click on the parent node to include the child nodes
|
|
194
|
+
*/
|
|
195
|
+
this.includeChildren = input(this.config?.includeChildren ?? false, { transform: XToBoolean });
|
|
191
196
|
/**
|
|
192
197
|
* @zh_CN 关键字高亮,针对下拉树搜索
|
|
193
198
|
* @en_US Keyword highlighting
|
|
@@ -217,7 +222,7 @@ class XTreeProperty extends XPropertyFunction(X_TREE_CONFIG_NAME) {
|
|
|
217
222
|
* @zh_CN 排序属性
|
|
218
223
|
* @en_US Order property
|
|
219
224
|
*/
|
|
220
|
-
this.order = input(X_TREE_ORDER_DEFAULT);
|
|
225
|
+
this.order = input(this.config?.order ?? X_TREE_ORDER_DEFAULT);
|
|
221
226
|
/**
|
|
222
227
|
* @zh_CN 节点点击事件
|
|
223
228
|
* @en_US Node click event
|
|
@@ -240,7 +245,7 @@ class XTreeProperty extends XPropertyFunction(X_TREE_CONFIG_NAME) {
|
|
|
240
245
|
this.nodeDragMoved = output();
|
|
241
246
|
}
|
|
242
247
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0", ngImport: i0, type: XTreeProperty, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
243
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.0", type: XTreeProperty, isStandalone: true, selector: "x-tree-property", inputs: { data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired: false, transformFunction: null }, checkbox: { classPropertyName: "checkbox", publicName: "checkbox", isSignal: true, isRequired: false, transformFunction: null }, lazy: { classPropertyName: "lazy", publicName: "lazy", isSignal: true, isRequired: false, transformFunction: null }, activatedId: { classPropertyName: "activatedId", publicName: "activatedId", isSignal: true, isRequired: false, transformFunction: null }, expanded: { classPropertyName: "expanded", publicName: "expanded", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, expandedAll: { classPropertyName: "expandedAll", publicName: "expandedAll", isSignal: true, isRequired: false, transformFunction: null }, expandedLevel: { classPropertyName: "expandedLevel", publicName: "expandedLevel", isSignal: true, isRequired: false, transformFunction: null }, nodeOpen: { classPropertyName: "nodeOpen", publicName: "nodeOpen", isSignal: true, isRequired: false, transformFunction: null }, spacing: { classPropertyName: "spacing", publicName: "spacing", isSignal: true, isRequired: false, transformFunction: null }, labelTpl: { classPropertyName: "labelTpl", publicName: "labelTpl", isSignal: true, isRequired: false, transformFunction: null }, nodeHeight: { classPropertyName: "nodeHeight", publicName: "nodeHeight", isSignal: true, isRequired: false, transformFunction: null }, allowManyActivated: { classPropertyName: "allowManyActivated", publicName: "allowManyActivated", isSignal: true, isRequired: false, transformFunction: null }, drag: { classPropertyName: "drag", publicName: "drag", isSignal: true, isRequired: false, transformFunction: null }, manual: { classPropertyName: "manual", publicName: "manual", isSignal: true, isRequired: false, transformFunction: null }, levelCheck: { classPropertyName: "levelCheck", publicName: "levelCheck", isSignal: true, isRequired: false, transformFunction: null }, nodeNowrap: { classPropertyName: "nodeNowrap", publicName: "nodeNowrap", isSignal: true, isRequired: false, transformFunction: null }, nodeAlignItems: { classPropertyName: "nodeAlignItems", publicName: "nodeAlignItems", isSignal: true, isRequired: false, transformFunction: null }, actions: { classPropertyName: "actions", publicName: "actions", isSignal: true, isRequired: false, transformFunction: null }, scrollElement: { classPropertyName: "scrollElement", publicName: "scrollElement", isSignal: true, isRequired: false, transformFunction: null }, virtualScroll: { classPropertyName: "virtualScroll", publicName: "virtualScroll", isSignal: true, isRequired: false, transformFunction: null }, virtualScrollHeight: { classPropertyName: "virtualScrollHeight", publicName: "virtualScrollHeight", isSignal: true, isRequired: false, transformFunction: null }, heightAdaption: { classPropertyName: "heightAdaption", publicName: "heightAdaption", isSignal: true, isRequired: false, transformFunction: null }, itemSize: { classPropertyName: "itemSize", publicName: "itemSize", isSignal: true, isRequired: false, transformFunction: null }, minBufferPx: { classPropertyName: "minBufferPx", publicName: "minBufferPx", isSignal: true, isRequired: false, transformFunction: null }, maxBufferPx: { classPropertyName: "maxBufferPx", publicName: "maxBufferPx", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, objectArray: { classPropertyName: "objectArray", publicName: "objectArray", isSignal: true, isRequired: false, transformFunction: null }, keywordText: { classPropertyName: "keywordText", publicName: "keywordText", isSignal: true, isRequired: false, transformFunction: null }, caseSensitive: { classPropertyName: "caseSensitive", publicName: "caseSensitive", isSignal: true, isRequired: false, transformFunction: null }, onlyLeaf: { classPropertyName: "onlyLeaf", publicName: "onlyLeaf", isSignal: true, isRequired: false, transformFunction: null }, expandedIcon: { classPropertyName: "expandedIcon", publicName: "expandedIcon", isSignal: true, isRequired: false, transformFunction: null }, showLine: { classPropertyName: "showLine", publicName: "showLine", isSignal: true, isRequired: false, transformFunction: null }, order: { classPropertyName: "order", publicName: "order", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { activatedId: "activatedIdChange", expanded: "expandedChange", checked: "checkedChange", activatedChange: "activatedChange", checkboxChange: "checkboxChange", manual: "manualChange", nodeClick: "nodeClick", nodeDragStarted: "nodeDragStarted", nodeDragEnded: "nodeDragEnded", nodeDragMoved: "nodeDragMoved" }, usesInheritance: true, ngImport: i0, template: '', isInline: true }); }
|
|
248
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.0", type: XTreeProperty, isStandalone: true, selector: "x-tree-property", inputs: { data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired: false, transformFunction: null }, checkbox: { classPropertyName: "checkbox", publicName: "checkbox", isSignal: true, isRequired: false, transformFunction: null }, lazy: { classPropertyName: "lazy", publicName: "lazy", isSignal: true, isRequired: false, transformFunction: null }, activatedId: { classPropertyName: "activatedId", publicName: "activatedId", isSignal: true, isRequired: false, transformFunction: null }, expanded: { classPropertyName: "expanded", publicName: "expanded", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, expandedAll: { classPropertyName: "expandedAll", publicName: "expandedAll", isSignal: true, isRequired: false, transformFunction: null }, expandedLevel: { classPropertyName: "expandedLevel", publicName: "expandedLevel", isSignal: true, isRequired: false, transformFunction: null }, nodeOpen: { classPropertyName: "nodeOpen", publicName: "nodeOpen", isSignal: true, isRequired: false, transformFunction: null }, spacing: { classPropertyName: "spacing", publicName: "spacing", isSignal: true, isRequired: false, transformFunction: null }, labelTpl: { classPropertyName: "labelTpl", publicName: "labelTpl", isSignal: true, isRequired: false, transformFunction: null }, nodeHeight: { classPropertyName: "nodeHeight", publicName: "nodeHeight", isSignal: true, isRequired: false, transformFunction: null }, allowManyActivated: { classPropertyName: "allowManyActivated", publicName: "allowManyActivated", isSignal: true, isRequired: false, transformFunction: null }, drag: { classPropertyName: "drag", publicName: "drag", isSignal: true, isRequired: false, transformFunction: null }, manual: { classPropertyName: "manual", publicName: "manual", isSignal: true, isRequired: false, transformFunction: null }, levelCheck: { classPropertyName: "levelCheck", publicName: "levelCheck", isSignal: true, isRequired: false, transformFunction: null }, nodeNowrap: { classPropertyName: "nodeNowrap", publicName: "nodeNowrap", isSignal: true, isRequired: false, transformFunction: null }, nodeAlignItems: { classPropertyName: "nodeAlignItems", publicName: "nodeAlignItems", isSignal: true, isRequired: false, transformFunction: null }, actions: { classPropertyName: "actions", publicName: "actions", isSignal: true, isRequired: false, transformFunction: null }, scrollElement: { classPropertyName: "scrollElement", publicName: "scrollElement", isSignal: true, isRequired: false, transformFunction: null }, virtualScroll: { classPropertyName: "virtualScroll", publicName: "virtualScroll", isSignal: true, isRequired: false, transformFunction: null }, virtualScrollHeight: { classPropertyName: "virtualScrollHeight", publicName: "virtualScrollHeight", isSignal: true, isRequired: false, transformFunction: null }, heightAdaption: { classPropertyName: "heightAdaption", publicName: "heightAdaption", isSignal: true, isRequired: false, transformFunction: null }, itemSize: { classPropertyName: "itemSize", publicName: "itemSize", isSignal: true, isRequired: false, transformFunction: null }, minBufferPx: { classPropertyName: "minBufferPx", publicName: "minBufferPx", isSignal: true, isRequired: false, transformFunction: null }, maxBufferPx: { classPropertyName: "maxBufferPx", publicName: "maxBufferPx", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, objectArray: { classPropertyName: "objectArray", publicName: "objectArray", isSignal: true, isRequired: false, transformFunction: null }, includeChildren: { classPropertyName: "includeChildren", publicName: "includeChildren", isSignal: true, isRequired: false, transformFunction: null }, keywordText: { classPropertyName: "keywordText", publicName: "keywordText", isSignal: true, isRequired: false, transformFunction: null }, caseSensitive: { classPropertyName: "caseSensitive", publicName: "caseSensitive", isSignal: true, isRequired: false, transformFunction: null }, onlyLeaf: { classPropertyName: "onlyLeaf", publicName: "onlyLeaf", isSignal: true, isRequired: false, transformFunction: null }, expandedIcon: { classPropertyName: "expandedIcon", publicName: "expandedIcon", isSignal: true, isRequired: false, transformFunction: null }, showLine: { classPropertyName: "showLine", publicName: "showLine", isSignal: true, isRequired: false, transformFunction: null }, order: { classPropertyName: "order", publicName: "order", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { activatedId: "activatedIdChange", expanded: "expandedChange", checked: "checkedChange", activatedChange: "activatedChange", checkboxChange: "checkboxChange", manual: "manualChange", nodeClick: "nodeClick", nodeDragStarted: "nodeDragStarted", nodeDragEnded: "nodeDragEnded", nodeDragMoved: "nodeDragMoved" }, usesInheritance: true, ngImport: i0, template: '', isInline: true }); }
|
|
244
249
|
}
|
|
245
250
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0", ngImport: i0, type: XTreeProperty, decorators: [{
|
|
246
251
|
type: Component,
|
|
@@ -594,17 +599,27 @@ class XTreeNodeComponent extends XTreeNodeProperty {
|
|
|
594
599
|
if (this.tree.multiple()) {
|
|
595
600
|
if (!this.tree.activatedId())
|
|
596
601
|
this.tree.activatedId.set([]);
|
|
602
|
+
const nodes = [node];
|
|
603
|
+
if (this.tree.includeChildren()) {
|
|
604
|
+
nodes.push(...this.getChildren());
|
|
605
|
+
}
|
|
597
606
|
if (this.tree.objectArray()) {
|
|
598
607
|
const ids = this.tree.activatedId().map((x) => x.id);
|
|
599
608
|
if (ids.includes(node.id)) {
|
|
600
609
|
this.tree.activatedId.update((x) => {
|
|
601
|
-
|
|
610
|
+
for (let it of nodes) {
|
|
611
|
+
x.splice(ids.indexOf(it.id), 1);
|
|
612
|
+
}
|
|
602
613
|
return [...x];
|
|
603
614
|
});
|
|
604
615
|
}
|
|
605
616
|
else {
|
|
606
617
|
this.tree.activatedId.update((x) => {
|
|
607
|
-
|
|
618
|
+
for (let it of nodes) {
|
|
619
|
+
if (!x.includes(it)) {
|
|
620
|
+
x.push(it);
|
|
621
|
+
}
|
|
622
|
+
}
|
|
608
623
|
return [...x];
|
|
609
624
|
});
|
|
610
625
|
}
|
|
@@ -612,13 +627,19 @@ class XTreeNodeComponent extends XTreeNodeProperty {
|
|
|
612
627
|
else {
|
|
613
628
|
if (this.tree.activatedId().includes(node.id)) {
|
|
614
629
|
this.tree.activatedId.update((x) => {
|
|
615
|
-
|
|
630
|
+
for (let it of nodes) {
|
|
631
|
+
x.splice(this.tree.activatedId().indexOf(it.id), 1);
|
|
632
|
+
}
|
|
616
633
|
return [...x];
|
|
617
634
|
});
|
|
618
635
|
}
|
|
619
636
|
else {
|
|
620
637
|
this.tree.activatedId.update((x) => {
|
|
621
|
-
|
|
638
|
+
for (let it of nodes) {
|
|
639
|
+
if (!x.includes(it.id)) {
|
|
640
|
+
x.push(it.id);
|
|
641
|
+
}
|
|
642
|
+
}
|
|
622
643
|
return [...x];
|
|
623
644
|
});
|
|
624
645
|
}
|
|
@@ -664,6 +685,21 @@ class XTreeNodeComponent extends XTreeNodeProperty {
|
|
|
664
685
|
setParent(this.node());
|
|
665
686
|
this.cdr.detectChanges();
|
|
666
687
|
}
|
|
688
|
+
getChildren() {
|
|
689
|
+
const res = [];
|
|
690
|
+
const getChildren = (children) => {
|
|
691
|
+
if (XIsEmpty(children))
|
|
692
|
+
return;
|
|
693
|
+
for (let x of children) {
|
|
694
|
+
if (x.disabled)
|
|
695
|
+
continue;
|
|
696
|
+
res.push(x);
|
|
697
|
+
getChildren(x.children);
|
|
698
|
+
}
|
|
699
|
+
};
|
|
700
|
+
getChildren(this.node().children);
|
|
701
|
+
return res;
|
|
702
|
+
}
|
|
667
703
|
setChildrenCheckbox(checked) {
|
|
668
704
|
const setChildren = (children, isChecked) => {
|
|
669
705
|
if (XIsEmpty(children))
|