@acorex/modules 18.0.15 → 18.1.0

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.
Files changed (114) hide show
  1. package/application-management/index.d.ts +9 -7
  2. package/application-management/lib/actions/index.d.ts +1 -0
  3. package/application-management/lib/actions/show-detail.action.d.ts +8 -0
  4. package/application-management/lib/application-management-mock-data.d.ts +3 -18
  5. package/application-management/lib/application-management.module.d.ts +12 -2
  6. package/application-management/lib/application-management.service.d.ts +2 -0
  7. package/application-management/lib/entities/property.entity.d.ts +3 -0
  8. package/application-management/lib/layouts/index.d.ts +1 -0
  9. package/application-management/lib/layouts/module-entity-detail-view/module-entity-detail-view.component.d.ts +15 -0
  10. package/application-management/lib/module-designer/module-designer.component.d.ts +32 -0
  11. package/application-management/lib/module-designer/module-designer.service.d.ts +34 -0
  12. package/application-management/lib/module-designer/module-designer.type.d.ts +1 -0
  13. package/application-management/lib/services/context-menu.service.d.ts +26 -0
  14. package/application-management/lib/workflows/create-module-entity.workflow.d.ts +2 -0
  15. package/application-management/lib/workflows/index.d.ts +2 -0
  16. package/application-management/lib/workflows/show-module-entity-details.workflow.d.ts +2 -0
  17. package/auth/lib/error-handler.d.ts +1 -1
  18. package/backend/lib/data/api/comment.service.d.ts +15 -0
  19. package/backend/lib/data/api/module-designer.service.d.ts +43 -0
  20. package/backend/lib/data/index.d.ts +2 -1
  21. package/backend/lib/data/local/local-data-provider.d.ts +1 -2
  22. package/esm2022/application-management/index.mjs +10 -8
  23. package/esm2022/application-management/lib/actions/index.mjs +2 -0
  24. package/esm2022/application-management/lib/actions/show-detail.action.mjs +25 -0
  25. package/esm2022/application-management/lib/application-management-mock-data.mjs +4 -4
  26. package/esm2022/application-management/lib/application-management.module.mjs +94 -7
  27. package/esm2022/application-management/lib/application-management.service.mjs +8 -2
  28. package/esm2022/application-management/lib/entities/application-module.entity.mjs +273 -0
  29. package/esm2022/application-management/lib/entities/applications.entity.mjs +311 -0
  30. package/esm2022/application-management/lib/entities/edition.entity.mjs +284 -0
  31. package/esm2022/application-management/lib/entities/entity.entity.mjs +284 -0
  32. package/esm2022/application-management/lib/entities/feature.entity.mjs +284 -0
  33. package/esm2022/application-management/lib/entities/modules.entity.mjs +324 -0
  34. package/esm2022/application-management/lib/entities/permission.entity.mjs +284 -0
  35. package/esm2022/application-management/lib/entities/property.entity.mjs +449 -0
  36. package/esm2022/application-management/lib/layouts/index.mjs +2 -0
  37. package/esm2022/application-management/lib/layouts/module-entity-detail-view/module-entity-detail-view.component.mjs +77 -0
  38. package/esm2022/application-management/lib/module-designer/module-designer.component.mjs +142 -0
  39. package/esm2022/application-management/lib/module-designer/module-designer.service.mjs +3 -0
  40. package/esm2022/application-management/lib/module-designer/module-designer.type.mjs +2 -0
  41. package/esm2022/application-management/lib/services/context-menu.service.mjs +168 -0
  42. package/esm2022/application-management/lib/workflows/create-module-entity.workflow.mjs +42 -0
  43. package/esm2022/application-management/lib/workflows/index.mjs +3 -0
  44. package/esm2022/application-management/lib/workflows/show-module-entity-details.workflow.mjs +9 -0
  45. package/esm2022/auth/lib/error-handler.mjs +6 -6
  46. package/esm2022/backend/lib/backend.module.mjs +23 -5
  47. package/esm2022/backend/lib/data/api/comment.service.mjs +48 -0
  48. package/esm2022/backend/lib/data/api/data-provider.mjs +2 -2
  49. package/esm2022/backend/lib/data/api/module-designer.service.mjs +95 -0
  50. package/esm2022/backend/lib/data/index.mjs +3 -2
  51. package/esm2022/backend/lib/data/local/local-data-provider.mjs +2 -2
  52. package/esm2022/form-management/acorex-modules-form-management.mjs +5 -0
  53. package/esm2022/form-management/index.mjs +2 -0
  54. package/esm2022/form-management/lib/designer/designer.page.mjs +24 -0
  55. package/esm2022/form-management/lib/form-management.module.mjs +29 -0
  56. package/fesm2022/acorex-modules-application-management-module-designer.component-CDZZ-5pF.mjs +323 -0
  57. package/fesm2022/acorex-modules-application-management-module-designer.component-CDZZ-5pF.mjs.map +1 -0
  58. package/fesm2022/acorex-modules-application-management.mjs +722 -21
  59. package/fesm2022/acorex-modules-application-management.mjs.map +1 -1
  60. package/fesm2022/{acorex-modules-auth-acorex-modules-auth-BD7I4S8c.mjs → acorex-modules-auth-acorex-modules-auth-D09VaQPe.mjs} +12 -12
  61. package/fesm2022/acorex-modules-auth-acorex-modules-auth-D09VaQPe.mjs.map +1 -0
  62. package/fesm2022/{acorex-modules-auth-app-chooser.component-Cfl1D1Cw.mjs → acorex-modules-auth-app-chooser.component-DN1ZJiZs.mjs} +2 -2
  63. package/fesm2022/{acorex-modules-auth-app-chooser.component-Cfl1D1Cw.mjs.map → acorex-modules-auth-app-chooser.component-DN1ZJiZs.mjs.map} +1 -1
  64. package/fesm2022/{acorex-modules-auth-login.module-BQG4ObmU.mjs → acorex-modules-auth-login.module-CGA5aTg2.mjs} +5 -5
  65. package/fesm2022/{acorex-modules-auth-login.module-BQG4ObmU.mjs.map → acorex-modules-auth-login.module-CGA5aTg2.mjs.map} +1 -1
  66. package/fesm2022/{acorex-modules-auth-master.layout-DoPCP7C0.mjs → acorex-modules-auth-master.layout-ZJWzjLrb.mjs} +2 -2
  67. package/fesm2022/{acorex-modules-auth-master.layout-DoPCP7C0.mjs.map → acorex-modules-auth-master.layout-ZJWzjLrb.mjs.map} +1 -1
  68. package/fesm2022/{acorex-modules-auth-password.component-fyMD7oKR.mjs → acorex-modules-auth-password.component-C4yqf342.mjs} +3 -3
  69. package/fesm2022/{acorex-modules-auth-password.component-fyMD7oKR.mjs.map → acorex-modules-auth-password.component-C4yqf342.mjs.map} +1 -1
  70. package/fesm2022/{acorex-modules-auth-password.component-CfhiS2hO.mjs → acorex-modules-auth-password.component-MJhNk3UI.mjs} +2 -2
  71. package/fesm2022/{acorex-modules-auth-password.component-CfhiS2hO.mjs.map → acorex-modules-auth-password.component-MJhNk3UI.mjs.map} +1 -1
  72. package/fesm2022/{acorex-modules-auth-routes-95DQOnjS.mjs → acorex-modules-auth-routes-DhORV1Js.mjs} +2 -2
  73. package/fesm2022/{acorex-modules-auth-routes-95DQOnjS.mjs.map → acorex-modules-auth-routes-DhORV1Js.mjs.map} +1 -1
  74. package/fesm2022/{acorex-modules-auth-two-factor.module-BkErlA-n.mjs → acorex-modules-auth-two-factor.module-BWKP0_jO.mjs} +3 -3
  75. package/fesm2022/{acorex-modules-auth-two-factor.module-BkErlA-n.mjs.map → acorex-modules-auth-two-factor.module-BWKP0_jO.mjs.map} +1 -1
  76. package/fesm2022/acorex-modules-auth.mjs +4 -4
  77. package/fesm2022/acorex-modules-backend.mjs +154 -137
  78. package/fesm2022/acorex-modules-backend.mjs.map +1 -1
  79. package/fesm2022/acorex-modules-form-management-designer.page-SoPH2V7i.mjs +27 -0
  80. package/fesm2022/acorex-modules-form-management-designer.page-SoPH2V7i.mjs.map +1 -0
  81. package/fesm2022/acorex-modules-form-management.mjs +36 -0
  82. package/fesm2022/acorex-modules-form-management.mjs.map +1 -0
  83. package/form-management/README.md +4 -0
  84. package/form-management/index.d.ts +1 -0
  85. package/form-management/lib/designer/designer.page.d.ts +5 -0
  86. package/form-management/lib/form-management.module.d.ts +7 -0
  87. package/package.json +6 -6
  88. package/backend/lib/data/local/data-Conditioner.d.ts +0 -6
  89. package/esm2022/application-management/lib/application-module.entity.mjs +0 -273
  90. package/esm2022/application-management/lib/applications.entity.mjs +0 -311
  91. package/esm2022/application-management/lib/edition.entity.mjs +0 -284
  92. package/esm2022/application-management/lib/entity.entity.mjs +0 -284
  93. package/esm2022/application-management/lib/feature.entity.mjs +0 -284
  94. package/esm2022/application-management/lib/modules.entity.mjs +0 -324
  95. package/esm2022/application-management/lib/permission.entity.mjs +0 -284
  96. package/esm2022/backend/lib/data/local/data-Conditioner.mjs +0 -138
  97. package/esm2022/log-management/acorex-modules-log-management.mjs +0 -5
  98. package/esm2022/log-management/index.mjs +0 -3
  99. package/esm2022/log-management/lib/audit-logs.entity.mjs +0 -391
  100. package/esm2022/log-management/lib/log-management.module.mjs +0 -16
  101. package/fesm2022/acorex-modules-auth-acorex-modules-auth-BD7I4S8c.mjs.map +0 -1
  102. package/fesm2022/acorex-modules-log-management.mjs +0 -414
  103. package/fesm2022/acorex-modules-log-management.mjs.map +0 -1
  104. package/log-management/README.md +0 -4
  105. package/log-management/index.d.ts +0 -2
  106. package/log-management/lib/audit-logs.entity.d.ts +0 -3
  107. package/log-management/lib/log-management.module.d.ts +0 -6
  108. /package/application-management/lib/{application-module.entity.d.ts → entities/application-module.entity.d.ts} +0 -0
  109. /package/application-management/lib/{applications.entity.d.ts → entities/applications.entity.d.ts} +0 -0
  110. /package/application-management/lib/{edition.entity.d.ts → entities/edition.entity.d.ts} +0 -0
  111. /package/application-management/lib/{entity.entity.d.ts → entities/entity.entity.d.ts} +0 -0
  112. /package/application-management/lib/{feature.entity.d.ts → entities/feature.entity.d.ts} +0 -0
  113. /package/application-management/lib/{modules.entity.d.ts → entities/modules.entity.d.ts} +0 -0
  114. /package/application-management/lib/{permission.entity.d.ts → entities/permission.entity.d.ts} +0 -0
