@resolveio/client-lib-core 21.5.29 → 21.5.30

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.29",
3
+ "version": "21.5.30",
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, AfterViewInit, ElementRef, OnChanges, SimpleChanges, EventEmitter, Renderer2, NgZone, QueryList, ChangeDetectorRef, PipeTransform, ModuleWithProviders, TemplateRef, AfterContentInit } from '@angular/core';
5
+ import { OnDestroy, OnInit, AfterViewInit, ElementRef, OnChanges, SimpleChanges, EventEmitter, Renderer2, NgZone, QueryList, ChangeDetectorRef, PipeTransform, ModuleWithProviders, TemplateRef, InjectionToken, Provider, 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';
@@ -2279,6 +2279,7 @@ declare class DialogSelectWithButtonsURLContent implements AfterViewInit, OnInit
2279
2279
  }[];
2280
2280
  constructor(_activeModal: NgbActiveModal, _account: AccountManagerService);
2281
2281
  ngOnInit(): void;
2282
+ private resolveRoutingPreference;
2282
2283
  ngAfterViewInit(): void;
2283
2284
  recursiveFindFirstElement(element: any): any;
2284
2285
  onSelectType(type: any): void;
@@ -2512,8 +2513,12 @@ interface DatatableModel {
2512
2513
  pageNum: number;
2513
2514
  sortColumn: string;
2514
2515
  sortOrder: 'asc' | 'desc' | string;
2515
- filters?: Record<string, unknown>;
2516
+ filters?: Record<string, any>;
2517
+ columnFilters?: Record<string, DatatableColumnFilter>;
2516
2518
  }
2519
+ type DatatableRowNavigationMode = 'sameTab' | 'newTab' | 'newWindow' | 'settingsOrAsk';
2520
+ type DatatableColumnFilterType = 'text' | 'number' | 'date' | 'boolean';
2521
+ type DatatableColumnFilterOperator = 'equals' | 'notEquals' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'gt' | 'gte' | 'lt' | 'lte' | 'between' | 'isEmpty' | 'isNotEmpty';
2517
2522
  type DatatablePipeName = 'number' | 'currency' | 'percent' | 'date' | 'uppercase' | 'lowercase' | 'titlecase' | 'json' | 'raw';
2518
2523
  type DatatableColumnAlign = 'left' | 'center' | 'right';
2519
2524
  type DatatableColumnTypes = 'text' | 'date' | 'datetime' | 'dateShort' | 'number' | 'currency' | 'percent' | 'boolean' | 'progress' | 'pre' | 'button' | 'buttons' | 'select' | 'input' | 'template';
@@ -2559,6 +2564,12 @@ interface DatatableProgressConfig {
2559
2564
  striped?: boolean;
2560
2565
  animated?: boolean;
2561
2566
  }
