@ngx-smz/core 21.4.0 → 21.4.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.
@@ -11577,32 +11577,7 @@ class BaseApiService {
11577
11577
  }
11578
11578
  }
11579
11579
 
11580
- const DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES = {
11581
- login: 'api/authentication/login',
11582
- refreshToken: 'api/authentication/refresh-token',
11583
- resetPassword: 'api/authentication/reset-password',
11584
- redefinePassword: 'api/authentication/redefine-password',
11585
- resendConfirmation: 'api/authentication/resend-confirmation',
11586
- confirmEmail: 'api/authentication/confirm-email',
11587
- switchTenant: 'api/authentication/switch-tenant',
11588
- changePassword: 'api/authentication/change-password',
11589
- register: 'api/authentication/user/register',
11590
- createUser: 'api/authentication/user/create',
11591
- deleteUser: 'api/authentication/user/delete',
11592
- deactivateUser: 'api/authentication/user/deactivate',
11593
- activateUser: 'api/authentication/user/activate',
11594
- };
11595
- const DEFAULT_AUTHENTICATION_BASE_PATH = 'authentication';
11596
- function buildAuthenticationEndpointsRoutes(basePath = DEFAULT_AUTHENTICATION_BASE_PATH) {
11597
- const routes = { ...DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES };
11598
- const prefix = `api/${DEFAULT_AUTHENTICATION_BASE_PATH}`;
11599
- const replacement = `api/${basePath}`;
11600
- return Object.keys(routes).reduce((result, key) => {
11601
- result[key] = routes[key].replace(prefix, replacement);
11602
- return result;
11603
- }, {});
11604
- }
11605
- function buildAuthenticationUrl(serverUrl, route) {
11580
+ function buildServerApiUrl(serverUrl, route) {
11606
11581
  const base = serverUrl.replace(/\/+$/, '');
11607
11582
  const path = route.replace(/^\/+/, '');
11608
11583
  return `${base}/${path}`;
@@ -11621,7 +11596,7 @@ class AuthService extends BaseApiService {
11621
11596
  if (extraProperties != null) {
11622
11597
  data = { ...data, ...extraProperties };
11623
11598
  }
11624
- const url = buildAuthenticationUrl(this.environment.serverUrl, GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.login);
11599
+ const url = buildServerApiUrl(this.environment.serverUrl, GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.login);
11625
11600
  return this.http.post(url, data, this.generateDefaultHeaders({
11626
11601
  loadingBehavior: GlobalInjector.config.rbkUtils.authentication.login.loadingBehavior,
11627
11602
  authentication: false,
@@ -11640,7 +11615,7 @@ class AuthService extends BaseApiService {
11640
11615
  if (extraProperties != null) {
11641
11616
  data = { ...data, ...extraProperties };
11642
11617
  }
11643
- const url = buildAuthenticationUrl(this.environment.serverUrl, GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.refreshToken);
11618
+ const url = buildServerApiUrl(this.environment.serverUrl, GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.refreshToken);
11644
11619
  return this.http.post(url, data, this.generateDefaultHeaders({
11645
11620
  loadingBehavior: GlobalInjector.config.rbkUtils.authentication.refreshToken.loadingBehavior,
11646
11621
  authentication: false,
@@ -11686,7 +11661,7 @@ class AuthenticationService extends BaseApiService {
11686
11661
  this.http = http;
11687
11662
  }
11688
11663
  buildUrl(route) {
11689
- return buildAuthenticationUrl(this.environment.serverUrl, route);
11664
+ return buildServerApiUrl(this.environment.serverUrl, route);
11690
11665
  }
11691
11666
  sendResetPasswordEmail(data) {
11692
11667
  const route = this.config.rbkUtils.authentication.endpointsRoutes.resetPassword;
@@ -29983,7 +29958,7 @@ class AuthInterceptor {
29983
29958
  // checks if a url is to an admin api or not
29984
29959
  if (error.status === 401) {
29985
29960
  // check if the response is from the token refresh end point
29986
- const url = buildAuthenticationUrl(this.environment.serverUrl, this.config.rbkUtils.authentication.endpointsRoutes.refreshToken);
29961
+ const url = buildServerApiUrl(this.environment.serverUrl, this.config.rbkUtils.authentication.endpointsRoutes.refreshToken);
29987
29962
  const isFromRefreshTokenEndpoint = error.url === url;
29988
29963
  if (isFromRefreshTokenEndpoint) {
29989
29964
  console.error('Problem while trying to automatically refresh the token, redirecting to login');
@@ -30589,67 +30564,89 @@ var TenantsActions;
30589
30564
  class AuthorizationService extends BaseApiService {
30590
30565
  http;
30591
30566
  environment = inject(SmzEnvironment);
30592
- endpoint = '/api/authorization';
30567
+ config = inject(NgxSmzUiConfig);
30593
30568
  constructor(http) {
30594
30569
  super();
30595
30570
  this.http = http;
30596
30571
  }
30572
+ buildUrl(route) {
30573
+ return buildServerApiUrl(this.environment.serverUrl, route);
30574
+ }
30597
30575
  getAllClaims() {
30598
- return this.http.get(`${this.environment.serverUrl}${this.endpoint}/claims`, this.generateDefaultHeaders({}));
30576
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.getAllClaims;
30577
+ return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
30599
30578
  }
30600
30579
  createClaim(data) {
30601
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/claims`, data, this.generateDefaultHeaders({}));
30580
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.createClaim;
30581
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30602
30582
  }
30603
30583
  updateClaim(data) {
30604
- return this.http.put(`${this.environment.serverUrl}${this.endpoint}/claims`, data, this.generateDefaultHeaders({}));
30584
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.updateClaim;
30585
+ return this.http.put(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30605
30586
  }
30606
30587
  deleteClaim(id) {
30607
- return this.http.delete(`${this.environment.serverUrl}${this.endpoint}/claims/${id}`, this.generateDefaultHeaders({}));
30588
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.deleteClaim;
30589
+ return this.http.delete(`${this.buildUrl(route)}/${id}`, this.generateDefaultHeaders({}));
30608
30590
  }
30609
30591
  protectClaim(data) {
30610
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/claims/protect`, data, this.generateDefaultHeaders({}));
30592
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.protectClaim;
30593
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30611
30594
  }
30612
30595
  unprotectClaim(data) {
30613
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/claims/unprotect`, data, this.generateDefaultHeaders({}));
30596
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.unprotectClaim;
30597
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30614
30598
  }
30615
30599
  getAllRoles() {
30616
- return this.http.get(`${this.environment.serverUrl}${this.endpoint}/roles`, this.generateDefaultHeaders({}));
30600
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.getAllRoles;
30601
+ return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
30617
30602
  }
30618
30603
  createRole(data) {
30619
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/roles`, data, this.generateDefaultHeaders({}));
30604
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.createRole;
30605
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30620
30606
  }
30621
30607
  updateRole(data) {
30622
- return this.http.put(`${this.environment.serverUrl}${this.endpoint}/roles`, data, this.generateDefaultHeaders({}));
30608
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.updateRole;
30609
+ return this.http.put(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30623
30610
  }
30624
30611
  deleteRole(id) {
30625
- return this.http.delete(`${this.environment.serverUrl}${this.endpoint}/roles/${id}`, this.generateDefaultHeaders({}));
30612
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.deleteRole;
30613
+ return this.http.delete(`${this.buildUrl(route)}/${id}`, this.generateDefaultHeaders({}));
30626
30614
  }
30627
30615
  updateRoleClaims(data) {
30628
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/roles/update-claims`, data, this.generateDefaultHeaders({}));
30616
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.updateRoleClaims;
30617
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30629
30618
  }
30630
30619
  getAllUsers() {
30631
- return this.http.get(`${this.environment.serverUrl}${this.endpoint}/users`, this.generateDefaultHeaders({}));
30620
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.getAllUsers;
30621
+ return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
30632
30622
  }
30633
30623
  updateUserRoles(data) {
30634
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/users/set-roles`, data, this.generateDefaultHeaders({}));
30624
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.updateUserRoles;
30625
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30635
30626
  }
30636
30627
  addClaimsToUser(data) {
30637
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/users/add-claims`, data, this.generateDefaultHeaders({}));
30628
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.addClaimsToUser;
30629
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30638
30630
  }
30639
30631
  removeClaimsFromUser(data) {
30640
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/users/remove-claims`, data, this.generateDefaultHeaders({}));
30632
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.removeClaimsFromUser;
30633
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30641
30634
  }
30642
30635
  getAllTenants() {
30643
- return this.http.get(`${this.environment.serverUrl}${this.endpoint}/tenants`, this.generateDefaultHeaders({}));
30636
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.getAllTenants;
30637
+ return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
30644
30638
  }
30645
30639
  createTenant(data) {
30646
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/tenants`, data, this.generateDefaultHeaders({}));
30640
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.createTenant;
30641
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30647
30642
  }
30648
30643
  updateTenant(data) {
30649
- return this.http.put(`${this.environment.serverUrl}${this.endpoint}/tenants`, data, this.generateDefaultHeaders({}));
30644
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.updateTenant;
30645
+ return this.http.put(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30650
30646
  }
30651
30647
  deleteTenant(id) {
30652
- return this.http.delete(`${this.environment.serverUrl}${this.endpoint}/tenants/${id}`, this.generateDefaultHeaders({}));
30648
+ const route = this.config.rbkUtils.authorization.endpointsRoutes.deleteTenant;
30649
+ return this.http.delete(`${this.buildUrl(route)}/${id}`, this.generateDefaultHeaders({}));
30653
30650
  }
30654
30651
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.5", ngImport: i0, type: AuthorizationService, deps: [{ token: i1$8.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
30655
30652
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.5", ngImport: i0, type: AuthorizationService, providedIn: 'root' });
@@ -31032,6 +31029,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.5", ngImpor
31032
31029
  args: [{ providedIn: 'root' }]
31033
31030
  }], ctorParameters: () => [{ type: i1$6.Store }] });
31034
31031
 
31032
+ const DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES = {
31033
+ login: 'api/authentication/login',
31034
+ refreshToken: 'api/authentication/refresh-token',
31035
+ resetPassword: 'api/authentication/reset-password',
31036
+ redefinePassword: 'api/authentication/redefine-password',
31037
+ resendConfirmation: 'api/authentication/resend-confirmation',
31038
+ confirmEmail: 'api/authentication/confirm-email',
31039
+ switchTenant: 'api/authentication/switch-tenant',
31040
+ changePassword: 'api/authentication/change-password',
31041
+ register: 'api/authentication/user/register',
31042
+ createUser: 'api/authentication/user/create',
31043
+ deleteUser: 'api/authentication/user/delete',
31044
+ deactivateUser: 'api/authentication/user/deactivate',
31045
+ activateUser: 'api/authentication/user/activate',
31046
+ };
31047
+ const DEFAULT_AUTHENTICATION_BASE_PATH = 'authentication';
31048
+ function buildAuthenticationEndpointsRoutes(basePath = DEFAULT_AUTHENTICATION_BASE_PATH) {
31049
+ const routes = { ...DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES };
31050
+ const prefix = `api/${DEFAULT_AUTHENTICATION_BASE_PATH}`;
31051
+ const replacement = `api/${basePath}`;
31052
+ return Object.keys(routes).reduce((result, key) => {
31053
+ result[key] = routes[key].replace(prefix, replacement);
31054
+ return result;
31055
+ }, {});
31056
+ }
31057
+ /** @deprecated Use {@link buildServerApiUrl} from `@ngx-smz/core`. */
31058
+ function buildAuthenticationUrl(serverUrl, route) {
31059
+ return buildServerApiUrl(serverUrl, route);
31060
+ }
31061
+
31062
+ const DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES = {
31063
+ getAllClaims: 'api/authorization/claims',
31064
+ createClaim: 'api/authorization/claims',
31065
+ updateClaim: 'api/authorization/claims',
31066
+ deleteClaim: 'api/authorization/claims',
31067
+ protectClaim: 'api/authorization/claims/protect',
31068
+ unprotectClaim: 'api/authorization/claims/unprotect',
31069
+ getAllRoles: 'api/authorization/roles',
31070
+ createRole: 'api/authorization/roles',
31071
+ updateRole: 'api/authorization/roles',
31072
+ deleteRole: 'api/authorization/roles',
31073
+ updateRoleClaims: 'api/authorization/roles/update-claims',
31074
+ getAllUsers: 'api/authorization/users',
31075
+ updateUserRoles: 'api/authorization/users/set-roles',
31076
+ addClaimsToUser: 'api/authorization/users/add-claims',
31077
+ removeClaimsFromUser: 'api/authorization/users/remove-claims',
31078
+ getAllTenants: 'api/authorization/tenants',
31079
+ createTenant: 'api/authorization/tenants',
31080
+ updateTenant: 'api/authorization/tenants',
31081
+ deleteTenant: 'api/authorization/tenants',
31082
+ };
31083
+ const DEFAULT_AUTHORIZATION_BASE_PATH = 'authorization';
31084
+ function buildAuthorizationEndpointsRoutes(basePath = DEFAULT_AUTHORIZATION_BASE_PATH) {
31085
+ const routes = { ...DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES };
31086
+ const prefix = `api/${DEFAULT_AUTHORIZATION_BASE_PATH}`;
31087
+ const replacement = `api/${basePath}`;
31088
+ return Object.keys(routes).reduce((result, key) => {
31089
+ result[key] = routes[key].replace(prefix, replacement);
31090
+ return result;
31091
+ }, {});
31092
+ }
31093
+
31035
31094
  /* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-return, @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/explicit-function-return-type, @typescript-eslint/typedef, no-underscore-dangle, no-console, eqeqeq, @typescript-eslint/no-unused-vars, @typescript-eslint/no-useless-constructor, @typescript-eslint/explicit-member-accessibility, max-len, no-prototype-builtins, @typescript-eslint/no-shadow, @typescript-eslint/no-empty-object-type */
31036
31095
  class BoilerplateService {
31037
31096
  titleService;
@@ -50437,6 +50496,14 @@ class SmzUiAuthorizationBuilder extends SmzBuilderUtilities {
50437
50496
  this._state.rbkUtils.state.feature = { ...this._state.rbkUtils.state.feature, ...featureSmzAccessStates };
50438
50497
  this._menu = { label: 'Admin', icon: 'fa-solid fa-user-gear', items: [] };
50439
50498
  }
50499
+ setEndpointRoute(key, route) {
50500
+ this._builder._state.rbkUtils.authorization.endpointsRoutes[key] = route;
50501
+ return this.that;
50502
+ }
50503
+ overrideAuthorizationUrl(path = 'authorization') {
50504
+ this._builder._state.rbkUtils.authorization.endpointsRoutes = buildAuthorizationEndpointsRoutes(path);
50505
+ return this.that;
50506
+ }
50440
50507
  setMenuLabel(label) {
50441
50508
  this._menu.label = label;
50442
50509
  return this.that;
@@ -51265,6 +51332,9 @@ class SmzUiBuilder extends SmzBuilderUtilities {
51265
51332
  }
51266
51333
  },
51267
51334
  authorization: {
51335
+ endpointsRoutes: {
51336
+ ...DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES,
51337
+ },
51268
51338
  navigationMenu: null,
51269
51339
  allowMultipleRolesPerUser: false,
51270
51340
  profileMenu: [],
@@ -57566,5 +57636,5 @@ __decorate([
57566
57636
  * Generated bundle index. Do not edit.
57567
57637
  */
57568
57638
 
57569
- export { AUTHORIZATION_HEADER, AccessControlService, ActionDispatchDirective, ApplicationActions, ApplicationSelectors, ApplicationState, AsPipe, AthenaLayout, AthenaLayoutComponent, AthenaLayoutModule, AuthClaimDefinitions, AuthHandler, AuthService, AuthenticationActions, AuthenticationSelectors, AuthenticationService, AuthenticationState, AuthorizationService, AxisOverflowDirection, AxisOverflowType, AxisPosition, BaseApiService, BoilerplateService, BreadcrumbService, CLAIMS_PAGE_ROUTE, CLAIMS_PATH, CLAIMS_STATE_NAME, CONTENT_ENCODING_HEADER, CachedRouteReuseStrategy, CalendarComponent, CalendarPipe, CanAccess, ChartType, CheckBoxComponent, CheckBoxGroupComponent, ClaimAccessType, ClaimAccessTypeDescription, ClaimAccessTypeValues, ClaimsActions, ClaimsModule, ClaimsSelectors, ClaimsState, ClickStopPropagationDirective, ClickStopPropagationModule, ClonePipe, ColorPallete, ColorPickerComponent, Confirmable, CreateLinearChart, CreateRadialChart, CustomError, CustomNgForDirective, CustomNgForModule, DATABASE_REQUIRED_ACTIONS, DATABASE_STATES, DECORATOR_APPLIED, DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES, DatabaseActions, DatabaseSelectors, DatabaseState, DatasetType, DeepWrapper, DescribeAnyPipe, DescribeArrayPipe, DescribeSimpleNamedPipe, DialogContentManagerComponent, DialogService, DropdownComponent, DynamicDialogComponent, DynamicDialogConfig, DynamicDialogInjector, DynamicDialogModule, DynamicDialogRef, ERROR_HANDLING_TYPE_HEADER, ExcelsUiActions, FEATURE_STATES, FeaturesActions, FeaturesSelectors, FeaturesState, FileUploadComponent, FilterContains, FirstOrDefaultPipe, FormGroupComponent, FormSubmitComponent, GenericInjectComponentDirective, GetElementById, GetElementsByParentId, GlobalActions, GlobalFilter, GlobalInjector, GlobalLoaderComponent, GlobalLoaderModule, GlobalState, GroupingType, HephaestusLayout, HephaestusLayoutComponent, HephaestusLayoutModule, HephaestusProviderModule, HostElement, HttpErrorHandler, IGNORE_ERROR_HANDLING, InViewportMetadata, InjectComponentDirective, InjectComponentService, InjectContentAppModule, InjectContentDirective, InjectContentService, InputBlurDetectionModule, InputChangeDetectionDirective, InputClearExtensionDirective, InputCurrencyComponent, InputListComponent, InputMaskComponent, InputNumberComponent, InputPasswordComponent, InputSwitchComponent, InputTagAreaComponent, InputTextAreaComponent, InputTextComponent, InputTreeComponent, IsVisiblePipe, IsVisiblePipeModule, JoinPipe, LOADING_BEHAVIOR_HEADER, LOCAL_LOADING_TAG_HEADER, LayoutUiActions, LayoutUiSelectors, LayoutUiState, LegacyAuthenticationSelectors, LinearChartBuilder, LinkedDropdownComponent, LinkedMultiSelectComponent, LoggingScope, LoggingService, MAIN_LAYOUT_PATH, MentionableTextareaComponent, MenuHelperService, MenuType, MergeClonePipe, MergeClonePipeModule, MultiSelectComponent, NG_ON_INIT, NewAthenaLayout, NewAthenaLayoutComponent, NewAthenaLayoutModule, NewAthenaProviderModule, NgCloneDirective, NgCloneModule, NgIfLandscapeDirective, NgIfLandscapeDirectiveModule, NgIfPortraitDirective, NgIfPortraitDirectiveModule, NgVar, NgVarContext, NgVarModule, NgxRbkUtilsConfig, NgxRbkUtilsModule, NgxSmzCardsModule, NgxSmzCommentsModule, NgxSmzDataInfoModule, NgxSmzDataPipesModule, NgxSmzDialogsModule, NgxSmzDockModule, NgxSmzDocumentsModule, NgxSmzFaqsModule, NgxSmzFormsModule, NgxSmzLayoutsModule, NgxSmzMenuModule, NgxSmzMultiTablesModule, NgxSmzRouterParamsModule, NgxSmzSafeImageModule, NgxSmzServerImageModule, NgxSmzServerImageToBase64Module, NgxSmzSideContentModule, NgxSmzTablesModule, NgxSmzTreeWithDetailsModule, NgxSmzTreesModule, NgxSmzUiBlockModule, NgxSmzUiComponent, NgxSmzUiConfig, NgxSmzUiGuidesModule, NgxSmzUiModule, NgxSmzViewportModule, PrettyJsonPipe$1 as PrettyJsonPipe, PrettyJsonPipeModule, PrimeConfigService, REFRESH_TOKEN_BEHAVIOR_HEADER, RESTORE_STATE_ON_ERROR_HEADER, ROLES_PAGE_ROUTE, ROLES_PATH, ROLES_STATE_NAME, RadialChartBuilder, RadioButtonComponent, RbkAccessControlModule, RbkAuthGuard, RbkCanAccessAnyPipe, RbkCanAccessPipe, RbkClaimGuardDirective, RbkDatabaseStateGuard, RbkFeatureStateGuard, RbkPipesModule, RbkTableFilterClearDirectivesModule, RegistrySmzUiConfiguration, RepositoryForm, RoleMode, RoleModeDescription, RoleModeValues, RoleSource, RoleSourceDescription, RoleSourceValues, RolesActions, RolesModule, RolesSelectors, RolesState, RouterParamsActions, RouterParamsSelectors, SMZ_CORE_LOGGING_CONFIG, SMZ_UI_ENVIRONMENT_CONFIG, SafeHtmlPipe$2 as SafeHtmlPipe, SafeImageDirective, SafeUrlPipe$1 as SafeUrlPipe, SelectorPipe, ServerImageDirective, ServerImageToBase64Directive, ServerPathPipe, SetTemplateClasses, SetTemplateClassesPipe, SidebarState, SimpleCalendarPipe, SmzActionDispatchModule, SmzAuthorizationDeactivatedUsersTableBuilder, SmzAuthorizationUsersTableBuilder, SmzBaseColumnBuilder, SmzBaseEditableBuilder, SmzBreakpoints, SmzBuilderUtilities, SmzCardsBuilder, SmzCardsComponent, SmzCardsContentType, SmzCardsInjectableComponentBuilder, SmzCardsTemplate, SmzCardsView, SmzChartComponent, SmzChartModule, SmzClipboardService, SmzColumnCollectionBuilder, SmzCommentsBuilder, SmzCommentsComponent, SmzCommentsSectionComponent, SmzContentTheme, SmzContentThemes, SmzContentType, SmzControlType, SmzCoreLogging, SmzCurrencyColumnBuilder, SmzCustomColumnBuilder, SmzDataInfoComponent, SmzDataTransformColumnBuilder, SmzDataTransformTreePipe, SmzDateColumnBuilder, SmzDialogBuilder, SmzDialogComponentBuilder, SmzDialogFormBuilder, SmzDialogTableBuilder, SmzDialogsConfig, SmzDialogsPresets, SmzDialogsService, SmzDockComponent, SmzDockService, SmzDocumentBaseCellBuilder, SmzDocumentBuilder, SmzDocumentComponent, SmzDocumentsService, SmzDragDropModule, SmzDraggable, SmzDropdownEditableBuilder, SmzDroppable, SmzDynamicDialogConfig, SmzEasyBaseColumnBuilder, SmzEasyColumnCollectionBuilder, SmzEasyCustomColumnBuilder, SmzEasyDataTransformColumnBuilder, SmzEasyDateColumnBuilder, SmzEasyMenuTableBuilder, SmzEasyTableBuilder, SmzEasyTableComponent, SmzEasyTableContentType, SmzEasyTableModule, SmzEasyTextColumnBuilder, SmzEditableCollectionBuilder, SmzEditableTableBuilder, SmzEditableType, SmzEnvironment, SmzExcelColorDefinitions, SmzExcelDataDefinitions, SmzExcelFontDefinitions, SmzExcelService, SmzExcelSortOrderDefinitions, SmzExcelThemeDefinitions, SmzExcelTypeDefinitions, SmzExcelsBuilder, SmzExportDialogComponent, SmzExportDialogModule, SmzExportDialogService, SmzExportableContentSource, SmzExportableContentType, SmzFaqsComponent, SmzFaqsConfig, SmzFilterType, SmzFlattenMenuPipe, SmzFlipCardContext, SmzFormBuilder, SmzFormViewdata, SmzFormsConfig, SmzFormsPresets, SmzFormsRepositoryService, SmzGaugeBuilder, SmzGaugeComponent, SmzGaugeThresholdBuilder, SmzGetDataPipe, SmzGridItemComponent, SmzHelpDialogService, SmzHtmlViewerComponent, SmzHtmlViewerModule, SmzIconColumnBuilder, SmzIconMessageComponent, SmzInfoDateComponent, SmzInfoDateModule, SmzInitialPipe, SmzInputAutocompleteTagArea, SmzInputTextModule, SmzInputTextPipe, SmzLayoutsConfig, SmzLoader, SmzLoaders, SmzLoginBuilder, SmzLoginComponent, SmzLoginModule, SmzMenuBuilder, SmzMenuComponent, SmzMenuCreationBuilder, SmzMenuCreationItemBuilder, SmzMenuItemActionsDirective, SmzMenuItemBuilder, SmzMenuItemEasyTableBuilder, SmzMenuItemTableBuilder, SmzMenuTableBuilder, SmzMessagesModule, SmzMultiTablesBuilder, SmzMultiTablesComponent, SmzNumberEditableBuilder, SmzPresets, SmzProxyStore, SmzResponsiveBreakpointsDirective, SmzResponsiveBreakpointsDirectiveModule, SmzResponsiveComponent, SmzRouteDatas, SmzRouteParams, SmzRouteQueryParams, SmzSideContentComponent, SmzSideContentDefault, SmzSincronizeTablePipe, SmzSmartTag, SmzSmartTagModule, SmzSubmitComponent, SmzSvgBuilder, SmzSvgComponent, SmzSvgFeatureBuilder, SmzSvgModule, SmzSvgPinBuilder, SmzSvgRootBuilder, SmzSvgWorldCoordinates, SmzSwitchEditableBuilder, SmzTableBuilder, SmzTableComponent, SmzTablesConfig, SmzTagMessage, SmzTailPipe, SmzTemplatesPipeModule, SmzTenantSwitchComponent, SmzTextColumnBuilder, SmzTextEditableBuilder, SmzTextPattern, SmzTimelineBuilder, SmzTimelineComponent, SmzToastComponent, SmzToastModule, SmzTooltipTouchSupportModule, SmzTreeBuilder, SmzTreeComponent, SmzTreeDragAndDropBuilder, SmzTreeDropBuilder, SmzTreeDynamicMenuBuilder, SmzTreeDynamicMenuItemBuilder, SmzTreeEmptyFeedbackBuilder, SmzTreeMenuBuilder, SmzTreeMenuItemBuilder, SmzTreeToolbarBuilder, SmzTreeToolbarButtonBuilder, SmzTreeToolbarButtonCollectionBuilder, SmzTreeWithDetailsBuilder, SmzTreeWithDetailsComponent, SmzUiBlockComponent, SmzUiBlockDirective, SmzUiBlockService, SmzUiBuilder, SmzUiEnvironment, SmzUiGuidesBuilder, SmzUiGuidesService, SmzViewportDirective, SmzViewportService, StandaloneInjectComponentDirective, StateBuilderPipe, TENANTS_PAGE_ROUTE, TENANTS_PATH, TENANTS_STATE_NAME, TableClearExtensionDirective, TableHelperService, TenantAuthenticationSelectors, TenantsActions, TenantsModule, TenantsSelectors, TenantsState, ThemeManagerService, TitleService, Toast, ToastActions, ToastItem, ToastService, TooltipTouchSupportDirective, TreeHelperService, TreeHelpers, Tunnel, UI_DEFINITIONS_STATE_NAME, UI_LOCALIZATION_STATE_NAME, USERS_PAGE_ROUTE, USERS_PATH, USERS_STATE_NAME, USER_ID_HEADER, LayoutUiActions as UiActions, UiDefinitionsDbActions, UiDefinitionsDbSelectors, UiDefinitionsDbState, UiDefinitionsService, UiLocalizationDbActions, UiLocalizationDbSelectors, UiLocalizationDbState, UiLocalizationService, LayoutUiSelectors as UiSelectors, UniqueFilterPipe, UrlCheckerPipe, UrlCheckerPipeModule, UsersActions, UsersModule, UsersSelectors, UsersState, WINDOWS_AUTHENTICATION_HEADER, Wait, applyTableContentNgStyle, b64toBlob, base64ToFile, breakLinesForHtml, buildAuthenticationEndpointsRoutes, buildAuthenticationUrl, buildState, capitalizeFirstLetter, capitalizeWithSlash, clearArray, clone, cloneAndRemoveProperties, cloneAndRemoveProperty, compare, compareInsensitive, completeSubjectOnTheInstance, convertFormCreationFeature, convertFormFeature, convertFormFeatureFromInputData, convertFormUpdateFeature, count, createObjectFromString, createRound, createSubjectOnTheInstance, dataURLtoFile, databaseSmzAccessStates, debounce, deepClone, deepEqual, deepIndexOf, deepMerge, defaultFormsModuleConfig, defaultState, downloadBase64File, downloadFromServerUrl, downloadFromUrl, empty, every, executeTextPattern, featureSmzAccessStates, fixDate$1 as fixDate, fixDateProperties, fixDates, flatten, flattenObject, getAuthenticationInitialState, getCleanApplicationState, getFirst, getFirstElement, getFirstElements, getFormInputFromDialog, getGlobalInitialState, getInitialApplicationState, getInitialDatabaseStoreState, getInitialState$8 as getInitialState, getLastElements, getPreset, getProperty, getSymbol, getTreeNodeFromKey, getUiDefinitionsInitialState, getUiLocalizationInitialState, getUsersInitialState, getValidatorsForInput, handleBase64, isArray, isConvertibleToNumber, isDeepObject, isEmpty$1 as isEmpty, isFunction$1 as isFunction, isInteger, isNil, isNull$1 as isNull, isNullOrEmptyString, isNumber$1 as isNumber, isNumberFinite$1 as isNumberFinite, isNumeric, isObject$2 as isObject, isObjectHelper, isPositive, isSimpleNamedEntity, isString$1 as isString, isUndefined$1 as isUndefined, isWithinTime, leftPad, longestStringInArray, mapParamsToObject, markAsDecorated, mergeClone, mergeDeep, nameof, namesof, ngxsModuleForFeatureFaqsDbState, ngxsModuleForFeatureUiAthenaLayoutState, ngxsModuleForFeatureUiHephaestusLayoutState, ngxsModuleForFeatureUiNewAthenaLayoutState, normalizeDateToUtc, orderArrayByProperty, pad, provideSmzCoreLogging, provideSmzEnvironment, rbkSafeHtmlPipe, removeElementFromArray, replaceAll, replaceArrayItem, replaceArrayPartialItem, replaceItem, replaceNgOnInit, rightPad, routerModuleForChildUsersModule, routerParamsDispatch, routerParamsListener, setNestedObject, shorten, showConfirmation, showDialog, showMarkdownDialog, showMessage, showObjectDialog, showPersistentDialog, shuffle, sortArray, sortArrayOfObjects, sortArrayOfStrings, sortMenuItemsByLabel, sum, synchronizeNodes, synchronizeRow, synchronizeTable, synchronizeTrees, takeUntil, takeWhile, toDecimal, toSimpleNamedEntity, toString, unwrapDeep, upperFirst, uuidv4, wrapDeep };
57639
+ export { AUTHORIZATION_HEADER, AccessControlService, ActionDispatchDirective, ApplicationActions, ApplicationSelectors, ApplicationState, AsPipe, AthenaLayout, AthenaLayoutComponent, AthenaLayoutModule, AuthClaimDefinitions, AuthHandler, AuthService, AuthenticationActions, AuthenticationSelectors, AuthenticationService, AuthenticationState, AuthorizationService, AxisOverflowDirection, AxisOverflowType, AxisPosition, BaseApiService, BoilerplateService, BreadcrumbService, CLAIMS_PAGE_ROUTE, CLAIMS_PATH, CLAIMS_STATE_NAME, CONTENT_ENCODING_HEADER, CachedRouteReuseStrategy, CalendarComponent, CalendarPipe, CanAccess, ChartType, CheckBoxComponent, CheckBoxGroupComponent, ClaimAccessType, ClaimAccessTypeDescription, ClaimAccessTypeValues, ClaimsActions, ClaimsModule, ClaimsSelectors, ClaimsState, ClickStopPropagationDirective, ClickStopPropagationModule, ClonePipe, ColorPallete, ColorPickerComponent, Confirmable, CreateLinearChart, CreateRadialChart, CustomError, CustomNgForDirective, CustomNgForModule, DATABASE_REQUIRED_ACTIONS, DATABASE_STATES, DECORATOR_APPLIED, DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES, DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES, DatabaseActions, DatabaseSelectors, DatabaseState, DatasetType, DeepWrapper, DescribeAnyPipe, DescribeArrayPipe, DescribeSimpleNamedPipe, DialogContentManagerComponent, DialogService, DropdownComponent, DynamicDialogComponent, DynamicDialogConfig, DynamicDialogInjector, DynamicDialogModule, DynamicDialogRef, ERROR_HANDLING_TYPE_HEADER, ExcelsUiActions, FEATURE_STATES, FeaturesActions, FeaturesSelectors, FeaturesState, FileUploadComponent, FilterContains, FirstOrDefaultPipe, FormGroupComponent, FormSubmitComponent, GenericInjectComponentDirective, GetElementById, GetElementsByParentId, GlobalActions, GlobalFilter, GlobalInjector, GlobalLoaderComponent, GlobalLoaderModule, GlobalState, GroupingType, HephaestusLayout, HephaestusLayoutComponent, HephaestusLayoutModule, HephaestusProviderModule, HostElement, HttpErrorHandler, IGNORE_ERROR_HANDLING, InViewportMetadata, InjectComponentDirective, InjectComponentService, InjectContentAppModule, InjectContentDirective, InjectContentService, InputBlurDetectionModule, InputChangeDetectionDirective, InputClearExtensionDirective, InputCurrencyComponent, InputListComponent, InputMaskComponent, InputNumberComponent, InputPasswordComponent, InputSwitchComponent, InputTagAreaComponent, InputTextAreaComponent, InputTextComponent, InputTreeComponent, IsVisiblePipe, IsVisiblePipeModule, JoinPipe, LOADING_BEHAVIOR_HEADER, LOCAL_LOADING_TAG_HEADER, LayoutUiActions, LayoutUiSelectors, LayoutUiState, LegacyAuthenticationSelectors, LinearChartBuilder, LinkedDropdownComponent, LinkedMultiSelectComponent, LoggingScope, LoggingService, MAIN_LAYOUT_PATH, MentionableTextareaComponent, MenuHelperService, MenuType, MergeClonePipe, MergeClonePipeModule, MultiSelectComponent, NG_ON_INIT, NewAthenaLayout, NewAthenaLayoutComponent, NewAthenaLayoutModule, NewAthenaProviderModule, NgCloneDirective, NgCloneModule, NgIfLandscapeDirective, NgIfLandscapeDirectiveModule, NgIfPortraitDirective, NgIfPortraitDirectiveModule, NgVar, NgVarContext, NgVarModule, NgxRbkUtilsConfig, NgxRbkUtilsModule, NgxSmzCardsModule, NgxSmzCommentsModule, NgxSmzDataInfoModule, NgxSmzDataPipesModule, NgxSmzDialogsModule, NgxSmzDockModule, NgxSmzDocumentsModule, NgxSmzFaqsModule, NgxSmzFormsModule, NgxSmzLayoutsModule, NgxSmzMenuModule, NgxSmzMultiTablesModule, NgxSmzRouterParamsModule, NgxSmzSafeImageModule, NgxSmzServerImageModule, NgxSmzServerImageToBase64Module, NgxSmzSideContentModule, NgxSmzTablesModule, NgxSmzTreeWithDetailsModule, NgxSmzTreesModule, NgxSmzUiBlockModule, NgxSmzUiComponent, NgxSmzUiConfig, NgxSmzUiGuidesModule, NgxSmzUiModule, NgxSmzViewportModule, PrettyJsonPipe$1 as PrettyJsonPipe, PrettyJsonPipeModule, PrimeConfigService, REFRESH_TOKEN_BEHAVIOR_HEADER, RESTORE_STATE_ON_ERROR_HEADER, ROLES_PAGE_ROUTE, ROLES_PATH, ROLES_STATE_NAME, RadialChartBuilder, RadioButtonComponent, RbkAccessControlModule, RbkAuthGuard, RbkCanAccessAnyPipe, RbkCanAccessPipe, RbkClaimGuardDirective, RbkDatabaseStateGuard, RbkFeatureStateGuard, RbkPipesModule, RbkTableFilterClearDirectivesModule, RegistrySmzUiConfiguration, RepositoryForm, RoleMode, RoleModeDescription, RoleModeValues, RoleSource, RoleSourceDescription, RoleSourceValues, RolesActions, RolesModule, RolesSelectors, RolesState, RouterParamsActions, RouterParamsSelectors, SMZ_CORE_LOGGING_CONFIG, SMZ_UI_ENVIRONMENT_CONFIG, SafeHtmlPipe$2 as SafeHtmlPipe, SafeImageDirective, SafeUrlPipe$1 as SafeUrlPipe, SelectorPipe, ServerImageDirective, ServerImageToBase64Directive, ServerPathPipe, SetTemplateClasses, SetTemplateClassesPipe, SidebarState, SimpleCalendarPipe, SmzActionDispatchModule, SmzAuthorizationDeactivatedUsersTableBuilder, SmzAuthorizationUsersTableBuilder, SmzBaseColumnBuilder, SmzBaseEditableBuilder, SmzBreakpoints, SmzBuilderUtilities, SmzCardsBuilder, SmzCardsComponent, SmzCardsContentType, SmzCardsInjectableComponentBuilder, SmzCardsTemplate, SmzCardsView, SmzChartComponent, SmzChartModule, SmzClipboardService, SmzColumnCollectionBuilder, SmzCommentsBuilder, SmzCommentsComponent, SmzCommentsSectionComponent, SmzContentTheme, SmzContentThemes, SmzContentType, SmzControlType, SmzCoreLogging, SmzCurrencyColumnBuilder, SmzCustomColumnBuilder, SmzDataInfoComponent, SmzDataTransformColumnBuilder, SmzDataTransformTreePipe, SmzDateColumnBuilder, SmzDialogBuilder, SmzDialogComponentBuilder, SmzDialogFormBuilder, SmzDialogTableBuilder, SmzDialogsConfig, SmzDialogsPresets, SmzDialogsService, SmzDockComponent, SmzDockService, SmzDocumentBaseCellBuilder, SmzDocumentBuilder, SmzDocumentComponent, SmzDocumentsService, SmzDragDropModule, SmzDraggable, SmzDropdownEditableBuilder, SmzDroppable, SmzDynamicDialogConfig, SmzEasyBaseColumnBuilder, SmzEasyColumnCollectionBuilder, SmzEasyCustomColumnBuilder, SmzEasyDataTransformColumnBuilder, SmzEasyDateColumnBuilder, SmzEasyMenuTableBuilder, SmzEasyTableBuilder, SmzEasyTableComponent, SmzEasyTableContentType, SmzEasyTableModule, SmzEasyTextColumnBuilder, SmzEditableCollectionBuilder, SmzEditableTableBuilder, SmzEditableType, SmzEnvironment, SmzExcelColorDefinitions, SmzExcelDataDefinitions, SmzExcelFontDefinitions, SmzExcelService, SmzExcelSortOrderDefinitions, SmzExcelThemeDefinitions, SmzExcelTypeDefinitions, SmzExcelsBuilder, SmzExportDialogComponent, SmzExportDialogModule, SmzExportDialogService, SmzExportableContentSource, SmzExportableContentType, SmzFaqsComponent, SmzFaqsConfig, SmzFilterType, SmzFlattenMenuPipe, SmzFlipCardContext, SmzFormBuilder, SmzFormViewdata, SmzFormsConfig, SmzFormsPresets, SmzFormsRepositoryService, SmzGaugeBuilder, SmzGaugeComponent, SmzGaugeThresholdBuilder, SmzGetDataPipe, SmzGridItemComponent, SmzHelpDialogService, SmzHtmlViewerComponent, SmzHtmlViewerModule, SmzIconColumnBuilder, SmzIconMessageComponent, SmzInfoDateComponent, SmzInfoDateModule, SmzInitialPipe, SmzInputAutocompleteTagArea, SmzInputTextModule, SmzInputTextPipe, SmzLayoutsConfig, SmzLoader, SmzLoaders, SmzLoginBuilder, SmzLoginComponent, SmzLoginModule, SmzMenuBuilder, SmzMenuComponent, SmzMenuCreationBuilder, SmzMenuCreationItemBuilder, SmzMenuItemActionsDirective, SmzMenuItemBuilder, SmzMenuItemEasyTableBuilder, SmzMenuItemTableBuilder, SmzMenuTableBuilder, SmzMessagesModule, SmzMultiTablesBuilder, SmzMultiTablesComponent, SmzNumberEditableBuilder, SmzPresets, SmzProxyStore, SmzResponsiveBreakpointsDirective, SmzResponsiveBreakpointsDirectiveModule, SmzResponsiveComponent, SmzRouteDatas, SmzRouteParams, SmzRouteQueryParams, SmzSideContentComponent, SmzSideContentDefault, SmzSincronizeTablePipe, SmzSmartTag, SmzSmartTagModule, SmzSubmitComponent, SmzSvgBuilder, SmzSvgComponent, SmzSvgFeatureBuilder, SmzSvgModule, SmzSvgPinBuilder, SmzSvgRootBuilder, SmzSvgWorldCoordinates, SmzSwitchEditableBuilder, SmzTableBuilder, SmzTableComponent, SmzTablesConfig, SmzTagMessage, SmzTailPipe, SmzTemplatesPipeModule, SmzTenantSwitchComponent, SmzTextColumnBuilder, SmzTextEditableBuilder, SmzTextPattern, SmzTimelineBuilder, SmzTimelineComponent, SmzToastComponent, SmzToastModule, SmzTooltipTouchSupportModule, SmzTreeBuilder, SmzTreeComponent, SmzTreeDragAndDropBuilder, SmzTreeDropBuilder, SmzTreeDynamicMenuBuilder, SmzTreeDynamicMenuItemBuilder, SmzTreeEmptyFeedbackBuilder, SmzTreeMenuBuilder, SmzTreeMenuItemBuilder, SmzTreeToolbarBuilder, SmzTreeToolbarButtonBuilder, SmzTreeToolbarButtonCollectionBuilder, SmzTreeWithDetailsBuilder, SmzTreeWithDetailsComponent, SmzUiBlockComponent, SmzUiBlockDirective, SmzUiBlockService, SmzUiBuilder, SmzUiEnvironment, SmzUiGuidesBuilder, SmzUiGuidesService, SmzViewportDirective, SmzViewportService, StandaloneInjectComponentDirective, StateBuilderPipe, TENANTS_PAGE_ROUTE, TENANTS_PATH, TENANTS_STATE_NAME, TableClearExtensionDirective, TableHelperService, TenantAuthenticationSelectors, TenantsActions, TenantsModule, TenantsSelectors, TenantsState, ThemeManagerService, TitleService, Toast, ToastActions, ToastItem, ToastService, TooltipTouchSupportDirective, TreeHelperService, TreeHelpers, Tunnel, UI_DEFINITIONS_STATE_NAME, UI_LOCALIZATION_STATE_NAME, USERS_PAGE_ROUTE, USERS_PATH, USERS_STATE_NAME, USER_ID_HEADER, LayoutUiActions as UiActions, UiDefinitionsDbActions, UiDefinitionsDbSelectors, UiDefinitionsDbState, UiDefinitionsService, UiLocalizationDbActions, UiLocalizationDbSelectors, UiLocalizationDbState, UiLocalizationService, LayoutUiSelectors as UiSelectors, UniqueFilterPipe, UrlCheckerPipe, UrlCheckerPipeModule, UsersActions, UsersModule, UsersSelectors, UsersState, WINDOWS_AUTHENTICATION_HEADER, Wait, applyTableContentNgStyle, b64toBlob, base64ToFile, breakLinesForHtml, buildAuthenticationEndpointsRoutes, buildAuthenticationUrl, buildAuthorizationEndpointsRoutes, buildServerApiUrl, buildState, capitalizeFirstLetter, capitalizeWithSlash, clearArray, clone, cloneAndRemoveProperties, cloneAndRemoveProperty, compare, compareInsensitive, completeSubjectOnTheInstance, convertFormCreationFeature, convertFormFeature, convertFormFeatureFromInputData, convertFormUpdateFeature, count, createObjectFromString, createRound, createSubjectOnTheInstance, dataURLtoFile, databaseSmzAccessStates, debounce, deepClone, deepEqual, deepIndexOf, deepMerge, defaultFormsModuleConfig, defaultState, downloadBase64File, downloadFromServerUrl, downloadFromUrl, empty, every, executeTextPattern, featureSmzAccessStates, fixDate$1 as fixDate, fixDateProperties, fixDates, flatten, flattenObject, getAuthenticationInitialState, getCleanApplicationState, getFirst, getFirstElement, getFirstElements, getFormInputFromDialog, getGlobalInitialState, getInitialApplicationState, getInitialDatabaseStoreState, getInitialState$8 as getInitialState, getLastElements, getPreset, getProperty, getSymbol, getTreeNodeFromKey, getUiDefinitionsInitialState, getUiLocalizationInitialState, getUsersInitialState, getValidatorsForInput, handleBase64, isArray, isConvertibleToNumber, isDeepObject, isEmpty$1 as isEmpty, isFunction$1 as isFunction, isInteger, isNil, isNull$1 as isNull, isNullOrEmptyString, isNumber$1 as isNumber, isNumberFinite$1 as isNumberFinite, isNumeric, isObject$2 as isObject, isObjectHelper, isPositive, isSimpleNamedEntity, isString$1 as isString, isUndefined$1 as isUndefined, isWithinTime, leftPad, longestStringInArray, mapParamsToObject, markAsDecorated, mergeClone, mergeDeep, nameof, namesof, ngxsModuleForFeatureFaqsDbState, ngxsModuleForFeatureUiAthenaLayoutState, ngxsModuleForFeatureUiHephaestusLayoutState, ngxsModuleForFeatureUiNewAthenaLayoutState, normalizeDateToUtc, orderArrayByProperty, pad, provideSmzCoreLogging, provideSmzEnvironment, rbkSafeHtmlPipe, removeElementFromArray, replaceAll, replaceArrayItem, replaceArrayPartialItem, replaceItem, replaceNgOnInit, rightPad, routerModuleForChildUsersModule, routerParamsDispatch, routerParamsListener, setNestedObject, shorten, showConfirmation, showDialog, showMarkdownDialog, showMessage, showObjectDialog, showPersistentDialog, shuffle, sortArray, sortArrayOfObjects, sortArrayOfStrings, sortMenuItemsByLabel, sum, synchronizeNodes, synchronizeRow, synchronizeTable, synchronizeTrees, takeUntil, takeWhile, toDecimal, toSimpleNamedEntity, toString, unwrapDeep, upperFirst, uuidv4, wrapDeep };
57570
57640
  //# sourceMappingURL=ngx-smz-core.mjs.map