@messaia/cdk 15.0.0-rc67 → 15.0.0-rc69

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.
@@ -2522,13 +2522,13 @@ class VdMenuComponent {
2522
2522
  itemClicked($event, item) {
2523
2523
  $event.stopPropagation();
2524
2524
  if (item.event instanceof Function) {
2525
- item.event();
2525
+ item.event({ event: $event, item: item });
2526
2526
  }
2527
2527
  else if (item.event instanceof EventEmitter) {
2528
- item.event.emit();
2528
+ item.event.emit({ event: $event, item: item });
2529
2529
  }
2530
2530
  else {
2531
- this.onClick.emit(item);
2531
+ this.onClick.emit({ event: $event, item: item });
2532
2532
  }
2533
2533
  }
2534
2534
  /**
@@ -6863,7 +6863,7 @@ __decorate([
6863
6863
  filter: 'clientJoins.client.displayName',
6864
6864
  sortBy: 'clientJoins.Min(client.displayName)',
6865
6865
  content: (x) => Utils.joinArray(x.clientJoins?.map(y => y.clientName)),
6866
- display: Grid.Xl,
6866
+ display: Grid.Lg,
6867
6867
  maxWidth: 200,
6868
6868
  hide: (_, ctx) => !ctx.isAdmin || (!ctx.settings?.multitenantable && !ctx.settings?.multiClients),
6869
6869
  }),
@@ -6895,7 +6895,7 @@ __decorate([
6895
6895
  filter: 'departmentJoins.department.displayName',
6896
6896
  sortBy: 'departmentJoins.Min(department.displayName)',
6897
6897
  content: (x) => Utils.joinArray(x.departmentJoins?.map(y => y.departmentName)),
6898
- display: Grid.Xl,
6898
+ display: Grid.Lg,
6899
6899
  maxWidth: 200,
6900
6900
  hide: (_, ctx) => !ctx.isAdmin || (!ctx.settings?.multitenantable && !ctx.settings?.multiClients),
6901
6901
  }),
@@ -6988,7 +6988,7 @@ __decorate([
6988
6988
  filter: 'clientJoins.client.displayName',
6989
6989
  sortBy: 'clientJoins.Min(client.displayName)',
6990
6990
  content: (x) => Utils.joinArray(x.clientJoins?.map(y => y.clientName)),
6991
- display: Grid.Xl,
6991
+ display: Grid.Lg,
6992
6992
  maxWidth: 200,
6993
6993
  hide: (_, ctx) => !ctx.isAdmin || (!ctx.settings?.multitenantable && !ctx.settings?.multiClients),
6994
6994
  }),
@@ -7020,7 +7020,7 @@ __decorate([
7020
7020
  filter: 'departmentJoins.department.displayName',
7021
7021
  sortBy: 'departmentJoins.Min(department.displayName)',
7022
7022
  content: (x) => Utils.joinArray(x.departmentJoins?.map(y => y.departmentName)),
7023
- display: Grid.Xl,
7023
+ display: Grid.Lg,
7024
7024
  maxWidth: 200,
7025
7025
  hide: (_, ctx) => !ctx.isAdmin || (!ctx.settings?.multitenantable && !ctx.settings?.multiClients),
7026
7026
  }),
@@ -13607,7 +13607,7 @@ class GenericListComponent extends BaseComponent {
13607
13607
  * Reloads items
13608
13608
  */
13609
13609
  loadList(resetSelection = true) {
13610
- this.dataSource.reload(resetSelection);
13610
+ this?.dataSource?.reload(resetSelection);
13611
13611
  }
13612
13612
  /**
13613
13613
  * Search