@rosoftlab/core 1.0.4-alpha-11 → 1.0.5-alpha-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.
Files changed (58) hide show
  1. package/fesm2022/rosoftlab-core.mjs +308 -51
  2. package/fesm2022/rosoftlab-core.mjs.map +1 -1
  3. package/package.json +9 -9
  4. package/types/rosoftlab-core.d.ts +507 -0
  5. package/index.d.ts +0 -5
  6. package/lib/auth/auth.service.d.ts +0 -29
  7. package/lib/auth/index.d.ts +0 -4
  8. package/lib/auth/provide-auth.d.ts +0 -3
  9. package/lib/auth/tokens.d.ts +0 -5
  10. package/lib/auth/user-manager.factory.d.ts +0 -5
  11. package/lib/base-components/base-form-edit.component.d.ts +0 -56
  12. package/lib/base-components/field-error-display/field-error-display.component.d.ts +0 -7
  13. package/lib/base-components/index.d.ts +0 -3
  14. package/lib/base-components/page-not-found/page-not-found.component.d.ts +0 -8
  15. package/lib/base-components/under-construction/under-construction.component.d.ts +0 -6
  16. package/lib/configurations.d.ts +0 -6
  17. package/lib/constants/symbols.d.ts +0 -1
  18. package/lib/converters/date/date.converter.d.ts +0 -5
  19. package/lib/core.d.ts +0 -10
  20. package/lib/decorators/attribute.decorator.d.ts +0 -2
  21. package/lib/decorators/base-datastore-config.decorator.d.ts +0 -1
  22. package/lib/decorators/base-model-config.decorator.d.ts +0 -1
  23. package/lib/decorators/custom.type.decorator.d.ts +0 -1
  24. package/lib/grid-layout-format.enum.d.ts +0 -12
  25. package/lib/index.d.ts +0 -26
  26. package/lib/interceptors/cache.interceptor.d.ts +0 -13
  27. package/lib/interceptors/index.d.ts +0 -1
  28. package/lib/interfaces/attribute-decorator-options.interface.d.ts +0 -8
  29. package/lib/interfaces/datastore-config.interface.d.ts +0 -8
  30. package/lib/interfaces/model-config.interface.d.ts +0 -10
  31. package/lib/interfaces/overrides.interface.d.ts +0 -5
  32. package/lib/interfaces/property-converter.interface.d.ts +0 -4
  33. package/lib/models/base-meta.model.d.ts +0 -5
  34. package/lib/models/base-query-data.d.ts +0 -7
  35. package/lib/models/base.model.d.ts +0 -31
  36. package/lib/models/error-response.model.d.ts +0 -17
  37. package/lib/models/filter-request.d.ts +0 -8
  38. package/lib/models/metadata-storage.d.ts +0 -5
  39. package/lib/models/rule.d.ts +0 -5
  40. package/lib/pipes/Nl2brPipe.pipe.d.ts +0 -7
  41. package/lib/pipes/input-error.pipe.d.ts +0 -10
  42. package/lib/providers.d.ts +0 -2
  43. package/lib/resolvers/dynamically-class-resolver.d.ts +0 -3
  44. package/lib/resolvers/dynamically-service-resolver.d.ts +0 -3
  45. package/lib/resolvers/index.d.ts +0 -2
  46. package/lib/rsl-base-module.d.ts +0 -13
  47. package/lib/services/base-datastore.service.d.ts +0 -47
  48. package/lib/services/base.service.d.ts +0 -27
  49. package/lib/services/cache.service.d.ts +0 -11
  50. package/lib/services/datastore.service.d.ts +0 -12
  51. package/lib/services/dialog.service.d.ts +0 -7
  52. package/lib/services/index.d.ts +0 -8
  53. package/lib/services/local-file.service.d.ts +0 -11
  54. package/lib/services/route-history.service.d.ts +0 -12
  55. package/lib/services/translate-loader.service.d.ts +0 -14
  56. package/lib/utils.d.ts +0 -2
  57. package/lib/validators/pattern-validator.d.ts +0 -4
  58. package/public-api.d.ts +0 -1
@@ -93,10 +93,10 @@ class AuthService {
93
93
  async signout() {
94
94
  await this.manager.signoutRedirect();
95
95
  }
96
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: AuthService, deps: [{ token: i1.UserManager }], target: i0.ɵɵFactoryTarget.Injectable }); }
97
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: AuthService, providedIn: 'root' }); }
96
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: AuthService, deps: [{ token: i1.UserManager }], target: i0.ɵɵFactoryTarget.Injectable }); }
97
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: AuthService, providedIn: 'root' }); }
98
98
  }
