@solcre-org/core-ui 2.12.14 → 2.12.16

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/index.d.ts CHANGED
@@ -3765,6 +3765,392 @@ declare class CarouselComponent implements AfterViewInit, OnDestroy {
3765
3765
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<CarouselComponent, "core-carousel", never, { "images": { "alias": "images"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3766
3766
  }
3767
3767
 
3768
+ declare enum ChatMessageType {
3769
+ TEXT = "text",
3770
+ IMAGE = "image",
3771
+ FILE = "file",
3772
+ SYSTEM = "system",
3773
+ NOTIFICATION = "notification",
3774
+ CUSTOM = "custom"
3775
+ }
3776
+
3777
+ declare enum ChatMessagePosition {
3778
+ LEFT = "left",
3779
+ RIGHT = "right"
3780
+ }
3781
+
3782
+ declare class ConfigurationModel implements DataBaseModelInterface {
3783
+ id: string;
3784
+ email_notification: string;
3785
+ correspondence_address: AddressModel | null;
3786
+ delivery_address: AddressModel | null;
3787
+ constructor(data?: Partial<ConfigurationModel>);
3788
+ fromJSON(json: any): ConfigurationModel;
3789
+ toJSON(): any;
3790
+ getId(): string;
3791
+ getReference(): string;
3792
+ }
3793
+
3794
+ declare class FileTemplateModel implements DataBaseModelInterface {
3795
+ id: string;
3796
+ name: string;
3797
+ details: string;
3798
+ file_type: string | null;
3799
+ type_code: string | null;
3800
+ file_id: string;
3801
+ file: FileModel;
3802
+ uploaded_by: UsersModel;
3803
+ created_at: string;
3804
+ updated_at: string;
3805
+ constructor(data?: Partial<FileTemplateModel>);
3806
+ fromJSON(json: any): FileTemplateModel;
3807
+ toJSON(): any;
3808
+ getId(): string;
3809
+ getReference(): string;
3810
+ }
3811
+
3812
+ declare class FileTypeModel implements DataBaseModelInterface {
3813
+ id: string;
3814
+ code: string;
3815
+ constructor(data?: Partial<FileTypeModel>);
3816
+ fromJSON(json: any): FileTypeModel;
3817
+ toJSON(): any;
3818
+ getId(): string;
3819
+ getReference(): string;
3820
+ }
3821
+
3822
+ declare class ResetPasswordModel implements DataBaseModelInterface {
3823
+ userId?: string | undefined;
3824
+ newPassword?: string | undefined;
3825
+ confirmPassword?: string | undefined;
3826
+ constructor(userId?: string | undefined, newPassword?: string | undefined, confirmPassword?: string | undefined);
3827
+ fromJSON(json: any): ResetPasswordModel;
3828
+ toJSON(): {
3829
+ userId: string | undefined;
3830
+ newPassword: string | undefined;
3831
+ confirmPassword: string | undefined;
3832
+ };
3833
+ getReference(): string;
3834
+ getId(): string;
3835
+ }
3836
+
3837
+ interface FilePreviewItem {
3838
+ id: string;
3839
+ filename: string;
3840
+ size: number;
3841
+ contentType: string;
3842
+ uploadedBy: string;
3843
+ uploadedDate: Date;
3844
+ s3Key?: string;
3845
+ thumbnailUrl?: string;
3846
+ canDownload: boolean;
3847
+ canDelete: boolean;
3848
+ fileModel?: FileModel;
3849
+ }
3850
+ interface FilePreviewConfig {
3851
+ showUploadDate?: boolean;
3852
+ showUploadedBy?: boolean;
3853
+ showFileSize?: boolean;
3854
+ showFilename?: boolean;
3855
+ allowDownload?: boolean;
3856
+ allowDelete?: boolean;
3857
+ maxFilenameLength?: number;
3858
+ dateFormat?: string;
3859
+ emptyStateMessage?: string;
3860
+ emptyStateIcon?: string;
3861
+ gridColumns?: number;
3862
+ showThumbnails?: boolean;
3863
+ }
3864
+ interface FilePreviewAction {
3865
+ type: FilePreviewActionType;
3866
+ file: FilePreviewItem;
3867
+ }
3868
+ declare enum FilePreviewActionType {
3869
+ DOWNLOAD = "download",
3870
+ DELETE = "delete",
3871
+ PREVIEW = "preview"
3872
+ }
3873
+
3874
+ interface ChatMessage {
3875
+ id: string;
3876
+ content: string;
3877
+ type: ChatMessageType;
3878
+ position: ChatMessagePosition;
3879
+ timestamp: String | Date;
3880
+ sender?: {
3881
+ id: string;
3882
+ name: string;
3883
+ avatar?: string;
3884
+ };
3885
+ isRead?: boolean;
3886
+ isSending?: boolean;
3887
+ hasError?: boolean;
3888
+ customClass?: string;
3889
+ imageData?: {
3890
+ url: string;
3891
+ alt?: string;
3892
+ width?: number;
3893
+ height?: number;
3894
+ thumbnail?: string;
3895
+ };
3896
+ imagesData?: Array<{
3897
+ url: string;
3898
+ alt?: string;
3899
+ width?: number;
3900
+ height?: number;
3901
+ thumbnail?: string;
3902
+ }>;
3903
+ fileData?: {
3904
+ url: string;
3905
+ name: string;
3906
+ size: number;
3907
+ type: string;
3908
+ icon?: string;
3909
+ };
3910
+ customData?: {
3911
+ templateKey: string;
3912
+ data: any;
3913
+ };
3914
+ customTemplate?: TemplateRef<any>;
3915
+ metadata?: {
3916
+ [key: string]: any;
3917
+ };
3918
+ attachmentIds?: string[];
3919
+ attachments?: FilePreviewItem[];
3920
+ }
3921
+
3922
+ interface ChatConfig {
3923
+ maxHeight?: string;
3924
+ placeholder?: string;
3925
+ showTimestamps?: boolean;
3926
+ showAvatars?: boolean;
3927
+ showSenderNames?: boolean;
3928
+ showTypingIndicator?: boolean;
3929
+ allowFileAttachments?: boolean;
3930
+ allowEmojis?: boolean;
3931
+ maxMessages?: number;
3932
+ customMessageTemplates?: Map<string, TemplateRef<any>>;
3933
+ customCssClasses?: {
3934
+ container?: string;
3935
+ messageList?: string;
3936
+ messageItem?: string;
3937
+ inputContainer?: string;
3938
+ input?: string;
3939
+ sendButton?: string;
3940
+ };
3941
+ readOnly?: boolean;
3942
+ currentUserId?: string;
3943
+ autoScroll?: boolean;
3944
+ dateFormat?: string;
3945
+ timeFormat?: string;
3946
+ groupByDate?: boolean;
3947
+ theme?: 'light' | 'dark' | 'auto';
3948
+ modalMode?: boolean;
3949
+ modalTitle?: string;
3950
+ modalSubtitle?: string;
3951
+ isModalOpen?: boolean;
3952
+ enableInfiniteScroll?: boolean;
3953
+ pageSize?: number;
3954
+ loadMoreThreshold?: number;
3955
+ }
3956
+ interface PaginationInfo {
3957
+ data: any[];
3958
+ page: number;
3959
+ page_count: number;
3960
+ size: number;
3961
+ total_items: number;
3962
+ }
3963
+
3964
+ declare class GenericChatService {
3965
+ constructor();
3966
+ formatTimestamp(timestamp: Date, format?: string): string;
3967
+ formatDate(timestamp: Date, format?: string): string;
3968
+ shouldUseCustomTemplate(message: ChatMessage, config: ChatConfig): boolean;
3969
+ getMessageClasses(message: ChatMessage, config: ChatConfig): string;
3970
+ getContentClasses(message: ChatMessage, config: ChatConfig): string;
3971
+ getTimestampClasses(config: ChatConfig): string;
3972
+ getImageClasses(config: ChatConfig): string;
3973
+ validateMessage(message: ChatMessage): boolean;
3974
+ getDefaultConfig(): ChatConfig;
3975
+ mergeConfig(userConfig: Partial<ChatConfig>): ChatConfig;
3976
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericChatService, never>;
3977
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<GenericChatService>;
3978
+ }
3979
+
3980
+ declare class GenericChatComponent implements OnDestroy {
3981
+ chatService: GenericChatService;
3982
+ private elementRef;
3983
+ private sanitizer;
3984
+ private authService;
3985
+ messages: _angular_core.InputSignal<ChatMessage[]>;
3986
+ config: _angular_core.InputSignal<ChatConfig>;
3987
+ isTyping: _angular_core.InputSignal<boolean>;
3988
+ customTemplates: _angular_core.InputSignal<Map<string, TemplateRef<any>>>;
3989
+ messagesSent: _angular_core.OutputEmitterRef<ChatMessage>;
3990
+ imageClicked: _angular_core.OutputEmitterRef<ChatMessage>;
3991
+ fileClicked: _angular_core.OutputEmitterRef<ChatMessage>;
3992
+ fileSelected: _angular_core.OutputEmitterRef<File>;
3993
+ filesSelected: _angular_core.OutputEmitterRef<File[]>;
3994
+ typingStatusChanged: _angular_core.OutputEmitterRef<boolean>;
3995
+ modalClosed: _angular_core.OutputEmitterRef<void>;
3996
+ attachmentAction: _angular_core.OutputEmitterRef<{
3997
+ action: string;
3998
+ file: any;
3999
+ message: ChatMessage;
4000
+ }>;
4001
+ sendingStatusChanged: _angular_core.OutputEmitterRef<boolean>;
4002
+ loadMoreMessages: _angular_core.OutputEmitterRef<void>;
4003
+ messagesContainer: _angular_core.Signal<ElementRef<any> | undefined>;
4004
+ modalMessagesContainer: _angular_core.Signal<ElementRef<any> | undefined>;
4005
+ messageInput: _angular_core.Signal<ElementRef<any> | undefined>;
4006
+ fileInput: _angular_core.Signal<ElementRef<any> | undefined>;
4007
+ currentMessage: _angular_core.WritableSignal<string>;
4008
+ showImageModal: _angular_core.WritableSignal<boolean>;
4009
+ selectedImage: _angular_core.WritableSignal<string>;
4010
+ selectedFile: _angular_core.WritableSignal<File | null>;
4011
+ selectedFiles: _angular_core.WritableSignal<File[]>;
4012
+ isClosing: _angular_core.WritableSignal<boolean>;
4013
+ isSending: _angular_core.WritableSignal<boolean>;
4014
+ messageTypes: typeof ChatMessageType;
4015
+ isLoadingMore: _angular_core.WritableSignal<boolean>;
4016
+ hasMoreMessages: _angular_core.WritableSignal<boolean>;
4017
+ currentPage: _angular_core.WritableSignal<number>;
4018
+ private hasInitialLoad;
4019
+ mergedConfig: _angular_core.Signal<ChatConfig>;
4020
+ chronologicalMessages: _angular_core.Signal<ChatMessage[]>;
4021
+ shouldShowDateSeparator: _angular_core.Signal<Map<string, boolean>>;
4022
+ trackByMessage: (index: number, message: ChatMessage) => string;
4023
+ trackByChronologicalMessage: (index: number, message: ChatMessage) => string;
4024
+ private parseTimestamp;
4025
+ getDateSeparatorText(timestamp: String | Date): string;
4026
+ closeButtonConfig: _angular_core.Signal<ButtonConfig>;
4027
+ getFilePreviewConfig(attachments: any[]): {
4028
+ showUploadDate?: undefined;
4029
+ showUploadedBy?: undefined;
4030
+ showFileSize?: undefined;
4031
+ allowDownload?: undefined;
4032
+ allowDelete?: undefined;
4033
+ maxFilenameLength?: undefined;
4034
+ emptyStateMessage?: undefined;
4035
+ emptyStateIcon?: undefined;
4036
+ showThumbnails?: undefined;
4037
+ gridColumns?: undefined;
4038
+ showFilename?: undefined;
4039
+ } | {
4040
+ showUploadDate: boolean;
4041
+ showUploadedBy: boolean;
4042
+ showFileSize: boolean;
4043
+ allowDownload: boolean;
4044
+ allowDelete: boolean;
4045
+ maxFilenameLength: number;
4046
+ emptyStateMessage: string;
4047
+ emptyStateIcon: string;
4048
+ showThumbnails: boolean;
4049
+ gridColumns: number;
4050
+ showFilename: boolean;
4051
+ };
4052
+ separateFilesByType(attachments: any[]): {
4053
+ images: any[];
4054
+ files: any[];
4055
+ };
4056
+ getImagePreviewConfig(images: any[]): {
4057
+ showUploadDate: boolean;
4058
+ showUploadedBy: boolean;
4059
+ showFileSize: boolean;
4060
+ allowDownload: boolean;
4061
+ allowDelete: boolean;
4062
+ maxFilenameLength: number;
4063
+ emptyStateMessage: string;
4064
+ emptyStateIcon: string;
4065
+ showThumbnails: boolean;
4066
+ gridColumns: number;
4067
+ showFilename: boolean;
4068
+ containerClass: string;
4069
+ };
4070
+ getFileOnlyPreviewConfig(files: any[]): {
4071
+ showUploadDate: boolean;
4072
+ showUploadedBy: boolean;
4073
+ showFileSize: boolean;
4074
+ allowDownload: boolean;
4075
+ allowDelete: boolean;
4076
+ maxFilenameLength: number;
4077
+ emptyStateMessage: string;
4078
+ emptyStateIcon: string;
4079
+ showThumbnails: boolean;
4080
+ gridColumns: number;
4081
+ showFilename: boolean;
4082
+ containerClass: string;
4083
+ };
4084
+ isImageFile(file: File): boolean;
4085
+ isImageFilePreview(file: any): boolean;
4086
+ private filePreviewUrls;
4087
+ createImagePreview(file: File): string;
4088
+ getImagePreviewUrl(file: File): string;
4089
+ getAttachmentPreviewUrl(file: any): any;
4090
+ getAttachmentPlaceholderUrl(file: any): string;
4091
+ trackByFile(index: number, file: File): string;
4092
+ onImageLoad(fileName: string): void;
4093
+ onImageError(fileName: string, event: any): void;
4094
+ openImageModal(imageUrl: string, filename: string): void;
4095
+ convertAttachmentsToFilePreviewItems(attachments: any[]): FilePreviewItem[];
4096
+ getChatFilePreviewConfig(): FilePreviewConfig;
4097
+ getImageAttachments(attachments: any[]): any[];
4098
+ getNonImageAttachments(attachments: any[]): any[];
4099
+ getSelectedImageFiles(): File[];
4100
+ getSelectedNonImageFiles(): File[];
4101
+ getSelectedFileIndex(file: File): number;
4102
+ convertSelectedFilesToPreviewItems(files: File[]): FilePreviewItem[];
4103
+ getChatSelectedFilesConfig(): FilePreviewConfig;
4104
+ onSelectedFileAction(action: FilePreviewAction): void;
4105
+ onFilePreviewAction(action: FilePreviewAction, message: ChatMessage): void;
4106
+ private imagePreviewUrls;
4107
+ private addImagePreviewUrl;
4108
+ private cleanupImagePreviewUrls;
4109
+ private typingTimer;
4110
+ private shouldScrollToBottom;
4111
+ private ghostTextarea;
4112
+ private scrollSentinel;
4113
+ private shouldInitializeInfiniteScroll;
4114
+ private shouldAutoScroll;
4115
+ private isLoadingMoreMessages;
4116
+ scrollSentinelElement?: ElementRef;
4117
+ constructor(chatService: GenericChatService);
4118
+ private initializeInfiniteScroll;
4119
+ private loadMoreMessagesHandler;
4120
+ onMessagesLoaded(paginationInfo: PaginationInfo): void;
4121
+ ngOnDestroy(): void;
4122
+ sendMessage(): void;
4123
+ onImageClick(message: ChatMessage): void;
4124
+ onMultipleImageClick(imageData: {
4125
+ url: string;
4126
+ alt?: string;
4127
+ }, message: ChatMessage): void;
4128
+ closeImageModal(): void;
4129
+ closeModal(): void;
4130
+ handleKeyboardEvent(event: KeyboardEvent): void;
4131
+ onFileClick(message: ChatMessage): void;
4132
+ onTyping(): void;
4133
+ updateCurrentMessage(value: string): void;
4134
+ onTextareaInput(event: Event): void;
4135
+ private autoResizeTextarea;
4136
+ openFileSelector(): void;
4137
+ onFileSelected(event: any): void;
4138
+ clearSelectedFile(): void;
4139
+ clearSelectedFiles(): void;
4140
+ removeSelectedFile(index: number): void;
4141
+ toggleEmojiPicker(): void;
4142
+ getCustomTemplate(message: ChatMessage): TemplateRef<any> | null;
4143
+ formatFileSize(bytes: number): string;
4144
+ private scrollToBottom;
4145
+ private generateMessageId;
4146
+ onAttachmentAction(action: string, file: any, message: ChatMessage): void;
4147
+ onMessageSentSuccess(): void;
4148
+ onMessageSentError(): void;
4149
+ get isCurrentlySending(): boolean;
4150
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericChatComponent, never>;
4151
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericChatComponent, "app-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>;
4152
+ }
4153
+
3768
4154
  declare class DynamicFieldDirective<T extends DataBaseModelInterface> implements OnChanges {
3769
4155
  private viewContainerRef;
3770
4156
  field: _angular_core.InputSignal<ModalFieldConfig<T> | CheckboxModalFieldConfig<T> | NumberModalFieldConfig<T> | SwitchModalFieldConfig<T> | SelectServerSideConfig<T> | SelectFieldConfig<T> | FilterConfig<T> | (ModalFieldConfig<T> & {
@@ -3855,61 +4241,6 @@ declare class ApiConfigurationProvider {
3855
4241
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<ApiConfigurationProvider>;
3856
4242
  }
3857
4243
 
3858
- declare class ConfigurationModel implements DataBaseModelInterface {
3859
- id: string;
3860
- email_notification: string;
3861
- correspondence_address: AddressModel | null;
3862
- delivery_address: AddressModel | null;
3863
- constructor(data?: Partial<ConfigurationModel>);
3864
- fromJSON(json: any): ConfigurationModel;
3865
- toJSON(): any;
3866
- getId(): string;
3867
- getReference(): string;
3868
- }
3869
-
3870
- declare class FileTemplateModel implements DataBaseModelInterface {
3871
- id: string;
3872
- name: string;
3873
- details: string;
3874
- file_type: string | null;
3875
- type_code: string | null;
3876
- file_id: string;
3877
- file: FileModel;
3878
- uploaded_by: UsersModel;
3879
- created_at: string;
3880
- updated_at: string;
3881
- constructor(data?: Partial<FileTemplateModel>);
3882
- fromJSON(json: any): FileTemplateModel;
3883
- toJSON(): any;
3884
- getId(): string;
3885
- getReference(): string;
3886
- }
3887
-
3888
- declare class FileTypeModel implements DataBaseModelInterface {
3889
- id: string;
3890
- code: string;
3891
- constructor(data?: Partial<FileTypeModel>);
3892
- fromJSON(json: any): FileTypeModel;
3893
- toJSON(): any;
3894
- getId(): string;
3895
- getReference(): string;
3896
- }
3897
-
3898
- declare class ResetPasswordModel implements DataBaseModelInterface {
3899
- userId?: string | undefined;
3900
- newPassword?: string | undefined;
3901
- confirmPassword?: string | undefined;
3902
- constructor(userId?: string | undefined, newPassword?: string | undefined, confirmPassword?: string | undefined);
3903
- fromJSON(json: any): ResetPasswordModel;
3904
- toJSON(): {
3905
- userId: string | undefined;
3906
- newPassword: string | undefined;
3907
- confirmPassword: string | undefined;
3908
- };
3909
- getReference(): string;
3910
- getId(): string;
3911
- }
3912
-
3913
4244
  declare class CoreUiTranslateService {
3914
4245
  private translateService;
3915
4246
  initialize(defaultLang?: string, currentLang?: string): void;
@@ -4158,5 +4489,5 @@ declare const VERSION: {
4158
4489
  buildDate: string;
4159
4490
  };
4160
4491
 
4161
- 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, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, GenericButtonComponent, 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 };
4162
- 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, DynamicFieldsHelperConfig, DynamicFieldsHelperMethods, DynamicFieldsHelperState, 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, SkeletonConfig, SkeletonItemConfig, SortConfig, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, TableActionConfig, TableSortConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimelineConfig, TimelineItem };
4492
+ 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 };
4493
+ 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solcre-org/core-ui",
3
- "version": "2.12.14",
3
+ "version": "2.12.16",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"