@ngx-smz/core 21.3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngx-smz/core",
3
- "version": "21.3.0",
3
+ "version": "21.4.1",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "@angular/common": ">=21.0.0",
@@ -8012,6 +8012,50 @@ declare class UiLocalizationDbState {
8012
8012
  static ɵprov: i0.ɵɵInjectableDeclaration<UiLocalizationDbState>;
8013
8013
  }
8014
8014
 
8015
+ interface AuthenticationEndpointsRoutes {
8016
+ login: string;
8017
+ refreshToken: string;
8018
+ resetPassword: string;
8019
+ redefinePassword: string;
8020
+ resendConfirmation: string;
8021
+ confirmEmail: string;
8022
+ switchTenant: string;
8023
+ changePassword: string;
8024
+ register: string;
8025
+ createUser: string;
8026
+ deleteUser: string;
8027
+ deactivateUser: string;
8028
+ activateUser: string;
8029
+ }
8030
+ declare const DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES: AuthenticationEndpointsRoutes;
8031
+ declare function buildAuthenticationEndpointsRoutes(basePath?: string): AuthenticationEndpointsRoutes;
8032
+ /** @deprecated Use {@link buildServerApiUrl} from `@ngx-smz/core`. */
8033
+ declare function buildAuthenticationUrl(serverUrl: string, route: string): string;
8034
+
8035
+ interface AuthorizationEndpointsRoutes {
8036
+ getAllClaims: string;
8037
+ createClaim: string;
8038
+ updateClaim: string;
8039
+ deleteClaim: string;
8040
+ protectClaim: string;
8041
+ unprotectClaim: string;
8042
+ getAllRoles: string;
8043
+ createRole: string;
8044
+ updateRole: string;
8045
+ deleteRole: string;
8046
+ updateRoleClaims: string;
8047
+ getAllUsers: string;
8048
+ updateUserRoles: string;
8049
+ addClaimsToUser: string;
8050
+ removeClaimsFromUser: string;
8051
+ getAllTenants: string;
8052
+ createTenant: string;
8053
+ updateTenant: string;
8054
+ deleteTenant: string;
8055
+ }
8056
+ declare const DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES: AuthorizationEndpointsRoutes;
8057
+ declare function buildAuthorizationEndpointsRoutes(basePath?: string): AuthorizationEndpointsRoutes;
8058
+
8015
8059
  declare class NgxRbkUtilsConfig {
8016
8060
  debugMode: boolean;
8017
8061
  applicationName: string;
@@ -8065,6 +8109,7 @@ declare class NgxRbkUtilsConfig {
8065
8109
  };
8066
8110
  };