99
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: AuthService, decorators: [{
99
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: AuthService, decorators: [{
100
100
  type: Injectable,
101
101
  args: [{ providedIn: 'root' }]
102
102
  }], ctorParameters: () => [{ type: i1.UserManager }] });
@@ -121,12 +121,12 @@ function provideAuth(settings) {
121
121
  }
122
122
 
123
123
  class FieldErrorDisplayComponent {
124
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: FieldErrorDisplayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
125
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.8", type: FieldErrorDisplayComponent, isStandalone: false, selector: "rsl-field-error-display", inputs: { errorMsg: "errorMsg", displayError: "displayError" }, ngImport: i0, template: "<div *ngIf=\"displayError\" >\n <!-- <span class=\"glyphicon glyphicon-remove form-control-feedback fix-error-icon\"></span> -->\n <span class=\"sr-only\">(error)</span>\n <div class=\"error-msg\">\n {{ errorMsg }}\n </div>\n</div>\n", styles: [".error-msg{color:red}.fix-error-icon{top:27px}\n"] }); }
124
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: FieldErrorDisplayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
125
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.0.6", type: FieldErrorDisplayComponent, isStandalone: false, selector: "rsl-field-error-display", inputs: { errorMsg: "errorMsg", displayError: "displayError" }, ngImport: i0, template: "@if (displayError) {\n <div >\n <!-- <span class=\"glyphicon glyphicon-remove form-control-feedback fix-error-icon\"></span> -->\n <span class=\"sr-only\">(error)</span>\n <div class=\"error-msg\">\n {{ errorMsg }}\n </div>\n </div>\n}\n", styles: [".error-msg{color:red}.fix-error-icon{top:27px}\n"] }); }
126
126
  }
127
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: FieldErrorDisplayComponent, decorators: [{
127
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: FieldErrorDisplayComponent, decorators: [{
128
128
  type: Component,
129
- args: [{ selector: 'rsl-field-error-display', standalone: false, template: "<div *ngIf=\"displayError\" >\n <!-- <span class=\"glyphicon glyphicon-remove form-control-feedback fix-error-icon\"></span> -->\n <span class=\"sr-only\">(error)</span>\n <div class=\"error-msg\">\n {{ errorMsg }}\n </div>\n</div>\n", styles: [".error-msg{color:red}.fix-error-icon{top:27px}\n"] }]
129
+ args: [{ selector: 'rsl-field-error-display', standalone: false, template: "@if (displayError) {\n <div >\n <!-- <span class=\"glyphicon glyphicon-remove form-control-feedback fix-error-icon\"></span> -->\n <span class=\"sr-only\">(error)</span>\n <div class=\"error-msg\">\n {{ errorMsg }}\n </div>\n </div>\n}\n", styles: [".error-msg{color:red}.fix-error-icon{top:27px}\n"] }]
130
130
  }], propDecorators: { errorMsg: [{
131
131
  type: Input
132
132
  }], displayError: [{
@@ -138,20 +138,20 @@ class PageNotFoundComponent {
138
138
  }
139
139
  ngOnInit() {
140
140
  }
141
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: PageNotFoundComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
142
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.8", type: PageNotFoundComponent, isStandalone: false, selector: "rsl-page-not-found", ngImport: i0, template: "<div class=\"forms-view-container\">\n <div class=\"under-construction-view-container\">\n Page not found\n </div>\n</div>", styles: [".under-construction-view-container{height:calc(100vh - 250px);margin:60px 0 0;padding:0;display:flex;justify-content:center;align-items:center;box-sizing:border-box;font-size:1.8em;line-height:1.3em;font-weight:300;color:#58585b;text-align:center}\n"] }); }
141
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: PageNotFoundComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
142
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.6", type: PageNotFoundComponent, isStandalone: false, selector: "rsl-page-not-found", ngImport: i0, template: "<div class=\"forms-view-container\">\n <div class=\"under-construction-view-container\">\n Page not found\n </div>\n</div>", styles: [".under-construction-view-container{height:calc(100vh - 250px);margin:60px 0 0;padding:0;display:flex;justify-content:center;align-items:center;box-sizing:border-box;font-size:1.8em;line-height:1.3em;font-weight:300;color:#58585b;text-align:center}\n"] }); }
143
143
  }
