@resolveio/client-lib-core 21.5.32 → 21.5.34

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": "@resolveio/client-lib-core",
3
- "version": "21.5.32",
3
+ "version": "21.5.34",
4
4
  "dependencies": {
5
5
  "ngx-ui-tour-core": "^16.0.0",
6
6
  "tslib": "^2.3.0"
@@ -1695,6 +1695,8 @@ declare class CollapseTableComponent implements OnInit, OnChanges, AfterViewInit
1695
1695
  windowSizeSubscription: any;
1696
1696
  mutationObserver: MutationObserver | null;
1697
1697
  resizeObserver: ResizeObserver | null;
1698
+ private scrollRafId;
1699
+ private readonly onScrollHandler;
1698
1700
  constructor(_resizeService: ResizeService, _account: AccountManagerService, _elementRef: ElementRef<HTMLElement>);
1699
1701
  ngOnInit(): void;
1700
1702
  ngAfterViewInit(): void;
@@ -1706,6 +1708,8 @@ declare class CollapseTableComponent implements OnInit, OnChanges, AfterViewInit
1706
1708
  private updateStickyTopOffset;
1707
1709
  private isStickyHeadersEnabled;
1708
1710
  private toOptionalBoolean;
1711
+ private getAncestorStickyOffset;
1712
+ private isAncestorStickyHeadersEnabled;
1709
1713
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableComponent, never>;
1710
1714
  static ɵcmp: i0.ɵɵComponentDeclaration<CollapseTableComponent, "collapse-table", never, { "collapseSize": { "alias": "collapseSize"; "required": false; }; "tableFixed": { "alias": "tableFixed"; "required": false; }; "headerFixed": { "alias": "headerFixed"; "required": false; }; "stickyHeaders": { "alias": "stickyHeaders"; "required": false; }; "secondaryColor": { "alias": "secondaryColor"; "required": false; }; "tertiaryColor": { "alias": "tertiaryColor"; "required": false; }; }, {}, never, ["*"], false, never>;
1711
1715
  }
@@ -3008,12 +3012,39 @@ interface CsvExportOptions {
3008
3012
  }
3009
3013
  declare function exportCsv(data: any[] | string, filename: string, options?: CsvExportOptions): void;
3010
3014
 
3015
+ interface DateElementLike {
3016
+ year: number;
3017
+ month: number;
3018
+ day: number;
3019
+ }
3020
+ interface QueryFilterMapping {
3021
+ filterKey: string;
3022
+ queryField?: string;
3023
+ ignoreValues?: any[];
3024
+ clauseFactory?: (value: any, filters: Record<string, any>) => Record<string, any> | null;
3025
+ }
3026
+ type QuerySearchMode = 'regex' | 'exact';
3027
+ interface QuerySearchClauseOptions {
3028
+ mode?: QuerySearchMode;
3029
+ caseSensitive?: boolean;
3030
+ }
3031
+ declare function dateElementToStartDate(value: DateElementLike | null | undefined): Date | null;
3032
+ declare function dateElementToEndDate(value: DateElementLike | null | undefined): Date | null;
3033
+ declare function escapeRegExp(value: string): string;
3034
+ declare function buildMappedFilterClauses(filters: Record<string, any> | undefined, mappings: QueryFilterMapping[]): Record<string, any>[];
3035
+ declare function buildSearchClause(searchValue: string | null | undefined, fields: string[], options?: QuerySearchClauseOptions): Record<string, any> | null;
3036
+ declare function buildRegexOrSearchClause(searchValue: string | null | undefined, fields: string[]): Record<string, any> | null;
3037
+
3011
3038
  declare class WindowRefService {
3012
3039
  get nativeWindow(): any;
3013
3040
  static ɵfac: i0.ɵɵFactoryDeclaration<WindowRefService, never>;
3014
3041
  static ɵprov: i0.ɵɵInjectableDeclaration<WindowRefService>;
3015
3042
  }
3016
3043
 
