@acorex/platform 20.5.0-next.0 → 20.5.0-next.1
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/common/index.d.ts +8 -0
- package/fesm2022/acorex-platform-common.mjs +32 -9
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +417 -112
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +129 -125
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +19 -0
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +478 -85
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-rdKxuMC_.mjs → acorex-platform-themes-default-entity-master-list-view.component-ccqB5ShI.mjs} +7 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-rdKxuMC_.mjs.map → acorex-platform-themes-default-entity-master-list-view.component-ccqB5ShI.mjs.map} +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs +2 -2
- package/layout/builder/index.d.ts +127 -28
- package/layout/widget-core/index.d.ts +20 -1
- package/layout/widgets/index.d.ts +162 -6
- package/package.json +2 -1
|
@@ -551,6 +551,9 @@ class AXPEntityMasterListViewComponent extends AXPPageLayoutBaseComponent {
|
|
|
551
551
|
}));
|
|
552
552
|
}
|
|
553
553
|
async handleRowDbClick(e) {
|
|
554
|
+
if (this.grid()?.dataSource.isLoading) {
|
|
555
|
+
return;
|
|
556
|
+
}
|
|
554
557
|
const allItems = [...this.commandRowItems(), ...(await this.dropdownRowItems(e.data))];
|
|
555
558
|
// const defaultAction = allItems.find((c) => (c as any).default) || allItems[0];
|
|
556
559
|
const defaultAction = allItems.find((c) => {
|
|
@@ -568,6 +571,9 @@ class AXPEntityMasterListViewComponent extends AXPPageLayoutBaseComponent {
|
|
|
568
571
|
this.handleRowCommandClick(d);
|
|
569
572
|
}
|
|
570
573
|
async handleRowCommandClick(e) {
|
|
574
|
+
if (this.grid()?.dataSource.isLoading) {
|
|
575
|
+
return;
|
|
576
|
+
}
|
|
571
577
|
this.vm.executeCommand(e.name, e.data);
|
|
572
578
|
}
|
|
573
579
|
async handleSelectedRowsChange(rows) {
|
|
@@ -739,4 +745,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
739
745
|
}], ctorParameters: () => [{ type: i1$1.AXPlatform }] });
|
|
740
746
|
|
|
741
747
|
export { AXPEntityMasterListViewComponent };
|
|
742
|
-
//# sourceMappingURL=acorex-platform-themes-default-entity-master-list-view.component-
|
|
748
|
+
//# sourceMappingURL=acorex-platform-themes-default-entity-master-list-view.component-ccqB5ShI.mjs.map
|