144
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: PageNotFoundComponent, decorators: [{
144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: PageNotFoundComponent, decorators: [{
145
145
  type: Component,
146
146
  args: [{ selector: 'rsl-page-not-found', standalone: false, template: "<div class=\"forms-view-container\">\n <div class=\"under-construction-view-container\">\n Page not found\n </div>\n</div>", styles: [".under-construction-view-container{height:calc(100vh - 250px);margin:60px 0 0;padding:0;display:flex;justify-content:center;align-items:center;box-sizing:border-box;font-size:1.8em;line-height:1.3em;font-weight:300;color:#58585b;text-align:center}\n"] }]
147
147
  }], ctorParameters: () => [] });
148
148
 
149
149
  class UnderConstructionComponent {
150
150
  constructor() { }
151
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: UnderConstructionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
152
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.8", type: UnderConstructionComponent, isStandalone: false, selector: "rsl-under-construction", ngImport: i0, template: "<div class=\"forms-view-container\">\n <div class=\"under-construction-view-container\">\n Page under construction\n </div>\n</div>", styles: [".under-construction-view-container{height:calc(100vh - 250px);margin:60px 0 0;padding:0;display:flex;justify-content:center;align-items:center;box-sizing:border-box;font-size:1.8em;line-height:1.3em;font-weight:300;color:#58585b;text-align:center}\n"] }); }
151
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: UnderConstructionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
152
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.6", type: UnderConstructionComponent, isStandalone: false, selector: "rsl-under-construction", ngImport: i0, template: "<div class=\"forms-view-container\">\n <div class=\"under-construction-view-container\">\n Page under construction\n </div>\n</div>", styles: [".under-construction-view-container{height:calc(100vh - 250px);margin:60px 0 0;padding:0;display:flex;justify-content:center;align-items:center;box-sizing:border-box;font-size:1.8em;line-height:1.3em;font-weight:300;color:#58585b;text-align:center}\n"] }); }
153
153
  }
154
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: UnderConstructionComponent, decorators: [{
154
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: UnderConstructionComponent, decorators: [{
155
155
  type: Component,
156
156
  args: [{ selector: 'rsl-under-construction', standalone: false, template: "<div class=\"forms-view-container\">\n <div class=\"under-construction-view-container\">\n Page under construction\n </div>\n</div>", styles: [".under-construction-view-container{height:calc(100vh - 250px);margin:60px 0 0;padding:0;display:flex;justify-content:center;align-items:center;box-sizing:border-box;font-size:1.8em;line-height:1.3em;font-weight:300;color:#58585b;text-align:center}\n"] }]
157
157
  }], ctorParameters: () => [] });
@@ -213,10 +213,10 @@ class CacheService {
213
213
  const keysToDelete = Object.keys(this.cache).filter(key => key.includes(keyword));
214
214
  keysToDelete.forEach(key => this.delete(key));
215
215
  }
216
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: CacheService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
217
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: CacheService, providedIn: 'root' }); }
216
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: CacheService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
217
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: CacheService, providedIn: 'root' }); }
218
218
  }
219
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: CacheService, decorators: [{
219
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: CacheService, decorators: [{
220
220
  type: Injectable,
221
221
  args: [{
222
222
  providedIn: 'root'
@@ -547,10 +547,10 @@ class BaseDatastore {
547
547
  _toQueryString(params) {
548
548
  return queryString.stringify(params, { arrayFormat: 'bracket' });
549
549
  }
550
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: BaseDatastore, deps: [{ token: i1$1.HttpClient }, { token: CacheService }], target: i0.ɵɵFactoryTarget.Injectable }); }
551
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: BaseDatastore }); }
550
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: BaseDatastore, deps: [{ token: i1$1.HttpClient }, { token: CacheService }], target: i0.ɵɵFactoryTarget.Injectable }); }
551
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: BaseDatastore }); }
552
552
  }
553
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: BaseDatastore, decorators: [{
553
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: BaseDatastore, decorators: [{
554
554
  type: Injectable
555
555
  }], ctorParameters: () => [{ type: i1$1.HttpClient }, { type: CacheService }] });
556
556
 
@@ -638,10 +638,10 @@ class BaseService {
638
638
  getSelectValues(property) {
639
639
  return null;
640
640
  }
641
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: BaseService, deps: [{ token: BaseDatastore }], target: i0.ɵɵFactoryTarget.Injectable }); }
642
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: BaseService, providedIn: 'root' }); }
641
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: BaseService, deps: [{ token: BaseDatastore }], target: i0.ɵɵFactoryTarget.Injectable }); }
642
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: BaseService, providedIn: 'root' }); }
643
643
  }
