@ngx-smz/core 21.2.2 → 21.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -0
- package/fesm2022/ngx-smz-core.mjs +91 -51
- package/fesm2022/ngx-smz-core.mjs.map +1 -1
- package/package.json +3 -3
- package/types/ngx-smz-core.d.ts +54 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngx-smz/core",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.4.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": ">=21.0.0",
|
|
6
6
|
"@angular/common": ">=21.0.0",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"@ngxs/store": ">=21.0.0",
|
|
12
12
|
"@ngxs/router-plugin": ">=21.0.0",
|
|
13
13
|
"@primeuix/themes": ">=2.0.3",
|
|
14
|
-
"html2pdf.js": ">=0.
|
|
15
|
-
"jspdf": ">=
|
|
14
|
+
"html2pdf.js": ">=0.14.0",
|
|
15
|
+
"jspdf": ">=4.0.0",
|
|
16
16
|
"moment": ">=2.30.1",
|
|
17
17
|
"primeflex": ">=4.0.0",
|
|
18
18
|
"primeicons": ">=7.0.0",
|
package/types/ngx-smz-core.d.ts
CHANGED
|
@@ -2947,11 +2947,39 @@ interface SmzDocumentConfig {
|
|
|
2947
2947
|
};
|
|
2948
2948
|
}
|
|
2949
2949
|
|
|
2950
|
+
interface SmzHtml2PdfOptions {
|
|
2951
|
+
margin?: number | number[] | [number, number] | [number, number, number, number];
|
|
2952
|
+
filename?: string;
|
|
2953
|
+
image?: {
|
|
2954
|
+
type?: 'jpeg' | 'png' | 'webp';
|
|
2955
|
+
quality?: number;
|
|
2956
|
+
};
|
|
2957
|
+
enableLinks?: boolean;
|
|
2958
|
+
html2canvas?: {
|
|
2959
|
+
scale?: number;
|
|
2960
|
+
useCORS?: boolean;
|
|
2961
|
+
allowTaint?: boolean;
|
|
2962
|
+
dpi?: number;
|
|
2963
|
+
letterRendering?: boolean;
|
|
2964
|
+
svgRendering?: boolean;
|
|
2965
|
+
[key: string]: unknown;
|
|
2966
|
+
};
|
|
2967
|
+
jsPDF?: {
|
|
2968
|
+
unit?: string;
|
|
2969
|
+
format?: string | [number, number];
|
|
2970
|
+
orientation?: 'portrait' | 'landscape';
|
|
2971
|
+
};
|
|
2972
|
+
pagebreak?: {
|
|
2973
|
+
mode?: string[];
|
|
2974
|
+
avoid?: string[];
|
|
2975
|
+
before?: string[];
|
|
2976
|
+
};
|
|
2977
|
+
}
|
|
2950
2978
|
interface SmzDocumentExport {
|
|
2951
2979
|
filename: string;
|
|
2952
2980
|
jsPDFOptions: jsPDFOptions;
|
|
2953
2981
|
htmlOptions: HTMLOptions;
|
|
2954
|
-
html2pdfOptions:
|
|
2982
|
+
html2pdfOptions: SmzHtml2PdfOptions;
|
|
2955
2983
|
margin: {
|
|
2956
2984
|
top: number;
|
|
2957
2985
|
left: number;
|
|
@@ -7984,6 +8012,25 @@ declare class UiLocalizationDbState {
|
|
|
7984
8012
|
static ɵprov: i0.ɵɵInjectableDeclaration<UiLocalizationDbState>;
|
|
7985
8013
|
}
|
|
7986
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
|
+
declare function buildAuthenticationUrl(serverUrl: string, route: string): string;
|
|
8033
|
+
|
|
7987
8034
|
declare class NgxRbkUtilsConfig {
|
|
7988
8035
|
debugMode: boolean;
|
|
7989
8036
|
applicationName: string;
|
|
@@ -8037,6 +8084,7 @@ declare class NgxRbkUtilsConfig {
|
|
|
8037
8084
|
};
|
|
8038
8085
|
};
|
|
8039
8086
|
authentication: {
|
|
8087
|
+
endpointsRoutes: AuthenticationEndpointsRoutes;
|
|
8040
8088
|
localStoragePrefix: string;
|
|
8041
8089
|
authenticatedRoot: string;
|
|
8042
8090
|
nonAuthenticatedRoot: string;
|
|
@@ -8044,7 +8092,6 @@ declare class NgxRbkUtilsConfig {
|
|
|
8044
8092
|
useSingleTenantAplication: boolean;
|
|
8045
8093
|
allowTenantSwitching: boolean;
|
|
8046
8094
|
login: {
|
|
8047
|
-
url: string;
|
|
8048
8095
|
route: string;
|
|
8049
8096
|
superuserRoute?: string;
|
|
8050
8097
|
loadingBehavior: 'global' | 'local' | 'none';
|
|
@@ -8063,7 +8110,6 @@ declare class NgxRbkUtilsConfig {
|
|
|
8063
8110
|
};
|
|
8064
8111
|
};
|
|
8065
8112
|
refreshToken: {
|
|
8066
|
-
url: string;
|
|
8067
8113
|
loadingBehavior: 'global' | 'local' | 'none';
|
|
8068
8114
|
errorHandlingType: 'toast' | 'dialog' | 'none';
|
|
8069
8115
|
responsePropertyName: string;
|
|
@@ -8810,11 +8856,9 @@ declare class AuthorizationService extends BaseApiService {
|
|
|
8810
8856
|
declare class AuthenticationService extends BaseApiService {
|
|
8811
8857
|
private http;
|
|
8812
8858
|
private readonly environment;
|
|
8813
|
-
private
|
|
8859
|
+
private readonly config;
|
|
8814
8860
|
constructor(http: HttpClient);
|
|
8815
|
-
private
|
|
8816
|
-
login(): Observable$1<JwtResponse>;
|
|
8817
|
-
refreshToken(): Observable$1<JwtResponse>;
|
|
8861
|
+
private buildUrl;
|
|
8818
8862
|
sendResetPasswordEmail(data: RequestPasswordReset): Observable$1<void>;
|
|
8819
8863
|
redefinePassword(data: RedefinePassword): Observable$1<void>;
|
|
8820
8864
|
resendEmailConfirmation(data: ResendEmailConfirmation): Observable$1<void>;
|
|
@@ -9501,6 +9545,7 @@ declare class SmzUiAuthenticationBuilder extends SmzBuilderUtilities<SmzUiAuthen
|
|
|
9501
9545
|
private _builder;
|
|
9502
9546
|
protected that: this;
|
|
9503
9547
|
constructor(_builder: SmzUiBuilder);
|
|
9548
|
+
setEndpointRoute(key: keyof AuthenticationEndpointsRoutes, route: string): SmzUiAuthenticationBuilder;
|
|
9504
9549
|
setLocalStoragePrefix(prefix: string): SmzUiAuthenticationBuilder;
|
|
9505
9550
|
setAuthenticatedRoot(path: string): SmzUiAuthenticationBuilder;
|
|
9506
9551
|
setNonAuthenticatedRoot(path: string): SmzUiAuthenticationBuilder;
|
|
@@ -15867,5 +15912,5 @@ declare class SmzEnvironment {
|
|
|
15867
15912
|
declare const SMZ_UI_ENVIRONMENT_CONFIG: InjectionToken<SmzEnvironmentConfigType>;
|
|
15868
15913
|
declare function provideSmzEnvironment(...features: SmzEnvironmentConfigType[]): EnvironmentProviders;
|
|
15869
15914
|
|
|
15870
|
-
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 };
|
|
15871
|
-
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 };
|
|
15915
|
+
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, 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, 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 };
|
|
15916
|
+
export type { ActionLink, ActivateUser, AppStateModel, ApplicationStateModel, AthenaMenuTypes, AthenaSidebarStates, AuthenticationEndpointsRoutes, 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 };
|