3044
+ type DatatableQueryClause = Record<string, any>;
3045
+ declare function hasActiveDatatableColumnFilter(columnFilters: Record<string, DatatableColumnFilter> | undefined, field: string): boolean;
3046
+ declare function buildDatatableColumnFilterClauses(columnFilters: Record<string, DatatableColumnFilter> | undefined): DatatableQueryClause[];
3047
+
3017
3048
  declare class DateShortcutComponent extends BaseComponent implements OnInit {
3018
3049
  private _services;
3019
3050
  private _cd;
@@ -3042,6 +3073,231 @@ declare class DateShortcutModule {
3042
3073
  static ɵinj: i0.ɵɵInjectorDeclaration<DateShortcutModule>;
3043
3074
  }
3044
3075
 
3076
+ declare type SortMongo = string | Exclude<SortDirection, {
3077
+ $meta: string;
3078
+ }> | string[] | {
3079
+ [key: string]: SortDirection;
3080
+ } | Map<string, SortDirection> | [string, SortDirection][] | [string, SortDirection];
3081
+ /** @public */
3082
+ declare type SortDirection = 1 | -1 | 'asc' | 'desc' | 'ascending' | 'descending' | {
3083
+ $meta: string;
3084
+ };
3085
+ interface PaginationOptions {
3086
+ limit?: number;
3087
+ skip?: number;
3088
+ sort?: SortMongo;
3089
+ fields?: {
3090
+ [key: string]: number;
3091
+ };
3092
+ }
3093
+
3094
+ interface ListTemplateDateElement {
3095
+ year: number;
3096
+ month: number;
3097
+ day: number;
3098
+ }
3099
+ interface ListTemplateQueryStateOptions {
3100
+ dateKeys?: string[];
3101
+ extraKeys?: string[];
3102
+ keepUnknownFilterKeys?: boolean;
3103
+ }
3104
+ interface ListTemplateQueryStateResult<TTableData extends DatatableModel = DatatableModel> {
3105
+ tableData: TTableData;
3106
+ dates: Record<string, ListTemplateDateElement | null>;
3107
+ extras: Record<string, any>;
3108
+ hadLegacyColumnFiltersParam: boolean;
3109
+ }
3110
+ interface ListTemplateBuildQueryParamsOptions {
3111
+ dateValues?: Record<string, ListTemplateDateElement | null | undefined>;
3112
+ extraValues?: Record<string, any>;
3113
+ }
3114
+ interface ListTemplateFilterOption {
3115
+ label: string;
3116
+ value: any;
3117
+ }
3118
+ interface ListTemplateAutoFilterConfig {
3119
+ key: string;
3120
+ label: string;
3121
+ controlType?: 'select' | 'date' | 'text';
3122
+ queryField?: string;
3123
+ queryIgnoreValues?: any[];
3124
+ queryClauseFactory?: (value: any, filters: Record<string, any>) => Record<string, any> | null;
3125
+ queryDisabled?: boolean;
3126
+ options?: Array<ListTemplateFilterOption | string | number | boolean>;
3127
+ optionsCollection?: string;
3128
+ optionsQuery?: Record<string, any>;
3129
+ optionsFields?: Record<string, number>;
3130
+ optionsSort?: Record<string, 1 | -1>;
3131
+ optionLabelKey?: string;
3132
+ optionValueKey?: string;
3133
+ optionsDistinctKey?: string;
3134
+ distinctField?: string;
3135
+ distinctCollection?: string;
3136
+ distinctQuery?: Record<string, any>;
3137
+ distinctSort?: 'asc' | 'desc';
3138
+ limit?: number;
3139
+ includeAllOption?: boolean;
3140
+ allLabel?: string;
3141
+ allValue?: any;
3142
+ defaultValue?: any;
3143
+ mapOption?: (row: any) => ListTemplateFilterOption | null;
3144
+ }
3145
+ interface ListTemplateDataSourceContext<TTableData extends DatatableModel = DatatableModel> {
3146
+ tableData: TTableData;
3147
+ filters: Record<string, any>;
3148
+ }
3149
+ type ListTemplateSearchMode = 'regex' | 'exact';
3150
+ interface ListTemplateDataSourceConfig<TTableData extends DatatableModel = DatatableModel> {
3151
+ collection: string;
3152
+ fields?: Record<string, number>;
3153
+ sortFallback?: Record<string, 1 | -1>;
3154
+ sortFieldMap?: Record<string, string>;
3155
+ baseQuery?: Record<string, any> | ((context: ListTemplateDataSourceContext<TTableData>) => Record<string, any>);
3156
+ filterMappings?: QueryFilterMapping[];
3157
+ searchFields?: string[];
3158
+ searchMode?: ListTemplateSearchMode;
3159
+ searchCaseSensitive?: boolean;
3160
+ searchClauseFactory?: (searchValue: string, context: ListTemplateDataSourceContext<TTableData>) => Record<string, any> | null;
3161
+ includeColumnFilters?: boolean;
3162
+ extraClausesFactory?: (context: ListTemplateDataSourceContext<TTableData>) => Record<string, any>[];
3163
+ queryTransform?: (query: Record<string, any>, context: ListTemplateDataSourceContext<TTableData>) => Record<string, any>;
3164
+ optionsTransform?: (options: PaginationOptions, context: ListTemplateDataSourceContext<TTableData>) => PaginationOptions;
3165
+ rowMap?: (row: any, context: ListTemplateDataSourceContext<TTableData>) => any;
3166
+ rowsMap?: (rows: any[], context: ListTemplateDataSourceContext<TTableData>) => any[];
3167
+ autoLoad?: boolean;
3168
+ }
3169
+
3170
+ declare class ListTemplateStateService {
3171
+ applyQueryParams<TTableData extends DatatableModel>(queryParams: Record<string, any>, defaultTableData: TTableData, options?: ListTemplateQueryStateOptions): ListTemplateQueryStateResult<TTableData>;
3172
+ buildQueryParams(tableData: DatatableModel, options?: ListTemplateBuildQueryParamsOptions): Record<string, any>;
3173
+ navigateWithQueryParams(router: Router, routePath: string | any[], queryParams: Record<string, any>): void;
3174
+ createDefaultTableData<TTableData extends DatatableModel>(defaultTableData: TTableData): TTableData;
3175
+ toPositiveNumber(value: any, fallback?: number): number;
3176
+ private createEmptyTableData;
3177
+ private parseColumnFilters;
3178
+ private serializeColumnFilters;
3179
+ private normalizeColumnFiltersObject;
3180
+ private parseDateElement;
3181
+ private serializeDateElement;
3182
+ private isLegacyColumnFiltersValue;
3183
+ private deepClone;
3184
+ private isObjectMap;
3185
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListTemplateStateService, never>;
3186
+ static ɵprov: i0.ɵɵInjectableDeclaration<ListTemplateStateService>;
3187
+ }
3188
+
3189
+ declare abstract class ListComponent<TTableData extends DatatableModel = DatatableModel> extends BaseComponent {
3190
+ private _listTemplateState;
3191
+ protected constructor(providerService: ProviderService, _listTemplateState: ListTemplateStateService);
3192
+ protected resolveListQueryState(queryParams: Record<string, any>, defaultTableData: TTableData, options?: ListTemplateQueryStateOptions): ListTemplateQueryStateResult<TTableData>;
3193
+ protected buildListQueryParams(tableData: DatatableModel, options?: ListTemplateBuildQueryParamsOptions): Record<string, any>;
3194
+ protected navigateListQuery(routePath: string | any[], queryParams: Record<string, any>): void;
3195
+ protected queueLegacyColumnFiltersCleanup(state: ListTemplateQueryStateResult<TTableData>, callback: () => void): void;
3196
+ protected toPositiveNumber(value: any, fallback?: number): number;
3197
+ }
3198
+
3199
+ declare class ListTemplateComponent extends BaseComponent implements OnChanges {
3200
+ private _services;
3201
+ urlClick: string;
3202
+ columns: Array<DatatableColumn | DatatableColumn[]>;
3203
+ data: any[];
3204
+ tableData: DatatableModel;
3205
+ collapseSize: number;
3206
+ searchTitle: string;
3207
+ totalItems: number;
3208
+ entriesPerPageOptions: Array<number | string>;
3209
+ searchBarAutoSearch: boolean;
3210
+ searchDebounceMs: number;
3211
+ searchMinLength: number;
3212
+ searchDistinct: boolean;
3213
+ tableFixed: boolean;
3214
+ headerFixed: boolean;
3215
+ stickyHeaders: boolean;
3216
+ users: any[];
3217
+ rowIdKey: string;
3218
+ rowNavigationMode: DatatableRowNavigationMode | string | null | undefined;
3219
+ returnIdUrls: string[];
3220
+ showSearch: boolean;
3221
+ showPaging: boolean;
3222
+ showToolbar: boolean;
3223
+ showEntriesControl: boolean;
3224
+ showResultsSummary: boolean;
3225
+ hideSearch: boolean;
3226
+ hideFooter: boolean;
3227
+ autoFilters: ListTemplateAutoFilterConfig[];
3228
+ dataSource: ListTemplateDataSourceConfig | null;
3229
+ tableDataChange: EventEmitter<DatatableModel>;
3230
+ onChangeTableData: EventEmitter<Object>;
3231
+ cellAction: EventEmitter<DatatableCellActionEvent<any>>;
3232
+ rowClick: EventEmitter<DatatableRowClickEvent<any>>;
3233
+ rowSelected: EventEmitter<{
3234
+ id: string | number;
3235
+ column: string;
3236
+ item: any;
3237
+ }>;
3238
+ returnId: EventEmitter<Object>;
3239
+ onChangeRequested: EventEmitter<Object>;
3240
+ onChangeTankLevels: EventEmitter<Object>;
3241
+ onChangeCurrentRate: EventEmitter<Object>;
3242
+ onChangeTankHistory: EventEmitter<Object>;
3243
+ dataSourceLoading: EventEmitter<boolean>;
3244
+ dataSourceError: EventEmitter<any>;
3245
+ dataSourceLoaded: EventEmitter<{
3246
+ data: any[];
3247
+ totalItems: number;
3248
+ query: Record<string, any>;
3249
+ options: PaginationOptions;
3250
+ }>;
3251
+ autoFilterOptionsMap: Record<string, ListTemplateFilterOption[]>;
3252
+ isDataSourceLoading: boolean;
3253
+ private dataLoadSequence;
3254
+ private autoFilterLoadSequence;
3255
+ private lastDataLoadSignature;
3256
+ constructor(_services: ProviderService);
3257
+ ngOnChanges(changes: SimpleChanges): void;
3258
+ onTableDataChange(nextTableData: DatatableModel): void;
3259
+ onDataTableChange(event: Object): void;
3260
+ onAutoFilterChanged(filter: ListTemplateAutoFilterConfig, value: any): void;
3261
+ getFilterOptions(filter: ListTemplateAutoFilterConfig): ListTemplateFilterOption[];
3262
+ getAutoFilterControlType(filter: ListTemplateAutoFilterConfig): 'select' | 'date' | 'text';
3263
+ isSelectAutoFilter(filter: ListTemplateAutoFilterConfig): boolean;
3264
+ trackByFilterKey(_index: number, filter: ListTemplateAutoFilterConfig): string;
3265
+ trackByFilterOption(_index: number, option: ListTemplateFilterOption): any;
3266
+ private shouldAutoLoadDataSource;
3267
+ private ensureTableDataShape;
3268
+ private applyAutoFilterDefaults;
3269
+ private loadAutoFilterOptions;
3270
+ private resolveFilterOptions;
3271
+ private loadCollectionFilterOptions;
3272
+ private loadDistinctFilterOptions;
3273
+ private getDistinctKey;
3274
+ reloadDataSource(): Promise<void>;
3275
+ private buildDataSourceQuery;
3276
+ private buildDataSourceOptions;
3277
+ private getEffectiveDataSourceFields;
3278
+ private getNormalizedColumns;
3279
+ private getProjectionField;
3280
+ private applyRowTransforms;
3281
+ private getDataSourceContext;
3282
+ private getEffectiveFilterMappings;
3283
+ private normalizeFilterOption;
3284
+ private getDefaultAllOnlyOption;
3285
+ private handleDataSourceError;
3286
+ private setDataSourceLoading;
3287
+ private toPositiveNumber;
3288
+ private serializeOptionValue;
3289
+ private serializeDataLoadSignature;
3290
+ private isObjectMap;
3291
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListTemplateComponent, never>;
3292
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListTemplateComponent, "resolveio-list-template", never, { "urlClick": { "alias": "urlClick"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "tableData": { "alias": "tableData"; "required": false; }; "collapseSize": { "alias": "collapseSize"; "required": false; }; "searchTitle": { "alias": "searchTitle"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "entriesPerPageOptions": { "alias": "entriesPerPageOptions"; "required": false; }; "searchBarAutoSearch": { "alias": "searchBarAutoSearch"; "required": false; }; "searchDebounceMs": { "alias": "searchDebounceMs"; "required": false; }; "searchMinLength": { "alias": "searchMinLength"; "required": false; }; "searchDistinct": { "alias": "searchDistinct"; "required": false; }; "tableFixed": { "alias": "tableFixed"; "required": false; }; "headerFixed": { "alias": "headerFixed"; "required": false; }; "stickyHeaders": { "alias": "stickyHeaders"; "required": false; }; "users": { "alias": "users"; "required": false; }; "rowIdKey": { "alias": "rowIdKey"; "required": false; }; "rowNavigationMode": { "alias": "rowNavigationMode"; "required": false; }; "returnIdUrls": { "alias": "returnIdUrls"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; "showPaging": { "alias": "showPaging"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "showEntriesControl": { "alias": "showEntriesControl"; "required": false; }; "showResultsSummary": { "alias": "showResultsSummary"; "required": false; }; "hideSearch": { "alias": "hideSearch"; "required": false; }; "hideFooter": { "alias": "hideFooter"; "required": false; }; "autoFilters": { "alias": "autoFilters"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; }, { "tableDataChange": "tableDataChange"; "onChangeTableData": "onChangeTableData"; "cellAction": "cellAction"; "rowClick": "rowClick"; "rowSelected": "rowSelected"; "returnId": "returnId"; "onChangeRequested": "onChangeRequested"; "onChangeTankLevels": "onChangeTankLevels"; "onChangeCurrentRate": "onChangeCurrentRate"; "onChangeTankHistory": "onChangeTankHistory"; "dataSourceLoading": "dataSourceLoading"; "dataSourceError": "dataSourceError"; "dataSourceLoaded": "dataSourceLoaded"; }, never, ["[list-template-controls]", "*"], false, never>;
3293
+ }
3294
+
3295
+ declare class ListTemplateModule {
3296
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListTemplateModule, never>;
3297
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ListTemplateModule, [typeof ListTemplateComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof DatatableModule], [typeof ListTemplateComponent]>;
3298
+ static ɵinj: i0.ɵɵInjectorDeclaration<ListTemplateModule>;
3299
+ }
3300
+
3045
3301
  declare class SchedulerComponent extends BaseComponent implements AfterViewInit, OnDestroy {
3046
3302
  private _services;
3047
3303
  today: Date;
@@ -3150,24 +3406,6 @@ interface LogMethodLatencyModel extends CollectionDocument {
3150
3406
  method: string;
3151
3407
  }
3152
3408
 
3153
- declare type SortMongo = string | Exclude<SortDirection, {
3154
- $meta: string;
3155
- }> | string[] | {
3156
- [key: string]: SortDirection;
3157
- } | Map<string, SortDirection> | [string, SortDirection][] | [string, SortDirection];
3158
- /** @public */
3159
- declare type SortDirection = 1 | -1 | 'asc' | 'desc' | 'ascending' | 'descending' | {
3160
- $meta: string;
3161
- };
3162
- interface PaginationOptions {
3163
- limit?: number;
3164
- skip?: number;
3165
- sort?: SortMongo;
3166
- fields?: {
3167
- [key: string]: number;
3168
- };
3169
- }
3170
-
3171
3409
  interface UserGroupModel extends CollectionDocument {
3172
3410
  name: string;
3173
3411
  landing_page?: string;
@@ -3194,5 +3432,5 @@ declare const MongoExplorerModulePermission: ModulePermissionModel;
3194
3432
 
3195
3433
  declare const SuperAdminModulePermission: ModulePermissionModel;
3196
3434
 
3197
- export { AccountManagerService, AiAssistantComponent, AiFormAutoRegisterDirective, AiFormRegistryService, AiPageFormAdapterService, AiPageRouterService, AiTerminalComponent, AiTerminalModule, AiTerminalService, AlertService, Auth365Component, AuthGuard, AuthPermissionService, AuthService, AwsService, BaseComponent, CanDeactivateGuard, CollapseTableComponent, CollapseTableModule, CoreAuthModule, CoreComponent, CoreDialogModule, CoreLoggerModule, CoreModule, CoreService, CoreServicesModule, CoreShellModule, CoreTourService, DATATABLE_DEFAULT_CONFIG, DatatableCellTemplateDirective, DatatableComponent, DatatableModule, DateShortcutComponent, DateShortcutModule, DialogConfirmContent, DialogErrorContent, DialogInputContent, DialogLoginContent, DialogNotifyContent, DialogRegisterContent, DialogSelectArrayContent, DialogSelectArrayObjsContent, DialogSelectDataLabelsContent, DialogSelectDateTimeContent, DialogSelectWithButtonsURLContent, DialogService, DomSanitizorPipe, Draggable, DropEvent, Droppable, EnrollComponent, FeatureGateService, FileModule, FileUploadComponent, FilterEqualPipe, FilterNotEqualPipe, FocusDirective, ForgotPasswordComponent, FormButtonComponent, FormButtonModule, HomeComponent, HtmlDiffViewerComponent, JsonParsePipe, LoggerComponent, MinusCurrencyPipe, MongoExplorerModulePermission, NavbarMainComponent, NavbarModuleComponent, NgDragDropModule, NgDragDropService, OfflineManagerService, PhonePipe, PipeModule, ProviderService, ReportBuilderModulePermission, ResizeService, ResponsiveButtonGroupComponent, ResponsiveButtonGroupModule, ReversePipe, RioPaginationComponent, RioPaginationModule, SchedulerComponent, SchedulerModule, ScrollDirective, SharedModule, SocketManagerService, SocketService, SortTableDirective, SortTableHeaderComponent, SortTableModule, SortTableNgForComponent, Sortable as SortableJs, SortablejsDirective, SortablejsModule, StorageDB, SuperAdminModulePermission, TitleCaseAndUnderscorePipe, TokenManagerService, TourAnchorDirective, UserRoleComponent, UserRoleModule, ValidationService, WindowRefService, applyMongoUpdate, b64toBlobURL, blobToFile, dateOnlyEndOfDayTz, dateOnlyStartOfDayTz, dateReviver, deepCopy, deepDiffDetails, exportCsv, generateCronStringFromDate, isUpperCase, mergeDeep, momentTz, pad, provideDatatableDefaultConfig, rioDatePickerConfigFactory, round, s2ab, toDataURL, toTitleCase, type };
3198
- export type { ActiveClientSubscriptionModel, AiFormRegistryEntry, AiPageAdapter, AiPageContext, AiPageContextMode, AiPageRequest, AiPageResult, AiPageSchema, AiTerminalAttachmentModel, AiTerminalConfig$1 as AiTerminalConfig, AiTerminalConversationModel, AiTerminalConversationStatus, AiTerminalDisplayTable, AiTerminalMessageModel, AiTerminalMessageRole, AiTerminalMessageUsage, AiTerminalMethodNames, AiTerminalMode, AiTerminalMongoAccess, AiTerminalMongoConfig, AiTerminalToolResult, AppStatusModel, CanComponentDeactivate, CollectionDocument, CronJobModel, CsvExportOptions, DatatableButtonAction, DatatableCellActionEvent, DatatableColumn, DatatableColumnAlign, DatatableColumnFilter, DatatableColumnFilterOperator, DatatableColumnFilterType, DatatableColumnTypes, DatatableDefaultConfig, DatatableInputConfig, DatatableModel, DatatablePipeConfig, DatatablePipeName, DatatableProgressConfig, DatatableRowClickEvent, DatatableRowNavigationMode, DatatableSelectConfig, DatatableSelectOption, DialogInputFieldModel, DialogInputFieldSelectOptions, DialogSelectWithButtonsOptionModel, FileModel, LogMethodLatencyModel, ModulePermissionApprovalModel, ModulePermissionModel, ModulePermissionViewModel, NavbarMainTabLinkModel, NavbarMainTabModel, NavbarMainTabType, NavbarModel, NavbarTabModel, OtherObject, PaginationOptions, ScrollEvent, SelectDataLabelModel, Sort, SortDirection, SortDirectionType, SortMongo, Sortable$1 as Sortable, SortableEvent as SortablejsEvent, Options as SortablejsOptions, SubscriptionModel, SubscriptionPubModel, UserDelegateModel, UserEmploymentLevelType, UserGroupModel, UserGroupNotificationModel, UserGroupPermissionModel, UserGroupViewModel, UserModel, UserNotificationConfigModel, UserNotificationModel, UserNotificationSubTypes, UserNotificationTypes, UserRoleApprovalModel, UserRoleGroupModel, UserRoleModel, UserSettingsModel, UserSupervisorModel, alertType };
3435
+ export { AccountManagerService, AiAssistantComponent, AiFormAutoRegisterDirective, AiFormRegistryService, AiPageFormAdapterService, AiPageRouterService, AiTerminalComponent, AiTerminalModule, AiTerminalService, AlertService, Auth365Component, AuthGuard, AuthPermissionService, AuthService, AwsService, BaseComponent, CanDeactivateGuard, CollapseTableComponent, CollapseTableModule, CoreAuthModule, CoreComponent, CoreDialogModule, CoreLoggerModule, CoreModule, CoreService, CoreServicesModule, CoreShellModule, CoreTourService, DATATABLE_DEFAULT_CONFIG, DatatableCellTemplateDirective, DatatableComponent, DatatableModule, DateShortcutComponent, DateShortcutModule, DialogConfirmContent, DialogErrorContent, DialogInputContent, DialogLoginContent, DialogNotifyContent, DialogRegisterContent, DialogSelectArrayContent, DialogSelectArrayObjsContent, DialogSelectDataLabelsContent, DialogSelectDateTimeContent, DialogSelectWithButtonsURLContent, DialogService, DomSanitizorPipe, Draggable, DropEvent, Droppable, EnrollComponent, FeatureGateService, FileModule, FileUploadComponent, FilterEqualPipe, FilterNotEqualPipe, FocusDirective, ForgotPasswordComponent, FormButtonComponent, FormButtonModule, HomeComponent, HtmlDiffViewerComponent, JsonParsePipe, ListComponent, ListTemplateComponent, ListTemplateModule, ListTemplateStateService, LoggerComponent, MinusCurrencyPipe, MongoExplorerModulePermission, NavbarMainComponent, NavbarModuleComponent, NgDragDropModule, NgDragDropService, OfflineManagerService, PhonePipe, PipeModule, ProviderService, ReportBuilderModulePermission, ResizeService, ResponsiveButtonGroupComponent, ResponsiveButtonGroupModule, ReversePipe, RioPaginationComponent, RioPaginationModule, SchedulerComponent, SchedulerModule, ScrollDirective, SharedModule, SocketManagerService, SocketService, SortTableDirective, SortTableHeaderComponent, SortTableModule, SortTableNgForComponent, Sortable as SortableJs, SortablejsDirective, SortablejsModule, StorageDB, SuperAdminModulePermission, TitleCaseAndUnderscorePipe, TokenManagerService, TourAnchorDirective, UserRoleComponent, UserRoleModule, ValidationService, WindowRefService, applyMongoUpdate, b64toBlobURL, blobToFile, buildDatatableColumnFilterClauses, buildMappedFilterClauses, buildRegexOrSearchClause, buildSearchClause, dateElementToEndDate, dateElementToStartDate, dateOnlyEndOfDayTz, dateOnlyStartOfDayTz, dateReviver, deepCopy, deepDiffDetails, escapeRegExp, exportCsv, generateCronStringFromDate, hasActiveDatatableColumnFilter, isUpperCase, mergeDeep, momentTz, pad, provideDatatableDefaultConfig, rioDatePickerConfigFactory, round, s2ab, toDataURL, toTitleCase, type };
3436
+ export type { ActiveClientSubscriptionModel, AiFormRegistryEntry, AiPageAdapter, AiPageContext, AiPageContextMode, AiPageRequest, AiPageResult, AiPageSchema, AiTerminalAttachmentModel, AiTerminalConfig$1 as AiTerminalConfig, AiTerminalConversationModel, AiTerminalConversationStatus, AiTerminalDisplayTable, AiTerminalMessageModel, AiTerminalMessageRole, AiTerminalMessageUsage, AiTerminalMethodNames, AiTerminalMode, AiTerminalMongoAccess, AiTerminalMongoConfig, AiTerminalToolResult, AppStatusModel, CanComponentDeactivate, CollectionDocument, CronJobModel, CsvExportOptions, DatatableButtonAction, DatatableCellActionEvent, DatatableColumn, DatatableColumnAlign, DatatableColumnFilter, DatatableColumnFilterOperator, DatatableColumnFilterType, DatatableColumnTypes, DatatableDefaultConfig, DatatableInputConfig, DatatableModel, DatatablePipeConfig, DatatablePipeName, DatatableProgressConfig, DatatableRowClickEvent, DatatableRowNavigationMode, DatatableSelectConfig, DatatableSelectOption, DateElementLike, DialogInputFieldModel, DialogInputFieldSelectOptions, DialogSelectWithButtonsOptionModel, FileModel, ListTemplateAutoFilterConfig, ListTemplateBuildQueryParamsOptions, ListTemplateDataSourceConfig, ListTemplateDataSourceContext, ListTemplateDateElement, ListTemplateFilterOption, ListTemplateQueryStateOptions, ListTemplateQueryStateResult, ListTemplateSearchMode, LogMethodLatencyModel, ModulePermissionApprovalModel, ModulePermissionModel, ModulePermissionViewModel, NavbarMainTabLinkModel, NavbarMainTabModel, NavbarMainTabType, NavbarModel, NavbarTabModel, OtherObject, PaginationOptions, QueryFilterMapping, QuerySearchClauseOptions, QuerySearchMode, ScrollEvent, SelectDataLabelModel, Sort, SortDirection, SortDirectionType, SortMongo, Sortable$1 as Sortable, SortableEvent as SortablejsEvent, Options as SortablejsOptions, SubscriptionModel, SubscriptionPubModel, UserDelegateModel, UserEmploymentLevelType, UserGroupModel, UserGroupNotificationModel, UserGroupPermissionModel, UserGroupViewModel, UserModel, UserNotificationConfigModel, UserNotificationModel, UserNotificationSubTypes, UserNotificationTypes, UserRoleApprovalModel, UserRoleGroupModel, UserRoleModel, UserSettingsModel, UserSupervisorModel, alertType };