@@ -3,7 +3,6 @@ import { AXM_AUTH_CONFIG_TOKEN, AXMAuthModule } from '@acorex/modules/auth';
3
3
  import * as i3 from '@acorex/platform/auth';
4
4
  import { AXPSessionService, AXP_TENANT_LOADER, AXP_APPLICATION_LOADER, AXP_PERMISSION_LOADER, AXP_FEATURE_LOADER, AXPAuthModule } from '@acorex/platform/auth';
5
5
  import { AXP_ROOT_CONFIG_TOKEN, AXPDataProvider } from '@acorex/platform/common';
6
- import { AXPFileManagementService } from '@acorex/platform/widgets';
7
6
  import * as i0 from '@angular/core';
8
7
  import { inject, Injectable, Component, NgModule } from '@angular/core';
9
8
  import * as i1$1 from '@angular/router';
@@ -13,8 +12,12 @@ import { HttpClient, HttpParams, HttpHeaders } from '@angular/common/http';
13
12
  import { map, BehaviorSubject, tap, filter, take, of, switchMap, delay, firstValueFrom, Observable } from 'rxjs';
14
13
  import * as i1$3 from 'angular-oauth2-oidc';
15
14
  import { OAuthService, OAuthModule } from 'angular-oauth2-oidc';
15
+ import { AXPModuleDesignerService } from '@acorex/modules/application-management';
16
+ import { AXPCommentService } from '@acorex/platform/themes/default';
17
+ import { AXPFileManagementService } from '@acorex/platform/widgets';
16
18
  import { AXNetworkService, AXUploadStatus, AXDownloadStatus } from '@acorex/core/network';
