@solcre-org/core-ui 2.12.2 → 2.12.4
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/fesm2022/solcre-org-core-ui.mjs +336 -9
- package/fesm2022/solcre-org-core-ui.mjs.map +1 -1
- package/index.d.ts +70 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1139,6 +1139,7 @@ declare class PaginationService {
|
|
|
1139
1139
|
private getState;
|
|
1140
1140
|
private emitPaginationChange;
|
|
1141
1141
|
destroy(tableId: string): void;
|
|
1142
|
+
getCurrentPaginationParams(tableId: string): Record<string, any>;
|
|
1142
1143
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PaginationService, never>;
|
|
1143
1144
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<PaginationService>;
|
|
1144
1145
|
}
|
|
@@ -1191,6 +1192,9 @@ declare class TableDataService<T extends DataBaseModelInterface & {
|
|
|
1191
1192
|
}, updateFunction?: (row: T) => T): void;
|
|
1192
1193
|
private applyFieldUpdates;
|
|
1193
1194
|
private setNestedProperty;
|
|
1195
|
+
getCurrentData(): T[];
|
|
1196
|
+
updateData(newData: T[]): void;
|
|
1197
|
+
loadDataWithParams(endpoint: string, modelFactory: (json: any) => T, params: Record<string, any>, loaderId?: string, customArrayKey?: string): void;
|
|
1194
1198
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableDataService<any>, never>;
|
|
1195
1199
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<TableDataService<any>>;
|
|
1196
1200
|
}
|
|
@@ -1546,6 +1550,8 @@ interface ColumnConfig<T> {
|
|
|
1546
1550
|
label: string;
|
|
1547
1551
|
format?: (value: any, row: T) => string;
|
|
1548
1552
|
sortable?: boolean;
|
|
1553
|
+
sortKey?: string;
|
|
1554
|
+
sortFunction?: (a: any, b: any) => number;
|
|
1549
1555
|
align?: string;
|
|
1550
1556
|
template?: TemplateRef<{
|
|
1551
1557
|
$implicit: T;
|
|
@@ -1619,6 +1625,30 @@ interface RowStyleConfig<T extends DataBaseModelInterface> {
|
|
|
1619
1625
|
priority?: number;
|
|
1620
1626
|
}
|
|
1621
1627
|
|
|
1628
|
+
declare enum SortDirection {
|
|
1629
|
+
ASC = "asc",
|
|
1630
|
+
DESC = "desc"
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
interface SortConfig {
|
|
1634
|
+
key: string;
|
|
1635
|
+
direction: SortDirection;
|
|
1636
|
+
priority?: number;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
declare enum SortMode {
|
|
1640
|
+
MEMORY = "memory",
|
|
1641
|
+
SERVER = "server"
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
interface TableSortConfig {
|
|
1645
|
+
mode: SortMode;
|
|
1646
|
+
multiColumn?: boolean;
|
|
1647
|
+
serverSortParam?: string;
|
|
1648
|
+
customSortFunction?: (a: any, b: any, sortConfigs: SortConfig[]) => number;
|
|
1649
|
+
defaultSort?: SortConfig[];
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1622
1652
|
declare class TableActionService<T extends DataBaseModelInterface & {
|
|
1623
1653
|
[key: string]: any;
|
|
1624
1654
|
}> {
|
|
@@ -1654,6 +1684,30 @@ declare class TableActionService<T extends DataBaseModelInterface & {
|
|
|
1654
1684
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<TableActionService<any>>;
|
|
1655
1685
|
}
|
|
1656
1686
|
|
|
1687
|
+
declare class TableSortService {
|
|
1688
|
+
private sortConfigsSubject;
|
|
1689
|
+
private tableSortConfig;
|
|
1690
|
+
sortConfigs$: Observable<SortConfig[]>;
|
|
1691
|
+
configure(config: TableSortConfig): void;
|
|
1692
|
+
getTableSortConfig(): TableSortConfig;
|
|
1693
|
+
getCurrentSortConfigs(): SortConfig[];
|
|
1694
|
+
isColumnSortable<T extends DataBaseModelInterface>(column: ColumnConfig<T>, row: T | null, disabledConfigs?: ColumnDisabledConfig<T>[]): boolean;
|
|
1695
|
+
toggleSort(columnKey: string): void;
|
|
1696
|
+
setSortConfigs(sortConfigs: SortConfig[]): void;
|
|
1697
|
+
clearSort(): void;
|
|
1698
|
+
getColumnSortState(columnKey: string): SortDirection | null;
|
|
1699
|
+
getColumnSortPriority(columnKey: string): number | null;
|
|
1700
|
+
sortDataInMemory<T>(data: T[], columns: ColumnConfig<T>[]): T[];
|
|
1701
|
+
generateServerSortParams(): Record<string, any>;
|
|
1702
|
+
isServerMode(): boolean;
|
|
1703
|
+
isMultiColumnEnabled(): boolean;
|
|
1704
|
+
private getNestedValue;
|
|
1705
|
+
private compareValues;
|
|
1706
|
+
reset(): void;
|
|
1707
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableSortService, never>;
|
|
1708
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<TableSortService>;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1657
1711
|
declare class PermissionModel implements DataBaseModelInterface {
|
|
1658
1712
|
id?: string | undefined;
|
|
1659
1713
|
name?: string | undefined;
|
|
@@ -1937,11 +1991,13 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
1937
1991
|
private dropdownService;
|
|
1938
1992
|
private headerService;
|
|
1939
1993
|
inlineEditService: InlineEditService<T>;
|
|
1994
|
+
tableSortService: TableSortService;
|
|
1940
1995
|
private activeFiltersEventService;
|
|
1941
1996
|
TableAction: typeof TableAction;
|
|
1942
1997
|
ModalMode: typeof ModalMode;
|
|
1943
1998
|
ButtonType: typeof ButtonType;
|
|
1944
1999
|
FieldType: typeof FieldType;
|
|
2000
|
+
SortDirection: typeof SortDirection;
|
|
1945
2001
|
tableId: string;
|
|
1946
2002
|
columns: _angular_core.InputSignal<ColumnConfig<T>[]>;
|
|
1947
2003
|
modalFields: _angular_core.InputSignal<ModalFieldConfig<T>[]>;
|
|
@@ -1974,6 +2030,7 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
1974
2030
|
headerOrder: _angular_core.InputSignal<HeaderOrderConfig | undefined>;
|
|
1975
2031
|
showActiveFilters: _angular_core.InputSignal<boolean>;
|
|
1976
2032
|
activeFiltersConfig: _angular_core.InputSignal<ActiveFiltersConfig>;
|
|
2033
|
+
sortConfig: _angular_core.InputSignal<TableSortConfig | undefined>;
|
|
1977
2034
|
customEdit: _angular_core.InputSignal<((item: T) => void) | undefined>;
|
|
1978
2035
|
customDelete: _angular_core.InputSignal<((item: T) => void) | undefined>;
|
|
1979
2036
|
customView: _angular_core.InputSignal<((item: T) => void) | undefined>;
|
|
@@ -2127,6 +2184,16 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
2127
2184
|
private handleFilterDependencies;
|
|
2128
2185
|
private handleFiltersCleared;
|
|
2129
2186
|
private updateHeaderService;
|
|
2187
|
+
onColumnHeaderClick(column: ColumnConfig<T>): void;
|
|
2188
|
+
isColumnSortable(column: ColumnConfig<T>): boolean;
|
|
2189
|
+
getColumnSortState(column: ColumnConfig<T>): SortDirection | null;
|
|
2190
|
+
getColumnSortPriority(column: ColumnConfig<T>): number | null;
|
|
2191
|
+
isMultiColumnSortEnabled(): boolean;
|
|
2192
|
+
getSortButtonTitle(column: ColumnConfig<T>): string;
|
|
2193
|
+
private handleSortChange;
|
|
2194
|
+
private applySortingInMemory;
|
|
2195
|
+
private reloadDataWithCurrentParams;
|
|
2196
|
+
private getFilterParams;
|
|
2130
2197
|
ngOnDestroy(): void;
|
|
2131
2198
|
ngAfterViewInit(): void;
|
|
2132
2199
|
setupInfiniteScroll(): void;
|
|
@@ -2162,7 +2229,7 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
2162
2229
|
[key: string]: any;
|
|
2163
2230
|
}, updateFunction?: (row: T) => T): void;
|
|
2164
2231
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericTableComponent<any>, never>;
|
|
2165
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericTableComponent<any>, "core-generic-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "modalFields": { "alias": "modalFields"; "required": false; "isSignal": true; }; "modalTabs": { "alias": "modalTabs"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": true; "isSignal": true; }; "customActions": { "alias": "customActions"; "required": false; "isSignal": true; }; "globalActions": { "alias": "globalActions"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "showFilter": { "alias": "showFilter"; "required": false; "isSignal": true; }; "showSelection": { "alias": "showSelection"; "required": false; "isSignal": true; }; "showActions": { "alias": "showActions"; "required": false; "isSignal": true; }; "showCreateButton": { "alias": "showCreateButton"; "required": false; "isSignal": true; }; "filterButtonConfig": { "alias": "filterButtonConfig"; "required": false; "isSignal": true; }; "createButtonConfig": { "alias": "createButtonConfig"; "required": false; "isSignal": true; }; "dataInput": { "alias": "dataInput"; "required": false; "isSignal": true; }; "customFilters": { "alias": "customFilters"; "required": false; "isSignal": true; }; "enablePagination": { "alias": "enablePagination"; "required": false; "isSignal": true; }; "modelFactory": { "alias": "modelFactory"; "required": false; "isSignal": true; }; "endpoint": { "alias": "endpoint"; "required": false; "isSignal": true; }; "customParams": { "alias": "customParams"; "required": false; "isSignal": true; }; "customArrayKey": { "alias": "customArrayKey"; "required": false; "isSignal": true; }; "listTitle": { "alias": "listTitle"; "required": false; "isSignal": true; }; "moreData": { "alias": "moreData"; "required": false; "isSignal": true; }; "inModal": { "alias": "inModal"; "required": false; "isSignal": true; }; "expansionConfig": { "alias": "expansionConfig"; "required": false; "isSignal": true; }; "fileUploadConfig": { "alias": "fileUploadConfig"; "required": false; "isSignal": true; }; "rowStyleConfigs": { "alias": "rowStyleConfigs"; "required": false; "isSignal": true; }; "columnDisabledConfigs": { "alias": "columnDisabledConfigs"; "required": false; "isSignal": true; }; "rowVisibilityConfigs": { "alias": "rowVisibilityConfigs"; "required": false; "isSignal": true; }; "headerOrder": { "alias": "headerOrder"; "required": false; "isSignal": true; }; "showActiveFilters": { "alias": "showActiveFilters"; "required": false; "isSignal": true; }; "activeFiltersConfig": { "alias": "activeFiltersConfig"; "required": false; "isSignal": true; }; "customEdit": { "alias": "customEdit"; "required": false; "isSignal": true; }; "customDelete": { "alias": "customDelete"; "required": false; "isSignal": true; }; "customView": { "alias": "customView"; "required": false; "isSignal": true; }; "customSave": { "alias": "customSave"; "required": false; "isSignal": true; }; "useCustomSave": { "alias": "useCustomSave"; "required": false; "isSignal": true; }; "onApiError": { "alias": "onApiError"; "required": false; "isSignal": true; }; "inlineEditConfig": { "alias": "inlineEditConfig"; "required": false; "isSignal": true; }; }, { "actionTriggered": "actionTriggered"; "selectionChanged": "selectionChanged"; "dataCreated": "dataCreated"; "dataUpdated": "dataUpdated"; "dataDeleted": "dataDeleted"; "dataFetched": "dataFetched"; "onMoreDataLoaded": "onMoreDataLoaded"; "globalActionTriggered": "globalActionTriggered"; "modalData": "modalData"; "beforeSave": "beforeSave"; "onFilterChange": "onFilterChange"; "onClearFilters": "onClearFilters"; "activeFilterRemoved": "activeFilterRemoved"; "activeFiltersCleared": "activeFiltersCleared"; "inlineEditSave": "inlineEditSave"; "inlineEditModeChanged": "inlineEditModeChanged"; "inlineEditValidationError": "inlineEditValidationError"; }, never, never, true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
2232
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericTableComponent<any>, "core-generic-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "modalFields": { "alias": "modalFields"; "required": false; "isSignal": true; }; "modalTabs": { "alias": "modalTabs"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": true; "isSignal": true; }; "customActions": { "alias": "customActions"; "required": false; "isSignal": true; }; "globalActions": { "alias": "globalActions"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "showFilter": { "alias": "showFilter"; "required": false; "isSignal": true; }; "showSelection": { "alias": "showSelection"; "required": false; "isSignal": true; }; "showActions": { "alias": "showActions"; "required": false; "isSignal": true; }; "showCreateButton": { "alias": "showCreateButton"; "required": false; "isSignal": true; }; "filterButtonConfig": { "alias": "filterButtonConfig"; "required": false; "isSignal": true; }; "createButtonConfig": { "alias": "createButtonConfig"; "required": false; "isSignal": true; }; "dataInput": { "alias": "dataInput"; "required": false; "isSignal": true; }; "customFilters": { "alias": "customFilters"; "required": false; "isSignal": true; }; "enablePagination": { "alias": "enablePagination"; "required": false; "isSignal": true; }; "modelFactory": { "alias": "modelFactory"; "required": false; "isSignal": true; }; "endpoint": { "alias": "endpoint"; "required": false; "isSignal": true; }; "customParams": { "alias": "customParams"; "required": false; "isSignal": true; }; "customArrayKey": { "alias": "customArrayKey"; "required": false; "isSignal": true; }; "listTitle": { "alias": "listTitle"; "required": false; "isSignal": true; }; "moreData": { "alias": "moreData"; "required": false; "isSignal": true; }; "inModal": { "alias": "inModal"; "required": false; "isSignal": true; }; "expansionConfig": { "alias": "expansionConfig"; "required": false; "isSignal": true; }; "fileUploadConfig": { "alias": "fileUploadConfig"; "required": false; "isSignal": true; }; "rowStyleConfigs": { "alias": "rowStyleConfigs"; "required": false; "isSignal": true; }; "columnDisabledConfigs": { "alias": "columnDisabledConfigs"; "required": false; "isSignal": true; }; "rowVisibilityConfigs": { "alias": "rowVisibilityConfigs"; "required": false; "isSignal": true; }; "headerOrder": { "alias": "headerOrder"; "required": false; "isSignal": true; }; "showActiveFilters": { "alias": "showActiveFilters"; "required": false; "isSignal": true; }; "activeFiltersConfig": { "alias": "activeFiltersConfig"; "required": false; "isSignal": true; }; "sortConfig": { "alias": "sortConfig"; "required": false; "isSignal": true; }; "customEdit": { "alias": "customEdit"; "required": false; "isSignal": true; }; "customDelete": { "alias": "customDelete"; "required": false; "isSignal": true; }; "customView": { "alias": "customView"; "required": false; "isSignal": true; }; "customSave": { "alias": "customSave"; "required": false; "isSignal": true; }; "useCustomSave": { "alias": "useCustomSave"; "required": false; "isSignal": true; }; "onApiError": { "alias": "onApiError"; "required": false; "isSignal": true; }; "inlineEditConfig": { "alias": "inlineEditConfig"; "required": false; "isSignal": true; }; }, { "actionTriggered": "actionTriggered"; "selectionChanged": "selectionChanged"; "dataCreated": "dataCreated"; "dataUpdated": "dataUpdated"; "dataDeleted": "dataDeleted"; "dataFetched": "dataFetched"; "onMoreDataLoaded": "onMoreDataLoaded"; "globalActionTriggered": "globalActionTriggered"; "modalData": "modalData"; "beforeSave": "beforeSave"; "onFilterChange": "onFilterChange"; "onClearFilters": "onClearFilters"; "activeFilterRemoved": "activeFilterRemoved"; "activeFiltersCleared": "activeFiltersCleared"; "inlineEditSave": "inlineEditSave"; "inlineEditModeChanged": "inlineEditModeChanged"; "inlineEditValidationError": "inlineEditValidationError"; }, never, never, true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
2166
2233
|
}
|
|
2167
2234
|
|
|
2168
2235
|
declare enum AlertType {
|
|
@@ -3920,5 +3987,5 @@ declare const VERSION: {
|
|
|
3920
3987
|
buildDate: string;
|
|
3921
3988
|
};
|
|
3922
3989
|
|
|
3923
|
-
export { ActiveFiltersComponent, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, CacheBustingInterceptor, CardComponent, CarouselComponent, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, DataListComponent, DataListItemComponent, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, GenericButtonComponent, GenericDocumentationComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericStepsComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MainNavComponent, MainNavService, ModalMode, ModelApiService, MultiEntryFieldComponent, MultiEntryOutputFormat, NumberFieldComponent, NumberFieldConfigType, NumberFieldType, NumberRange, PERMISSION_ACTIONS_PROVIDER, PERMISSION_PROVIDER, PERMISSION_RESOURCES_PROVIDER, PaginationService, PasswordFieldComponent, PermissionEnumsService, PermissionModel, PermissionService, PermissionWrapperService, PermissionsActions, PermissionsInterceptor, PermissionsResources, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, ResetPasswordModel, RoleModel, SelectFieldComponent, ServerSelectFieldComponent, ServerSelectService, SidebarCustomModalComponent, SidebarCustomModalService, SidebarHeight, SidebarMobileModalService, SidebarMobileType, SidebarPosition, SidebarService, SidebarState, SidebarTemplateRegistryService, SidebarVisibility, SidebarWidth, SmartFieldComponent, StepSize, StepStatus, StepType, StepsService, SwitchFieldComponent, TableAction, TableActionService, TableDataService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UsersModel, VERSION, equalToValidator, isSameDate, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader };
|
|
3924
|
-
export type { ActiveFilterItem, ActiveFiltersConfig, AdditionalPermissionResources, AddressModel, Alert, ApiConfig, ApiResponse, BottomNavItem, ButtonActionEvent, ButtonConfig, CarouselConfig, CarouselImage, CheckboxFieldConfig, CheckboxModalFieldConfig, CheckboxOption, ColumnConfig, ColumnDisabledConfig, CompanyInfo, ConfirmUploadRequest, ConfirmationDialogConfig, CustomAction, DataListItem, DateFieldConfig, DateModalFieldConfig, DocumentActionEvent, DocumentConfig, DocumentItem, ExpansionConfig, ExtendedModalFieldConfig, ExtendedPermissionProvider, FileFieldConfig, FileUploadConfig, FilterConfig, FilterParams, GenericTab, GenericTabClickEvent, GenericTabConfig, GlobalAction, HeaderActionConfig, HeaderConfig, HeaderElementConfig, HeaderOrderConfig, ImageModalData, InlineEditConfig, LayoutConfig, LayoutDataAttributes, LogoImagesConfig, ModalButtonConfig, ModalFieldConfig, ModalTabConfig, ModalValidationResult, MoreDataConfig, MultiEntryFieldConfig, MultiEntryFieldValue, NavConfig, NavItem, NumberFieldConfig, NumberModalFieldConfig, PaginatedResponse, PaginationEvent, PermissionActionsProvider, PermissionProvider, PermissionResourcesProvider, PresignedDownloadUrlResponse, PresignedUrlRequest, PresignedUrlResponse, PreviewFileUrl, RatingConfig, RatingStar, RatingSubmitEvent, RowStyleConfig, RowVisibilityConfig, SearchResponse, SelectServerSideConfig, SidebarBackButton, SidebarComponentConfig, SidebarComponentEvents, SidebarConfig, SidebarCustomModalConfig, SidebarItem, SidebarResponsiveConfig, SidebarSubItem, SidebarTemplateContext, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, TableActionConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimelineConfig, TimelineItem };
|
|
3990
|
+
export { ActiveFiltersComponent, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, CacheBustingInterceptor, CardComponent, CarouselComponent, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, DataListComponent, DataListItemComponent, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, GenericButtonComponent, GenericDocumentationComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericStepsComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MainNavComponent, MainNavService, ModalMode, ModelApiService, MultiEntryFieldComponent, MultiEntryOutputFormat, NumberFieldComponent, NumberFieldConfigType, NumberFieldType, NumberRange, PERMISSION_ACTIONS_PROVIDER, PERMISSION_PROVIDER, PERMISSION_RESOURCES_PROVIDER, PaginationService, PasswordFieldComponent, PermissionEnumsService, PermissionModel, PermissionService, PermissionWrapperService, PermissionsActions, PermissionsInterceptor, PermissionsResources, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, ResetPasswordModel, RoleModel, SelectFieldComponent, ServerSelectFieldComponent, ServerSelectService, SidebarCustomModalComponent, SidebarCustomModalService, SidebarHeight, SidebarMobileModalService, SidebarMobileType, SidebarPosition, SidebarService, SidebarState, SidebarTemplateRegistryService, SidebarVisibility, SidebarWidth, SmartFieldComponent, SortDirection, SortMode, StepSize, StepStatus, StepType, StepsService, SwitchFieldComponent, TableAction, TableActionService, TableDataService, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UsersModel, VERSION, equalToValidator, isSameDate, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader };
|
|
3991
|
+
export type { ActiveFilterItem, ActiveFiltersConfig, AdditionalPermissionResources, AddressModel, Alert, ApiConfig, ApiResponse, BottomNavItem, ButtonActionEvent, ButtonConfig, CarouselConfig, CarouselImage, CheckboxFieldConfig, CheckboxModalFieldConfig, CheckboxOption, ColumnConfig, ColumnDisabledConfig, CompanyInfo, ConfirmUploadRequest, ConfirmationDialogConfig, CustomAction, DataListItem, DateFieldConfig, DateModalFieldConfig, DocumentActionEvent, DocumentConfig, DocumentItem, ExpansionConfig, ExtendedModalFieldConfig, ExtendedPermissionProvider, FileFieldConfig, FileUploadConfig, FilterConfig, FilterParams, GenericTab, GenericTabClickEvent, GenericTabConfig, GlobalAction, HeaderActionConfig, HeaderConfig, HeaderElementConfig, HeaderOrderConfig, ImageModalData, InlineEditConfig, LayoutConfig, LayoutDataAttributes, LogoImagesConfig, ModalButtonConfig, ModalFieldConfig, ModalTabConfig, ModalValidationResult, MoreDataConfig, MultiEntryFieldConfig, MultiEntryFieldValue, NavConfig, NavItem, NumberFieldConfig, NumberModalFieldConfig, PaginatedResponse, PaginationEvent, PermissionActionsProvider, PermissionProvider, PermissionResourcesProvider, PresignedDownloadUrlResponse, PresignedUrlRequest, PresignedUrlResponse, PreviewFileUrl, RatingConfig, RatingStar, RatingSubmitEvent, RowStyleConfig, RowVisibilityConfig, SearchResponse, SelectServerSideConfig, SidebarBackButton, SidebarComponentConfig, SidebarComponentEvents, SidebarConfig, SidebarCustomModalConfig, SidebarItem, SidebarResponsiveConfig, SidebarSubItem, SidebarTemplateContext, SortConfig, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, TableActionConfig, TableSortConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimelineConfig, TimelineItem };
|