@acorex/modules 20.5.0-next.0 → 20.5.0-next.2

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.
@@ -1,5 +1,5 @@
1
1
  import { AXPSessionService, AXPAuthGuard } from '@acorex/platform/auth';
2
- import { createAllQueryView, AXPEntityQueryType, AXPLockService, AXP_MENU_PROVIDER } from '@acorex/platform/common';
2
+ import { createAllQueryView, AXPEntityQueryType, AXP_MENU_PROVIDER } from '@acorex/platform/common';
3
3
  import { AXPDomainModule, provideEntity } from '@acorex/platform/domain';
4
4
  import { AXPRootLayoutComponent } from '@acorex/platform/themes/default';
5
5
  import * as i0 from '@angular/core';
@@ -1275,15 +1275,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
1275
1275
  // Entity Services
1276
1276
 
1277
1277
  class AXMColumnEvaluatorScopeProvider {
1278
- constructor() {
1279
- this.lockService = inject(AXPLockService);
1280
- }
1281
1278
  async provide(context) {
1282
1279
  context.addScope('dataSource', {
1283
1280
  getColumn: async (columnName, columns) => {
1284
- const column = columns.find(c => c.name === columnName);
1281
+ const column = columns.find((c) => c.name === columnName);
1285
1282
  return column;
1286
- }
1283
+ },
1287
1284
  });
1288
1285
  }
1289
1286
  }