17
- import { get, isNil, isEmpty, endsWith, startsWith, includes, lte, gte, lt, gt, isEqual, orderBy } from 'lodash-es';
19
+ import { AXPEntityDefinitionRegistryService } from '@acorex/platform/layout/entity';
20
+ import { applySortArray, applyFilterArray } from '@acorex/platform/core';
18
21
  import * as i1$2 from '@acorex/platform/mocks';
19
22
 
20
23
  class AXMOidcApplicationLoader {
@@ -458,7 +461,7 @@ class AXMBackendDataProvider {
458
461
  function generateQueryString(filter) {
459
462
  if (!filter.filters) {
460
463
  // Base case: single filter
461
- return `${capitalizeFirstLetter(filter.field)} ${filter.operator.type} ${filter.value}`;
464
+ return `${filter.field} ${filter.operator.type} '${filter.value}'`;
462
465
  }
463
466
  else if (!filter.filters.length) {
464
467
  return;
@@ -578,6 +581,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
578
581
  }]
579
582
  }], ctorParameters: () => [{ type: i1$1.Router }, { type: i1$1.ActivatedRoute }] });
580
583
 
584
+ class AXMCommentService {
585
+ constructor() {
586
+ this.configs = inject(AXP_ROOT_CONFIG_TOKEN);
587
+ this.http = inject(HttpClient);
588
+ this.mainUrl = this.configs.baseUrl;
589
+ this.messagesUrl = `${this.configs.baseUrl}/conversion/messages`;
590
+ }
591
+ async getComments(params) {
592
+ const url = `${this.messagesUrl}`;
593
+ return await firstValueFrom(this.http.get(url, {
594
+ params: params,
595
+ }));
596
+ }
597
+ async postComment(payload) {
598
+ const url = `${this.messagesUrl}`;
599
+ return await firstValueFrom(this.http.post(url, payload));
600
+ }
601
+ async replyToComment(payload) {
602
+ const url = `${this.mainUrl}/reply-comment`;
603
+ return await firstValueFrom(this.http.post(url, payload));
604
+ }
605
+ async likeComment(commentId) {
606
+ const url = `${this.mainUrl}/like-comment`;
607
+ return await firstValueFrom(this.http.post(url, commentId));
608
+ }
609
+ async deleteComment(commentId) {
610
+ const url = `${this.mainUrl}/delete-comment/${commentId}`;
611
+ return await firstValueFrom(this.http.delete(url));
612
+ }
613
+ async editComment(payload) {
614
+ const url = `${this.mainUrl}/edit-comment`;
615
+ return await firstValueFrom(this.http.put(url, payload));
616
+ }
617
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMCommentService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
618
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMCommentService, providedIn: 'root' }); }
619
+ }
620
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMCommentService, decorators: [{
621
+ type: Injectable,
622
+ args: [{
623
+ providedIn: 'root',
624
+ }]
625
+ }] });
626
+
581
627
  class AXMFileManagementService {
582
628
  constructor() {
583
629
  this.configs = inject(AXP_ROOT_CONFIG_TOKEN);
@@ -673,142 +719,97 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
673
719
  }]
