@resolveio/client-lib-core 21.5.6 → 21.5.7

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.6",
3
+ "version": "21.5.7",
4
4
  "dependencies": {
5
5
  "ngx-ui-tour-core": "^16.0.0",
6
6
  "tslib": "^2.3.0"
@@ -2,7 +2,7 @@ import * as rxjs from 'rxjs';
2
2
  import { BehaviorSubject, Observable, Subject, Subscription } from 'rxjs';
3
3
  import { IStepOption, TourService } from 'ngx-ui-tour-core';
4
4
  import * as i0 from '@angular/core';
5
- import { OnDestroy, OnInit, ElementRef, OnChanges, SimpleChanges, EventEmitter, AfterViewInit, QueryList, ChangeDetectorRef, PipeTransform, Renderer2, ModuleWithProviders, NgZone } from '@angular/core';
5
+ import { OnDestroy, OnInit, ElementRef, OnChanges, SimpleChanges, EventEmitter, AfterViewInit, QueryList, ChangeDetectorRef, PipeTransform, Renderer2, ModuleWithProviders, NgZone, TemplateRef, AfterContentInit } from '@angular/core';
6
6
  import { DeviceDetectorService } from 'ngx-device-detector';
7
7
  import * as i3 from '@angular/forms';
8
8
  import { FormControl, FormGroup, AbstractControl, FormBuilder, FormGroupDirective } from '@angular/forms';
@@ -14,6 +14,7 @@ import { HttpClient } from '@angular/common/http';
14
14
  import * as i6 from '@ng-bootstrap/ng-bootstrap';
15
15
  import { NgbModal, NgbModalOptions, NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
16
16
  import * as i2 from '@angular/common';
17
+ import { JsonPipe, UpperCasePipe, LowerCasePipe, TitleCasePipe } from '@angular/common';
17
18
  import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
18
19
  import * as i11 from '@resolveio/client-lib-rio-select';
19
20
  import { StickySelectPreference, RioSelectStickyAdapter } from '@resolveio/client-lib-rio-select';
@@ -333,8 +334,8 @@ declare class OfflineManagerService {
333
334
  find(collectionName: string, query: Object, options?: {}, total?: boolean): any;
334
335
  findOne(collectionName: string, query: Object): any;
335
336
  insertDocument(collectionName: string, data: Object, expiresDate?: Date): string;
336
- updateDocument(collectionName: string, data: Object): 1 | 0;
337
- updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 1 | 0;
337
+ updateDocument(collectionName: string, data: Object): 0 | 1;
338
+ updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 0 | 1;
338
339
  removeDocument(collectionName: string, id: string): void;
339
340
  dropCollection(collectionName: any): void;
340
341
  static ɵfac: i0.ɵɵFactoryDeclaration<OfflineManagerService, never>;
@@ -1974,7 +1975,7 @@ declare class AiTerminalModule {
1974
1975
  }
1975
1976
 
1976
1977
  declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
1977
- resolveFirstDayOfWeek: () => "M" | "S";
1978
+ resolveFirstDayOfWeek: () => "S" | "M";
1978
1979
  resolveTimezone: () => any;
1979
1980
  };
1980
1981
  declare class CoreServicesModule {
@@ -2447,41 +2448,224 @@ declare class UsersSettingsComponent extends BaseComponent implements OnInit, On
2447
2448
 
2448
2449
  interface DatatableModel {
2449
2450
  searchString: string;
2450
- entriesPerPage: string;
2451
+ entriesPerPage: any;
2451
2452
  pageNum: number;
2452
2453
  sortColumn: string;
2453
- sortOrder: string;
2454
- filters?: Object;
2454
+ sortOrder: 'asc' | 'desc' | string;
2455
+ filters?: Record<string, unknown>;
2456
+ }
2457
+ type DatatablePipeName = 'number' | 'currency' | 'percent' | 'date' | 'uppercase' | 'lowercase' | 'titlecase' | 'json' | 'raw';
2458
+ type DatatableColumnAlign = 'left' | 'center' | 'right';
2459
+ type DatatableColumnTypes = 'text' | 'date' | 'datetime' | 'dateShort' | 'number' | 'currency' | 'percent' | 'boolean' | 'progress' | 'pre' | 'button' | 'buttons' | 'select' | 'input' | 'template';
2460
+ interface DatatablePipeConfig {
2461
+ name: DatatablePipeName;
2462
+ args?: Array<string | number | boolean | null>;
2463
+ }
2464
+ interface DatatableButtonAction {
2465
+ action: string;
2466
+ label: string;
2467
+ className?: string;
2468
+ icon?: string;
2469
+ confirmMessage?: string;
2470
+ disabled?: boolean;
2471
+ disabledPath?: string;
2472
+ }
2473
+ interface DatatableSelectOption {
2474
+ label: string;
2475
+ value: string | number | boolean | null;
2476
+ disabled?: boolean;
2477
+ }
2478
+ interface DatatableSelectConfig {
2479
+ action: string;
2480
+ options?: DatatableSelectOption[];
2481
+ optionsPath?: string;
2482
+ optionLabelKey?: string;
2483
+ optionValueKey?: string;
2484
+ placeholder?: string;
2485
+ }
2486
+ interface DatatableInputConfig {
2487
+ action: string;
2488
+ type?: 'text' | 'number' | 'search' | 'date' | 'datetime-local';
2489
+ placeholder?: string;
2490
+ min?: number;
2491
+ max?: number;
2492
+ step?: number | 'any';
2493
+ updateOn?: 'change' | 'keyup';
2494
+ }
2495
+ interface DatatableProgressConfig {
2496
+ valuePath?: string;
2497
+ showValue?: boolean;
2498
+ type?: string;
2499
+ striped?: boolean;
2500
+ animated?: boolean;
2455
2501
  }
2456
2502
  interface DatatableColumn {
2457
2503
  name: string;
2458
2504
  data: string;
2459
2505
  subData?: string;
2506
+ tooltipData?: string[];
2507
+ type?: DatatableColumnTypes;
2508
+ military_time?: boolean;
2509
+ pipe?: DatatablePipeConfig | DatatablePipeName;
2510
+ pipeArgs?: Array<string | number | boolean | null>;
2511
+ emptyText?: string;
2512
+ sortable?: boolean;
2513
+ stopRowClick?: boolean;
2514
+ headerClassName?: string;
2515
+ cellClassName?: string;
2516
+ align?: DatatableColumnAlign;
2517
+ width?: string;
2518
+ templateKey?: string;
2519
+ button?: DatatableButtonAction;
2520
+ buttons?: DatatableButtonAction[];
2521
+ select?: DatatableSelectConfig;
2522
+ input?: DatatableInputConfig;
2523
+ progress?: DatatableProgressConfig;
2524
+ }
2525
+ interface DatatableCellActionEvent<T = any> {
2526
+ action: string;
2527
+ row: T;
2528
+ column: DatatableColumn;
2529
+ value: any;
2530
+ }
2531
+ interface DatatableRowClickEvent<T = any> {
2532
+ row: T;
2533
+ column: DatatableColumn;
2534
+ value: any;
2535
+ }
2536
+
2537
+ declare class DatatableCellTemplateDirective {
2538
+ templateRef: TemplateRef<any>;
2539
+ key: string;
2540
+ constructor(templateRef: TemplateRef<any>);
2541
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatatableCellTemplateDirective, never>;
2542
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DatatableCellTemplateDirective, "ng-template[dataTableCell]", never, { "key": { "alias": "dataTableCell"; "required": false; }; }, {}, never, never, false, never>;
2460
2543
  }
2461
2544
 
2462
- declare class DatatableComponent extends BaseComponent {
2545
+ type DatatableCellMode = 'template' | 'buttons' | 'button' | 'select' | 'input' | 'progress' | 'boolean' | 'pre' | 'files' | 'text';
2546
+ declare class DatatableComponent extends BaseComponent implements OnChanges, AfterContentInit, OnDestroy {
2463
2547
  private _services;
2548
+ private locale;
2549
+ private jsonPipe;
2550
+ private upperCasePipe;
2551
+ private lowerCasePipe;
2552
+ private titleCasePipe;
2464
2553
  urlClick: string;
2465
- columns: Array<DatatableColumn[]>;
2554
+ columns: Array<DatatableColumn | DatatableColumn[]>;
2466
2555
  data: any[];
2467
2556
  collapseSize: number;
2468
2557
  searchTitle: string;
2469
2558
  totalItems: number;
2559
+ entriesPerPageOptions: Array<number | string>;
2560
+ searchBarAutoSearch: boolean;
2561
+ searchDebounceMs: number;
2562
+ IronBatchAssign: boolean;
2563
+ tableFixed: boolean;
2564
+ users: any[];
2565
+ rowIdKey: string;
2566
+ returnIdUrls: string[];
2567
+ showSearch: boolean;
2568
+ showPaging: boolean;
2569
+ showToolbar: boolean;
2570
+ showEntriesControl: boolean;
2571
+ showResultsSummary: boolean;
2572
+ hideSearch: boolean;
2573
+ hideFooter: boolean;
2470
2574
  onChangeTableData: EventEmitter<Object>;
2575
+ tableDataChange: EventEmitter<DatatableModel>;
2576
+ cellAction: EventEmitter<DatatableCellActionEvent<any>>;
2577
+ rowClick: EventEmitter<DatatableRowClickEvent<any>>;
2578
+ rowSelected: EventEmitter<{
2579
+ id: string | number;
2580
+ column: string;
2581
+ item: any;
2582
+ }>;
2583
+ returnId: EventEmitter<Object>;
2584
+ onChangeRequested: EventEmitter<Object>;
2585
+ onChangeTankLevels: EventEmitter<Object>;
2586
+ onChangeCurrentRate: EventEmitter<Object>;
2587
+ onChangeTankHistory: EventEmitter<Object>;
2471
2588
  tableData: DatatableModel;
2472
- constructor(_services: ProviderService);
2589
+ cellTemplateDirectives: QueryList<DatatableCellTemplateDirective>;
2590
+ cellTemplates: Map<string, TemplateRef<any>>;
2591
+ normalizedColumns: DatatableColumn[];
2592
+ private searchDebounceHandle;
2593
+ private templateChangesSubscription;
2594
+ constructor(_services: ProviderService, locale: string, jsonPipe: JsonPipe, upperCasePipe: UpperCasePipe, lowerCasePipe: LowerCasePipe, titleCasePipe: TitleCasePipe);
2595
+ ngOnChanges(changes: SimpleChanges): void;
2596
+ ngAfterContentInit(): void;
2597
+ private applyLegacyVisibilityAliases;
2598
+ ngOnDestroy(): void;
2599
+ private initializeTableData;
2600
+ private refreshColumns;
2601
+ private refreshTemplateMap;
2602
+ private normalizeEntriesPerPage;
2603
+ private normalizePageNum;
2604
+ private emitTableDataChange;
2473
2605
  changeTableData(): void;
2474
- sortColumn(colName: any): void;
2475
- navigateTo(id: string, column: string): void;
2606
+ onSearchChange(): void;
2607
+ onEntriesPerPageChange(): void;
2608
+ onPageChange(): void;
2609
+ sortColumn(column: DatatableColumn | string, subColName?: string): void;
2610
+ private getSortKey;
2611
+ isSortedColumn(column: DatatableColumn): boolean;
2612
+ getSortIcon(column: DatatableColumn): string;
2613
+ getPageSize(): number;
2614
+ getRowId(item: any, idx: number): string | number;
2615
+ onCellClick(item: any, column: DatatableColumn, event?: Event, rowIndex?: number): void;
2476
2616
  openFile(file_key: string): void;
2617
+ getCellValue(item: any, column: DatatableColumn): any;
2618
+ setCellValue(item: any, column: DatatableColumn, value: any): void;
2619
+ private resolvePath;
2620
+ getCellTemplate(column: DatatableColumn): TemplateRef<any> | null;
2621
+ getCellMode(column: DatatableColumn, item: any): DatatableCellMode;
2622
+ private isLegacyProgressColumn;
2623
+ getCellClasses(column: DatatableColumn): string[];
2624
+ getHeaderClasses(column: DatatableColumn): string[];
2625
+ getRowClasses(item: any): Record<string, boolean>;
2626
+ getDisplayValue(item: any, column: DatatableColumn): string;
2627
+ private formatValueWithPipe;
2628
+ private resolvePipeConfig;
2629
+ private isLikelyDateColumn;
2630
+ private isLikelyCurrencyColumn;
2631
+ private isLikelyNumberColumn;
2632
+ private valueToString;
2633
+ getButtons(column: DatatableColumn, row?: any): DatatableButtonAction[];
2634
+ isButtonDisabled(button: DatatableButtonAction, row: any): boolean;
2635
+ onButtonAction(button: DatatableButtonAction, row: any, column: DatatableColumn, event: Event): void;
2636
+ showDeletedReason(row: any): void;
2637
+ getFileButtons(row: any, column: DatatableColumn): Array<{
2638
+ label: string;
2639
+ id: string | null;
2640
+ key: string | null;
2641
+ }>;
2642
+ openFileById(fileId: string): void;
2643
+ onFileButtonClick(fileRef: {
2644
+ id: string | null;
2645
+ key: string | null;
2646
+ }, event: Event): void;
2647
+ getSelectConfig(column: DatatableColumn): DatatableSelectConfig | null;
2648
+ getSelectOptions(column: DatatableColumn, row: any): DatatableSelectOption[];
2649
+ onSelectAction(value: any, row: any, column: DatatableColumn): void;
2650
+ getInputConfig(column: DatatableColumn): DatatableInputConfig | null;
2651
+ onInputModelChange(value: any, row: any, column: DatatableColumn): void;
2652
+ onInputChange(value: any, row: any, column: DatatableColumn): void;
2653
+ getProgressConfig(column: DatatableColumn): DatatableProgressConfig;
2654
+ getProgressValue(row: any, column: DatatableColumn): number;
2655
+ getProgressType(row: any, column: DatatableColumn): string;
2656
+ getProgressStriped(column: DatatableColumn): boolean;
2657
+ getProgressAnimated(column: DatatableColumn): boolean;
2658
+ getProgressShowValue(column: DatatableColumn): boolean;
2659
+ private emitAction;
2660
+ getSearchButtonLabel(): string;
2477
2661
  typeOf(data: any): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
2478
2662
  static ɵfac: i0.ɵɵFactoryDeclaration<DatatableComponent, never>;
2479
- static ɵcmp: i0.ɵɵComponentDeclaration<DatatableComponent, "data-table", never, { "urlClick": { "alias": "urlClick"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "collapseSize": { "alias": "collapseSize"; "required": false; }; "searchTitle": { "alias": "searchTitle"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "tableData": { "alias": "tableData"; "required": false; }; }, { "onChangeTableData": "onChangeTableData"; }, never, never, false, never>;
2663
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatatableComponent, "data-table", never, { "urlClick": { "alias": "urlClick"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "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; }; "IronBatchAssign": { "alias": "IronBatchAssign"; "required": false; }; "tableFixed": { "alias": "tableFixed"; "required": false; }; "users": { "alias": "users"; "required": false; }; "rowIdKey": { "alias": "rowIdKey"; "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; }; "tableData": { "alias": "tableData"; "required": false; }; }, { "onChangeTableData": "onChangeTableData"; "tableDataChange": "tableDataChange"; "cellAction": "cellAction"; "rowClick": "rowClick"; "rowSelected": "rowSelected"; "returnId": "returnId"; "onChangeRequested": "onChangeRequested"; "onChangeTankLevels": "onChangeTankLevels"; "onChangeCurrentRate": "onChangeCurrentRate"; "onChangeTankHistory": "onChangeTankHistory"; }, ["cellTemplateDirectives"], never, false, never>;
2480
2664
  }
2481
2665
 
2482
2666
  declare class DatatableModule {
2483
2667
  static ɵfac: i0.ɵɵFactoryDeclaration<DatatableModule, never>;
2484
- static ɵmod: i0.ɵɵNgModuleDeclaration<DatatableModule, [typeof DatatableComponent], [typeof i6.NgbModule, typeof i3.FormsModule, typeof i2.CommonModule, typeof i5.RouterModule, typeof CollapseTableModule], [typeof DatatableComponent]>;
2668
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DatatableModule, [typeof DatatableComponent, typeof DatatableCellTemplateDirective], [typeof i6.NgbModule, typeof i3.FormsModule, typeof i2.CommonModule, typeof i5.RouterModule, typeof CollapseTableModule], [typeof DatatableComponent, typeof DatatableCellTemplateDirective]>;
2485
2669
  static ɵinj: i0.ɵɵInjectorDeclaration<DatatableModule>;
2486
2670
  }
2487
2671
 
@@ -2570,7 +2754,7 @@ interface CanComponentDeactivate {
2570
2754
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
2571
2755
  }
2572
2756
  declare class CanDeactivateGuard {
2573
- canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
2757
+ canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
2574
2758
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
2575
2759
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
2576
2760
  }
@@ -2794,5 +2978,5 @@ declare const MongoExplorerModulePermission: ModulePermissionModel;
2794
2978
 
2795
2979
  declare const SuperAdminModulePermission: ModulePermissionModel;
2796
2980
 
2797
- 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, 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, 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, rioDatePickerConfigFactory, round, s2ab, toDataURL, toTitleCase, type };
2798
- 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, DatatableColumn, DatatableModel, 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 };
2981
+ 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, 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, 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, rioDatePickerConfigFactory, round, s2ab, toDataURL, toTitleCase, type };
2982
+ 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, DatatableColumnTypes, DatatableInputConfig, DatatableModel, DatatablePipeConfig, DatatablePipeName, DatatableProgressConfig, DatatableRowClickEvent, 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 };