644
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: BaseService, decorators: [{
644
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: BaseService, decorators: [{
645
645
  type: Injectable,
646
646
  args: [{
647
647
  providedIn: 'root'
@@ -862,10 +862,10 @@ class BaseFormEditComponent {
862
862
  }
863
863
  return rvalue;
864
864
  }
865
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: BaseFormEditComponent, deps: [{ token: i1$2.UntypedFormBuilder }, { token: i2.Router }, { token: i2.ActivatedRoute }, { token: BaseService }, { token: DialogSERVICE }, { token: i1$3.TranslateService }, { token: i5.Location }], target: i0.ɵɵFactoryTarget.Component }); }
866
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.8", type: BaseFormEditComponent, isStandalone: false, selector: "app-base.form.edit", ngImport: i0, template: '', isInline: true }); }
865
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: BaseFormEditComponent, deps: [{ token: i1$2.UntypedFormBuilder }, { token: i2.Router }, { token: i2.ActivatedRoute }, { token: BaseService }, { token: DialogSERVICE }, { token: i1$3.TranslateService }, { token: i5.Location }], target: i0.ɵɵFactoryTarget.Component }); }
866
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.6", type: BaseFormEditComponent, isStandalone: false, selector: "app-base.form.edit", ngImport: i0, template: '', isInline: true }); }
867
867
  }