674
720
  }] });
675
721
 
676
- const loggingEnabled = false; // Set to true to enable logging, false to disable
677
- function applyCondition(item, condition) {
678
- const rawValue = condition.field ? get(item, condition.field) : null;
679
- const itemValue = typeof rawValue === 'string' ? rawValue.toLowerCase() : rawValue;
680
- const conditionValue = typeof condition.value === 'string' ? condition.value.toLowerCase() : condition.value;
681
- // Conditional Logging for debugging
682
- if (loggingEnabled) {
683
- console.log('Condition:', condition);
684
- console.log('Item Value:', itemValue);
685
- console.log('Condition Value:', conditionValue);
686
- }
687
- let result;
688
- const valueToCompare = isNil(condition.field) || condition.field === '' ? conditionValue : itemValue;
689
- switch (condition.operator.type) {
690
- case 'equal':
691
- result = isEqual(valueToCompare, conditionValue);
692
- if (loggingEnabled)
693
- console.log('Equal check result:', result);
694
- break;
695
- case 'notEqual':
696
- result = !isEqual(valueToCompare, conditionValue);
697
- if (loggingEnabled)
698
- console.log('Not equal check result:', result);
699
- break;
700
- case 'greaterThan':
701
- result = gt(valueToCompare, conditionValue);
702
- if (loggingEnabled)
703
- console.log('Greater than check result:', result);
704
- break;
705
- case 'lessThan':
706
- result = lt(valueToCompare, conditionValue);
707
- if (loggingEnabled)
708
- console.log('Less than check result:', result);
709
- break;
710
- case 'greaterThanOrEqual':
711
- result = gte(valueToCompare, conditionValue);
712
- if (loggingEnabled)
713
- console.log('Greater than or equal check result:', result);
714
- break;
715
- case 'lessThanOrEqual':
716
- result = lte(valueToCompare, conditionValue);
717
- if (loggingEnabled)
718
- console.log('Less than or equal check result:', result);
719
- break;
720
- case 'contains':
721
- if (typeof valueToCompare === 'string') {
722
- result = includes(valueToCompare, conditionValue);
723
- }
724
- else if (Array.isArray(valueToCompare)) {
725
- result = includes(valueToCompare.map(val => val.toString().toLowerCase()), conditionValue);
726
- }
727
- else {
728
- result = false;
729
- }
730
- if (loggingEnabled)
731
- console.log('Contains check result:', result);
732
- break;
733
- case 'notContains':
734
- if (typeof valueToCompare === 'string') {
735
- result = !includes(valueToCompare, conditionValue);
736
- }
737
- else if (Array.isArray(valueToCompare)) {
738
- result = !includes(valueToCompare.map(val => val.toString().toLowerCase()), conditionValue);
739
- }
740
- else {
741
- result = false;
742
- }
743
- if (loggingEnabled)
744
- console.log('Not contains check result:', result);
745
- break;
746
- case 'startsWith':
747
- result = typeof valueToCompare === 'string' && startsWith(valueToCompare, conditionValue);
748
- if (loggingEnabled)
749
- console.log('Starts with check result:', result);
750
- break;
751
- case 'endsWith':
752
- result = typeof valueToCompare === 'string' && endsWith(valueToCompare, conditionValue);
753
- if (loggingEnabled)
754
- console.log('Ends with check result:', result);
755
- break;
756
- case 'isEmpty':
757
- result = isEmpty(valueToCompare);
758
- if (loggingEnabled)
759
- console.log('Is empty check result:', result);
760
- break;
761
- case 'isNull':
762
- result = isNil(valueToCompare);
763
- if (loggingEnabled)
764
- console.log('Is null check result:', result);
765
- break;
766
- case 'isNotEmpty':
767
- result = !isEmpty(valueToCompare);
768
- if (loggingEnabled)
769
- console.log('Is not empty check result:', result);
770
- break;
771
- case 'between':
772
- result = !isNil(valueToCompare) && valueToCompare >= condition.value.from && valueToCompare <= condition.value.to;
773
- if (loggingEnabled)
774
- console.log('Between check result:', result);
775
- break;
776
- default:
777
- result = true;
778
- if (loggingEnabled)
779
- console.log('Default case, returning true');
780
- }
781
- return result;
782
- }
783
- function applyFilterArray(dataArray, filters, logic = 'and') {
784
- if (filters && filters.length) {
785
- return dataArray.filter((item) => {
786
- if (logic === 'and') {
787
- return filters.every((f) => {
788
- return f.filters ? applyFilterArray([item], f.filters, f.logic).length > 0 : applyCondition(item, f);
789
- });
790
- }
791
- else {
792
- // logic === 'or'
793
- return filters.some((f) => {
794
- return f.filters ? applyFilterArray([item], f.filters, f.logic).length > 0 : applyCondition(item, f);
795
- });
796
- }
722
+ class AXMModuleDesignerService {
723
+ constructor() {
724
+ this.loader = inject(AXPEntityDefinitionRegistryService);
725
+ this.defaultConfig = {
726
+ skip: 0,
727
+ sort: [],
728
+ take: 10,
729
+ filter: {
730
+ field: '',
731
+ value: '',
732
+ operator: 'equal',
733
+ },
734
+ };
735
+ this.AdvanceConfig = (moduleId) => ({
736
+ skip: 0,
737
+ sort: [],
738
+ take: 10,
739
+ filter: {
740
+ field: '',
741
+ value: '',
742
+ operator: { type: 'equal' },
743
+ filters: [
744
+ {
745
+ field: 'moduleId',
746
+ operator: { type: 'equal' },
747
+ value: moduleId,
748
+ },
749
+ ],
750
+ },
797
751
  });
798
752
  }
799
- else {
800
- return dataArray;
801
- }
802
- }
803
- function applySortArray(dataArray, sorts) {
804
- if (sorts && sorts.length > 0) {
805
- const sortFields = sorts.map((s) => s.field);
806
- const sortOrders = sorts.map((s) => s.dir);
807
- return orderBy(dataArray, sortFields, sortOrders);
808
- }
809
- else
810
- return dataArray;
753
+ async moduleDef() {
754
+ return this.loader.resolve('application-management', 'module');
755
+ }
756
+ async entityDef() {
757
+ return this.loader.resolve('application-management', 'entity');
758
+ }
759
+ async featureDef() {
760
+ return this.loader.resolve('application-management', 'feature');
761
+ }
762
+ async permissionDef() {
763
+ return this.loader.resolve('application-management', 'permission');
764
+ }
765
+ async getModules() {
766
+ const entity = await this.moduleDef();
767
+ const func = entity?.queries.list?.execute;
768
+ return func(this.defaultConfig);
769
+ }
770
+ async getSingleModule() { }
771
+ async createModule(payload) { }
772
+ async updateModule(moduleId, payload) { }
773
+ async deleteModule(moduleId) { }
774
+ //
775
+ async getEntities(moduleId) {
776
+ const entity = await this.entityDef();
777
+ const func = entity?.queries.list?.execute;
778
+ return func(this.AdvanceConfig(moduleId));
779
+ }
780
+ async getSingleEntity(entityId) { }
781
+ async createEntity(payload) { }
782
+ async updateEntity(payload) { }
783
+ async deleteEntity(entityId) { }
784
+ //
785
+ async getFeatures(moduleId) {
786
+ const entity = await this.featureDef();
787
+ const func = entity?.queries.list?.execute;
788
+ return func(this.AdvanceConfig(moduleId));
789
+ }
790
+ async getSingleFeature(featureId) { }
791
+ async createFeature(payload) { }
792
+ async updateFeature(payload) { }
793
+ async deleteFeature(featureId) { }
794
+ //
795
+ async getPermissions(moduleId) {
796
+ const entity = await this.permissionDef();
797
+ const func = entity?.queries.list?.execute;
798
+ return func(this.AdvanceConfig(moduleId));
799
+ }
800
+ async getSinglePermission(permissionId) { }
801
+ async createPermission(payload) { }
802
+ async updatePermission(payload) { }
803
+ async deletePermission(permissionId) { }
804
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMModuleDesignerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
805
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMModuleDesignerService, providedIn: 'root' }); }
811
806
  }
807
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMModuleDesignerService, decorators: [{
808
+ type: Injectable,
809
+ args: [{
810
+ providedIn: 'root',
811
+ }]
812
+ }] });
812
813
 
