@solcre-org/core-ui 2.12.27 → 2.12.29
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/assets/css/inc/components/gallery.css +326 -0
- package/assets/css/main.css +1 -1
- package/assets/i18n/en/common.json +10 -4
- package/assets/i18n/es/common.json +3 -1
- package/fesm2022/solcre-org-core-ui.mjs +549 -8
- package/fesm2022/solcre-org-core-ui.mjs.map +1 -1
- package/index.d.ts +198 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1994,6 +1994,35 @@ declare class InlineEditService<T extends DataBaseModelInterface & {
|
|
|
1994
1994
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<InlineEditService<any>>;
|
|
1995
1995
|
}
|
|
1996
1996
|
|
|
1997
|
+
interface ManualRefreshConfig {
|
|
1998
|
+
id?: string;
|
|
1999
|
+
showLastUpdate?: boolean;
|
|
2000
|
+
dateFormat?: Intl.DateTimeFormatOptions;
|
|
2001
|
+
lastUpdateLabel?: string;
|
|
2002
|
+
customDateFormatter?: (date: Date) => string;
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
declare class CoreManualRefreshComponent implements OnInit, OnDestroy {
|
|
2006
|
+
config: _angular_core.InputSignal<ManualRefreshConfig>;
|
|
2007
|
+
refreshId: _angular_core.InputSignal<string | undefined>;
|
|
2008
|
+
onRefresh: _angular_core.OutputEmitterRef<string>;
|
|
2009
|
+
timestampUpdated: _angular_core.OutputEmitterRef<string>;
|
|
2010
|
+
private manualRefreshService;
|
|
2011
|
+
private effectRef?;
|
|
2012
|
+
computedRefreshId: _angular_core.Signal<string>;
|
|
2013
|
+
ariaLabel: _angular_core.Signal<string>;
|
|
2014
|
+
lastUpdateLabel: _angular_core.Signal<string>;
|
|
2015
|
+
lastUpdateTimeString: _angular_core.Signal<string | null>;
|
|
2016
|
+
constructor();
|
|
2017
|
+
ngOnInit(): void;
|
|
2018
|
+
ngOnDestroy(): void;
|
|
2019
|
+
onRefreshClick(): void;
|
|
2020
|
+
updateTimestamp(date?: Date): void;
|
|
2021
|
+
getLastUpdateTime(): string | null;
|
|
2022
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreManualRefreshComponent, never>;
|
|
2023
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CoreManualRefreshComponent, "core-manual-refresh", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "refreshId": { "alias": "refreshId"; "required": false; "isSignal": true; }; }, { "onRefresh": "onRefresh"; "timestampUpdated": "timestampUpdated"; }, never, never, true, never>;
|
|
2024
|
+
}
|
|
2025
|
+
|
|
1997
2026
|
declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
1998
2027
|
[key: string]: any;
|
|
1999
2028
|
}> implements OnInit, OnDestroy, AfterViewInit {
|
|
@@ -2049,6 +2078,9 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
2049
2078
|
showActiveFilters: _angular_core.InputSignal<boolean>;
|
|
2050
2079
|
activeFiltersConfig: _angular_core.InputSignal<ActiveFiltersConfig>;
|
|
2051
2080
|
sortConfig: _angular_core.InputSignal<TableSortConfig | undefined>;
|
|
2081
|
+
showManualRefresh: _angular_core.InputSignal<boolean>;
|
|
2082
|
+
manualRefreshConfig: _angular_core.InputSignal<Partial<ManualRefreshConfig> | undefined>;
|
|
2083
|
+
refreshButtonConfig: _angular_core.InputSignal<Partial<ButtonConfig> | undefined>;
|
|
2052
2084
|
customEdit: _angular_core.InputSignal<((item: T) => void) | undefined>;
|
|
2053
2085
|
customDelete: _angular_core.InputSignal<((item: T) => void) | undefined>;
|
|
2054
2086
|
customView: _angular_core.InputSignal<((item: T) => void) | undefined>;
|
|
@@ -2078,6 +2110,7 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
2078
2110
|
onClearFilters: _angular_core.OutputEmitterRef<void>;
|
|
2079
2111
|
activeFilterRemoved: _angular_core.OutputEmitterRef<ActiveFilterItem>;
|
|
2080
2112
|
activeFiltersCleared: _angular_core.OutputEmitterRef<void>;
|
|
2113
|
+
dataRefreshed: _angular_core.OutputEmitterRef<void>;
|
|
2081
2114
|
hasTabs: _angular_core.Signal<boolean>;
|
|
2082
2115
|
allModalFields: _angular_core.Signal<ModalFieldConfig<T>[]>;
|
|
2083
2116
|
displayedColumns: _angular_core.Signal<string[]>;
|
|
@@ -2104,6 +2137,7 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
2104
2137
|
sentinel: ElementRef;
|
|
2105
2138
|
dropdownTrigger?: ElementRef;
|
|
2106
2139
|
dropdown?: DropdownComponent<T>;
|
|
2140
|
+
manualRefreshComponent?: CoreManualRefreshComponent;
|
|
2107
2141
|
private observer;
|
|
2108
2142
|
private subscriptions;
|
|
2109
2143
|
private isInitialized;
|
|
@@ -2236,8 +2270,11 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
2236
2270
|
updateRowData(rowId: string | number, updatedFields: {
|
|
2237
2271
|
[key: string]: any;
|
|
2238
2272
|
}, updateFunction?: (row: T) => T): void;
|
|
2273
|
+
onManualRefresh(): void;
|
|
2274
|
+
private getRefreshParams;
|
|
2275
|
+
getManualRefreshConfig(): ManualRefreshConfig;
|
|
2239
2276
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericTableComponent<any>, never>;
|
|
2240
|
-
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: {}; }]>;
|
|
2277
|
+
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; }; "showManualRefresh": { "alias": "showManualRefresh"; "required": false; "isSignal": true; }; "manualRefreshConfig": { "alias": "manualRefreshConfig"; "required": false; "isSignal": true; }; "refreshButtonConfig": { "alias": "refreshButtonConfig"; "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"; "dataRefreshed": "dataRefreshed"; "inlineEditSave": "inlineEditSave"; "inlineEditModeChanged": "inlineEditModeChanged"; "inlineEditValidationError": "inlineEditValidationError"; }, never, never, true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
2241
2278
|
}
|
|
2242
2279
|
|
|
2243
2280
|
declare enum AlertType {
|
|
@@ -4157,6 +4194,164 @@ declare class GenericChatComponent implements OnDestroy {
|
|
|
4157
4194
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericChatComponent, "core-generic-chat", never, { "messages": { "alias": "messages"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "isTyping": { "alias": "isTyping"; "required": false; "isSignal": true; }; "customTemplates": { "alias": "customTemplates"; "required": false; "isSignal": true; }; }, { "messagesSent": "messagesSent"; "imageClicked": "imageClicked"; "fileClicked": "fileClicked"; "fileSelected": "fileSelected"; "filesSelected": "filesSelected"; "typingStatusChanged": "typingStatusChanged"; "modalClosed": "modalClosed"; "attachmentAction": "attachmentAction"; "sendingStatusChanged": "sendingStatusChanged"; "loadMoreMessages": "loadMoreMessages"; }, never, never, true, never>;
|
|
4158
4195
|
}
|
|
4159
4196
|
|
|
4197
|
+
declare class ManualRefreshService {
|
|
4198
|
+
private lastUpdateTimes;
|
|
4199
|
+
private configs;
|
|
4200
|
+
initialize(id: string, config?: ManualRefreshConfig): void;
|
|
4201
|
+
getLastUpdateTime(id: string): _angular_core.WritableSignal<string | null>;
|
|
4202
|
+
updateLastRefreshTime(id: string, date?: Date): void;
|
|
4203
|
+
getConfig(id: string): ManualRefreshConfig | undefined;
|
|
4204
|
+
updateConfig(id: string, config: ManualRefreshConfig): void;
|
|
4205
|
+
destroy(id: string): void;
|
|
4206
|
+
getRegisteredIds(): string[];
|
|
4207
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ManualRefreshService, never>;
|
|
4208
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ManualRefreshService>;
|
|
4209
|
+
}
|
|
4210
|
+
|
|
4211
|
+
interface GalleryImage {
|
|
4212
|
+
src: string;
|
|
4213
|
+
alt?: string;
|
|
4214
|
+
title?: string;
|
|
4215
|
+
description?: string;
|
|
4216
|
+
thumbnail?: string;
|
|
4217
|
+
id?: string | number;
|
|
4218
|
+
metadata?: Record<string, any>;
|
|
4219
|
+
}
|
|
4220
|
+
|
|
4221
|
+
declare enum GalleryAnimationType {
|
|
4222
|
+
FADE = "fade",
|
|
4223
|
+
SLIDE_DOWN = "slide-down",
|
|
4224
|
+
SLIDE_UP = "slide-up",
|
|
4225
|
+
SLIDE_LEFT = "slide-left",
|
|
4226
|
+
SLIDE_RIGHT = "slide-right",
|
|
4227
|
+
ZOOM = "zoom",
|
|
4228
|
+
NONE = "none"
|
|
4229
|
+
}
|
|
4230
|
+
|
|
4231
|
+
declare enum GalleryLayoutType {
|
|
4232
|
+
MAIN_LEFT = "main-left",
|
|
4233
|
+
MAIN_RIGHT = "main-right",
|
|
4234
|
+
MAIN_TOP = "main-top",
|
|
4235
|
+
SINGLE = "single"
|
|
4236
|
+
}
|
|
4237
|
+
|
|
4238
|
+
interface GalleryConfig {
|
|
4239
|
+
layoutType?: GalleryLayoutType;
|
|
4240
|
+
totalItems?: number;
|
|
4241
|
+
sidesSize?: string;
|
|
4242
|
+
gap?: string;
|
|
4243
|
+
borderRadius?: string;
|
|
4244
|
+
customClass?: string;
|
|
4245
|
+
showCounter?: boolean;
|
|
4246
|
+
showNavigation?: boolean;
|
|
4247
|
+
enableKeyboardNavigation?: boolean;
|
|
4248
|
+
closeOnOutsideClick?: boolean;
|
|
4249
|
+
showDescription?: boolean;
|
|
4250
|
+
animationType?: GalleryAnimationType;
|
|
4251
|
+
animationInDuration?: number;
|
|
4252
|
+
animationOutDuration?: number;
|
|
4253
|
+
lazyLoading?: boolean;
|
|
4254
|
+
}
|
|
4255
|
+
|
|
4256
|
+
declare class GenericGalleryComponent implements OnDestroy {
|
|
4257
|
+
private galleryModalService;
|
|
4258
|
+
images: _angular_core.InputSignal<GalleryImage[]>;
|
|
4259
|
+
config: _angular_core.InputSignal<GalleryConfig>;
|
|
4260
|
+
imageClick: _angular_core.OutputEmitterRef<{
|
|
4261
|
+
image: GalleryImage;
|
|
4262
|
+
index: number;
|
|
4263
|
+
}>;
|
|
4264
|
+
modalOpen: _angular_core.OutputEmitterRef<{
|
|
4265
|
+
images: GalleryImage[];
|
|
4266
|
+
index: number;
|
|
4267
|
+
}>;
|
|
4268
|
+
modalClose: _angular_core.OutputEmitterRef<void>;
|
|
4269
|
+
imageChange: _angular_core.OutputEmitterRef<{
|
|
4270
|
+
image: GalleryImage;
|
|
4271
|
+
index: number;
|
|
4272
|
+
}>;
|
|
4273
|
+
imageLoadingStates: _angular_core.WritableSignal<Map<string, boolean>>;
|
|
4274
|
+
imageErrorStates: _angular_core.WritableSignal<Map<string, boolean>>;
|
|
4275
|
+
SkeletonType: typeof SkeletonType;
|
|
4276
|
+
SkeletonAnimation: typeof SkeletonAnimation;
|
|
4277
|
+
private readonly defaultConfig;
|
|
4278
|
+
finalConfig: _angular_core.Signal<{
|
|
4279
|
+
layoutType?: GalleryLayoutType;
|
|
4280
|
+
totalItems?: number;
|
|
4281
|
+
sidesSize?: string;
|
|
4282
|
+
gap?: string;
|
|
4283
|
+
borderRadius?: string;
|
|
4284
|
+
customClass?: string;
|
|
4285
|
+
showCounter?: boolean;
|
|
4286
|
+
showNavigation?: boolean;
|
|
4287
|
+
enableKeyboardNavigation?: boolean;
|
|
4288
|
+
closeOnOutsideClick?: boolean;
|
|
4289
|
+
showDescription?: boolean;
|
|
4290
|
+
animationType?: GalleryAnimationType;
|
|
4291
|
+
animationInDuration?: number;
|
|
4292
|
+
animationOutDuration?: number;
|
|
4293
|
+
lazyLoading?: boolean;
|
|
4294
|
+
}>;
|
|
4295
|
+
mainImage: _angular_core.Signal<GalleryImage | null>;
|
|
4296
|
+
thumbnailImages: _angular_core.Signal<GalleryImage[]>;
|
|
4297
|
+
containerClasses: _angular_core.Signal<string>;
|
|
4298
|
+
containerStyles: _angular_core.Signal<any>;
|
|
4299
|
+
isModalOpen: _angular_core.Signal<boolean>;
|
|
4300
|
+
isModalClosing: _angular_core.Signal<boolean>;
|
|
4301
|
+
currentModalImage: _angular_core.Signal<GalleryImage>;
|
|
4302
|
+
currentModalIndex: _angular_core.Signal<number>;
|
|
4303
|
+
modalImageCounter: _angular_core.Signal<string>;
|
|
4304
|
+
canNavigatePrevious: _angular_core.Signal<boolean>;
|
|
4305
|
+
canNavigateNext: _angular_core.Signal<boolean>;
|
|
4306
|
+
private keyboardListener?;
|
|
4307
|
+
constructor();
|
|
4308
|
+
ngOnDestroy(): void;
|
|
4309
|
+
onImageClick(image: GalleryImage, index: number): void;
|
|
4310
|
+
openModal(initialIndex?: number): void;
|
|
4311
|
+
closeModal(): void;
|
|
4312
|
+
previousImage(): void;
|
|
4313
|
+
nextImage(): void;
|
|
4314
|
+
onOverlayClick(): void;
|
|
4315
|
+
private setupKeyboardNavigation;
|
|
4316
|
+
private removeKeyboardNavigation;
|
|
4317
|
+
getModalClasses(): string;
|
|
4318
|
+
getModalStyles(): any;
|
|
4319
|
+
getImageKey(image: GalleryImage, index: number): string;
|
|
4320
|
+
isImageLoading(image: GalleryImage, index: number): boolean;
|
|
4321
|
+
hasImageError(image: GalleryImage, index: number): boolean;
|
|
4322
|
+
onImageLoad(image: GalleryImage, index: number): void;
|
|
4323
|
+
onImageError(image: GalleryImage, index: number): void;
|
|
4324
|
+
initializeImageStates(): void;
|
|
4325
|
+
getImageLoading(isMainImage?: boolean): 'eager' | 'lazy';
|
|
4326
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericGalleryComponent, never>;
|
|
4327
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericGalleryComponent, "core-generic-gallery", never, { "images": { "alias": "images"; "required": true; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; }, { "imageClick": "imageClick"; "modalOpen": "modalOpen"; "modalClose": "modalClose"; "imageChange": "imageChange"; }, never, never, true, never>;
|
|
4328
|
+
}
|
|
4329
|
+
|
|
4330
|
+
declare class GalleryModalService {
|
|
4331
|
+
private readonly _isModalOpen;
|
|
4332
|
+
private readonly _currentImages;
|
|
4333
|
+
private readonly _currentIndex;
|
|
4334
|
+
private readonly _isClosing;
|
|
4335
|
+
readonly isModalOpen: _angular_core.Signal<boolean>;
|
|
4336
|
+
readonly currentImages: _angular_core.Signal<GalleryImage[]>;
|
|
4337
|
+
readonly currentIndex: _angular_core.Signal<number>;
|
|
4338
|
+
readonly currentImage: _angular_core.Signal<GalleryImage>;
|
|
4339
|
+
readonly hasPrevious: _angular_core.Signal<boolean>;
|
|
4340
|
+
readonly hasNext: _angular_core.Signal<boolean>;
|
|
4341
|
+
readonly imageCounter: _angular_core.Signal<string>;
|
|
4342
|
+
readonly isClosing: _angular_core.Signal<boolean>;
|
|
4343
|
+
openModal(images: GalleryImage[], initialIndex?: number): void;
|
|
4344
|
+
closeModal(immediate?: boolean): void;
|
|
4345
|
+
previousImage(): void;
|
|
4346
|
+
nextImage(): void;
|
|
4347
|
+
goToImage(index: number): void;
|
|
4348
|
+
getImageIndexById(imageId: string | number): number;
|
|
4349
|
+
updateImages(images: GalleryImage[]): void;
|
|
4350
|
+
reset(): void;
|
|
4351
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GalleryModalService, never>;
|
|
4352
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<GalleryModalService>;
|
|
4353
|
+
}
|
|
4354
|
+
|
|
4160
4355
|
declare class DynamicFieldDirective<T extends DataBaseModelInterface> implements OnChanges {
|
|
4161
4356
|
private viewContainerRef;
|
|
4162
4357
|
field: _angular_core.InputSignal<ModalFieldConfig<T> | CheckboxModalFieldConfig<T> | NumberModalFieldConfig<T> | SwitchModalFieldConfig<T> | SelectServerSideConfig<T> | SelectFieldConfig<T> | FilterConfig<T> | (ModalFieldConfig<T> & {
|
|
@@ -4495,5 +4690,5 @@ declare const VERSION: {
|
|
|
4495
4690
|
buildDate: string;
|
|
4496
4691
|
};
|
|
4497
4692
|
|
|
4498
|
-
export { ActiveFiltersComponent, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, CacheBustingInterceptor, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, DataListComponent, DataListItemComponent, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FilePreviewActionType, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, GenericButtonComponent, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericSkeletonComponent, 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, SkeletonAnimation, SkeletonService, SkeletonSize, SkeletonType, 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 };
|
|
4499
|
-
export type { ActiveFilterItem, ActiveFiltersConfig, AdditionalPermissionResources, AddressModel, Alert, ApiConfig, ApiResponse, BottomNavItem, ButtonActionEvent, ButtonConfig, CarouselConfig, CarouselImage, ChatConfig, ChatMessage, CheckboxFieldConfig, CheckboxModalFieldConfig, CheckboxOption, ColumnConfig, ColumnDisabledConfig, CompanyInfo, ConfirmUploadRequest, ConfirmationDialogConfig, CustomAction, DataListItem, DateFieldConfig, DateModalFieldConfig, DocumentActionEvent, DocumentConfig, DocumentItem, DynamicFieldsHelperConfig, DynamicFieldsHelperMethods, DynamicFieldsHelperState, ExpansionConfig, ExtendedModalFieldConfig, ExtendedPermissionProvider, FileFieldConfig, FilePreviewAction, FilePreviewConfig, FilePreviewItem, 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, PaginationInfo, PermissionActionsProvider, PermissionProvider, PermissionResourcesProvider, PresignedDownloadUrlResponse, PresignedUrlRequest, PresignedUrlResponse, PreviewFileUrl, RatingConfig, RatingStar, RatingSubmitEvent, RowStyleConfig, RowVisibilityConfig, SearchResponse, SelectServerSideConfig, SidebarBackButton, SidebarComponentConfig, SidebarComponentEvents, SidebarConfig, SidebarCustomModalConfig, SidebarItem, SidebarResponsiveConfig, SidebarSubItem, SidebarTemplateContext, SkeletonConfig, SkeletonItemConfig, SortConfig, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, TableActionConfig, TableSortConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimelineConfig, TimelineItem };
|
|
4693
|
+
export { ActiveFiltersComponent, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, CacheBustingInterceptor, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, DataListComponent, DataListItemComponent, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FilePreviewActionType, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, GalleryAnimationType, GalleryLayoutType, GalleryModalService, GenericButtonComponent, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericSkeletonComponent, GenericStepsComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MainNavComponent, MainNavService, ManualRefreshService, 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, SkeletonAnimation, SkeletonService, SkeletonSize, SkeletonType, 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 };
|
|
4694
|
+
export type { ActiveFilterItem, ActiveFiltersConfig, AdditionalPermissionResources, AddressModel, Alert, ApiConfig, ApiResponse, BottomNavItem, ButtonActionEvent, ButtonConfig, CarouselConfig, CarouselImage, ChatConfig, ChatMessage, CheckboxFieldConfig, CheckboxModalFieldConfig, CheckboxOption, ColumnConfig, ColumnDisabledConfig, CompanyInfo, ConfirmUploadRequest, ConfirmationDialogConfig, CustomAction, DataListItem, DateFieldConfig, DateModalFieldConfig, DocumentActionEvent, DocumentConfig, DocumentItem, DynamicFieldsHelperConfig, DynamicFieldsHelperMethods, DynamicFieldsHelperState, ExpansionConfig, ExtendedModalFieldConfig, ExtendedPermissionProvider, FileFieldConfig, FilePreviewAction, FilePreviewConfig, FilePreviewItem, FileUploadConfig, FilterConfig, FilterParams, GalleryConfig, GalleryImage, GenericTab, GenericTabClickEvent, GenericTabConfig, GlobalAction, HeaderActionConfig, HeaderConfig, HeaderElementConfig, HeaderOrderConfig, ImageModalData, InlineEditConfig, LayoutConfig, LayoutDataAttributes, LogoImagesConfig, ManualRefreshConfig, ModalButtonConfig, ModalFieldConfig, ModalTabConfig, ModalValidationResult, MoreDataConfig, MultiEntryFieldConfig, MultiEntryFieldValue, NavConfig, NavItem, NumberFieldConfig, NumberModalFieldConfig, PaginatedResponse, PaginationEvent, PaginationInfo, PermissionActionsProvider, PermissionProvider, PermissionResourcesProvider, PresignedDownloadUrlResponse, PresignedUrlRequest, PresignedUrlResponse, PreviewFileUrl, RatingConfig, RatingStar, RatingSubmitEvent, RowStyleConfig, RowVisibilityConfig, SearchResponse, SelectServerSideConfig, SidebarBackButton, SidebarComponentConfig, SidebarComponentEvents, SidebarConfig, SidebarCustomModalConfig, SidebarItem, SidebarResponsiveConfig, SidebarSubItem, SidebarTemplateContext, SkeletonConfig, SkeletonItemConfig, SortConfig, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, TableActionConfig, TableSortConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimelineConfig, TimelineItem };
|