868
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: BaseFormEditComponent, decorators: [{
868
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: BaseFormEditComponent, decorators: [{
869
869
  type: Component,
870
870
  args: [{
871
871
  selector: 'app-base.form.edit',
@@ -1074,10 +1074,10 @@ class CacheInterceptor {
1074
1074
  // })
1075
1075
  // );
1076
1076
  }
1077
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: CacheInterceptor, deps: [{ token: 'CACHE_EXPIRATION_TIME' }, { token: CacheService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1078
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: CacheInterceptor }); }
1077
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: CacheInterceptor, deps: [{ token: 'CACHE_EXPIRATION_TIME' }, { token: CacheService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1078
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: CacheInterceptor }); }
1079
1079
  }
1080
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: CacheInterceptor, decorators: [{
1080
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: CacheInterceptor, decorators: [{
1081
1081
  type: Injectable
1082
1082
  }], ctorParameters: () => [{ type: undefined, decorators: [{
1083
1083
  type: Inject,
@@ -1279,10 +1279,10 @@ class InputErrorPipe {
1279
1279
  }
1280
1280
  return rvalue;
1281
1281
  }
1282
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: InputErrorPipe, deps: [{ token: i1$3.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
1283
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.8", ngImport: i0, type: InputErrorPipe, isStandalone: false, name: "inputError" }); }
1282
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: InputErrorPipe, deps: [{ token: i1$3.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
1283
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: InputErrorPipe, isStandalone: false, name: "inputError" }); }
1284
1284
  }
1285
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: InputErrorPipe, decorators: [{
1285
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: InputErrorPipe, decorators: [{
1286
1286
  type: Pipe,
1287
1287
  args: [{
1288
1288
  name: 'inputError',
@@ -1299,10 +1299,10 @@ class Nl2brPipe {
1299
1299
  }
1300
1300
  return value;
1301
1301
  }
1302
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: Nl2brPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
1303
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.8", ngImport: i0, type: Nl2brPipe, isStandalone: false, name: "nl2br" }); }
1302
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: Nl2brPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
1303
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: Nl2brPipe, isStandalone: false, name: "nl2br" }); }
1304
1304
  }
1305
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: Nl2brPipe, decorators: [{
1305
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: Nl2brPipe, decorators: [{
1306
1306
  type: Pipe,
1307
1307
  args: [{
1308
1308
  name: 'nl2br',
@@ -1320,17 +1320,229 @@ let DatastoreCore = class DatastoreCore extends BaseDatastore {
1320
1320
  };
1321
1321
  this.config = this.customConfig;
1322
1322
  }
1323
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: DatastoreCore, deps: [{ token: i1$1.HttpClient }, { token: CacheService }, { token: Configurations }], target: i0.ɵɵFactoryTarget.Injectable }); }
1324
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: DatastoreCore }); }
1323
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: DatastoreCore, deps: [{ token: i1$1.HttpClient }, { token: CacheService }, { token: Configurations }], target: i0.ɵɵFactoryTarget.Injectable }); }
1324
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: DatastoreCore }); }
1325
1325
  };
1326
1326
  DatastoreCore = __decorate([
1327
1327
  BaseDatastoreConfig({ apiVersion: '', baseUrl: '' }),
1328
1328
  __metadata("design:paramtypes", [HttpClient, CacheService, Configurations])
1329
1329
  ], DatastoreCore);
1330
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: DatastoreCore, decorators: [{
1330
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: DatastoreCore, decorators: [{
1331
1331
  type: Injectable
1332
1332
  }], ctorParameters: () => [{ type: i1$1.HttpClient }, { type: CacheService }, { type: Configurations }] });
1333
1333
 
1334
+ let Employee = class Employee extends BaseModel {
1335
+ };
1336
+ __decorate([
1337
+ Attribute({ serializedName: 'id' }),
1338
+ __metadata("design:type", String)
1339
+ ], Employee.prototype, "id", void 0);
1340
+ __decorate([
1341
+ Attribute({ serializedName: 'userName', required: true }),
1342
+ __metadata("design:type", String)
1343
+ ], Employee.prototype, "userName", void 0);
1344
+ __decorate([
1345
+ Attribute({ serializedName: 'firstName', required: true }),
1346
+ __metadata("design:type", String)
1347
+ ], Employee.prototype, "firstName", void 0);
1348
+ __decorate([
1349
+ Attribute({ serializedName: 'lastName', required: true }),
1350
+ __metadata("design:type", String)
1351
+ ], Employee.prototype, "lastName", void 0);
1352
+ __decorate([
1353
+ Attribute({ serializedName: 'email', required: true }),
1354
+ __metadata("design:type", String)
1355
+ ], Employee.prototype, "email", void 0);
1356
+ __decorate([
1357
+ Attribute({ serializedName: 'role', required: true }),
1358
+ __metadata("design:type", Object)
1359
+ ], Employee.prototype, "role", void 0);
1360
+ __decorate([
1361
+ Attribute({ serializedName: 'password' }),
1362
+ __metadata("design:type", String)
1363
+ ], Employee.prototype, "password", void 0);
1364
+ __decorate([
1365
+ Attribute({ serializedName: 'confirmPassword' }),
1366
+ __metadata("design:type", String)
1367
+ ], Employee.prototype, "confirmPassword", void 0);
1368
+ __decorate([
1369
+ Attribute({ serializedName: 'extraData' }),
1370
+ __metadata("design:type", String)
1371
+ ], Employee.prototype, "extraData", void 0);
1372
+ Employee = __decorate([
1373
+ BaseModelConfig({
1374
+ type: 'employee'
1375
+ })
1376
+ ], Employee);
1377
+
1378
+ let Menu = class Menu extends BaseModel {
1379
+ };
1380
+ __decorate([
1381
+ Attribute({ serializedName: 'id' }),
1382
+ __metadata("design:type", String)
1383
+ ], Menu.prototype, "id", void 0);
1384
+ __decorate([
1385
+ Attribute({ serializedName: 'header' }),
1386
+ __metadata("design:type", String)
1387
+ ], Menu.prototype, "header", void 0);
1388
+ __decorate([
1389
+ Attribute({ serializedName: 'icon' }),
1390
+ __metadata("design:type", String)
1391
+ ], Menu.prototype, "icon", void 0);
1392
+ __decorate([
1393
+ Attribute({ serializedName: 'link' }),
1394
+ __metadata("design:type", String)
1395
+ ], Menu.prototype, "link", void 0);
1396
+ __decorate([
1397
+ Attribute({ serializedName: 'title' }),
1398
+ __metadata("design:type", String)
1399
+ ], Menu.prototype, "title", void 0);
1400
+ __decorate([
1401
+ Attribute({ serializedName: 'sublinks' }),
1402
+ __metadata("design:type", Array)
1403
+ ], Menu.prototype, "sublinks", void 0);
1404
+ __decorate([
1405
+ Attribute({ serializedName: 'target' }),
1406
+ __metadata("design:type", String)
1407
+ ], Menu.prototype, "target", void 0);
1408
+ __decorate([
1409
+ Attribute({ serializedName: 'external' }),
1410
+ __metadata("design:type", Boolean)
1411
+ ], Menu.prototype, "external", void 0);
1412
+ __decorate([
1413
+ Attribute({ serializedName: 'description' }),
1414
+ __metadata("design:type", String)
1415
+ ], Menu.prototype, "description", void 0);
1416
+ __decorate([
1417
+ Attribute({ serializedName: 'order' }),
1418
+ __metadata("design:type", Number)
1419
+ ], Menu.prototype, "order", void 0);
1420
+ __decorate([
1421
+ Attribute({ serializedName: 'translationKey' }),
1422
+ __metadata("design:type", String)
1423
+ ], Menu.prototype, "translationKey", void 0);
1424
+ __decorate([
1425
+ Attribute({ serializedName: 'color' }),
1426
+ __metadata("design:type", String)
1427
+ ], Menu.prototype, "color", void 0);
1428
+ Menu = __decorate([
1429
+ BaseModelConfig({
1430
+ type: 'user',
1431
+ modelEndpointUrl: 'user/menus'
1432
+ })
1433
+ ], Menu);
1434
+
1435
+ let Right = class Right extends BaseModel {
1436
+ };
1437
+ __decorate([
1438
+ Attribute({ serializedName: 'id' }),
1439
+ __metadata("design:type", String)
1440
+ ], Right.prototype, "id", void 0);
1441
+ __decorate([
1442
+ Attribute({ serializedName: 'name' }),
1443
+ __metadata("design:type", String)
1444
+ ], Right.prototype, "name", void 0);
1445
+ __decorate([
1446
+ Attribute({ serializedName: 'rightKey' }),
1447
+ __metadata("design:type", String)
1448
+ ], Right.prototype, "rightKey", void 0);
1449
+ __decorate([
1450
+ Attribute({ serializedName: 'pagePath' }),
1451
+ __metadata("design:type", String)
1452
+ ], Right.prototype, "pagePath", void 0);
1453
+ __decorate([
1454
+ Attribute({ serializedName: 'order' }),
1455
+ __metadata("design:type", Number)
1456
+ ], Right.prototype, "order", void 0);
1457
+ __decorate([
1458
+ Attribute({ serializedName: 'isMenu' }),
1459
+ __metadata("design:type", Boolean)
1460
+ ], Right.prototype, "isMenu", void 0);
1461
+ __decorate([
1462
+ Attribute({ serializedName: 'resourceName' }),
1463
+ __metadata("design:type", String)
1464
+ ], Right.prototype, "resourceName", void 0);
1465
+ __decorate([
1466
+ Attribute({ serializedName: 'parentId' }),
1467
+ __metadata("design:type", String)
1468
+ ], Right.prototype, "parentId", void 0);
1469
+ __decorate([
1470
+ Attribute({ serializedName: 'color' }),
1471
+ __metadata("design:type", String)
1472
+ ], Right.prototype, "color", void 0);
1473
+ __decorate([
1474
+ Attribute({ serializedName: 'defaultRoles' }),
1475
+ __metadata("design:type", String)
1476
+ ], Right.prototype, "defaultRoles", void 0);
1477
+ __decorate([
1478
+ Attribute({ serializedName: 'icon' }),
1479
+ __metadata("design:type", String)
1480
+ ], Right.prototype, "icon", void 0);
1481
+ Right = __decorate([
1482
+ BaseModelConfig({
1483
+ type: 'right',
1484
+ modelEndpointUrl: 'user/rights'
1485
+ })
1486
+ ], Right);
1487
+
1488
+ let Role = class Role extends BaseModel {
1489
+ };
1490
+ __decorate([
1491
+ Attribute({ serializedName: 'id' }),
1492
+ __metadata("design:type", String)
1493
+ ], Role.prototype, "id", void 0);
1494
+ __decorate([
1495
+ Attribute({ serializedName: 'name' }),
1496
+ __metadata("design:type", String)
1497
+ ], Role.prototype, "name", void 0);
1498
+ Role = __decorate([
1499
+ BaseModelConfig({
1500
+ type: 'role'
1501
+ })
1502
+ ], Role);
1503
+
1504
+ let User = class User extends BaseModel {
1505
+ get fullName() {
1506
+ return this.firstName + ' ' + this.lastName;
1507
+ }
1508
+ };
1509
+ __decorate([
1510
+ Attribute({ serializedName: 'id' }),
1511
+ __metadata("design:type", String)
1512
+ ], User.prototype, "id", void 0);
1513
+ __decorate([
1514
+ Attribute({ serializedName: 'firstName' }),
1515
+ __metadata("design:type", String)
1516
+ ], User.prototype, "firstName", void 0);
1517
+ __decorate([
1518
+ Attribute({ serializedName: 'lastName' }),
1519
+ __metadata("design:type", String)
1520
+ ], User.prototype, "lastName", void 0);
1521
+ __decorate([
1522
+ Attribute({ serializedName: 'email' }),
1523
+ __metadata("design:type", String)
1524
+ ], User.prototype, "email", void 0);
1525
+ User = __decorate([
1526
+ BaseModelConfig({
1527
+ type: 'user'
1528
+ })
1529
+ ], User);
1530
+
1531
+ class EmployeeService extends BaseService {
1532
+ constructor(datastore) {
1533
+ super(datastore);
1534
+ this.setModelType(Employee);
1535
+ }
1536
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: EmployeeService, deps: [{ token: DatastoreCore }], target: i0.ɵɵFactoryTarget.Injectable }); }
1537
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
1538
+ }
1539
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: EmployeeService, decorators: [{
1540
+ type: Injectable,
1541
+ args: [{
1542
+ providedIn: 'root'
1543
+ }]
1544
+ }], ctorParameters: () => [{ type: DatastoreCore }] });
1545
+
1334
1546
  class LocalFileService {
1335
1547
  constructor(http) {
1336
1548
  this.http = http;
@@ -1349,16 +1561,31 @@ class LocalFileService {
1349
1561
  });
1350
1562
  return dataSubject.asObservable(); // Return observable
1351
1563
  }