813
814
  class AXMLocalDataProvider {
814
815
  constructor(storageService) {
@@ -921,6 +922,14 @@ class AXMBackendModule {
921
922
  provide: AXPFileManagementService,
922
923
  useClass: AXMFileManagementService,
923
924
  },
925
+ {
926
+ provide: AXPCommentService,
927
+ useClass: AXMCommentService,
928
+ },
929
+ {
930
+ provide: AXPModuleDesignerService,
931
+ useClass: AXMModuleDesignerService,
932
+ },
924
933
  {
925
934
  provide: ROUTES,
926
935
  multi: true,
@@ -969,6 +978,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
969
978
  provide: AXPFileManagementService,
970
979
  useClass: AXMFileManagementService,
971
980
  },
981
+ {
982
+ provide: AXPCommentService,
983
+ useClass: AXMCommentService,
984
+ },
985
+ {
986
+ provide: AXPModuleDesignerService,
987
+ useClass: AXMModuleDesignerService,
988
+ },
972
989
  {
973
990
  provide: ROUTES,
974
991
  multi: true,
@@ -982,5 +999,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
982
999
  * Generated bundle index. Do not edit.
983
1000
  */
984
1001
 
985
- export { AXMBackendDataProvider, AXMBackendModule, AXMConfigurationService, AXMFileManagementService, AXMLocalDataProvider, AXMOidcApplicationLoader, AXMOidcFeatureLoader, AXMOidcPermissionLoader, AXMOidcStrategy, AXMOidcTenantLoader, applyFilterArray, applySortArray };
1002
+ export { AXMBackendDataProvider, AXMBackendModule, AXMCommentService, AXMConfigurationService, AXMFileManagementService, AXMLocalDataProvider, AXMModuleDesignerService, AXMOidcApplicationLoader, AXMOidcFeatureLoader, AXMOidcPermissionLoader, AXMOidcStrategy, AXMOidcTenantLoader };
986
1003
  //# sourceMappingURL=acorex-modules-backend.mjs.map