@resolveio/client-lib-core 21.5.29 → 21.5.31
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
|
@@ -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,
|
|
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,20 @@ 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';
|
|
2623
|
+
type DatatableHeaderMenuStep = 'root' | 'sort';
|
|
2606
2624
|
declare class DatatableComponent extends BaseComponent implements OnChanges, AfterContentInit, OnDestroy {
|
|
2607
2625
|
private _services;
|
|
2626
|
+
private _dialog;
|
|
2608
2627
|
private locale;
|
|
2628
|
+
private datatableDefaultConfig;
|
|
2629
|
+
private datatableDefaultConfigLegacy;
|
|
2609
2630
|
private jsonPipe;
|
|
2610
2631
|
private upperCasePipe;
|
|
2611
2632
|
private lowerCasePipe;
|
|
@@ -2619,12 +2640,15 @@ declare class DatatableComponent extends BaseComponent implements OnChanges, Aft
|
|
|
2619
2640
|
entriesPerPageOptions: Array<number | string>;
|
|
2620
2641
|
searchBarAutoSearch: boolean;
|
|
2621
2642
|
searchDebounceMs: number;
|
|
2643
|
+
searchMinLength: number;
|
|
2644
|
+
searchDistinct: boolean;
|
|
2622
2645
|
IronBatchAssign: boolean;
|
|
2623
2646
|
tableFixed: boolean;
|
|
2624
2647
|
headerFixed: boolean;
|
|
2625
2648
|
stickyHeaders: boolean;
|
|
2626
2649
|
users: any[];
|
|
2627
2650
|
rowIdKey: string;
|
|
2651
|
+
rowNavigationMode: DatatableRowNavigationMode | string | null | undefined;
|
|
2628
2652
|
returnIdUrls: string[];
|
|
2629
2653
|
showSearch: boolean;
|
|
2630
2654
|
showPaging: boolean;
|
|
@@ -2651,32 +2675,94 @@ declare class DatatableComponent extends BaseComponent implements OnChanges, Aft
|
|
|
2651
2675
|
cellTemplateDirectives: QueryList<DatatableCellTemplateDirective>;
|
|
2652
2676
|
cellTemplates: Map<string, TemplateRef<any>>;
|
|
2653
2677
|
normalizedColumns: DatatableColumn[];
|
|
2678
|
+
displayData: any[];
|
|
2654
2679
|
entriesPerPageSelectOptions: DatatableSelectOption[];
|
|
2680
|
+
activeHeaderMenuKey: string | null;
|
|
2681
|
+
headerMenuStep: DatatableHeaderMenuStep;
|
|
2655
2682
|
private searchDebounceHandle;
|
|
2683
|
+
private lastAutoSearchValue;
|
|
2656
2684
|
private templateChangesSubscription;
|
|
2657
|
-
constructor(_services: ProviderService, locale: string, jsonPipe: JsonPipe, upperCasePipe: UpperCasePipe, lowerCasePipe: LowerCasePipe, titleCasePipe: TitleCasePipe);
|
|
2685
|
+
constructor(_services: ProviderService, _dialog: DialogService, locale: string, datatableDefaultConfig: DatatableDefaultConfig | null, datatableDefaultConfigLegacy: DatatableDefaultConfig | null, jsonPipe: JsonPipe, upperCasePipe: UpperCasePipe, lowerCasePipe: LowerCasePipe, titleCasePipe: TitleCasePipe);
|
|
2658
2686
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2659
2687
|
ngAfterContentInit(): void;
|
|
2660
2688
|
private applyLegacyVisibilityAliases;
|
|
2661
2689
|
ngOnDestroy(): void;
|
|
2662
2690
|
private initializeTableData;
|
|
2691
|
+
private refreshDisplayData;
|
|
2663
2692
|
private refreshColumns;
|
|
2664
2693
|
private refreshTemplateMap;
|
|
2665
2694
|
private refreshEntriesPerPageOptions;
|
|
2666
2695
|
private normalizeEntriesPerPage;
|
|
2667
2696
|
private normalizePageNum;
|
|
2668
2697
|
private emitTableDataChange;
|
|
2698
|
+
private sanitizeColumnFiltersState;
|
|
2699
|
+
private isObjectMap;
|
|
2669
2700
|
changeTableData(): void;
|
|
2701
|
+
onSearchSubmit(): void;
|
|
2670
2702
|
onSearchChange(): void;
|
|
2703
|
+
private getSearchValue;
|
|
2704
|
+
private normalizeSearchMinLength;
|
|
2671
2705
|
onEntriesPerPageChange(value?: number | string | null): void;
|
|
2672
2706
|
onPageChange(page?: number): void;
|
|
2673
2707
|
sortColumn(column: DatatableColumn | string, subColName?: string): void;
|
|
2708
|
+
sortColumnWithOrder(column: DatatableColumn | string, sortOrder: 'asc' | 'desc', subColName?: string): void;
|
|
2709
|
+
hasHeaderMenuActions(column: DatatableColumn): boolean;
|
|
2710
|
+
isHeaderMenuOpen(column: DatatableColumn): boolean;
|
|
2711
|
+
onHeaderClick(column: DatatableColumn, event: Event): void;
|
|
2712
|
+
showSortMenu(event: Event): void;
|
|
2713
|
+
showRootHeaderMenu(event: Event): void;
|
|
2714
|
+
sortFromHeaderMenu(column: DatatableColumn, sortOrder: 'asc' | 'desc', event: Event): void;
|
|
2715
|
+
openFilterFromHeaderMenu(column: DatatableColumn, event: Event): void;
|
|
2716
|
+
closeHeaderMenu(): void;
|
|
2717
|
+
onDocumentClick(event: MouseEvent): void;
|
|
2718
|
+
onDocumentEscape(): void;
|
|
2674
2719
|
private getSortKey;
|
|
2675
2720
|
isSortedColumn(column: DatatableColumn): boolean;
|
|
2676
2721
|
getSortIcon(column: DatatableColumn): string;
|
|
2722
|
+
isFilterableColumn(column: DatatableColumn): boolean;
|
|
2723
|
+
hasColumnFilter(column: DatatableColumn): boolean;
|
|
2724
|
+
getColumnFilterSummary(column: DatatableColumn): string;
|
|
2725
|
+
getActiveColumnFilters(): Array<{
|
|
2726
|
+
key: string;
|
|
2727
|
+
columnName: string;
|
|
2728
|
+
summary: string;
|
|
2729
|
+
}>;
|
|
2730
|
+
getActiveColumnFilterCount(): number;
|
|
2731
|
+
onColumnFilterClick(column: DatatableColumn, event?: Event): void;
|
|
2732
|
+
private openColumnFilterDialog;
|
|
2733
|
+
clearAllColumnFilters(event?: Event): void;
|
|
2734
|
+
private clearColumnFilterByKey;
|
|
2735
|
+
private applyColumnFilter;
|
|
2736
|
+
private buildColumnFilterDialogFields;
|
|
2737
|
+
private parseColumnFilterDialogResult;
|
|
2738
|
+
private parseInFilterValues;
|
|
2739
|
+
private parseFilterInputValue;
|
|
2740
|
+
private normalizeDateInput;
|
|
2741
|
+
private isFilterValueMissing;
|
|
2742
|
+
private getColumnFilterType;
|
|
2743
|
+
private getDefaultFilterOperator;
|
|
2744
|
+
private getColumnFilterDialogValueFieldType;
|
|
2745
|
+
private getColumnFilterKey;
|
|
2746
|
+
private getFilterOperatorOptions;
|
|
2747
|
+
private getFilterOperatorLabel;
|
|
2748
|
+
private getColumnFilterValueLabel;
|
|
2749
|
+
private normalizeColumnFilter;
|
|
2750
|
+
private applyColumnFilters;
|
|
2751
|
+
private getNormalizedActiveColumnFilters;
|
|
2752
|
+
private rowMatchesColumnFilter;
|
|
2753
|
+
private isEmptyValue;
|
|
2754
|
+
private matchTextFilter;
|
|
2755
|
+
private matchBooleanFilter;
|
|
2756
|
+
private matchComparableFilter;
|
|
2757
|
+
private toComparableValue;
|
|
2758
|
+
private toDateTimestamp;
|
|
2759
|
+
private toBoolean;
|
|
2677
2760
|
getPageSize(): number;
|
|
2678
2761
|
getRowId(item: any, idx: number): string | number;
|
|
2679
2762
|
onCellClick(item: any, column: DatatableColumn, event?: Event, rowIndex?: number): void;
|
|
2763
|
+
private navigateToUrl;
|
|
2764
|
+
private resolveRowNavigationMode;
|
|
2765
|
+
private toNavigationMode;
|
|
2680
2766
|
openFile(file_key: string): void;
|
|
2681
2767
|
getCellValue(item: any, column: DatatableColumn): any;
|
|
2682
2768
|
setCellValue(item: any, column: DatatableColumn, value: any): void;
|
|
@@ -2724,8 +2810,8 @@ declare class DatatableComponent extends BaseComponent implements OnChanges, Aft
|
|
|
2724
2810
|
private emitAction;
|
|
2725
2811
|
getSearchButtonLabel(): string;
|
|
2726
2812
|
typeOf(data: any): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
|
|
2727
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DatatableComponent,
|
|
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>;
|
|
2813
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DatatableComponent, [null, null, null, { optional: true; }, { optional: true; }, null, null, null, null]>;
|
|
2814
|
+
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
2815
|
}
|
|
2730
2816
|
|
|
2731
2817
|
type RioPaginationEntry = number | 'ellipsis-left' | 'ellipsis-right';
|
|
@@ -3083,5 +3169,5 @@ declare const MongoExplorerModulePermission: ModulePermissionModel;
|
|
|
3083
3169
|
|
|
3084
3170
|
declare const SuperAdminModulePermission: ModulePermissionModel;
|
|
3085
3171
|
|
|
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 };
|
|
3172
|
+
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 };
|
|
3173
|
+
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 };
|