1352
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: LocalFileService, deps: [{ token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
1353
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: LocalFileService, providedIn: 'root' }); }
1564
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: LocalFileService, deps: [{ token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
1565
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: LocalFileService, providedIn: 'root' }); }
1354
1566
  }
1355
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: LocalFileService, decorators: [{
1567
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: LocalFileService, decorators: [{
1356
1568
  type: Injectable,
1357
1569
  args: [{
1358
1570
  providedIn: 'root'
1359
1571
  }]
1360
1572
  }], ctorParameters: () => [{ type: i1$1.HttpClient }] });
1361
1573
 
1574
+ class RoleService extends BaseService {
1575
+ constructor(datastore) {
1576
+ super(datastore);
1577
+ this.setModelType(Role);
1578
+ }
1579
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: RoleService, deps: [{ token: DatastoreCore }], target: i0.ɵɵFactoryTarget.Injectable }); }
1580
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: RoleService, providedIn: 'root' }); }
1581
+ }
1582
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: RoleService, decorators: [{
1583
+ type: Injectable,
1584
+ args: [{
1585
+ providedIn: 'root'
1586
+ }]
1587
+ }], ctorParameters: () => [{ type: DatastoreCore }] });
1588
+
1362
1589
  class RouteHistoryService {
1363
1590
  constructor(router) {
1364
1591
  this.router = router;
@@ -1381,10 +1608,10 @@ class RouteHistoryService {
1381
1608
  getCurrentUrl() {
1382
1609
  return this.currentUrl;
1383
1610
  }
1384
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: RouteHistoryService, deps: [{ token: i2.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
1385
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: RouteHistoryService, providedIn: 'root' }); }
1611
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: RouteHistoryService, deps: [{ token: i2.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
1612
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: RouteHistoryService, providedIn: 'root' }); }
1386
1613
  }