8067
8111
  authentication: {
8112
+ endpointsRoutes: AuthenticationEndpointsRoutes;
8068
8113
  localStoragePrefix: string;
8069
8114
  authenticatedRoot: string;
8070
8115
  nonAuthenticatedRoot: string;
@@ -8072,7 +8117,6 @@ declare class NgxRbkUtilsConfig {
8072
8117
  useSingleTenantAplication: boolean;
8073
8118
  allowTenantSwitching: boolean;
8074
8119
  login: {
8075
- url: string;
8076
8120
  route: string;
8077
8121
  superuserRoute?: string;
8078
8122
  loadingBehavior: 'global' | 'local' | 'none';
@@ -8091,7 +8135,6 @@ declare class NgxRbkUtilsConfig {
8091
8135
  };
8092
8136
  };
8093
8137
  refreshToken: {
8094
- url: string;
8095
8138
  loadingBehavior: 'global' | 'local' | 'none';
8096
8139
  errorHandlingType: 'toast' | 'dialog' | 'none';
8097
8140
  responsePropertyName: string;
@@ -8154,6 +8197,7 @@ declare class NgxRbkUtilsConfig {
8154
8197
  callback?: (error: CustomError, store: Store) => void;
8155
8198
  };
8156
8199
  authorization: {
8200
+ endpointsRoutes: AuthorizationEndpointsRoutes;
8157
8201
  navigationMenu: MenuCreation;
8158
8202
  profileMenu: MenuCreation[];
8159
8203
  allowMultipleRolesPerUser: boolean;
@@ -8328,6 +8372,8 @@ declare class AuthHandler {
8328
8372
  static ɵprov: i0.ɵɵInjectableDeclaration<AuthHandler>;
8329
8373
  }
8330
8374
 
8375
+ declare function buildServerApiUrl(serverUrl: string, route: string): string;
8376
+
8331
8377
  declare class BreadcrumbService {
8332
8378
  private itemsSource;
8333
8379
  itemsHandler: rxjs.Observable<MenuItem[]>;
@@ -8810,8 +8856,9 @@ declare const TENANTS_PAGE_ROUTE: string[];
8810
8856
  declare class AuthorizationService extends BaseApiService {
8811
8857
  private http;
8812
8858
  private readonly environment;
8813
- private endpoint;
8859
+ private readonly config;
8814
8860
  constructor(http: HttpClient);
8861
+ private buildUrl;
8815
8862
  getAllClaims(): Observable$1<ClaimDetails[]>;
8816
8863
  createClaim(data: CreateClaim): Observable$1<ClaimDetails>;
8817
8864
  updateClaim(data: UpdateClaim): Observable$1<ClaimDetails>;
@@ -8838,11 +8885,9 @@ declare class AuthorizationService extends BaseApiService {
8838
8885
  declare class AuthenticationService extends BaseApiService {
8839
8886
  private http;
8840
8887
  private readonly environment;
8841
- private endpoint;
8888
+ private readonly config;
8842
8889
  constructor(http: HttpClient);
8843
- private getEndpoint;
8844
- login(): Observable$1<JwtResponse>;
8845
- refreshToken(): Observable$1<JwtResponse>;
8890
+ private buildUrl;
8846
8891
  sendResetPasswordEmail(data: RequestPasswordReset): Observable$1<void>;
8847
8892
  redefinePassword(data: RedefinePassword): Observable$1<void>;
8848
8893
  resendEmailConfirmation(data: ResendEmailConfirmation): Observable$1<void>;
@@ -9529,6 +9574,7 @@ declare class SmzUiAuthenticationBuilder extends SmzBuilderUtilities<SmzUiAuthen
9529
9574
  private _builder;
9530
9575
  protected that: this;
9531
9576
  constructor(_builder: SmzUiBuilder);
9577
+ setEndpointRoute(key: keyof AuthenticationEndpointsRoutes, route: string): SmzUiAuthenticationBuilder;
9532
9578
  setLocalStoragePrefix(prefix: string): SmzUiAuthenticationBuilder;
9533
9579
  setAuthenticatedRoot(path: string): SmzUiAuthenticationBuilder;
9534
9580
  setNonAuthenticatedRoot(path: string): SmzUiAuthenticationBuilder;
@@ -9604,6 +9650,8 @@ declare class SmzUiAuthorizationBuilder<TData> extends SmzBuilderUtilities<SmzUi
9604
9650
  _menuLocation: 'navigation-bar' | 'profile';
9605
9651
  _menu: MenuCreation;
9606
9652
  constructor(_builder: SmzUiBuilder, _state: NgxSmzUiConfig);
9653
+ setEndpointRoute(key: keyof AuthorizationEndpointsRoutes, route: string): SmzUiAuthorizationBuilder<TData>;
9654
+ overrideAuthorizationUrl(path?: string): SmzUiAuthorizationBuilder<TData>;
9607
9655
  setMenuLabel(label: string): SmzUiAuthorizationBuilder<TData>;
9608
9656
  overrideMenu(location: 'navigation-bar' | 'profile', partial?: Partial<MenuCreation>): SmzUiAuthorizationBuilder<TData>;
9609
9657
  allowMultipleRolesPerUser(): SmzUiAuthorizationBuilder<TData>;
@@ -15895,5 +15943,5 @@ declare class SmzEnvironment {
15895
15943
  declare const SMZ_UI_ENVIRONMENT_CONFIG: InjectionToken<SmzEnvironmentConfigType>;
15896
15944
  declare function provideSmzEnvironment(...features: SmzEnvironmentConfigType[]): EnvironmentProviders;
15897
15945
 
15898
- export { AUTHORIZATION_HEADER, AccessControlService, ActionDispatchDirective, AddClaimsOverride, 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, ColorSchemaDefinition, Confirmable, CreateLinearChart, CreateRadialChart, CustomError, CustomNgForDirective, CustomNgForModule, DATABASE_REQUIRED_ACTIONS, DATABASE_STATES, DECORATOR_APPLIED, 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, RedefinePassword, RegistrySmzUiConfiguration, RemoveClaimsOverride, ReplaceUserRoles, RepositoryForm, RoleMode, RoleModeDescription, RoleModeValues, RoleSource, RoleSourceDescription, RoleSourceValues, RolesActions, RolesModule, RolesSelectors, RolesState, RouterParamsActions, RouterParamsSelectors, RouterParamsState, SMZ_CORE_LOGGING_CONFIG, SMZ_UI_ENVIRONMENT_CONFIG, SafeHtmlPipe$1 as SafeHtmlPipe, SafeImageDirective, 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, SmzColorSchemas, 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, SwitchTenant, 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, 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, fixDateProperties, fixDates, flatten, flattenObject, getAuthenticationInitialState, getCleanApplicationState, getFirst, getFirstElement, getFirstElements, getFormInputFromDialog, getGlobalInitialState, getInitialApplicationState, getInitialDatabaseStoreState, getInitialState, getLastElements, getPreset, getProperty, getSymbol, getTreeNodeFromKey, getUiDefinitionsInitialState, getUiLocalizationInitialState, getUsersInitialState, getValidatorsForInput, handleBase64, isArray, isConvertibleToNumber, isDeepObject, isEmpty, isFunction, isInteger, isNil, isNull, isNullOrEmptyString, isNumber, isNumberFinite, isNumeric, isObject, isObjectHelper, isPositive, isSimpleNamedEntity, isString, 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 };
15899
- export type { ActionLink, ActivateUser, AppStateModel, ApplicationStateModel, AthenaMenuTypes, AthenaSidebarStates, AuthenticationStateModel, BottomPositionType, ChangePassword, ClaimDetails, ClaimOverride, ClaimsStateModel, CollectionPredicate, ColorSchema, ComponentData, ComponentDataBase, ContentTheme, CreateClaim, CreateComment, CreateRole, CreateTenant, CreateTenantAdminUser, CreateUser, CustomUserDetails, DatabaseStateParameters, DatabaseStoreStateModel, DbData, DeativateUser, DefaultPrimeNgFilterMatchMode, DeleteUser, EdgePositionType, FaqCreation, FaqDetails, FaqUpdate, FaqsRouterConfig, FeatureType, FlipCardTemplate, FormDefinitionData, FormGroupConfig, GenericObject, GlobalStateModel, HephaestusMenuTypes, HephaestusSidebarStates, HostElementConfig, HttpBehaviorParameters, ImageWithDetailsTemplate, InfoATemplate, InjectableContentEntity, InjectableDialogComponentInterface, InjectableOutput, InputChangeData, InputConfig, InputConversionOptions, JwtResponse, LayoutState, LeftPositionType, LoaderData, LogInfo, LoggingConfig, LoginPayload, LoginResponse, LogoResource, MenuCreation, Message, NewAthenaMenuTypes, NewAthenaSidebarStates, ParentEntity, ProtectClaim, RawTemplate, RbkApiErrorMessageTypes, Register, RenameRole, RequestPasswordReset, ResendEmailConfirmation, ResizeObserver, ReusableRouteConfig, RightPositionType, RoleBehavior, RolesDetails, RolesStateModel, RouteLayoutData, RouterParamsStateModel, ScopedLogger, ShowErrorsMethodTypes, SidePositionType, SimpleEntity, SimpleNamedEntity, SimpleParentEntity, SmzAdvancedInjectable, SmzAdvancedInjectableInput, SmzAdvancedInjectableOutput, SmzAppLogo, SmzAreaEditable, SmzAuthorizationUserState, SmzAutocompleteTagAreaControl, SmzCalendarContent, SmzCalendarControl, SmzCalendarEditable, SmzCardActions, SmzCardView, SmzCardsBaseContent, SmzCardsBaseTemplate, SmzCardsComponentContent, SmzCardsContentTypes, SmzCardsCustomContent, SmzCardsIconContent, SmzCardsImageContent, SmzCardsLocale, SmzCardsSource, SmzCardsState, SmzCardsTemplates, SmzCardsTextContent, SmzChart, SmzChartInteractionEvent, SmzChartTypes, SmzCheckBoxControl, SmzCheckBoxGroupControl, SmzColorPickerControl, SmzCommentsDetails$1 as SmzCommentsDetails, SmzCommentsState$1 as SmzCommentsState, SmzConditional, SmzContentMaskControl, SmzContentTypes, SmzControlTypes, SmzCoreLoggingConfigType, SmzCurrencyContent, SmzCurrencyControl, SmzCustomContent, SmzDataTransform, SmzDialog, SmzDialogBehaviors, SmzDialogButtonsPreset, SmzDialogCallbacks, SmzDialogContext, SmzDialogCustomButton, SmzDialogFeature, SmzDialogOverlayPanel, SmzDialogPreset, SmzDialogTable, SmzDialogTopbarButton, SmzDockItem, SmzDocumentCell, SmzDocumentCellConfig, SmzDocumentContent, SmzDocumentFontFamilies, SmzDocumentGlobals, SmzDocumentRenderers, SmzDocumentRow, SmzDocumentSpanTypes, SmzDocumentState, SmzDocumentWidthTypes, SmzDragEventData, SmzDropDownControl, SmzDropdownEditable, SmzEasyDesktopTable, SmzEasyMobileTable, SmzEasyPaginator, SmzEasyTableActionContent, SmzEasyTableBaseContent, SmzEasyTableBody, SmzEasyTableBodyColumn, SmzEasyTableCalendarContent, SmzEasyTableContentTypes, SmzEasyTableCustomContent, SmzEasyTableDataTransformContent, SmzEasyTableHead, SmzEasyTableHeader, SmzEasyTableState, SmzEasyTableTextContent, SmzEditableTypes, SmzEnvironmentConfigType, SmzExcelBaseSheet, SmzExcelChartSheet, SmzExcelColumn, SmzExcelGlobalColumnBehavior, SmzExcelHeader, SmzExcelState, SmzExcelStyle, SmzExcelTableSheet, SmzExcelWatermarkSheet, SmzExcelWorkbook, SmzExcelsDetails, SmzExportDialogData, SmzExportableColumn, SmzFileControl, SmzFlipCardChanges, SmzFlipCardContextState, SmzFlipCardSide, SmzFlipCardStatus, SmzForm, SmzFormBaseLinkedControl, SmzFormContext, SmzFormGroup, SmzFormsAdvancedSettings, SmzFormsBaseControl, SmzFormsBehaviorsConfig, SmzFormsBehaviorsFunctions, SmzFormsResponse, SmzFormsValidatorsPreset, SmzGaugeState, SmzGaugeThreshold, SmzIconContent, SmzIconContentMatch, SmzInjectable, SmzInjectableComponent, SmzLayout, SmzLinkedControlTypes, SmzLinkedDropDownControl, SmzLinkedMultiSelectControl, SmzListControl, SmzLocaleConfig, SmzLoginState, SmzMaskContent, SmzMaskControl, SmzMenuItem, SmzMultiSelectControl, SmzMultiTablesState, SmzMultiTablesTab, SmzNotification, SmzNumberControl, SmzNumberEditable, SmzPasswordControl, SmzPresetTypes, SmzRadioControl, SmzResponsive, SmzRouteConfig, SmzRouteData, SmzSVGWrapper, SmzSideContent, SmzSmartTagConfig, SmzSmartTagData, SmzSmartTagOptions, SmzSourceType, SmzSvgAnchorTypes, SmzSvgBaseFeature, SmzSvgFeature, SmzSvgFeatureTypes, SmzSvgPin, SmzSvgRefPoint, SmzSvgRoot, SmzSvgState, SmzSvgTooltipData, SmzSwitchControl, SmzTableCaptionButton, SmzTableColumn, SmzTableContentAction, SmzTableContext, SmzTableContextColumn, SmzTableEditableColumn, SmzTableState, SmzTableViewportState, SmzTableViewportStateData, SmzTagAreaControl, SmzTemplate, SmzTextAreaControl, SmzTextButtonControl, SmzTextContent, SmzTextControl, SmzTextEditable, SmzTimelineLocale, SmzTimelineMarker, SmzTimelineState, SmzTimelineView, SmzTreeContext, SmzTreeControl, SmzTreeDragEvent, SmzTreeDragNode, SmzTreeDragResult, SmzTreeGroup, SmzTreeGroupData, SmzTreeGroupNodeConfig, SmzTreeMenuItem, SmzTreeNestedData, SmzTreeNode, SmzTreeOverridesConfig, SmzTreeSourceTransform, SmzTreeState, SmzTreeWithDetailsState, SmzUiBlockConfig, SmzUiLocale, SvgZoomEvent, TenantDetails, TenantsStateModel, ThemeTone, ThemeToneType, TopPositionType, UiDefinitionsDbStateModel, UiLocalizationDbStateModel, UiStateModel, UnprotectClaim, UntilDestroyOptions, UpdateClaim, UpdateRoleClaims, UpdateTenant, UserData, UserDetails, UsersStateModel, ValidationMessage };
15946
+ export { AUTHORIZATION_HEADER, AccessControlService, ActionDispatchDirective, AddClaimsOverride, 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, ColorSchemaDefinition, 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, RedefinePassword, RegistrySmzUiConfiguration, RemoveClaimsOverride, ReplaceUserRoles, RepositoryForm, RoleMode, RoleModeDescription, RoleModeValues, RoleSource, RoleSourceDescription, RoleSourceValues, RolesActions, RolesModule, RolesSelectors, RolesState, RouterParamsActions, RouterParamsSelectors, RouterParamsState, SMZ_CORE_LOGGING_CONFIG, SMZ_UI_ENVIRONMENT_CONFIG, SafeHtmlPipe$1 as SafeHtmlPipe, SafeImageDirective, 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, SmzColorSchemas, 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, SwitchTenant, 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, fixDateProperties, fixDates, flatten, flattenObject, getAuthenticationInitialState, getCleanApplicationState, getFirst, getFirstElement, getFirstElements, getFormInputFromDialog, getGlobalInitialState, getInitialApplicationState, getInitialDatabaseStoreState, getInitialState, getLastElements, getPreset, getProperty, getSymbol, getTreeNodeFromKey, getUiDefinitionsInitialState, getUiLocalizationInitialState, getUsersInitialState, getValidatorsForInput, handleBase64, isArray, isConvertibleToNumber, isDeepObject, isEmpty, isFunction, isInteger, isNil, isNull, isNullOrEmptyString, isNumber, isNumberFinite, isNumeric, isObject, isObjectHelper, isPositive, isSimpleNamedEntity, isString, 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 };
15947
+ export type { ActionLink, ActivateUser, AppStateModel, ApplicationStateModel, AthenaMenuTypes, AthenaSidebarStates, AuthenticationEndpointsRoutes, AuthenticationStateModel, AuthorizationEndpointsRoutes, BottomPositionType, ChangePassword, ClaimDetails, ClaimOverride, ClaimsStateModel, CollectionPredicate, ColorSchema, ComponentData, ComponentDataBase, ContentTheme, CreateClaim, CreateComment, CreateRole, CreateTenant, CreateTenantAdminUser, CreateUser, CustomUserDetails, DatabaseStateParameters, DatabaseStoreStateModel, DbData, DeativateUser, DefaultPrimeNgFilterMatchMode, DeleteUser, EdgePositionType, FaqCreation, FaqDetails, FaqUpdate, FaqsRouterConfig, FeatureType, FlipCardTemplate, FormDefinitionData, FormGroupConfig, GenericObject, GlobalStateModel, HephaestusMenuTypes, HephaestusSidebarStates, HostElementConfig, HttpBehaviorParameters, ImageWithDetailsTemplate, InfoATemplate, InjectableContentEntity, InjectableDialogComponentInterface, InjectableOutput, InputChangeData, InputConfig, InputConversionOptions, JwtResponse, LayoutState, LeftPositionType, LoaderData, LogInfo, LoggingConfig, LoginPayload, LoginResponse, LogoResource, MenuCreation, Message, NewAthenaMenuTypes, NewAthenaSidebarStates, ParentEntity, ProtectClaim, RawTemplate, RbkApiErrorMessageTypes, Register, RenameRole, RequestPasswordReset, ResendEmailConfirmation, ResizeObserver, ReusableRouteConfig, RightPositionType, RoleBehavior, RolesDetails, RolesStateModel, RouteLayoutData, RouterParamsStateModel, ScopedLogger, ShowErrorsMethodTypes, SidePositionType, SimpleEntity, SimpleNamedEntity, SimpleParentEntity, SmzAdvancedInjectable, SmzAdvancedInjectableInput, SmzAdvancedInjectableOutput, SmzAppLogo, SmzAreaEditable, SmzAuthorizationUserState, SmzAutocompleteTagAreaControl, SmzCalendarContent, SmzCalendarControl, SmzCalendarEditable, SmzCardActions, SmzCardView, SmzCardsBaseContent, SmzCardsBaseTemplate, SmzCardsComponentContent, SmzCardsContentTypes, SmzCardsCustomContent, SmzCardsIconContent, SmzCardsImageContent, SmzCardsLocale, SmzCardsSource, SmzCardsState, SmzCardsTemplates, SmzCardsTextContent, SmzChart, SmzChartInteractionEvent, SmzChartTypes, SmzCheckBoxControl, SmzCheckBoxGroupControl, SmzColorPickerControl, SmzCommentsDetails$1 as SmzCommentsDetails, SmzCommentsState$1 as SmzCommentsState, SmzConditional, SmzContentMaskControl, SmzContentTypes, SmzControlTypes, SmzCoreLoggingConfigType, SmzCurrencyContent, SmzCurrencyControl, SmzCustomContent, SmzDataTransform, SmzDialog, SmzDialogBehaviors, SmzDialogButtonsPreset, SmzDialogCallbacks, SmzDialogContext, SmzDialogCustomButton, SmzDialogFeature, SmzDialogOverlayPanel, SmzDialogPreset, SmzDialogTable, SmzDialogTopbarButton, SmzDockItem, SmzDocumentCell, SmzDocumentCellConfig, SmzDocumentContent, SmzDocumentFontFamilies, SmzDocumentGlobals, SmzDocumentRenderers, SmzDocumentRow, SmzDocumentSpanTypes, SmzDocumentState, SmzDocumentWidthTypes, SmzDragEventData, SmzDropDownControl, SmzDropdownEditable, SmzEasyDesktopTable, SmzEasyMobileTable, SmzEasyPaginator, SmzEasyTableActionContent, SmzEasyTableBaseContent, SmzEasyTableBody, SmzEasyTableBodyColumn, SmzEasyTableCalendarContent, SmzEasyTableContentTypes, SmzEasyTableCustomContent, SmzEasyTableDataTransformContent, SmzEasyTableHead, SmzEasyTableHeader, SmzEasyTableState, SmzEasyTableTextContent, SmzEditableTypes, SmzEnvironmentConfigType, SmzExcelBaseSheet, SmzExcelChartSheet, SmzExcelColumn, SmzExcelGlobalColumnBehavior, SmzExcelHeader, SmzExcelState, SmzExcelStyle, SmzExcelTableSheet, SmzExcelWatermarkSheet, SmzExcelWorkbook, SmzExcelsDetails, SmzExportDialogData, SmzExportableColumn, SmzFileControl, SmzFlipCardChanges, SmzFlipCardContextState, SmzFlipCardSide, SmzFlipCardStatus, SmzForm, SmzFormBaseLinkedControl, SmzFormContext, SmzFormGroup, SmzFormsAdvancedSettings, SmzFormsBaseControl, SmzFormsBehaviorsConfig, SmzFormsBehaviorsFunctions, SmzFormsResponse, SmzFormsValidatorsPreset, SmzGaugeState, SmzGaugeThreshold, SmzIconContent, SmzIconContentMatch, SmzInjectable, SmzInjectableComponent, SmzLayout, SmzLinkedControlTypes, SmzLinkedDropDownControl, SmzLinkedMultiSelectControl, SmzListControl, SmzLocaleConfig, SmzLoginState, SmzMaskContent, SmzMaskControl, SmzMenuItem, SmzMultiSelectControl, SmzMultiTablesState, SmzMultiTablesTab, SmzNotification, SmzNumberControl, SmzNumberEditable, SmzPasswordControl, SmzPresetTypes, SmzRadioControl, SmzResponsive, SmzRouteConfig, SmzRouteData, SmzSVGWrapper, SmzSideContent, SmzSmartTagConfig, SmzSmartTagData, SmzSmartTagOptions, SmzSourceType, SmzSvgAnchorTypes, SmzSvgBaseFeature, SmzSvgFeature, SmzSvgFeatureTypes, SmzSvgPin, SmzSvgRefPoint, SmzSvgRoot, SmzSvgState, SmzSvgTooltipData, SmzSwitchControl, SmzTableCaptionButton, SmzTableColumn, SmzTableContentAction, SmzTableContext, SmzTableContextColumn, SmzTableEditableColumn, SmzTableState, SmzTableViewportState, SmzTableViewportStateData, SmzTagAreaControl, SmzTemplate, SmzTextAreaControl, SmzTextButtonControl, SmzTextContent, SmzTextControl, SmzTextEditable, SmzTimelineLocale, SmzTimelineMarker, SmzTimelineState, SmzTimelineView, SmzTreeContext, SmzTreeControl, SmzTreeDragEvent, SmzTreeDragNode, SmzTreeDragResult, SmzTreeGroup, SmzTreeGroupData, SmzTreeGroupNodeConfig, SmzTreeMenuItem, SmzTreeNestedData, SmzTreeNode, SmzTreeOverridesConfig, SmzTreeSourceTransform, SmzTreeState, SmzTreeWithDetailsState, SmzUiBlockConfig, SmzUiLocale, SvgZoomEvent, TenantDetails, TenantsStateModel, ThemeTone, ThemeToneType, TopPositionType, UiDefinitionsDbStateModel, UiLocalizationDbStateModel, UiStateModel, UnprotectClaim, UntilDestroyOptions, UpdateClaim, UpdateRoleClaims, UpdateTenant, UserData, UserDetails, UsersStateModel, ValidationMessage };