ontimize-web-ngx 15.6.0-next.0 → 15.6.0-next.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 (38) hide show
  1. package/esm2020/lib/components/input/o-form-service-component.class.mjs +2 -2
  2. package/esm2020/lib/components/table/extensions/o-table.dao.mjs +9 -11
  3. package/esm2020/lib/components/table/o-table-base.class.mjs +1 -1
  4. package/esm2020/lib/config/app-config.mjs +1 -1
  5. package/esm2020/lib/config/o-providers.mjs +3 -5
  6. package/esm2020/lib/services/base-data-service.class.mjs +2 -1
  7. package/esm2020/lib/services/factories.mjs +7 -7
  8. package/esm2020/lib/services/index.mjs +2 -1
  9. package/esm2020/lib/services/jsonapi/jsonapi-preferences.service.mjs +16 -14
  10. package/esm2020/lib/services/jsonapi/jsonapi.service.mjs +1 -2
  11. package/esm2020/lib/services/ontimize/index.mjs +1 -2
  12. package/esm2020/lib/services/ontimize/ontimize-ee.service.mjs +1 -5
  13. package/esm2020/lib/services/ontimize/ontimize-export-3xx.service.mjs +2 -2
  14. package/esm2020/lib/services/ontimize/ontimize-preferences.service.mjs +4 -6
  15. package/esm2020/lib/services/query-arguments/jsonapi-query-arguments.adapter.mjs +2 -3
  16. package/esm2020/lib/services/translate/o-translate.service.mjs +7 -4
  17. package/esm2020/lib/util/preference-mapping-util.mjs +21 -6
  18. package/esm2020/lib/util/util.mjs +16 -1
  19. package/fesm2015/ontimize-web-ngx.mjs +316 -305
  20. package/fesm2015/ontimize-web-ngx.mjs.map +1 -1
  21. package/fesm2020/ontimize-web-ngx.mjs +313 -304
  22. package/fesm2020/ontimize-web-ngx.mjs.map +1 -1
  23. package/lib/components/table/extensions/o-table.dao.d.ts +3 -2
  24. package/lib/components/table/o-table-base.class.d.ts +1 -0
  25. package/lib/config/app-config.d.ts +1 -1
  26. package/lib/services/base-data-service.class.d.ts +1 -0
  27. package/lib/services/factories.d.ts +3 -3
  28. package/lib/services/index.d.ts +1 -0
  29. package/lib/services/jsonapi/jsonapi-preferences.service.d.ts +1 -1
  30. package/lib/services/jsonapi/jsonapi.service.d.ts +0 -1
  31. package/lib/services/ontimize/index.d.ts +0 -1
  32. package/lib/services/ontimize/ontimize-ee.service.d.ts +0 -1
  33. package/lib/services/translate/o-translate.service.d.ts +1 -0
  34. package/lib/util/preference-mapping-util.d.ts +22 -3
  35. package/lib/util/util.d.ts +2 -0
  36. package/package.json +1 -1
  37. package/esm2020/lib/services/ontimize/o-preference-query-argument.adapter.mjs +0 -17
  38. package/lib/services/ontimize/o-preference-query-argument.adapter.d.ts +0 -7
@@ -7,9 +7,9 @@ import * as i1 from '@angular/material/dialog';
7
7
  import { MatDialog, MAT_DIALOG_DATA, MatDialogModule } from '@angular/material/dialog';
8
8
  import * as i1$7 from '@angular/common/http';
9
9
  import { HttpClient, HttpHeaders, HttpRequest, HttpEventType, HttpErrorResponse, HttpClientModule } from '@angular/common/http';
10
+ import { MatSnackBar, MatSnackBarRef, MatSnackBarModule } from '@angular/material/snack-bar';
10
11
  import * as i2$2 from '@ngx-translate/core';
11
12
  import { TranslateService, TranslateDefaultParser, TranslateModule, TranslateLoader, TranslateParser } from '@ngx-translate/core';
12
- import { MatSnackBar, MatSnackBarRef, MatSnackBarModule } from '@angular/material/snack-bar';
13
13
  import * as i1$1 from '@angular/common';
14
14
  import { Location, CommonModule, DOCUMENT, LOCATION_INITIALIZED } from '@angular/common';
15
15
  import * as i2 from '@angular/flex-layout/flex';
@@ -1394,6 +1394,9 @@ class OTranslateService {
1394
1394
  observer.next(langRes);
1395
1395
  }
1396
1396
  }
1397
+ getNgxTranslateService() {
1398
+ return this.ngxTranslateService;
1399
+ }
1397
1400
  getCurrentLang() {
1398
1401
  return this.ngxTranslateService.currentLang;
1399
1402
  }