1387
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: RouteHistoryService, decorators: [{
1614
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: RouteHistoryService, decorators: [{
1388
1615
  type: Injectable,
1389
1616
  args: [{
1390
1617
  providedIn: 'root'
@@ -1408,16 +1635,46 @@ class TranslateloaderService {
1408
1635
  const url = this._apiUrl + '/api/v1/language/' + lang + '/translationlist';
1409
1636
  return this.httpClient.get(url, { headers: this.headers });
1410
1637
  }
1411
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: TranslateloaderService, deps: [{ token: i1$1.HttpClient }, { token: Configurations }], target: i0.ɵɵFactoryTarget.Injectable }); }
1412
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: TranslateloaderService, providedIn: 'root' }); }
1638
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: TranslateloaderService, deps: [{ token: i1$1.HttpClient }, { token: Configurations }], target: i0.ɵɵFactoryTarget.Injectable }); }
1639
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: TranslateloaderService, providedIn: 'root' }); }
1413
1640
  }
1414
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: TranslateloaderService, decorators: [{
1641
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: TranslateloaderService, decorators: [{
1415
1642
  type: Injectable,
1416
1643
  args: [{
1417
1644
  providedIn: 'root'
1418
1645
  }]
1419
1646
  }], ctorParameters: () => [{ type: i1$1.HttpClient }, { type: Configurations }] });
1420
1647
 