2567
+ interface DatatableColumnFilter {
2568
+ type: DatatableColumnFilterType;
2569
+ operator: DatatableColumnFilterOperator;
2570
+ value?: any;
2571
+ valueTo?: any;
2572
+ }
2562
2573
  interface DatatableColumn {
2563
2574
  name: string;
2564
2575
  data: string;
@@ -2602,10 +2613,19 @@ declare class DatatableCellTemplateDirective {
2602
2613
  static ɵdir: i0.ɵɵDirectiveDeclaration<DatatableCellTemplateDirective, "ng-template[dataTableCell]", never, { "key": { "alias": "dataTableCell"; "required": false; }; }, {}, never, never, false, never>;
2603
2614
  }
2604
2615
 
2616
+ interface DatatableDefaultConfig {
2617
+ rowNavigationMode?: DatatableRowNavigationMode;
2618
+ }
2619
+ declare const DATATABLE_DEFAULT_CONFIG: InjectionToken<DatatableDefaultConfig>;
2620
+ declare function provideDatatableDefaultConfig(config: DatatableDefaultConfig): Provider;
2621
+
2605
2622
  type DatatableCellMode = 'template' | 'buttons' | 'button' | 'select' | 'input' | 'progress' | 'boolean' | 'pre' | 'files' | 'text';
2606
2623
  declare class DatatableComponent extends BaseComponent implements OnChanges, AfterContentInit, OnDestroy {
2607
2624
  private _services;
2625
+ private _dialog;
2608
2626
  private locale;
2627
+ private datatableDefaultConfig;
2628
+ private datatableDefaultConfigLegacy;
2609
2629
  private jsonPipe;
2610
2630
  private upperCasePipe;
2611
2631
  private lowerCasePipe;
@@ -2619,12 +2639,15 @@ declare class DatatableComponent extends BaseComponent implements OnChanges, Aft
2619
2639
  entriesPerPageOptions: Array<number | string>;
2620
2640
  searchBarAutoSearch: boolean;
2621
2641
  searchDebounceMs: number;
2642
+ searchMinLength: number;
2643
+ searchDistinct: boolean;
2622
2644
  IronBatchAssign: boolean;
2623
2645
  tableFixed: boolean;
2624
2646
  headerFixed: boolean;
2625
2647
  stickyHeaders: boolean;
2626
2648
  users: any[];
2627
2649
  rowIdKey: string;
2650
+ rowNavigationMode: DatatableRowNavigationMode | string | null | undefined;
2628
2651
  returnIdUrls: string[];
2629
2652
  showSearch: boolean;
2630
2653
  showPaging: boolean;
@@ -2651,15 +2674,18 @@ declare class DatatableComponent extends BaseComponent implements OnChanges, Aft
2651
2674
  cellTemplateDirectives: QueryList<DatatableCellTemplateDirective>;
2652
2675
  cellTemplates: Map<string, TemplateRef<any>>;
2653
2676
  normalizedColumns: DatatableColumn[];
2677
+ displayData: any[];
2654
2678
  entriesPerPageSelectOptions: DatatableSelectOption[];
2655
2679
  private searchDebounceHandle;
2680
+ private lastAutoSearchValue;
2656
2681
  private templateChangesSubscription;
2657
- constructor(_services: ProviderService, locale: string, jsonPipe: JsonPipe, upperCasePipe: UpperCasePipe, lowerCasePipe: LowerCasePipe, titleCasePipe: TitleCasePipe);
2682
+ constructor(_services: ProviderService, _dialog: DialogService, locale: string, datatableDefaultConfig: DatatableDefaultConfig | null, datatableDefaultConfigLegacy: DatatableDefaultConfig | null, jsonPipe: JsonPipe, upperCasePipe: UpperCasePipe, lowerCasePipe: LowerCasePipe, titleCasePipe: TitleCasePipe);
2658
2683
  ngOnChanges(changes: SimpleChanges): void;
2659
2684
  ngAfterContentInit(): void;
2660
2685
  private applyLegacyVisibilityAliases;
2661
2686
  ngOnDestroy(): void;
2662
2687
  private initializeTableData;
2688
+ private refreshDisplayData;
2663
2689
  private refreshColumns;
2664
2690
  private refreshTemplateMap;
2665
2691
  private refreshEntriesPerPageOptions;
@@ -2668,15 +2694,57 @@ declare class DatatableComponent extends BaseComponent implements OnChanges, Aft
2668
2694
  private emitTableDataChange;
2669
2695
  changeTableData(): void;
2670
2696
  onSearchChange(): void;
2697
+ private getSearchValue;
2698
+ private normalizeSearchMinLength;
2671
2699
  onEntriesPerPageChange(value?: number | string | null): void;
2672
2700
  onPageChange(page?: number): void;
2673
2701
  sortColumn(column: DatatableColumn | string, subColName?: string): void;
2674
2702
  private getSortKey;
2675
2703
  isSortedColumn(column: DatatableColumn): boolean;
2676
2704
  getSortIcon(column: DatatableColumn): string;
2705
+ isFilterableColumn(column: DatatableColumn): boolean;
2706
+ hasColumnFilter(column: DatatableColumn): boolean;
2707
+ getColumnFilterSummary(column: DatatableColumn): string;
2708
+ getActiveColumnFilters(): Array<{
2709
+ key: string;
2710
+ columnName: string;
2711
+ summary: string;
2712
+ }>;
2713
+ getActiveColumnFilterCount(): number;
2714
+ onColumnFilterClick(column: DatatableColumn, event: Event): void;
2715
+ clearAllColumnFilters(event?: Event): void;
2716
+ private clearColumnFilterByKey;
2717
+ private applyColumnFilter;
2718
+ private buildColumnFilterDialogFields;
2719
+ private parseColumnFilterDialogResult;
2720
+ private parseInFilterValues;
2721
+ private parseFilterInputValue;
2722
+ private normalizeDateInput;
2723
+ private isFilterValueMissing;
2724
+ private getColumnFilterType;
2725
+ private getDefaultFilterOperator;
2726
+ private getColumnFilterDialogValueFieldType;
2727
+ private getColumnFilterKey;
2728
+ private getFilterOperatorOptions;
2729
+ private getFilterOperatorLabel;
2730
+ private getColumnFilterValueLabel;
2731
+ private normalizeColumnFilter;
2732
+ private applyColumnFilters;
2733
+ private getNormalizedActiveColumnFilters;
2734
+ private rowMatchesColumnFilter;
2735
+ private isEmptyValue;
2736
+ private matchTextFilter;
2737
+ private matchBooleanFilter;
2738
+ private matchComparableFilter;
2739
+ private toComparableValue;
2740
+ private toDateTimestamp;
2741
+ private toBoolean;
2677
2742
  getPageSize(): number;
2678
2743
  getRowId(item: any, idx: number): string | number;
2679
2744
  onCellClick(item: any, column: DatatableColumn, event?: Event, rowIndex?: number): void;
2745
+ private navigateToUrl;
2746
+ private resolveRowNavigationMode;
2747
+ private toNavigationMode;
2680
2748
  openFile(file_key: string): void;
2681
2749
  getCellValue(item: any, column: DatatableColumn): any;
2682
2750
  setCellValue(item: any, column: DatatableColumn, value: any): void;
@@ -2724,8 +2792,8 @@ declare class DatatableComponent extends BaseComponent implements OnChanges, Aft
2724
2792
  private emitAction;
2725
2793
  getSearchButtonLabel(): string;
2726
2794
  typeOf(data: any): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
2727
- static ɵfac: i0.ɵɵFactoryDeclaration<DatatableComponent, never>;
2728
- 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; }; "headerFixed": { "alias": "headerFixed"; "required": false; }; "stickyHeaders": { "alias": "stickyHeaders"; "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>;
2795
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatatableComponent, [null, null, null, { optional: true; }, { optional: true; }, null, null, null, null]>;
2796
+ 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; }; "searchMinLength": { "alias": "searchMinLength"; "required": false; }; "searchDistinct": { "alias": "searchDistinct"; "required": false; }; "IronBatchAssign": { "alias": "IronBatchAssign"; "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; }; "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>;
2729
2797
  }
2730
2798
 
2731
2799
  type RioPaginationEntry = number | 'ellipsis-left' | 'ellipsis-right';
@@ -3083,5 +3151,5 @@ declare const MongoExplorerModulePermission: ModulePermissionModel;
3083
3151
 
3084
3152
  declare const SuperAdminModulePermission: ModulePermissionModel;
3085
3153
 
3086
- 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, 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, rioDatePickerConfigFactory, round, s2ab, toDataURL, toTitleCase, type };
3087
- 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 };
3154
+ 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 };
3155
+ 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 };