@@ -1981,6 +1984,7 @@ class BaseDataService extends BaseService {
1981
1984
  constructor(injector) {
1982
1985
  super(injector);
1983
1986
  this.injector = injector;
1987
+ this.path = '';
1984
1988
  }
1985
1989
  clientErrorFallback(errorCode) {
1986
1990
  if (errorCode === 401) {
@@ -1999,7 +2003,6 @@ class JSONAPIService extends BaseDataService {
1999
2003
  constructor(injector) {
2000
2004
  super(injector);
2001
2005
  this.injector = injector;
2002
- this.path = '';
2003
2006
  this.config = this.injector.get(AppConfig);
2004
2007
  }
2005
2008
  startsession(user, password) {
@@ -2154,36 +2157,132 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
2154
2157
  type: Injectable
2155
2158
  }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
2156
2159
 
2160
+ class OPreferenceMappingUtils {
2161
+ static transformKeys(data, keyMapping) {
2162
+ if (!Array.isArray(data)) {
2163
+ return data;
2164
+ }
2165
+ return data.map((key) => keyMapping[key] || key);
2166
+ }
2167
+ static mapObjectKeys(obj, keyMapping, parameterKeyMapping) {
2168
+ return Object.entries(obj).reduce((newObj, [key, value]) => {
2169
+ const newKey = keyMapping[key] || key;
2170
+ if (Array.isArray(value) && value.every((item) => typeof item === "object" && !Array.isArray(item))) {
2171
+ newObj[newKey] = value.map((item) => this.mapObjectKeys(item, parameterKeyMapping || {}));
2172
+ }
2173
+ else if (typeof value === "object" && value !== null) {
2174
+ newObj[newKey] = this.mapObjectKeys(value, parameterKeyMapping || {});
2175
+ }
2176
+ else {
2177
+ newObj[newKey] = value;
2178
+ }
2179
+ return newObj;
2180
+ }, {});
2181
+ }
2182
+ static transformData(data, keyMapping, parameterKeyMapping) {
2183
+ if (Array.isArray(data)) {
2184
+ return data.map((obj) => this.mapObjectKeys(obj, keyMapping, parameterKeyMapping));
2185
+ }
2186
+ else if (typeof data === "object" && data !== null) {
2187
+ return this.mapObjectKeys(data, keyMapping, parameterKeyMapping);
2188
+ }
2189
+ return data;
2190
+ }
2191
+ static standarDataMapping(array) {
2192
+ return OPreferenceMappingUtils.transformData(array, OPreferenceMappingUtils.STANDARDREPORTMAPPING, OPreferenceMappingUtils.STANDARDPARAMETERMAPPING);
2193
+ }
2194
+ static standarMappingKeys(array) {
2195
+ return OPreferenceMappingUtils.transformKeys(array, OPreferenceMappingUtils.STANDARDREPORTMAPPING);
2196
+ }
2197
+ static ontimizePreferencesMappingKeys(array) {
2198
+ return OPreferenceMappingUtils.transformKeys(array, OPreferenceMappingUtils.ONTIMIZEPREFERENCESMAPPING);
2199
+ }
2200
+ static ontimizePreferencesDataMapping(array) {
2201
+ return OPreferenceMappingUtils.transformData(array, OPreferenceMappingUtils.ONTIMIZEPREFERENCESMAPPING, OPreferenceMappingUtils.ONTIMIZEPARAMETERMAPPING);
2202
+ }
2203
+ static jsonApiPreferencesMappingKeys(array) {
2204
+ return OPreferenceMappingUtils.transformKeys(array, OPreferenceMappingUtils.JSONAPIPREFERENCESMAPPING);
2205
+ }
2206
+ static jsonApiPreferencesDataMapping(array) {
2207
+ return OPreferenceMappingUtils.transformData(array, OPreferenceMappingUtils.JSONAPIPREFERENCESMAPPING);
2208
+ }
2209
+ }
2210
+ OPreferenceMappingUtils.STANDARDREPORTMAPPING = {
2211
+ "ID": "PREFERENCEID",
2212
+ "NAME": "PREFERENCENAME",
2213
+ "DESCRIPTION": "PREFERENCEDESCRIPTION",
2214
+ "ENTITY": "PREFERENCEENTITY",
2215
+ "SERVICE": "PREFERENCESERVICE",
2216
+ "TYPE": "PREFERENCETYPE",
2217
+ "PREFERENCES": "PREFERENCEPREFERENCES"
2218
+ };
2219
+ OPreferenceMappingUtils.STANDARDINSERTREPORTMAPPING = {
2220
+ "id": "preferenceid",
2221
+ "name": "preferencename",
2222
+ "description": "preferencedescription",
2223
+ "entity": "preferenceentity",
2224
+ "service": "preferenceservice",
2225
+ "type": "preferencetype",
2226
+ "params": "preferenceparameters"
2227
+ };
2228
+ OPreferenceMappingUtils.STANDARDPARAMETERMAPPING = {
2229
+ "name": "reportParameterName",
2230
+ "description": "reportParameterDescription"
2231
+ };
2232
+ OPreferenceMappingUtils.ONTIMIZEPARAMETERMAPPING = {
2233
+ "reportParameterName": "name",
2234
+ "reportParameterDescription": "description"
2235
+ };
2236
+ OPreferenceMappingUtils.ONTIMIZEPREFERENCESMAPPING = {
2237
+ "preferenceid": "id",
2238
+ "preferencename": "name",
2239
+ "preferencedescription": "description",
2240
+ "preferenceentity": "entity",
2241
+ "preferenceservice": "service",
2242
+ "preferencetype": "type",
2243
+ "preferenceparameters": "params"
2244
+ };
2245
+ OPreferenceMappingUtils.JSONAPIPREFERENCESMAPPING = {
2246
+ "preferenceid": "PREFERENCEID",
2247
+ "preferencename": "PREFERENCENAME",
2248
+ "preferencedescription": "PREFERENCEDESCRIPTION",
2249
+ "preferenceentity": "PREFERENCEENTITY",
2250
+ "preferenceservice": "PREFERENCESERVICE",
2251
+ "preferencetype": "PREFERENCETYPE",
2252
+ "preferenceparameters": "PREFERENCEPREFERENCES"
2253
+ };
2254
+
2157
2255
  class JSONAPIPreferencesService extends JSONAPIService {
2158
2256
  configureService(config) {
2159
2257
  super.configureService(config);
2160
- this.path = config.path || '/preferences';
2258
+ this.path = config['preferences']?.path ? config['preferences']?.path : '/Preference';
2259
+ }
2260
+ parseObjectToPreference(preferencesparams) {
2261
+ preferencesparams['preferenceparameters'] = btoa(JSON.stringify(preferencesparams['preferenceparameters']));
2262
+ preferencesparams['preferenceentity'] = preferencesparams['preferenceentity'] + '-' + preferencesparams['preferenceservice'];
2263
+ preferencesparams['preferencetype'] = preferencesparams['preferencetype'] === 'REPORT' ? 0 : 1;
2264
+ delete preferencesparams['preferenceservice'];
2265
+ return preferencesparams;
2161
2266
  }
2162
2267
  saveAsPreferences(preferencesparams) {
2163
2268
  preferencesparams = this.parseObjectToPreference(preferencesparams);
2269
+ preferencesparams = OPreferenceMappingUtils.jsonApiPreferencesDataMapping(preferencesparams);
2164
2270
  return super.insert(preferencesparams, 'Preference');
2165
2271
  }
2166
2272
  savePreferences(id, preferencesparams) {
2167
2273
  preferencesparams = this.parseObjectToPreference(preferencesparams);
2168
- return super.update({ id: id }, preferencesparams, 'Preference');
2169
- }
2170
- parseObjectToPreference(preferencesparams) {
2171
- preferencesparams['preferencepreferences'] = btoa(JSON.stringify(preferencesparams['preferenceparameters']));
2172
- preferencesparams['preferenceentity'] = preferencesparams['preferenceentity'] + '-' + preferencesparams['preferenceservice'];
2173
- preferencesparams['preferencetype'] = preferencesparams['preferencetype'] === 'REPORT' ? 0 : 1;
2174
- delete preferencesparams['preferenceparameters'];
2175
- delete preferencesparams['preferenceservice'];
2176
- return preferencesparams;
2274
+ preferencesparams = OPreferenceMappingUtils.jsonApiPreferencesDataMapping(preferencesparams);
2275
+ return super.update({ PREFERENCEID: id }, preferencesparams, 'Preference');
2177
2276
  }
2178
2277
  getPreferences(entity, service, type) {
2179
2278
  let queryParams = { fields: {}, filter: {} };
2180
- let fields = { preference: 'preferenceid,preferencename,preferencedescription,preferencepreferences,preferenceentity,preferencetype' };
2181
- queryParams.fields['Preference'] = this.nameConvention.parseColumnsToNameConventionForJSONAPI(fields);
2279
+ let fields = { preference: 'PREFERENCEID,PREFERENCENAME,PREFERENCEDESCRIPTION,PREFERENCEPREFERENCES,PREFERENCEENTITY,PREFERENCETYPE' };
2280
+ queryParams.fields['Preference'] = fields.preference;
2182
2281
  queryParams.filter = { preferenceentity: entity + '-' + service, preferencetype: (type === 'REPORT' ? 0 : 1) };
2183
2282
  return super.query(queryParams);
2184
2283
  }
2185
2284
  deletePreferences(id) {
2186
- const url = this.urlBase + '/Preference/' + id;
2285
+ const url = `${this.urlBase}${this.path}/${id}`;
2187
2286
  return this.doRequest({
2188
2287
  method: 'DELETE',
2189
2288
  url: url
@@ -2268,6 +2367,175 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
2268
2367
  type: Injectable
2269
2368
  }] });
2270
2369
 
2370
+ class LocalStorageService {
2371
+ constructor(injector) {
2372
+ this.injector = injector;
2373
+ this.onRouteChange = new EventEmitter();
2374
+ this.onSetLocalStorage = new EventEmitter();
2375
+ this._config = this.injector.get(AppConfig).getConfiguration();
2376
+ this._router = this.injector.get(Router);
2377
+ this.authService = this.injector.get(AuthService);
2378
+ const self = this;
2379
+ this._router.events.subscribe(event => {
2380
+ if (event instanceof NavigationStart) {
2381
+ ObservableWrapper.callEmit(self.onRouteChange, {});
2382
+ }
2383
+ });
2384
+ }
2385
+ getComponentStorage(comp, routeKey) {
2386
+ const componentKey = comp.getComponentKey();
2387
+ let completeKey = componentKey;
2388
+ if (routeKey) {
2389
+ completeKey += '_' + routeKey;
2390
+ }
2391
+ return this.getAppComponentData(completeKey) || {};
2392
+ }
2393
+ updateComponentStorage(comp, routeKey) {
2394
+ const dataToStore = comp.getDataToStore();
2395
+ const componentKey = comp.getComponentKey();
2396
+ if (!Util.isDefined(componentKey)) {
2397
+ return;
2398
+ }
2399
+ let completeKey = componentKey;
2400
+ if (routeKey) {
2401
+ completeKey += '_' + routeKey;
2402
+ }
2403
+ const storedObject = {};
2404
+ for (const prop in dataToStore) {
2405
+ if (dataToStore.hasOwnProperty(prop)) {
2406
+ storedObject[prop] = dataToStore[prop];
2407
+ }
2408
+ }
2409
+ this.updateAppComponentStorage(completeKey, storedObject);
2410
+ }
2411
+ getAppComponentData(key) {
2412
+ let componentData;
2413
+ const storedComponents = this.getSessionUserComponentsData() || {};
2414
+ if (storedComponents[key]) {
2415
+ if (Object.keys(storedComponents[key]).length !== 0) {
2416
+ const decoded = atob((storedComponents[key]));
2417
+ try {
2418
+ componentData = JSON.parse(decoded);
2419
+ }
2420
+ catch (e) {
2421
+ componentData = undefined;
2422
+ }
2423
+ }
2424
+ }
2425
+ return componentData;
2426
+ }
2427
+ updateAppComponentStorage(componentKey, componentData) {
2428
+ let componentDataB64;
2429
+ try {
2430
+ componentDataB64 = btoa(Util.stringify(componentData));
2431
+ }
2432
+ catch (e) {
2433
+ componentDataB64 = undefined;
2434
+ }
2435
+ this.storeComponentInSessionUser(componentKey, componentDataB64);
2436
+ }
2437
+ getSessionUserComponentsData() {
2438
+ let storedComponentsByUser = {};
2439
+ const appData = this.getStoredData();
2440
+ const session = appData[LocalStorageService.SESSION_STORAGE_KEY] || {};
2441
+ const users = appData[LocalStorageService.USERS_STORAGE_KEY] || {};
2442
+ storedComponentsByUser = (users[session.user] || {})[LocalStorageService.COMPONENTS_STORAGE_KEY] || {};
2443
+ return storedComponentsByUser;
2444
+ }
2445
+ storeSessionUserComponentsData(componentsData) {
2446
+ const appData = this.getStoredData();
2447
+ const session = appData[LocalStorageService.SESSION_STORAGE_KEY] || {};
2448
+ if (!Util.isDefined(appData[LocalStorageService.USERS_STORAGE_KEY])) {
2449
+ appData[LocalStorageService.USERS_STORAGE_KEY] = {};
2450
+ }
2451
+ const userData = appData[LocalStorageService.USERS_STORAGE_KEY][session.user] || {};
2452
+ userData[LocalStorageService.COMPONENTS_STORAGE_KEY] = componentsData;
2453
+ appData[LocalStorageService.USERS_STORAGE_KEY][session.user] = userData;
2454
+ this.setLocalStorage(appData);
2455
+ }
2456
+ storeComponentInSessionUser(componentKey, componentDataB64) {
2457
+ const appData = this.getStoredData();
2458
+ const session = appData[LocalStorageService.SESSION_STORAGE_KEY] || {};
2459
+ if (!Util.isDefined(this.authService)) {
2460
+ this.authService = this.injector.get(AuthService);
2461
+ }
2462
+ const users = appData[LocalStorageService.USERS_STORAGE_KEY] || {};
2463
+ const idUser = session.user || this.authService.getSessionInfo()?.user;
2464
+ if (!Util.isDefined(idUser)) {
2465
+ return;
2466
+ }
2467
+ const user = users[idUser] || {};
2468
+ let componentsData = {};
2469
+ if (users[idUser]) {
2470
+ componentsData = users[idUser][LocalStorageService.COMPONENTS_STORAGE_KEY] || {};
2471
+ }
2472
+ componentsData[componentKey] = componentDataB64 || {};
2473
+ user[LocalStorageService.COMPONENTS_STORAGE_KEY] = componentsData;
2474
+ users[idUser] = user;
2475
+ appData[LocalStorageService.USERS_STORAGE_KEY] = users;
2476
+ this.setLocalStorage(appData);
2477
+ }
2478
+ getStoredData() {
2479
+ let appData = {};
2480
+ const appStoredData = localStorage.getItem(this._config.uuid);
2481
+ if (appStoredData) {
2482
+ try {
2483
+ appData = JSON.parse(appStoredData);
2484
+ }
2485
+ catch (e) {
2486
+ appData = {};
2487
+ }
2488
+ }
2489
+ return appData;
2490
+ }
2491
+ setBackwardCompatibility() {
2492
+ const appData = this.getStoredData();
2493
+ const session = appData[LocalStorageService.SESSION_STORAGE_KEY];
2494
+ if (!Util.isDefined(session) || !Util.isDefined(session.user)) {
2495
+ return;
2496
+ }
2497
+ const componentsInfo = appData[LocalStorageService.COMPONENTS_STORAGE_KEY] || {};
2498
+ let usersObject = {};
2499
+ const existsUsersTag = Util.isDefined(appData[LocalStorageService.USERS_STORAGE_KEY]);
2500
+ let createUserInfo = existsUsersTag;
2501
+ if (existsUsersTag) {
2502
+ usersObject = appData[LocalStorageService.USERS_STORAGE_KEY];
2503
+ createUserInfo = !Util.isDefined(appData[LocalStorageService.USERS_STORAGE_KEY][session.user]);
2504
+ }
2505
+ if (createUserInfo) {
2506
+ usersObject[session.user] = {};
2507
+ usersObject[session.user][LocalStorageService.COMPONENTS_STORAGE_KEY] = componentsInfo;
2508
+ appData[LocalStorageService.USERS_STORAGE_KEY] = usersObject;
2509
+ try {
2510
+ localStorage.setItem(this._config.uuid, Util.stringify(appData));
2511
+ }
2512
+ catch (e) {
2513
+ console.error("Cannot set new item in localStorage. Error: " + e);
2514
+ }
2515
+ }
2516
+ }
2517
+ setLocalStorage(appData) {
2518
+ this.onSetLocalStorage.emit();
2519
+ try {
2520
+ localStorage.setItem(this._config.uuid, Util.stringify(appData));
2521
+ }
2522
+ catch (e) {
2523
+ console.error("Cannot set new item in localStorage. Error: " + e);
2524
+ }
2525
+ }
2526
+ removeStoredData() {
2527
+ localStorage.removeItem(this._config.uuid);
2528
+ }
2529
+ }
2530
+ LocalStorageService.COMPONENTS_STORAGE_KEY = 'components';
2531
+ LocalStorageService.USERS_STORAGE_KEY = 'users';
2532
+ LocalStorageService.SESSION_STORAGE_KEY = 'session';
2533
+ LocalStorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LocalStorageService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
2534
+ LocalStorageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LocalStorageService });
2535
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LocalStorageService, decorators: [{
2536
+ type: Injectable
2537
+ }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
2538
+
2271
2539
  class FilterExpressionUtils {
2272
2540
  static instanceofBasicExpression(arg) {
2273
2541
  return arg.hasOwnProperty(FilterExpressionUtils.BASIC_EXPRESSION_KEY)
@@ -3195,175 +3463,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
3195
3463
  }]
3196
3464
  }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
3197
3465
 
3198
- class LocalStorageService {
3199
- constructor(injector) {
3200
- this.injector = injector;
3201
- this.onRouteChange = new EventEmitter();
3202
- this.onSetLocalStorage = new EventEmitter();
3203
- this._config = this.injector.get(AppConfig).getConfiguration();
3204
- this._router = this.injector.get(Router);
3205
- this.authService = this.injector.get(AuthService);
3206
- const self = this;
3207
- this._router.events.subscribe(event => {
3208
- if (event instanceof NavigationStart) {
3209
- ObservableWrapper.callEmit(self.onRouteChange, {});
3210
- }
3211
- });
3212
- }
3213
- getComponentStorage(comp, routeKey) {
3214
- const componentKey = comp.getComponentKey();
3215
- let completeKey = componentKey;
3216
- if (routeKey) {
3217
- completeKey += '_' + routeKey;
3218
- }
3219
- return this.getAppComponentData(completeKey) || {};
3220
- }
3221
- updateComponentStorage(comp, routeKey) {
3222
- const dataToStore = comp.getDataToStore();
3223
- const componentKey = comp.getComponentKey();
3224
- if (!Util.isDefined(componentKey)) {
3225
- return;
3226
- }
3227
- let completeKey = componentKey;
3228
- if (routeKey) {
3229
- completeKey += '_' + routeKey;
3230
- }
3231
- const storedObject = {};
3232
- for (const prop in dataToStore) {
3233
- if (dataToStore.hasOwnProperty(prop)) {
3234
- storedObject[prop] = dataToStore[prop];
3235
- }
3236
- }
3237
- this.updateAppComponentStorage(completeKey, storedObject);
3238
- }
3239
- getAppComponentData(key) {
3240
- let componentData;
3241
- const storedComponents = this.getSessionUserComponentsData() || {};
3242
- if (storedComponents[key]) {
3243
- if (Object.keys(storedComponents[key]).length !== 0) {
3244
- const decoded = atob((storedComponents[key]));
3245
- try {
3246
- componentData = JSON.parse(decoded);
3247
- }
3248
- catch (e) {
3249
- componentData = undefined;
3250
- }
3251
- }
3252
- }
3253
- return componentData;
3254
- }
3255
- updateAppComponentStorage(componentKey, componentData) {
3256
- let componentDataB64;
3257
- try {
3258
- componentDataB64 = btoa(Util.stringify(componentData));
3259
- }
3260
- catch (e) {
3261
- componentDataB64 = undefined;
3262
- }
3263
- this.storeComponentInSessionUser(componentKey, componentDataB64);
3264
- }
3265
- getSessionUserComponentsData() {
3266
- let storedComponentsByUser = {};
3267
- const appData = this.getStoredData();
3268
- const session = appData[LocalStorageService.SESSION_STORAGE_KEY] || {};
3269
- const users = appData[LocalStorageService.USERS_STORAGE_KEY] || {};
3270
- storedComponentsByUser = (users[session.user] || {})[LocalStorageService.COMPONENTS_STORAGE_KEY] || {};
3271
- return storedComponentsByUser;
3272
- }
3273
- storeSessionUserComponentsData(componentsData) {
3274
- const appData = this.getStoredData();
3275
- const session = appData[LocalStorageService.SESSION_STORAGE_KEY] || {};
3276
- if (!Util.isDefined(appData[LocalStorageService.USERS_STORAGE_KEY])) {
3277
- appData[LocalStorageService.USERS_STORAGE_KEY] = {};
3278
- }
3279
- const userData = appData[LocalStorageService.USERS_STORAGE_KEY][session.user] || {};
3280
- userData[LocalStorageService.COMPONENTS_STORAGE_KEY] = componentsData;
3281
- appData[LocalStorageService.USERS_STORAGE_KEY][session.user] = userData;
3282
- this.setLocalStorage(appData);
3283
- }
3284
- storeComponentInSessionUser(componentKey, componentDataB64) {
3285
- const appData = this.getStoredData();
3286
- const session = appData[LocalStorageService.SESSION_STORAGE_KEY] || {};
3287
- if (!Util.isDefined(this.authService)) {
3288
- this.authService = this.injector.get(AuthService);
3289
- }
3290
- const users = appData[LocalStorageService.USERS_STORAGE_KEY] || {};
3291
- const idUser = session.user || this.authService.getSessionInfo()?.user;
3292
- if (!Util.isDefined(idUser)) {
3293
- return;
3294
- }
3295
- const user = users[idUser] || {};
3296
- let componentsData = {};
3297
- if (users[idUser]) {
3298
- componentsData = users[idUser][LocalStorageService.COMPONENTS_STORAGE_KEY] || {};
3299
- }
3300
- componentsData[componentKey] = componentDataB64 || {};
3301
- user[LocalStorageService.COMPONENTS_STORAGE_KEY] = componentsData;
3302
- users[idUser] = user;
3303
- appData[LocalStorageService.USERS_STORAGE_KEY] = users;
3304
- this.setLocalStorage(appData);
3305
- }
3306
- getStoredData() {
3307
- let appData = {};
3308
- const appStoredData = localStorage.getItem(this._config.uuid);
3309
- if (appStoredData) {
3310
- try {
3311
- appData = JSON.parse(appStoredData);
3312
- }
3313
- catch (e) {
3314
- appData = {};
3315
- }
3316
- }
3317
- return appData;
3318
- }
3319
- setBackwardCompatibility() {
3320
- const appData = this.getStoredData();
3321
- const session = appData[LocalStorageService.SESSION_STORAGE_KEY];
3322
- if (!Util.isDefined(session) || !Util.isDefined(session.user)) {
3323
- return;
3324
- }
3325
- const componentsInfo = appData[LocalStorageService.COMPONENTS_STORAGE_KEY] || {};
3326
- let usersObject = {};
3327
- const existsUsersTag = Util.isDefined(appData[LocalStorageService.USERS_STORAGE_KEY]);
3328
- let createUserInfo = existsUsersTag;
3329
- if (existsUsersTag) {
3330
- usersObject = appData[LocalStorageService.USERS_STORAGE_KEY];
3331
- createUserInfo = !Util.isDefined(appData[LocalStorageService.USERS_STORAGE_KEY][session.user]);
3332
- }
3333
- if (createUserInfo) {
3334
- usersObject[session.user] = {};
3335
- usersObject[session.user][LocalStorageService.COMPONENTS_STORAGE_KEY] = componentsInfo;
3336
- appData[LocalStorageService.USERS_STORAGE_KEY] = usersObject;
3337
- try {
3338
- localStorage.setItem(this._config.uuid, Util.stringify(appData));
3339
- }
3340
- catch (e) {
3341
- console.error("Cannot set new item in localStorage. Error: " + e);
3342
- }
3343
- }
3344
- }
3345
- setLocalStorage(appData) {
3346
- this.onSetLocalStorage.emit();
3347
- try {
3348
- localStorage.setItem(this._config.uuid, Util.stringify(appData));
3349
- }
3350
- catch (e) {
3351
- console.error("Cannot set new item in localStorage. Error: " + e);
3352
- }
3353
- }
3354
- removeStoredData() {
3355
- localStorage.removeItem(this._config.uuid);
3356
- }
3357
- }
3358
- LocalStorageService.COMPONENTS_STORAGE_KEY = 'components';
3359
- LocalStorageService.USERS_STORAGE_KEY = 'users';
3360
- LocalStorageService.SESSION_STORAGE_KEY = 'session';
3361
- LocalStorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LocalStorageService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
3362
- LocalStorageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LocalStorageService });
3363
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LocalStorageService, decorators: [{
3364
- type: Injectable
3365
- }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
3366
-
3367
3466
  class ORemoteConfigurationService {
3368
3467
  beforeunloadHandler() {
3369
3468
  this.finalize().subscribe(() => {
@@ -3820,10 +3919,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
3820
3919
  }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
3821
3920
 
3822
3921
  class OntimizeEEService extends OntimizeBaseService {
3823
- constructor() {
3824
- super(...arguments);
3825
- this.path = '';
3826
- }
3827
3922
  configureService(config) {
3828
3923
  super.configureService(config);
3829
3924
  this._startSessionPath = this._appConfig.startSessionPath ? this._appConfig.startSessionPath : '/users/login';
@@ -4217,86 +4312,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
4217
4312
  type: Injectable
4218
4313
  }] });
4219
4314
 
4220
- class OPreferenceMappingUtils {
4221
- static transformKeys(data, keyMapping) {
4222
- if (!Array.isArray(data)) {
4223
- return data;
4224
- }
4225
- return data.map((key) => keyMapping[key] || key);
4226
- }
4227
- static mapObjectKeys(obj, keyMapping, parameterKeyMapping) {
4228
- return Object.entries(obj).reduce((newObj, [key, value]) => {
4229
- const newKey = keyMapping[key] || key;
4230
- if (Array.isArray(value) && value.every((item) => typeof item === "object" && !Array.isArray(item))) {
4231
- newObj[newKey] = value.map((item) => this.mapObjectKeys(item, parameterKeyMapping || {}));
4232
- }
4233
- else if (typeof value === "object" && value !== null) {
4234
- newObj[newKey] = this.mapObjectKeys(value, parameterKeyMapping || {});
4235
- }
4236
- else {
4237
- newObj[newKey] = value;
4238
- }
4239
- return newObj;
4240
- }, {});
4241
- }
4242
- static transformData(data, keyMapping, parameterKeyMapping) {
4243
- if (Array.isArray(data)) {
4244
- return data.map((obj) => this.mapObjectKeys(obj, keyMapping, parameterKeyMapping));
4245
- }
4246
- else if (typeof data === "object" && data !== null) {
4247
- return this.mapObjectKeys(data, keyMapping, parameterKeyMapping);
4248
- }
4249
- return data;
4250
- }
4251
- static standarDataMapping(array) {
4252
- return OPreferenceMappingUtils.transformData(array, OPreferenceMappingUtils.STANDARDREPORTMAPPING, OPreferenceMappingUtils.STANDARDPARAMETERMAPPING);
4253
- }
4254
- static standarMappingKeys(array) {
4255
- return OPreferenceMappingUtils.transformKeys(array, OPreferenceMappingUtils.STANDARDREPORTMAPPING);
4256
- }
4257
- static ontimizeMappingKeys(array) {
4258
- return OPreferenceMappingUtils.transformKeys(array, OPreferenceMappingUtils.ONTIMIZEREPORTMAPPING);
4259
- }
4260
- static ontimizeDataMapping(array) {
4261
- return OPreferenceMappingUtils.transformData(array, OPreferenceMappingUtils.ONTIMIZEREPORTMAPPING, OPreferenceMappingUtils.ONTIMIZEPARAMETERMAPPING);
4262
- }
4263
- }
4264
- OPreferenceMappingUtils.STANDARDREPORTMAPPING = {
4265
- "ID": "PREFERENCEID",
4266
- "NAME": "PREFERENCENAME",
4267
- "DESCRIPTION": "PREFERENCEDESCRIPTION",
4268
- "ENTITY": "PREFERENCEENTITY",
4269
- "SERVICE": "PREFERENCESERVICE",
4270
- "TYPE": "PREFERENCETYPE",
4271
- "PREFERENCES": "PREFERENCEPREFERENCES"
4272
- };
4273
- OPreferenceMappingUtils.STANDARDINSERTREPORTMAPPING = {
4274
- "id": "preferenceid",
4275
- "name": "preferencename",
4276
- "description": "preferencedescription",
4277
- "entity": "preferenceentity",
4278
- "service": "preferenceservice",
4279
- "type": "preferencetype",
4280
- "params": "preferenceparameters"
4281
- };
4282
- OPreferenceMappingUtils.STANDARDPARAMETERMAPPING = {
4283
- "name": "reportParameterName",
4284
- "description": "reportParameterDescription"
4285
- };
4286
- OPreferenceMappingUtils.ONTIMIZEPARAMETERMAPPING = {
4287
- "reportParameterName": "name",
4288
- "reportParameterDescription": "description"
4289
- };
4290
- OPreferenceMappingUtils.ONTIMIZEREPORTMAPPING = {
4291
- "preferenceid": "id",
4292
- "preferencename": "name",
4293
- "preferencedescription": "description",
4294
- "preferenceentity": "entity",
4295
- "preferenceservice": "service",
4296
- "preferencetype": "type",
4297
- "preferenceparameters": "params"
4298
- };
4299
-
4300
4315
  class OPreferenceResponseAdapter extends OntimizeServiceResponseAdapter {
4301
4316
  adapt(res) {
4302
4317
  if (res.body?.data) {
@@ -4314,24 +4329,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
4314
4329
  type: Injectable
4315
4330
  }] });
4316
4331
 
4317
- class OPreferenceQueryArgumentsAdapter extends OntimizeQueryArgumentsAdapter {
4318
- parseQueryParameters(args) {
4319
- args.columns = OPreferenceMappingUtils.ontimizeMappingKeys(args.columns);
4320
- args.sqlTypes = OPreferenceMappingUtils.ontimizeDataMapping(args.sqlTypes);
4321
- return super.parseQueryParameters(args);
4322
- }
4323
- }
4324
- OPreferenceQueryArgumentsAdapter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: OPreferenceQueryArgumentsAdapter, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
4325
- OPreferenceQueryArgumentsAdapter.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: OPreferenceQueryArgumentsAdapter });
4326
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: OPreferenceQueryArgumentsAdapter, decorators: [{
4327
- type: Injectable
4328
- }] });
4329
-
4330
4332
  class OntimizePreferencesService extends OntimizeEEService {
4331
4333
  constructor(injector) {
4332
4334
  super(injector);
4333
4335
  this.path = '';
4334
- this.queryArgumentAdapter = this.injector.get(OPreferenceQueryArgumentsAdapter);
4335
4336
  }
4336
4337
  configureService(config) {
4337
4338
  super.configureService(config);
@@ -4341,7 +4342,7 @@ class OntimizePreferencesService extends OntimizeEEService {
4341
4342
  this.adapter = this.injector.get(OPreferenceResponseAdapter);
4342
4343
  }
4343
4344
  saveAsPreferences(preferencesparams) {
4344
- const body = JSON.stringify(OPreferenceMappingUtils.ontimizeDataMapping(preferencesparams));
4345
+ const body = JSON.stringify(OPreferenceMappingUtils.ontimizePreferencesDataMapping(preferencesparams));
4345
4346
  const url = `${this.urlBase}${this.path}/save`;
4346
4347
  return this.doRequest({
4347
4348
  method: 'POST',
@@ -4350,7 +4351,7 @@ class OntimizePreferencesService extends OntimizeEEService {
4350
4351
  });
4351
4352
  }
4352
4353
  savePreferences(id, preferencesparams) {
4353
- const body = JSON.stringify(OPreferenceMappingUtils.ontimizeDataMapping(preferencesparams));
4354
+ const body = JSON.stringify(OPreferenceMappingUtils.ontimizePreferencesDataMapping(preferencesparams));
4354
4355
  const url = `${this.urlBase}${this.path}/update/${id}`;
4355
4356
  return this.doRequest({
4356
4357
  method: 'PUT',
@@ -4420,12 +4421,11 @@ class JSONAPIQueryArgumentsAdapter extends BaseQueryArgument {
4420
4421
  }
4421
4422
  deComposeExpresion(expresion, columns, kv) {
4422
4423
  if (FilterExpressionUtils.instanceofExpression(expresion)) {
4423
- if (!(typeof expresion.lop === 'string')) {
4424
+ if (typeof expresion.lop !== 'string') {
4424
4425
  kv = this.deComposeExpresion(expresion.lop, columns, kv);
4425
4426
  return this.deComposeExpresion(expresion.rop, columns, kv);
4426
4427
  }
4427
4428
  else {
4428
- const key = expresion.lop;
4429
4429
  return kv;
4430
4430
  }
4431
4431
  }
@@ -4604,10 +4604,10 @@ function exportDataFactory(injector) {
4604
4604
  function serviceRequestAdapterFactory(injector) {
4605
4605
  const config = injector.get(AppConfig).getConfiguration();
4606
4606
  if (!Util.isDefined(config.serviceType) ||
4607
- (ServiceType.OntimizeEE === config.serviceType || ServiceType.Ontimize === config.serviceType)) {
4607
+ Util.isOntimizeEEService(injector)) {
4608
4608
  return new OntimizeQueryArgumentsAdapter();
4609
4609
  }
4610
- else if (ServiceType.JSONAPI === config.serviceType) {
4610
+ else if (Util.isJsonApiService(injector)) {
4611
4611
  return new JSONAPIQueryArgumentsAdapter();
4612
4612
  }
4613
4613
  return new OntimizeQueryArgumentsAdapter();
@@ -4620,10 +4620,10 @@ function serviceResponseAdapterFactory(injector) {
4620
4620
  }
4621
4621
  const config = injector.get(AppConfig).getConfiguration();
4622
4622
  if (!Util.isDefined(config.serviceType) ||
4623
- (ServiceType.OntimizeEE === config.serviceType || ServiceType.Ontimize === config.serviceType)) {
4623
+ (Util.isOntimizeEEService(injector))) {
4624
4624
  return new OntimizeServiceResponseAdapter();
4625
4625
  }
4626
- else if (ServiceType.JSONAPI === config.serviceType) {
4626
+ else if (Util.isJsonApiService(injector)) {
4627
4627
  return new JSONAPIServiceResponseAdapter();
4628
4628
  }
4629
4629
  return new JSONAPIServiceResponseAdapter();
@@ -4645,7 +4645,7 @@ function permissionsServiceFactory(injector) {
4645
4645
  }
4646
4646
  function preferencesServiceFactory(injector) {
4647
4647
  const config = injector.get(AppConfig).getConfiguration();
4648
- if (!Util.isDefined(config.serviceType) || (ServiceType.OntimizeEE === config.serviceType || ServiceType.Ontimize === config.serviceType)) {
4648
+ if (!Util.isDefined(config.serviceType) || Util.isOntimizeEEService(injector)) {
4649
4649
  return new OntimizePreferencesService(injector);
4650
4650
  }
4651
4651
  else if (ServiceType.JSONAPI === config.serviceType) {
@@ -5029,6 +5029,18 @@ class Util {
5029
5029
  static isPromise(obj) {
5030
5030
  return !!obj && typeof obj.then === 'function';
5031
5031
  }
5032
+ static isJsonApiService(injector) {
5033
+ const config = injector.get(AppConfig);
5034
+ return config.getConfiguration().serviceType === 'JSONAPI' ||
5035
+ config.getConfiguration().serviceType instanceof JSONAPIService;
5036
+ }
5037
+ static isOntimizeEEService(injector) {
5038
+ const config = injector.get(AppConfig);
5039
+ return (config.getConfiguration().serviceType === 'OntimizeEE' ||
5040
+ config.getConfiguration().serviceType instanceof OntimizeEEService) ||
5041
+ (config.getConfiguration().serviceType === 'Ontimize' ||
5042
+ config.getConfiguration().serviceType instanceof OntimizeService);
5043
+ }
5032
5044
  static configureService(configureServiceArgs) {
5033
5045
  const baseService = configureServiceArgs.baseService;
5034
5046
  const entity = configureServiceArgs.entity;
@@ -11386,7 +11398,7 @@ class OFormServiceComponent extends OFormDataComponent {
11386
11398
  getQueryArguments(filter, ovrrArgs = {}) {
11387
11399
  const compFilter = filter;
11388
11400
  const queryCols = this.getAttributesValuesToQuery();
11389
- const sqlTypes = (ovrrArgs?.hasOwnProperty('sqltypes')) ? ovrrArgs.sqltypes : this.form ? this.form.getAttributesSQLTypes() : {};
11401
+ const sqlTypes = ovrrArgs?.sqltypes ?? this.form?.getAttributesSQLTypes() ?? {};
11390
11402
  return { filter: compFilter, columns: queryCols, entity: this.entity, sqlTypes: sqlTypes };
11391
11403
  }
11392
11404
  getDataArray() {
@@ -32774,7 +32786,7 @@ class OTableDao {
32774
32786
  }
32775
32787
  setDataArray(data) {
32776
32788
  this.dataChange.next(data);
32777
- this.isLoadingResults = false;
32789
+ this.notLoadingResults = false;
32778
32790
  return of(data);
32779
32791
  }
32780
32792
  setAsynchronousColumn(value, rowData) {
@@ -32793,16 +32805,14 @@ class OTableDao {
32793
32805
  return this._isLoadingResults;
32794
32806
  }
32795
32807
  set isLoadingResults(val) {
32796
- if (val) {
32797
- this.cleanTimer();
32798
- this.loadingTimer = setTimeout(() => {
32799
- this._isLoadingResults = val;
32800
- }, 500);
32801
- }
32802
- else {
32803
- this.cleanTimer();
32808
+ this.cleanTimer();
32809
+ this.loadingTimer = setTimeout(() => {
32804
32810
  this._isLoadingResults = val;
32805
- }
32811
+ }, 500);
32812
+ }
32813
+ set notLoadingResults(val) {
32814
+ this.cleanTimer();
32815
+ this._isLoadingResults = val;
32806
32816
  }
32807
32817
  cleanTimer() {
32808
32818
  if (this.loadingTimer) {
@@ -40849,7 +40859,6 @@ const ONTIMIZE_PROVIDERS = [
40849
40859
  OntimizeExportServiceProvider,
40850
40860
  NameConventionProvider,
40851
40861
  OntimizeLocalStorageServiceProvider,
40852
- OPreferenceQueryArgumentsAdapter,
40853
40862
  OPreferenceResponseAdapter,
40854
40863
  { provide: MAT_RIPPLE_GLOBAL_OPTIONS, useValue: { disabled: true } },
40855
40864
  { provide: O_MAT_ERROR_OPTIONS, useValue: {} },
@@ -41415,5 +41424,5 @@ function ontimizePostBootstrap(ngModuleRef) {
41415
41424
  return ngModuleRef;
41416
41425
  }
41417
41426
 
41418
- export { APP_CONFIG, AbstractComponentStateClass, AbstractComponentStateService, AbstractOServiceBaseComponent, AbstractOServiceComponent, AbstractServiceComponentStateClass, AppConfig, AppConfigFactory, AppMenuService, AppearanceService, AuthGuardService, AuthService, Base64, BaseQueryArgument, BaseService, BaseServiceResponse, BooleanConverter, BooleanInputConverter, CKEditorComponent, CKEditorModule, CanActivateFormLayoutChildGuard, CanDeactivateFormGuard, Codes, ColumnValueFilterOperator, ColumnsFilterPipe, ComponentStateServiceProvider, CurrencyService, CurrencyUtil, DEFAULT_CONTEXT_MENU_CONTENT_INPUTS, DEFAULT_CONTEXT_MENU_CONTENT_ITEM_INPUTS, DEFAULT_CONTEXT_MENU_CONTENT_OUTPUTS, DEFAULT_CONTEXT_MENU_DIRECTIVE_INPUTS, DEFAULT_CONTEXT_MENU_ITEM_INPUTS, DEFAULT_CONTEXT_MENU_ITEM_OUTPUTS, DEFAULT_DUAL_LIST_SELECTOR, DEFAULT_DUAL_LIST_SELECTOR_DATE_ITEM, DEFAULT_INPUTS_O_APP_HEADER, DEFAULT_INPUTS_O_APP_LAYOUT, DEFAULT_INPUTS_O_APP_LAYOUT_HEADER, DEFAULT_INPUTS_O_APP_LAYOUT_SIDENAV, DEFAULT_INPUTS_O_APP_SIDENAV, DEFAULT_INPUTS_O_APP_SIDENAV_IMAGE, DEFAULT_INPUTS_O_APP_SIDENAV_MENU_GROUP, DEFAULT_INPUTS_O_APP_SIDENAV_MENU_ITEM, DEFAULT_INPUTS_O_BAR_MENU, DEFAULT_INPUTS_O_BAR_MENU_ITEM, DEFAULT_INPUTS_O_BAR_MENU_NESTED, DEFAULT_INPUTS_O_BASE_MENU_ITEM, DEFAULT_INPUTS_O_BASE_TABLE_CELL_RENDERER, DEFAULT_INPUTS_O_BREADCRUMB, DEFAULT_INPUTS_O_BUTTON, DEFAULT_INPUTS_O_BUTTON_TOGGLE, DEFAULT_INPUTS_O_BUTTON_TOGGLE_GROUP, DEFAULT_INPUTS_O_CARD_RENDERER, DEFAULT_INPUTS_O_CHECKBOX, DEFAULT_INPUTS_O_COMBO, DEFAULT_INPUTS_O_COMBO_RENDERER, DEFAULT_INPUTS_O_COMBO_RENDERER_BOOLEAN, DEFAULT_INPUTS_O_COMBO_RENDERER_CURRENCY, DEFAULT_INPUTS_O_COMBO_RENDERER_DATE, DEFAULT_INPUTS_O_COMBO_RENDERER_ICON, DEFAULT_INPUTS_O_COMBO_RENDERER_INTEGER, DEFAULT_INPUTS_O_COMBO_RENDERER_PERCENTAGE, DEFAULT_INPUTS_O_COMBO_RENDERER_REAL, DEFAULT_INPUTS_O_CONTAINER, DEFAULT_INPUTS_O_CONTAINER_COLLAPSIBLE, DEFAULT_INPUTS_O_CONTEXT_MENU_ITEMS, DEFAULT_INPUTS_O_CURRENCY_INPUT, DEFAULT_INPUTS_O_DATA_TOOLBAR, DEFAULT_INPUTS_O_DATERANGE_INPUT, DEFAULT_INPUTS_O_DATERANGE_LEGACY_INPUT, DEFAULT_INPUTS_O_DATE_INPUT, DEFAULT_INPUTS_O_ERROR, DEFAULT_INPUTS_O_FILE_INPUT, DEFAULT_INPUTS_O_FILTER_BUILDER, DEFAULT_INPUTS_O_FILTER_BUILDER_MENU, DEFAULT_INPUTS_O_FORM, DEFAULT_INPUTS_O_FORM_CONTAINER, DEFAULT_INPUTS_O_FORM_DATA_COMPONENT, DEFAULT_INPUTS_O_FORM_LAYOUT_MANAGER, DEFAULT_INPUTS_O_FORM_LAYOUT_SPLIT_PANE, DEFAULT_INPUTS_O_FORM_LAYOUT_TABGROUP, DEFAULT_INPUTS_O_FORM_SERVICE_COMPONENT, DEFAULT_INPUTS_O_FORM_TOOLBAR, DEFAULT_INPUTS_O_GRID, DEFAULT_INPUTS_O_GRID_ITEM, DEFAULT_INPUTS_O_HOUR_INPUT, DEFAULT_INPUTS_O_HTML_INPUT, DEFAULT_INPUTS_O_IMAGE, DEFAULT_INPUTS_O_INTEGER_INPUT, DEFAULT_INPUTS_O_LANGUAGE_SELECTOR, DEFAULT_INPUTS_O_LIST, DEFAULT_INPUTS_O_LISTPICKER_RENDERER, DEFAULT_INPUTS_O_LISTPICKER_RENDERER_CURRENCY, DEFAULT_INPUTS_O_LISTPICKER_RENDERER_DATE, DEFAULT_INPUTS_O_LISTPICKER_RENDERER_INTEGER, DEFAULT_INPUTS_O_LISTPICKER_RENDERER_PERCENTAGE, DEFAULT_INPUTS_O_LISTPICKER_RENDERER_REAL, DEFAULT_INPUTS_O_LIST_ITEM_AVATAR, DEFAULT_INPUTS_O_LIST_ITEM_CARD_IMAGE, DEFAULT_INPUTS_O_LIST_ITEM_TEXT, DEFAULT_INPUTS_O_LIST_PICKER, DEFAULT_INPUTS_O_LIST_PICKER_DIALOG, DEFAULT_INPUTS_O_LOCALE_BAR_MENU_ITEM, DEFAULT_INPUTS_O_LOCKER, DEFAULT_INPUTS_O_MENU_CARD, DEFAULT_INPUTS_O_MENU_LAYOUT, DEFAULT_INPUTS_O_PASSWORD_INPUT, DEFAULT_INPUTS_O_PERCENT_INPUT, DEFAULT_INPUTS_O_PHONE_INPUT, DEFAULT_INPUTS_O_RADIO, DEFAULT_INPUTS_O_REAL_INPUT, DEFAULT_INPUTS_O_SEARCH_INPUT, DEFAULT_INPUTS_O_SERVICE_BASE_COMPONENT, DEFAULT_INPUTS_O_SERVICE_COMPONENT, DEFAULT_INPUTS_O_SLIDER_INPUT, DEFAULT_INPUTS_O_SLIDETOGGLE, DEFAULT_INPUTS_O_TABLE, DEFAULT_INPUTS_O_TABLE_BUTTON, DEFAULT_INPUTS_O_TABLE_BUTTONS, DEFAULT_INPUTS_O_TABLE_CELL_EDITOR, DEFAULT_INPUTS_O_TABLE_CELL_EDITOR_BOOLEAN, DEFAULT_INPUTS_O_TABLE_CELL_EDITOR_DATE, DEFAULT_INPUTS_O_TABLE_CELL_EDITOR_INTEGER, DEFAULT_INPUTS_O_TABLE_CELL_EDITOR_TIME, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_ACTION, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_BOOLEAN, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_CURRENCY, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_DATE, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_IMAGE, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_INTEGER, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_PERCENTAGE, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_REAL, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_SERVICE, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_TIME, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_TRANSLATE, DEFAULT_INPUTS_O_TABLE_COLUMN, DEFAULT_INPUTS_O_TABLE_COLUMN_CALCULATED, DEFAULT_INPUTS_O_TABLE_COLUMN_FILTER, DEFAULT_INPUTS_O_TABLE_COLUMN_FILTER_COLUMN, DEFAULT_INPUTS_O_TABLE_COLUMN_GROUPING, DEFAULT_INPUTS_O_TABLE_COLUMN_GROUPING_COLUMN, DEFAULT_INPUTS_O_TABLE_COLUMN_RESIZER, DEFAULT_INPUTS_O_TABLE_COLUMN_SELECTALL, DEFAULT_INPUTS_O_TABLE_EXPORT_BUTTON, DEFAULT_INPUTS_O_TABLE_HEADER, DEFAULT_INPUTS_O_TABLE_INSERTABLE_ROW, DEFAULT_INPUTS_O_TABLE_MENU, DEFAULT_INPUTS_O_TABLE_OPTION, DEFAULT_INPUTS_O_TABLE_QUICKFILTER, DEFAULT_INPUTS_O_TABLE_ROW_EXPANDABLE, DEFAULT_INPUTS_O_TEXTAREA_INPUT, DEFAULT_INPUTS_O_TEXT_INPUT, DEFAULT_INPUTS_O_TEXT_RENDERER, DEFAULT_INPUTS_O_TIME_INPUT, DEFAULT_INPUTS_O_TREE, DEFAULT_INPUTS_O_USER_INFO, DEFAULT_INPUTS_O_USER_INFO_MENU, DEFAULT_INPUTS_O_USER_INFO_MENU_ITEM, DEFAULT_INPUTS_O_VALIDATOR, DEFAULT_INPUT_O_EXPANDABLE_CONTAINER, DEFAULT_OUTPUTS_LANGUAGE_SELECTOR, DEFAULT_OUTPUTS_O_APP_HEADER, DEFAULT_OUTPUTS_O_APP_LAYOUT, DEFAULT_OUTPUTS_O_APP_SIDENAV, DEFAULT_OUTPUTS_O_APP_SIDENAV_IMAGE, DEFAULT_OUTPUTS_O_APP_SIDENAV_MENU_GROUP, DEFAULT_OUTPUTS_O_APP_SIDENAV_MENU_ITEM, DEFAULT_OUTPUTS_O_BUTTON, DEFAULT_OUTPUTS_O_BUTTON_TOGGLE, DEFAULT_OUTPUTS_O_BUTTON_TOGGLE_GROUP, DEFAULT_OUTPUTS_O_CARD_RENDERER, DEFAULT_OUTPUTS_O_CONTAINER_COLLAPSIBLE, DEFAULT_OUTPUTS_O_CONTEXT_MENU, DEFAULT_OUTPUTS_O_DATERANGE_INPUT, DEFAULT_OUTPUTS_O_DATERANGE_LEGACY_INPUT, DEFAULT_OUTPUTS_O_FILE_INPUT, DEFAULT_OUTPUTS_O_FILTER_BUILDER, DEFAULT_OUTPUTS_O_FORM, DEFAULT_OUTPUTS_O_FORM_DATA_COMPONENT, DEFAULT_OUTPUTS_O_FORM_LAYOUT_MANAGER, DEFAULT_OUTPUTS_O_FORM_LAYOUT_SPLIT_PANE, DEFAULT_OUTPUTS_O_FORM_LAYOUT_TABGROUP, DEFAULT_OUTPUTS_O_FORM_SERVICE_COMPONENT, DEFAULT_OUTPUTS_O_FORM_TOOLBAR, DEFAULT_OUTPUTS_O_HTML_INPUT, DEFAULT_OUTPUTS_O_LIST, DEFAULT_OUTPUTS_O_LIST_ITEM_CARD_IMAGE, DEFAULT_OUTPUTS_O_LIST_PICKER, DEFAULT_OUTPUTS_O_MENU_CARD, DEFAULT_OUTPUTS_O_MENU_LAYOUT, DEFAULT_OUTPUTS_O_PERCENT_INPUT, DEFAULT_OUTPUTS_O_SEARCH_INPUT, DEFAULT_OUTPUTS_O_SERVICE_COMPONENT, DEFAULT_OUTPUTS_O_TABLE, DEFAULT_OUTPUTS_O_TABLE_BUTTON, DEFAULT_OUTPUTS_O_TABLE_BUTTONS, DEFAULT_OUTPUTS_O_TABLE_CELL_EDITOR, DEFAULT_OUTPUTS_O_TABLE_CELL_RENDERER_ACTION, DEFAULT_OUTPUTS_O_TABLE_CELL_RENDERER_IMAGE, DEFAULT_OUTPUTS_O_TABLE_CELL_RENDERER_SERVICE, DEFAULT_OUTPUTS_O_TABLE_COLUMN, DEFAULT_OUTPUTS_O_TABLE_COLUMN_FILTER, DEFAULT_OUTPUTS_O_TABLE_COLUMN_GROUPING, DEFAULT_OUTPUTS_O_TABLE_COLUMN_RESIZER, DEFAULT_OUTPUTS_O_TABLE_EXPORT_BUTTON, DEFAULT_OUTPUTS_O_TABLE_INSERTABLE_ROW, DEFAULT_OUTPUTS_O_TABLE_MENU, DEFAULT_OUTPUTS_O_TABLE_OPTION, DEFAULT_OUTPUTS_O_TABLE_QUICKFILTER, DEFAULT_OUTPUTS_O_TABLE_ROW_EXPANDABLE, DEFAULT_OUTPUTS_O_TEXT_RENDERER, DEFAULT_OUTPUTS_O_TREE, DEFAULT_OUTPUTS_O_USER_INFO, DEFAULT_OUTPUTS_O_USER_INFO_MENU, DEFAULT_PAGINATOR_TABLE, DEFAULT_TABLE_COLUMN_AGGREGATE, DEFAULT_TABLE_CONTEXT_MENU_INPUTS, DaterangepickerComponent, DefaultComponentStateClass, DefaultComponentStateService, DefaultOServiceBaseComponent, DefaultOTableDataSource, DefaultOTableOptions, DefaultServiceComponentStateClass, DefaultServiceComponentStateService, DialogService, Error403Component, ExportDataServiceProvider, FilterExpressionUtils, IconService, InputRegulateDirective, IsEmptyValuePipe, JSONAPIPreferencesService, JSONAPIQueryArgumentsAdapter, JSONAPIService, JSONAPIServiceResponse, JSONAPIServiceResponseAdapter, ListItem, LocalStorageService, LoginStorageService, MomentService, NameConvention, NameConventionLower, NameConventionProvider, NameConventionUpper, NavigationService, NumberConverter, NumberInputConverter, NumberService, OAppHeaderBase, OAppHeaderComponent, OAppHeaderModule, OAppLayoutBase, OAppLayoutComponent, OAppLayoutHeaderComponent, OAppLayoutModule, OAppLayoutSidenavComponent, OAppSidenavBase, OAppSidenavComponent, OAppSidenavImageComponent, OAppSidenavMenuGroupComponent, OAppSidenavMenuItemComponent, OAppSidenavModule, OBarMenuBase, OBarMenuComponent, OBarMenuGroupComponent, OBarMenuItemComponent, OBarMenuModule, OBarMenuNestedComponent, OBarMenuSeparatorComponent, OBaseComponent, OBaseMenuItemClass, OBaseTableCellEditor, OBaseTableCellRenderer, OBaseTablePaginator, OBreadcrumbComponent, OBreadcrumbModule, OBreadcrumbService, OButtonComponent, OButtonModule, OButtonToggleComponent, OButtonToggleGroupComponent, OButtonToggleModule, OCardMenuItemComponent, OCardMenuItemModule, OCardMenuLayoutComponent, OCardMenuLayoutModule, OCheckboxComponent, OCheckboxModule, OColumn, OColumnCollapsibleComponent, OColumnCollapsibleModule, OColumnComponent, OColumnModule, OComboComponent, OComboCustomRenderer, OComboModule, OComboRendererBooleanComponent, OComboRendererCurrencyComponent, OComboRendererDateComponent, OComboRendererIconComponent, OComboRendererIntegerComponent, OComboRendererPercentageComponent, OComboRendererRealComponent, OComboSearchComponent, OComponentMenuBaseItem, OContainerCollapsibleComponent, OContainerComponent, OContextMenuComponent, OContextMenuContentComponent, OContextMenuDirective, OContextMenuGroupComponent, OContextMenuItemComponent, OContextMenuModule, OContextMenuSeparatorComponent, OContextMenuService, OCurrencyInputComponent, OCurrencyInputModule, OCurrencyPipe, OCustomMaterialModule, ODataToolbarComponent, ODataToolbarModule, ODateInputComponent, ODateInputModule, ODateRangeInputComponent, ODateRangeInputModule, ODateRangeLegacyInputComponent, ODateRangeLegacyInputModule, ODaterangepickerDirective, ODialogBase, ODialogComponent, ODialogConfig, ODualListSelectorComponent, ODualListSelectorDateItemComponent, ODualListSelectorModule, OEmailInputComponent, OEmailInputModule, OErrorComponent, OErrorDialogManager, OExpandableContainerComponent, OExpandableContainerModule, OFileDragAndDropDirective, OFileInputComponent, OFileInputModule, OFileItem, OFileUploader, OFilterBuilderBase, OFilterBuilderClearDirective, OFilterBuilderComponent, OFilterBuilderMenuComponent, OFilterBuilderModule, OFilterBuilderQueryDirective, OFormBase, OFormCacheClass, OFormComponent, OFormContainerComponent, OFormContainerModule, OFormControl, OFormDataComponent, OFormLayoutDialogComponent, OFormLayoutDialogOptionsDirective, OFormLayoutManagerBase, OFormLayoutManagerComponent, OFormLayoutManagerComponentStateClass, OFormLayoutManagerComponentStateService, OFormLayoutManagerContentDirective, OFormLayoutManagerModule, OFormLayoutManagerService, OFormLayoutSplitPaneComponent, OFormLayoutSplitPaneOptionsDirective, OFormLayoutTabGroupComponent, OFormLayoutTabGroupOptionsDirective, OFormMessageService, OFormModule, OFormNavigationClass, OFormNavigationComponent, OFormServiceComponent, OFormToolbarBase, OFormToolbarComponent, OFormToolbarModule, OFormValue, OFullScreenDialogComponent, OGridComponent, OGridComponentStateClass, OGridComponentStateService, OGridItemComponent, OGridItemDirective, OGridModule, OGridSkeletonComponent, OHTMLInputComponent, OHTMLInputModule, OHiddenDirective, OHourInputComponent, OHourInputModule, OIconPipe, OImageComponent, OImageModule, OIntegerInputComponent, OIntegerInputModule, OIntegerPipe, OKeyboardListenerDirective, OLanguageSelectorComponent, OLanguageSelectorModule, OListComponent, OListComponentStateClass, OListComponentStateService, OListItemAvatarComponent, OListItemCardComponent, OListItemCardImageComponent, OListItemCardRenderer, OListItemComponent, OListItemDirective, OListItemTextComponent, OListItemTextRenderer, OListModule, OListPickerComponent, OListPickerCustomRenderer, OListPickerDialogComponent, OListPickerModule, OListPickerRendererCurrencyComponent, OListPickerRendererDateComponent, OListPickerRendererIntegerComponent, OListPickerRendererPercentageComponent, OListPickerRendererRealComponent, OListSkeletonComponent, OLoadFilterDialogComponent, OLocaleBarMenuItemComponent, OLockerDirective, OMatErrorDirective, OMatPrefix, OMatSort, OMatSortHeader, OMatSortModule, OMatSuffix, OModulesInfoService, OMomentPipe, ONIFInputComponent, ONIFInputModule, ONTIMIZE_MODULES, ONTIMIZE_PROVIDERS, ONavigationItem, OPasswordInputComponent, OPasswordInputModule, OPercentInputComponent, OPercentInputModule, OPercentPipe, OPermissionsModule, OPhoneInputComponent, OPhoneInputModule, OPreferenceMappingUtils, OPreferenceQueryArgumentsAdapter, OPreferenceResponseAdapter, ORadioComponent, ORadioModule, ORealInputComponent, ORealInputModule, ORealPipe, ORemoteConfigurationService, ORowCollapsibleComponent, ORowCollapsibleModule, ORowComponent, ORowModule, OSafePipe, OSearchInputComponent, OSearchInputModule, OServiceBaseComponent, OServiceComponent, OSharedModule, OSkeletonComponent, OSlideToggleComponent, OSlideToggleModule, OSliderComponent, OSliderModule, OSnackBarBase, OSnackBarComponent, OSnackBarConfig, OStoreFilterDialogComponent, OTabGroupDirective, OTableApplyConfigurationDialogComponent, OTableBase, OTableBaseDialogClass, OTableButtonComponent, OTableButtonsComponent, OTableCellEditorBooleanComponent, OTableCellEditorDateComponent, OTableCellEditorEmailComponent, OTableCellEditorIntegerComponent, OTableCellEditorRealComponent, OTableCellEditorTextComponent, OTableCellEditorTimeComponent, OTableCellRendererActionComponent, OTableCellRendererBooleanComponent, OTableCellRendererCurrencyComponent, OTableCellRendererDateComponent, OTableCellRendererImageComponent, OTableCellRendererIntegerComponent, OTableCellRendererPercentageComponent, OTableCellRendererRealComponent, OTableCellRendererServiceComponent, OTableCellRendererTimeComponent, OTableCellRendererTranslateComponent, OTableColumnAggregateComponent, OTableColumnCalculatedComponent, OTableColumnComponent, OTableColumnResizerComponent, OTableColumnSelectAllDirective, OTableColumnsFilterColumnComponent, OTableColumnsFilterComponent, OTableColumnsGroupingColumnComponent, OTableColumnsGroupingComponent, OTableComponent, OTableComponentStateClass, OTableComponentStateService, OTableContextMenuComponent, OTableDao, OTableDataSourceService, OTableExpandedFooterDirective, OTableExportButtonComponent, OTableExportButtonService, OTableExportConfiguration, OTableExportDialogComponent, OTableFilterByColumnDataDialogComponent, OTableGroupByColumnsDialogComponent, OTableGroupedRow, OTableHeaderComponent, OTableHeaderSelectAllComponent, OTableInsertableRowComponent, OTableMatPaginatorIntl, OTableMenuComponent, OTableModule, OTableOptionComponent, OTablePaginatorComponent, OTableQuickfilterComponent, OTableRowClassPipe, OTableRowDirective, OTableRowExpandableComponent, OTableRowExpandedChange, OTableSkeletonComponent, OTableStoreConfigurationDialogComponent, OTableVirtualScrollStrategy, OTableVisibleColumnsDialogComponent, OTextInputComponent, OTextInputModule, OTextareaInputComponent, OTextareaInputModule, OTimeInputComponent, OTimeInputModule, OTranslateHttpLoader, OTranslateModule, OTranslateParser, OTranslatePipe, OTranslateService, OTreeComponent, OTreeMenuComponent, OTreeModule, OTreeNodeComponent, OUserInfoBase, OUserInfoComponent, OUserInfoConfigurationDirective, OUserInfoConfigurationItemDirective, OUserInfoModule, OUserInfoService, OValidatorComponent, OValidators, OValueChangeEvent, OWrapperContentMenuComponent, O_AUTH_SERVICE, O_CHART_ON_DEMAND_SERVICE, O_COMPONENT_STATE_SERVICE, O_DATA_SERVICE, O_ERROR_DIALOG_MANAGER, O_EXPORT_DATA_SERVICE, O_EXPORT_SERVICE, O_FILE_SERVICE, O_FORM_GLOBAL_CONFIG, O_FORM_MESSAGE_SERVICE, O_GLOBAL_CONFIG, O_INPUTS_OPTIONS, O_LOCALSTORAGE_SERVICE, O_MAT_ERROR_OPTIONS, O_PERMISSION_SERVICE, O_REPORT_SERVICE, O_RESPONSE_ADAPTER, O_TABLE_CELL_EDITORS, O_TABLE_CELL_EDITORS_INPUTS, O_TABLE_CELL_EDITORS_OUTPUTS, O_TABLE_CELL_RENDERERS, O_TABLE_CELL_RENDERERS_INPUTS, O_TABLE_CELL_RENDERERS_OUTPUTS, O_TABLE_GLOBAL_CONFIG, O_TRANSLATE_SERVICE, ObservableWrapper, OnRangeChangeVirtualScroll, OntimizeAuthService, OntimizeAuthServiceProvider, OntimizeBaseService, OntimizeEEPermissionsService, OntimizeEEService, OntimizeExportDataProviderService, OntimizeExportDataProviderService3X, OntimizeExportService, OntimizeExportService3X, OntimizeExportServiceProvider, OntimizeFileService, OntimizeLocalStorageServiceProvider, OntimizeMatDateFormats, OntimizeMatIconRegistry, OntimizeMomentDateAdapter, OntimizePermissionsService, OntimizePreferencesService, OntimizeQueryArgumentsAdapter, OntimizeService, OntimizeServiceProvider, OntimizeServiceResponse, OntimizeServiceResponseAdapter, OntimizeServiceResponseParser, OntimizeWebModule, OntimizeWebTranslateModule, OrderByPipe, PaginationContextService, PermissionsGuardService, PermissionsService, PermissionsUtils, SQLTypes, ServiceRequestAdapter, ServiceResponseAdapter, ServiceUtils, ShareCanActivateChildService, SideEnum, SnackBarService, StringConverter, TWELVE_HOUR_FORMAT_PATTERN, TWENTY_FOUR_HOUR_FORMAT_PATTERN, TableFilterByColumnDialogResult, Util, _getInjectionTokenValue, appConfigFactory, authServiceFactory, componentStateFactory, createServiceInstance, dataServiceFactory, dateFormatFactory, editorsMapping, exportDataFactory, exportServiceFactory, fileServiceFactory, getPermissionsServiceProvider, localStorageServiceFactory, nameConventionServiceFactory, noop, ontimizePostBootstrap, permissionsServiceFactory, preferencesServiceFactory, renderersMapping, serviceRequestAdapterFactory, serviceResponseAdapterFactory, translateServiceFactory };
41427
+ export { APP_CONFIG, AbstractComponentStateClass, AbstractComponentStateService, AbstractOServiceBaseComponent, AbstractOServiceComponent, AbstractServiceComponentStateClass, AppConfig, AppConfigFactory, AppMenuService, AppearanceService, AuthGuardService, AuthService, Base64, BaseDataService, BaseQueryArgument, BaseService, BaseServiceResponse, BooleanConverter, BooleanInputConverter, CKEditorComponent, CKEditorModule, CanActivateFormLayoutChildGuard, CanDeactivateFormGuard, Codes, ColumnValueFilterOperator, ColumnsFilterPipe, ComponentStateServiceProvider, CurrencyService, CurrencyUtil, DEFAULT_CONTEXT_MENU_CONTENT_INPUTS, DEFAULT_CONTEXT_MENU_CONTENT_ITEM_INPUTS, DEFAULT_CONTEXT_MENU_CONTENT_OUTPUTS, DEFAULT_CONTEXT_MENU_DIRECTIVE_INPUTS, DEFAULT_CONTEXT_MENU_ITEM_INPUTS, DEFAULT_CONTEXT_MENU_ITEM_OUTPUTS, DEFAULT_DUAL_LIST_SELECTOR, DEFAULT_DUAL_LIST_SELECTOR_DATE_ITEM, DEFAULT_INPUTS_O_APP_HEADER, DEFAULT_INPUTS_O_APP_LAYOUT, DEFAULT_INPUTS_O_APP_LAYOUT_HEADER, DEFAULT_INPUTS_O_APP_LAYOUT_SIDENAV, DEFAULT_INPUTS_O_APP_SIDENAV, DEFAULT_INPUTS_O_APP_SIDENAV_IMAGE, DEFAULT_INPUTS_O_APP_SIDENAV_MENU_GROUP, DEFAULT_INPUTS_O_APP_SIDENAV_MENU_ITEM, DEFAULT_INPUTS_O_BAR_MENU, DEFAULT_INPUTS_O_BAR_MENU_ITEM, DEFAULT_INPUTS_O_BAR_MENU_NESTED, DEFAULT_INPUTS_O_BASE_MENU_ITEM, DEFAULT_INPUTS_O_BASE_TABLE_CELL_RENDERER, DEFAULT_INPUTS_O_BREADCRUMB, DEFAULT_INPUTS_O_BUTTON, DEFAULT_INPUTS_O_BUTTON_TOGGLE, DEFAULT_INPUTS_O_BUTTON_TOGGLE_GROUP, DEFAULT_INPUTS_O_CARD_RENDERER, DEFAULT_INPUTS_O_CHECKBOX, DEFAULT_INPUTS_O_COMBO, DEFAULT_INPUTS_O_COMBO_RENDERER, DEFAULT_INPUTS_O_COMBO_RENDERER_BOOLEAN, DEFAULT_INPUTS_O_COMBO_RENDERER_CURRENCY, DEFAULT_INPUTS_O_COMBO_RENDERER_DATE, DEFAULT_INPUTS_O_COMBO_RENDERER_ICON, DEFAULT_INPUTS_O_COMBO_RENDERER_INTEGER, DEFAULT_INPUTS_O_COMBO_RENDERER_PERCENTAGE, DEFAULT_INPUTS_O_COMBO_RENDERER_REAL, DEFAULT_INPUTS_O_CONTAINER, DEFAULT_INPUTS_O_CONTAINER_COLLAPSIBLE, DEFAULT_INPUTS_O_CONTEXT_MENU_ITEMS, DEFAULT_INPUTS_O_CURRENCY_INPUT, DEFAULT_INPUTS_O_DATA_TOOLBAR, DEFAULT_INPUTS_O_DATERANGE_INPUT, DEFAULT_INPUTS_O_DATERANGE_LEGACY_INPUT, DEFAULT_INPUTS_O_DATE_INPUT, DEFAULT_INPUTS_O_ERROR, DEFAULT_INPUTS_O_FILE_INPUT, DEFAULT_INPUTS_O_FILTER_BUILDER, DEFAULT_INPUTS_O_FILTER_BUILDER_MENU, DEFAULT_INPUTS_O_FORM, DEFAULT_INPUTS_O_FORM_CONTAINER, DEFAULT_INPUTS_O_FORM_DATA_COMPONENT, DEFAULT_INPUTS_O_FORM_LAYOUT_MANAGER, DEFAULT_INPUTS_O_FORM_LAYOUT_SPLIT_PANE, DEFAULT_INPUTS_O_FORM_LAYOUT_TABGROUP, DEFAULT_INPUTS_O_FORM_SERVICE_COMPONENT, DEFAULT_INPUTS_O_FORM_TOOLBAR, DEFAULT_INPUTS_O_GRID, DEFAULT_INPUTS_O_GRID_ITEM, DEFAULT_INPUTS_O_HOUR_INPUT, DEFAULT_INPUTS_O_HTML_INPUT, DEFAULT_INPUTS_O_IMAGE, DEFAULT_INPUTS_O_INTEGER_INPUT, DEFAULT_INPUTS_O_LANGUAGE_SELECTOR, DEFAULT_INPUTS_O_LIST, DEFAULT_INPUTS_O_LISTPICKER_RENDERER, DEFAULT_INPUTS_O_LISTPICKER_RENDERER_CURRENCY, DEFAULT_INPUTS_O_LISTPICKER_RENDERER_DATE, DEFAULT_INPUTS_O_LISTPICKER_RENDERER_INTEGER, DEFAULT_INPUTS_O_LISTPICKER_RENDERER_PERCENTAGE, DEFAULT_INPUTS_O_LISTPICKER_RENDERER_REAL, DEFAULT_INPUTS_O_LIST_ITEM_AVATAR, DEFAULT_INPUTS_O_LIST_ITEM_CARD_IMAGE, DEFAULT_INPUTS_O_LIST_ITEM_TEXT, DEFAULT_INPUTS_O_LIST_PICKER, DEFAULT_INPUTS_O_LIST_PICKER_DIALOG, DEFAULT_INPUTS_O_LOCALE_BAR_MENU_ITEM, DEFAULT_INPUTS_O_LOCKER, DEFAULT_INPUTS_O_MENU_CARD, DEFAULT_INPUTS_O_MENU_LAYOUT, DEFAULT_INPUTS_O_PASSWORD_INPUT, DEFAULT_INPUTS_O_PERCENT_INPUT, DEFAULT_INPUTS_O_PHONE_INPUT, DEFAULT_INPUTS_O_RADIO, DEFAULT_INPUTS_O_REAL_INPUT, DEFAULT_INPUTS_O_SEARCH_INPUT, DEFAULT_INPUTS_O_SERVICE_BASE_COMPONENT, DEFAULT_INPUTS_O_SERVICE_COMPONENT, DEFAULT_INPUTS_O_SLIDER_INPUT, DEFAULT_INPUTS_O_SLIDETOGGLE, DEFAULT_INPUTS_O_TABLE, DEFAULT_INPUTS_O_TABLE_BUTTON, DEFAULT_INPUTS_O_TABLE_BUTTONS, DEFAULT_INPUTS_O_TABLE_CELL_EDITOR, DEFAULT_INPUTS_O_TABLE_CELL_EDITOR_BOOLEAN, DEFAULT_INPUTS_O_TABLE_CELL_EDITOR_DATE, DEFAULT_INPUTS_O_TABLE_CELL_EDITOR_INTEGER, DEFAULT_INPUTS_O_TABLE_CELL_EDITOR_TIME, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_ACTION, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_BOOLEAN, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_CURRENCY, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_DATE, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_IMAGE, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_INTEGER, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_PERCENTAGE, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_REAL, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_SERVICE, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_TIME, DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_TRANSLATE, DEFAULT_INPUTS_O_TABLE_COLUMN, DEFAULT_INPUTS_O_TABLE_COLUMN_CALCULATED, DEFAULT_INPUTS_O_TABLE_COLUMN_FILTER, DEFAULT_INPUTS_O_TABLE_COLUMN_FILTER_COLUMN, DEFAULT_INPUTS_O_TABLE_COLUMN_GROUPING, DEFAULT_INPUTS_O_TABLE_COLUMN_GROUPING_COLUMN, DEFAULT_INPUTS_O_TABLE_COLUMN_RESIZER, DEFAULT_INPUTS_O_TABLE_COLUMN_SELECTALL, DEFAULT_INPUTS_O_TABLE_EXPORT_BUTTON, DEFAULT_INPUTS_O_TABLE_HEADER, DEFAULT_INPUTS_O_TABLE_INSERTABLE_ROW, DEFAULT_INPUTS_O_TABLE_MENU, DEFAULT_INPUTS_O_TABLE_OPTION, DEFAULT_INPUTS_O_TABLE_QUICKFILTER, DEFAULT_INPUTS_O_TABLE_ROW_EXPANDABLE, DEFAULT_INPUTS_O_TEXTAREA_INPUT, DEFAULT_INPUTS_O_TEXT_INPUT, DEFAULT_INPUTS_O_TEXT_RENDERER, DEFAULT_INPUTS_O_TIME_INPUT, DEFAULT_INPUTS_O_TREE, DEFAULT_INPUTS_O_USER_INFO, DEFAULT_INPUTS_O_USER_INFO_MENU, DEFAULT_INPUTS_O_USER_INFO_MENU_ITEM, DEFAULT_INPUTS_O_VALIDATOR, DEFAULT_INPUT_O_EXPANDABLE_CONTAINER, DEFAULT_OUTPUTS_LANGUAGE_SELECTOR, DEFAULT_OUTPUTS_O_APP_HEADER, DEFAULT_OUTPUTS_O_APP_LAYOUT, DEFAULT_OUTPUTS_O_APP_SIDENAV, DEFAULT_OUTPUTS_O_APP_SIDENAV_IMAGE, DEFAULT_OUTPUTS_O_APP_SIDENAV_MENU_GROUP, DEFAULT_OUTPUTS_O_APP_SIDENAV_MENU_ITEM, DEFAULT_OUTPUTS_O_BUTTON, DEFAULT_OUTPUTS_O_BUTTON_TOGGLE, DEFAULT_OUTPUTS_O_BUTTON_TOGGLE_GROUP, DEFAULT_OUTPUTS_O_CARD_RENDERER, DEFAULT_OUTPUTS_O_CONTAINER_COLLAPSIBLE, DEFAULT_OUTPUTS_O_CONTEXT_MENU, DEFAULT_OUTPUTS_O_DATERANGE_INPUT, DEFAULT_OUTPUTS_O_DATERANGE_LEGACY_INPUT, DEFAULT_OUTPUTS_O_FILE_INPUT, DEFAULT_OUTPUTS_O_FILTER_BUILDER, DEFAULT_OUTPUTS_O_FORM, DEFAULT_OUTPUTS_O_FORM_DATA_COMPONENT, DEFAULT_OUTPUTS_O_FORM_LAYOUT_MANAGER, DEFAULT_OUTPUTS_O_FORM_LAYOUT_SPLIT_PANE, DEFAULT_OUTPUTS_O_FORM_LAYOUT_TABGROUP, DEFAULT_OUTPUTS_O_FORM_SERVICE_COMPONENT, DEFAULT_OUTPUTS_O_FORM_TOOLBAR, DEFAULT_OUTPUTS_O_HTML_INPUT, DEFAULT_OUTPUTS_O_LIST, DEFAULT_OUTPUTS_O_LIST_ITEM_CARD_IMAGE, DEFAULT_OUTPUTS_O_LIST_PICKER, DEFAULT_OUTPUTS_O_MENU_CARD, DEFAULT_OUTPUTS_O_MENU_LAYOUT, DEFAULT_OUTPUTS_O_PERCENT_INPUT, DEFAULT_OUTPUTS_O_SEARCH_INPUT, DEFAULT_OUTPUTS_O_SERVICE_COMPONENT, DEFAULT_OUTPUTS_O_TABLE, DEFAULT_OUTPUTS_O_TABLE_BUTTON, DEFAULT_OUTPUTS_O_TABLE_BUTTONS, DEFAULT_OUTPUTS_O_TABLE_CELL_EDITOR, DEFAULT_OUTPUTS_O_TABLE_CELL_RENDERER_ACTION, DEFAULT_OUTPUTS_O_TABLE_CELL_RENDERER_IMAGE, DEFAULT_OUTPUTS_O_TABLE_CELL_RENDERER_SERVICE, DEFAULT_OUTPUTS_O_TABLE_COLUMN, DEFAULT_OUTPUTS_O_TABLE_COLUMN_FILTER, DEFAULT_OUTPUTS_O_TABLE_COLUMN_GROUPING, DEFAULT_OUTPUTS_O_TABLE_COLUMN_RESIZER, DEFAULT_OUTPUTS_O_TABLE_EXPORT_BUTTON, DEFAULT_OUTPUTS_O_TABLE_INSERTABLE_ROW, DEFAULT_OUTPUTS_O_TABLE_MENU, DEFAULT_OUTPUTS_O_TABLE_OPTION, DEFAULT_OUTPUTS_O_TABLE_QUICKFILTER, DEFAULT_OUTPUTS_O_TABLE_ROW_EXPANDABLE, DEFAULT_OUTPUTS_O_TEXT_RENDERER, DEFAULT_OUTPUTS_O_TREE, DEFAULT_OUTPUTS_O_USER_INFO, DEFAULT_OUTPUTS_O_USER_INFO_MENU, DEFAULT_PAGINATOR_TABLE, DEFAULT_TABLE_COLUMN_AGGREGATE, DEFAULT_TABLE_CONTEXT_MENU_INPUTS, DaterangepickerComponent, DefaultComponentStateClass, DefaultComponentStateService, DefaultOServiceBaseComponent, DefaultOTableDataSource, DefaultOTableOptions, DefaultServiceComponentStateClass, DefaultServiceComponentStateService, DialogService, Error403Component, ExportDataServiceProvider, FilterExpressionUtils, IconService, InputRegulateDirective, IsEmptyValuePipe, JSONAPIPreferencesService, JSONAPIQueryArgumentsAdapter, JSONAPIService, JSONAPIServiceResponse, JSONAPIServiceResponseAdapter, ListItem, LocalStorageService, LoginStorageService, MomentService, NameConvention, NameConventionLower, NameConventionProvider, NameConventionUpper, NavigationService, NumberConverter, NumberInputConverter, NumberService, OAppHeaderBase, OAppHeaderComponent, OAppHeaderModule, OAppLayoutBase, OAppLayoutComponent, OAppLayoutHeaderComponent, OAppLayoutModule, OAppLayoutSidenavComponent, OAppSidenavBase, OAppSidenavComponent, OAppSidenavImageComponent, OAppSidenavMenuGroupComponent, OAppSidenavMenuItemComponent, OAppSidenavModule, OBarMenuBase, OBarMenuComponent, OBarMenuGroupComponent, OBarMenuItemComponent, OBarMenuModule, OBarMenuNestedComponent, OBarMenuSeparatorComponent, OBaseComponent, OBaseMenuItemClass, OBaseTableCellEditor, OBaseTableCellRenderer, OBaseTablePaginator, OBreadcrumbComponent, OBreadcrumbModule, OBreadcrumbService, OButtonComponent, OButtonModule, OButtonToggleComponent, OButtonToggleGroupComponent, OButtonToggleModule, OCardMenuItemComponent, OCardMenuItemModule, OCardMenuLayoutComponent, OCardMenuLayoutModule, OCheckboxComponent, OCheckboxModule, OColumn, OColumnCollapsibleComponent, OColumnCollapsibleModule, OColumnComponent, OColumnModule, OComboComponent, OComboCustomRenderer, OComboModule, OComboRendererBooleanComponent, OComboRendererCurrencyComponent, OComboRendererDateComponent, OComboRendererIconComponent, OComboRendererIntegerComponent, OComboRendererPercentageComponent, OComboRendererRealComponent, OComboSearchComponent, OComponentMenuBaseItem, OContainerCollapsibleComponent, OContainerComponent, OContextMenuComponent, OContextMenuContentComponent, OContextMenuDirective, OContextMenuGroupComponent, OContextMenuItemComponent, OContextMenuModule, OContextMenuSeparatorComponent, OContextMenuService, OCurrencyInputComponent, OCurrencyInputModule, OCurrencyPipe, OCustomMaterialModule, ODataToolbarComponent, ODataToolbarModule, ODateInputComponent, ODateInputModule, ODateRangeInputComponent, ODateRangeInputModule, ODateRangeLegacyInputComponent, ODateRangeLegacyInputModule, ODaterangepickerDirective, ODialogBase, ODialogComponent, ODialogConfig, ODualListSelectorComponent, ODualListSelectorDateItemComponent, ODualListSelectorModule, OEmailInputComponent, OEmailInputModule, OErrorComponent, OErrorDialogManager, OExpandableContainerComponent, OExpandableContainerModule, OFileDragAndDropDirective, OFileInputComponent, OFileInputModule, OFileItem, OFileUploader, OFilterBuilderBase, OFilterBuilderClearDirective, OFilterBuilderComponent, OFilterBuilderMenuComponent, OFilterBuilderModule, OFilterBuilderQueryDirective, OFormBase, OFormCacheClass, OFormComponent, OFormContainerComponent, OFormContainerModule, OFormControl, OFormDataComponent, OFormLayoutDialogComponent, OFormLayoutDialogOptionsDirective, OFormLayoutManagerBase, OFormLayoutManagerComponent, OFormLayoutManagerComponentStateClass, OFormLayoutManagerComponentStateService, OFormLayoutManagerContentDirective, OFormLayoutManagerModule, OFormLayoutManagerService, OFormLayoutSplitPaneComponent, OFormLayoutSplitPaneOptionsDirective, OFormLayoutTabGroupComponent, OFormLayoutTabGroupOptionsDirective, OFormMessageService, OFormModule, OFormNavigationClass, OFormNavigationComponent, OFormServiceComponent, OFormToolbarBase, OFormToolbarComponent, OFormToolbarModule, OFormValue, OFullScreenDialogComponent, OGridComponent, OGridComponentStateClass, OGridComponentStateService, OGridItemComponent, OGridItemDirective, OGridModule, OGridSkeletonComponent, OHTMLInputComponent, OHTMLInputModule, OHiddenDirective, OHourInputComponent, OHourInputModule, OIconPipe, OImageComponent, OImageModule, OIntegerInputComponent, OIntegerInputModule, OIntegerPipe, OKeyboardListenerDirective, OLanguageSelectorComponent, OLanguageSelectorModule, OListComponent, OListComponentStateClass, OListComponentStateService, OListItemAvatarComponent, OListItemCardComponent, OListItemCardImageComponent, OListItemCardRenderer, OListItemComponent, OListItemDirective, OListItemTextComponent, OListItemTextRenderer, OListModule, OListPickerComponent, OListPickerCustomRenderer, OListPickerDialogComponent, OListPickerModule, OListPickerRendererCurrencyComponent, OListPickerRendererDateComponent, OListPickerRendererIntegerComponent, OListPickerRendererPercentageComponent, OListPickerRendererRealComponent, OListSkeletonComponent, OLoadFilterDialogComponent, OLocaleBarMenuItemComponent, OLockerDirective, OMatErrorDirective, OMatPrefix, OMatSort, OMatSortHeader, OMatSortModule, OMatSuffix, OModulesInfoService, OMomentPipe, ONIFInputComponent, ONIFInputModule, ONTIMIZE_MODULES, ONTIMIZE_PROVIDERS, ONavigationItem, OPasswordInputComponent, OPasswordInputModule, OPercentInputComponent, OPercentInputModule, OPercentPipe, OPermissionsModule, OPhoneInputComponent, OPhoneInputModule, OPreferenceMappingUtils, OPreferenceResponseAdapter, ORadioComponent, ORadioModule, ORealInputComponent, ORealInputModule, ORealPipe, ORemoteConfigurationService, ORowCollapsibleComponent, ORowCollapsibleModule, ORowComponent, ORowModule, OSafePipe, OSearchInputComponent, OSearchInputModule, OServiceBaseComponent, OServiceComponent, OSharedModule, OSkeletonComponent, OSlideToggleComponent, OSlideToggleModule, OSliderComponent, OSliderModule, OSnackBarBase, OSnackBarComponent, OSnackBarConfig, OStoreFilterDialogComponent, OTabGroupDirective, OTableApplyConfigurationDialogComponent, OTableBase, OTableBaseDialogClass, OTableButtonComponent, OTableButtonsComponent, OTableCellEditorBooleanComponent, OTableCellEditorDateComponent, OTableCellEditorEmailComponent, OTableCellEditorIntegerComponent, OTableCellEditorRealComponent, OTableCellEditorTextComponent, OTableCellEditorTimeComponent, OTableCellRendererActionComponent, OTableCellRendererBooleanComponent, OTableCellRendererCurrencyComponent, OTableCellRendererDateComponent, OTableCellRendererImageComponent, OTableCellRendererIntegerComponent, OTableCellRendererPercentageComponent, OTableCellRendererRealComponent, OTableCellRendererServiceComponent, OTableCellRendererTimeComponent, OTableCellRendererTranslateComponent, OTableColumnAggregateComponent, OTableColumnCalculatedComponent, OTableColumnComponent, OTableColumnResizerComponent, OTableColumnSelectAllDirective, OTableColumnsFilterColumnComponent, OTableColumnsFilterComponent, OTableColumnsGroupingColumnComponent, OTableColumnsGroupingComponent, OTableComponent, OTableComponentStateClass, OTableComponentStateService, OTableContextMenuComponent, OTableDao, OTableDataSourceService, OTableExpandedFooterDirective, OTableExportButtonComponent, OTableExportButtonService, OTableExportConfiguration, OTableExportDialogComponent, OTableFilterByColumnDataDialogComponent, OTableGroupByColumnsDialogComponent, OTableGroupedRow, OTableHeaderComponent, OTableHeaderSelectAllComponent, OTableInsertableRowComponent, OTableMatPaginatorIntl, OTableMenuComponent, OTableModule, OTableOptionComponent, OTablePaginatorComponent, OTableQuickfilterComponent, OTableRowClassPipe, OTableRowDirective, OTableRowExpandableComponent, OTableRowExpandedChange, OTableSkeletonComponent, OTableStoreConfigurationDialogComponent, OTableVirtualScrollStrategy, OTableVisibleColumnsDialogComponent, OTextInputComponent, OTextInputModule, OTextareaInputComponent, OTextareaInputModule, OTimeInputComponent, OTimeInputModule, OTranslateHttpLoader, OTranslateModule, OTranslateParser, OTranslatePipe, OTranslateService, OTreeComponent, OTreeMenuComponent, OTreeModule, OTreeNodeComponent, OUserInfoBase, OUserInfoComponent, OUserInfoConfigurationDirective, OUserInfoConfigurationItemDirective, OUserInfoModule, OUserInfoService, OValidatorComponent, OValidators, OValueChangeEvent, OWrapperContentMenuComponent, O_AUTH_SERVICE, O_CHART_ON_DEMAND_SERVICE, O_COMPONENT_STATE_SERVICE, O_DATA_SERVICE, O_ERROR_DIALOG_MANAGER, O_EXPORT_DATA_SERVICE, O_EXPORT_SERVICE, O_FILE_SERVICE, O_FORM_GLOBAL_CONFIG, O_FORM_MESSAGE_SERVICE, O_GLOBAL_CONFIG, O_INPUTS_OPTIONS, O_LOCALSTORAGE_SERVICE, O_MAT_ERROR_OPTIONS, O_PERMISSION_SERVICE, O_REPORT_SERVICE, O_RESPONSE_ADAPTER, O_TABLE_CELL_EDITORS, O_TABLE_CELL_EDITORS_INPUTS, O_TABLE_CELL_EDITORS_OUTPUTS, O_TABLE_CELL_RENDERERS, O_TABLE_CELL_RENDERERS_INPUTS, O_TABLE_CELL_RENDERERS_OUTPUTS, O_TABLE_GLOBAL_CONFIG, O_TRANSLATE_SERVICE, ObservableWrapper, OnRangeChangeVirtualScroll, OntimizeAuthService, OntimizeAuthServiceProvider, OntimizeBaseService, OntimizeEEPermissionsService, OntimizeEEService, OntimizeExportDataProviderService, OntimizeExportDataProviderService3X, OntimizeExportService, OntimizeExportService3X, OntimizeExportServiceProvider, OntimizeFileService, OntimizeLocalStorageServiceProvider, OntimizeMatDateFormats, OntimizeMatIconRegistry, OntimizeMomentDateAdapter, OntimizePermissionsService, OntimizePreferencesService, OntimizeQueryArgumentsAdapter, OntimizeService, OntimizeServiceProvider, OntimizeServiceResponse, OntimizeServiceResponseAdapter, OntimizeServiceResponseParser, OntimizeWebModule, OntimizeWebTranslateModule, OrderByPipe, PaginationContextService, PermissionsGuardService, PermissionsService, PermissionsUtils, SQLTypes, ServiceRequestAdapter, ServiceResponseAdapter, ServiceUtils, ShareCanActivateChildService, SideEnum, SnackBarService, StringConverter, TWELVE_HOUR_FORMAT_PATTERN, TWENTY_FOUR_HOUR_FORMAT_PATTERN, TableFilterByColumnDialogResult, Util, _getInjectionTokenValue, appConfigFactory, authServiceFactory, componentStateFactory, createServiceInstance, dataServiceFactory, dateFormatFactory, editorsMapping, exportDataFactory, exportServiceFactory, fileServiceFactory, getPermissionsServiceProvider, localStorageServiceFactory, nameConventionServiceFactory, noop, ontimizePostBootstrap, permissionsServiceFactory, preferencesServiceFactory, renderersMapping, serviceRequestAdapterFactory, serviceResponseAdapterFactory, translateServiceFactory };
41419
41428
  //# sourceMappingURL=ontimize-web-ngx.mjs.map