1648
+ class UserService extends BaseService {
1649
+ constructor(datastore) {
1650
+ super(datastore);
1651
+ this.setModelType(User);
1652
+ }
1653
+ getRights() {
1654
+ const response = this.datastore.findAll(Right);
1655
+ return response;
1656
+ }
1657
+ hasRightForLink(link) {
1658
+ if (this.userRights && link) {
1659
+ const right = this.userRights.find(f => link.indexOf(f.pagePath) >= 0);
1660
+ return true;
1661
+ }
1662
+ return false;
1663
+ }
1664
+ getMenus() {
1665
+ const response = this.datastore.findAll(Menu);
1666
+ return response;
1667
+ }
1668
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: UserService, deps: [{ token: DatastoreCore }], target: i0.ɵɵFactoryTarget.Injectable }); }
1669
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: UserService, providedIn: 'root' }); }
1670
+ }
1671
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: UserService, decorators: [{
1672
+ type: Injectable,
1673
+ args: [{
1674
+ providedIn: 'root'
1675
+ }]
1676
+ }], ctorParameters: () => [{ type: DatastoreCore }] });
1677
+
1421
1678
  const PROVIDERS = [
1422
1679
  BaseDatastore,
1423
1680
  DatastoreCore,
@@ -1480,10 +1737,10 @@ class RslBaseModule {
1480
1737
  ]
1481
1738
  };
1482
1739
  }
1483
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: RslBaseModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1484
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.8", ngImport: i0, type: RslBaseModule, imports: [CommonModule, i1$3.TranslateModule, ReactiveFormsModule], exports: [HttpClientModule,
1740
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: RslBaseModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1741
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: RslBaseModule, imports: [CommonModule, i1$3.TranslateModule, ReactiveFormsModule], exports: [HttpClientModule,
1485
1742
  TranslateModule] }); }
1486
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: RslBaseModule, providers: [
1743
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: RslBaseModule, providers: [
1487
1744
  PROVIDERS
1488
1745
  ], imports: [CommonModule,
1489
1746
  TranslateModule.forRoot({
@@ -1498,7 +1755,7 @@ class RslBaseModule {
1498
1755
  ReactiveFormsModule, HttpClientModule,
1499
1756
  TranslateModule] }); }
1500
1757
  }
1501
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: RslBaseModule, decorators: [{
1758
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: RslBaseModule, decorators: [{
1502
1759
  type: NgModule,
1503
1760
  args: [{
1504
1761
  imports: [
@@ -1574,5 +1831,5 @@ function getValueFromJsonData(jsonData, key) {
1574
1831
  * Generated bundle index. Do not edit.
1575
1832
  */
1576
1833
 
1577
- export { Attribute, AuthService, BaseDatastore, BaseDatastoreConfig, BaseFormEditComponent, BaseMetaModel, BaseModel, BaseModelConfig, BaseQueryData, BaseService, CacheInterceptor, CacheService, CellTextAlign, Configurations, CustomType, CustomValidators, DatastoreCore, DynamicallyModelResolver, DynamicallyServiceResolver, ErrorResponse, FieldErrorDisplayComponent, GridLayoutFormat, InputErrorPipe, LocalFileService, MetadataStorage, Nl2brPipe, OIDC_CLIENT_SETTINGS, PROVIDERS, PageNotFoundComponent, RouteHistoryService, RslBaseModule, Rule, Tokens, TranslateloaderService, UnderConstructionComponent, getValueFromJsonData, provideAuth, provideOidcUserManager, readFileAsync };
1834
+ export { Attribute, AuthService, BaseDatastore, BaseDatastoreConfig, BaseFormEditComponent, BaseMetaModel, BaseModel, BaseModelConfig, BaseQueryData, BaseService, CacheInterceptor, CacheService, CellTextAlign, Configurations, CustomType, CustomValidators, DatastoreCore, DynamicallyModelResolver, DynamicallyServiceResolver, Employee, EmployeeService, ErrorResponse, FieldErrorDisplayComponent, GridLayoutFormat, InputErrorPipe, LocalFileService, Menu, MetadataStorage, Nl2brPipe, OIDC_CLIENT_SETTINGS, PROVIDERS, PageNotFoundComponent, Right, Role, RoleService, RouteHistoryService, RslBaseModule, Rule, Tokens, TranslateloaderService, UnderConstructionComponent, User, UserService, getValueFromJsonData, provideAuth, provideOidcUserManager, readFileAsync };
1578
1835
  //# sourceMappingURL=rosoftlab-core.mjs.map