@acorex/components 22.1.0-next.14 → 22.1.0-next.16
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-conversation.mjs +744 -484
- package/fesm2022/acorex-components-conversation.mjs.map +1 -1
- package/fesm2022/acorex-components-data-table.mjs +8 -6
- package/fesm2022/acorex-components-data-table.mjs.map +1 -1
- package/fesm2022/acorex-components-lookup.mjs +490 -29
- package/fesm2022/acorex-components-lookup.mjs.map +1 -1
- package/fesm2022/acorex-components-notification.mjs +4 -6
- package/fesm2022/acorex-components-notification.mjs.map +1 -1
- package/lookup/README.md +18 -7
- package/package.json +3 -3
- package/types/acorex-components-conversation.d.ts +166 -245
- package/types/acorex-components-data-table.d.ts +2 -2
- package/types/acorex-components-lookup.d.ts +130 -13
|
@@ -732,7 +732,8 @@ class AXDataTableTextColumnComponent extends AXDataTableColumnComponent {
|
|
|
732
732
|
/**
|
|
733
733
|
* @ignore
|
|
734
734
|
*/
|
|
735
|
-
async handleExpandRow(row) {
|
|
735
|
+
async handleExpandRow(row, event) {
|
|
736
|
+
event?.stopPropagation();
|
|
736
737
|
this.loadingRow.set(row);
|
|
737
738
|
await this.grid.expandRow(row);
|
|
738
739
|
this.loadingRow.set(null);
|
|
@@ -772,7 +773,7 @@ class AXDataTableTextColumnComponent extends AXDataTableColumnComponent {
|
|
|
772
773
|
>
|
|
773
774
|
@if (expandHandler && (row.data?.[grid.hasChildrenField] !== false || (row.data?.children?.length ?? 0) > 0)) {
|
|
774
775
|
<div
|
|
775
|
-
(click)="handleExpandRow(row)"
|
|
776
|
+
(click)="handleExpandRow(row, $event)"
|
|
776
777
|
class="ax-expand-handler"
|
|
777
778
|
id="ax-expand-handler-container"
|
|
778
779
|
>
|
|
@@ -812,7 +813,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.8", ngImpor
|
|
|
812
813
|
>
|
|
813
814
|
@if (expandHandler && (row.data?.[grid.hasChildrenField] !== false || (row.data?.children?.length ?? 0) > 0)) {
|
|
814
815
|
<div
|
|
815
|
-
(click)="handleExpandRow(row)"
|
|
816
|
+
(click)="handleExpandRow(row, $event)"
|
|
816
817
|
class="ax-expand-handler"
|
|
817
818
|
id="ax-expand-handler-container"
|
|
818
819
|
>
|
|
@@ -1407,7 +1408,8 @@ class AXRowExpandColumnComponent extends AXDataTableColumnComponent {
|
|
|
1407
1408
|
/**
|
|
1408
1409
|
* @ignore
|
|
1409
1410
|
*/
|
|
1410
|
-
async handleExpandRow(row) {
|
|
1411
|
+
async handleExpandRow(row, event) {
|
|
1412
|
+
event?.stopPropagation();
|
|
1411
1413
|
this.loadingRow.set(row);
|
|
1412
1414
|
await this.grid.expandRow(row);
|
|
1413
1415
|
this.loadingRow.set(null);
|
|
@@ -1433,7 +1435,7 @@ class AXRowExpandColumnComponent extends AXDataTableColumnComponent {
|
|
|
1433
1435
|
[attr.data-level]="row.data?.__meta__?.level || 0"
|
|
1434
1436
|
>
|
|
1435
1437
|
@if (row.data?.[grid.hasChildrenField] !== false || (row.data?.children?.length ?? 0) > 0) {
|
|
1436
|
-
|
|
1438
|
+
<div (click)="handleExpandRow(row, $event)" class="ax-expand-handler">
|
|
1437
1439
|
@if (loadingRow() === row) {
|
|
1438
1440
|
<i class="fas fa-spinner-third ax-animate-twSpin ax-animate-infinite"></i>
|
|
1439
1441
|
} @else {
|
|
@@ -1462,7 +1464,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.8", ngImpor
|
|
|
1462
1464
|
[attr.data-level]="row.data?.__meta__?.level || 0"
|
|
1463
1465
|
>
|
|
1464
1466
|
@if (row.data?.[grid.hasChildrenField] !== false || (row.data?.children?.length ?? 0) > 0) {
|
|
1465
|
-
|
|
1467
|
+
<div (click)="handleExpandRow(row, $event)" class="ax-expand-handler">
|
|
1466
1468
|
@if (loadingRow() === row) {
|
|
1467
1469
|
<i class="fas fa-spinner-third ax-animate-twSpin ax-animate-infinite"></i>
|
|
1468
1470
|
} @else {
|