@solcre-org/core-ui 2.12.29 → 2.12.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/fesm2022/solcre-org-core-ui.mjs +191 -202
- package/fesm2022/solcre-org-core-ui.mjs.map +1 -1
- package/index.d.ts +41 -35
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4241,16 +4241,15 @@ interface GalleryConfig {
|
|
|
4241
4241
|
sidesSize?: string;
|
|
4242
4242
|
gap?: string;
|
|
4243
4243
|
borderRadius?: string;
|
|
4244
|
-
customClass?: string;
|
|
4245
4244
|
showCounter?: boolean;
|
|
4246
4245
|
showNavigation?: boolean;
|
|
4247
4246
|
enableKeyboardNavigation?: boolean;
|
|
4248
4247
|
closeOnOutsideClick?: boolean;
|
|
4249
|
-
showDescription?: boolean;
|
|
4250
4248
|
animationType?: GalleryAnimationType;
|
|
4251
4249
|
animationInDuration?: number;
|
|
4252
4250
|
animationOutDuration?: number;
|
|
4253
4251
|
lazyLoading?: boolean;
|
|
4252
|
+
infiniteLoop?: boolean;
|
|
4254
4253
|
}
|
|
4255
4254
|
|
|
4256
4255
|
declare class GenericGalleryComponent implements OnDestroy {
|
|
@@ -4281,41 +4280,25 @@ declare class GenericGalleryComponent implements OnDestroy {
|
|
|
4281
4280
|
sidesSize?: string;
|
|
4282
4281
|
gap?: string;
|
|
4283
4282
|
borderRadius?: string;
|
|
4284
|
-
customClass?: string;
|
|
4285
4283
|
showCounter?: boolean;
|
|
4286
4284
|
showNavigation?: boolean;
|
|
4287
4285
|
enableKeyboardNavigation?: boolean;
|
|
4288
4286
|
closeOnOutsideClick?: boolean;
|
|
4289
|
-
showDescription?: boolean;
|
|
4290
4287
|
animationType?: GalleryAnimationType;
|
|
4291
4288
|
animationInDuration?: number;
|
|
4292
4289
|
animationOutDuration?: number;
|
|
4293
4290
|
lazyLoading?: boolean;
|
|
4291
|
+
infiniteLoop?: boolean;
|
|
4294
4292
|
}>;
|
|
4295
4293
|
mainImage: _angular_core.Signal<GalleryImage | null>;
|
|
4296
4294
|
thumbnailImages: _angular_core.Signal<GalleryImage[]>;
|
|
4297
4295
|
containerClasses: _angular_core.Signal<string>;
|
|
4298
4296
|
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
4297
|
constructor();
|
|
4308
4298
|
ngOnDestroy(): void;
|
|
4309
4299
|
onImageClick(image: GalleryImage, index: number): void;
|
|
4310
4300
|
openModal(initialIndex?: number): void;
|
|
4311
4301
|
closeModal(): void;
|
|
4312
|
-
previousImage(): void;
|
|
4313
|
-
nextImage(): void;
|
|
4314
|
-
onOverlayClick(): void;
|
|
4315
|
-
private setupKeyboardNavigation;
|
|
4316
|
-
private removeKeyboardNavigation;
|
|
4317
|
-
getModalClasses(): string;
|
|
4318
|
-
getModalStyles(): any;
|
|
4319
4302
|
getImageKey(image: GalleryImage, index: number): string;
|
|
4320
4303
|
isImageLoading(image: GalleryImage, index: number): boolean;
|
|
4321
4304
|
hasImageError(image: GalleryImage, index: number): boolean;
|
|
@@ -4327,19 +4310,42 @@ declare class GenericGalleryComponent implements OnDestroy {
|
|
|
4327
4310
|
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
4311
|
}
|
|
4329
4312
|
|
|
4330
|
-
declare class
|
|
4331
|
-
private
|
|
4332
|
-
|
|
4333
|
-
|
|
4334
|
-
|
|
4335
|
-
|
|
4336
|
-
|
|
4337
|
-
|
|
4338
|
-
|
|
4339
|
-
|
|
4340
|
-
|
|
4341
|
-
|
|
4342
|
-
|
|
4313
|
+
declare class GalleryModalComponent implements OnDestroy {
|
|
4314
|
+
private galleryModalService;
|
|
4315
|
+
isModalOpen: _angular_core.Signal<boolean>;
|
|
4316
|
+
isModalClosing: _angular_core.Signal<boolean>;
|
|
4317
|
+
currentImage: _angular_core.Signal<_solcre_org_core_ui.GalleryImage | null>;
|
|
4318
|
+
currentIndex: _angular_core.Signal<number>;
|
|
4319
|
+
imageCounter: _angular_core.Signal<string>;
|
|
4320
|
+
canNavigatePrevious: _angular_core.Signal<boolean>;
|
|
4321
|
+
canNavigateNext: _angular_core.Signal<boolean>;
|
|
4322
|
+
private keyboardListener?;
|
|
4323
|
+
constructor();
|
|
4324
|
+
ngOnDestroy(): void;
|
|
4325
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
4326
|
+
closeModal(): void;
|
|
4327
|
+
previousImage(): void;
|
|
4328
|
+
nextImage(): void;
|
|
4329
|
+
onOverlayClick(): void;
|
|
4330
|
+
getModalClasses(): string;
|
|
4331
|
+
getModalStyles(): any;
|
|
4332
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GalleryModalComponent, never>;
|
|
4333
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GalleryModalComponent, "core-gallery-modal", never, {}, {}, never, never, true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
4334
|
+
}
|
|
4335
|
+
|
|
4336
|
+
declare class GalleryModalGlobalService {
|
|
4337
|
+
private _isModalOpen;
|
|
4338
|
+
private _isClosing;
|
|
4339
|
+
private _currentImages;
|
|
4340
|
+
private _currentIndex;
|
|
4341
|
+
isModalOpen: _angular_core.Signal<boolean>;
|
|
4342
|
+
isClosing: _angular_core.Signal<boolean>;
|
|
4343
|
+
currentImages: _angular_core.Signal<GalleryImage[]>;
|
|
4344
|
+
currentIndex: _angular_core.Signal<number>;
|
|
4345
|
+
currentImage: _angular_core.Signal<GalleryImage | null>;
|
|
4346
|
+
imageCounter: _angular_core.Signal<string>;
|
|
4347
|
+
hasPrevious: _angular_core.Signal<boolean>;
|
|
4348
|
+
hasNext: _angular_core.Signal<boolean>;
|
|
4343
4349
|
openModal(images: GalleryImage[], initialIndex?: number): void;
|
|
4344
4350
|
closeModal(immediate?: boolean): void;
|
|
4345
4351
|
previousImage(): void;
|
|
@@ -4348,8 +4354,8 @@ declare class GalleryModalService {
|
|
|
4348
4354
|
getImageIndexById(imageId: string | number): number;
|
|
4349
4355
|
updateImages(images: GalleryImage[]): void;
|
|
4350
4356
|
reset(): void;
|
|
4351
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
4352
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<
|
|
4357
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GalleryModalGlobalService, never>;
|
|
4358
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<GalleryModalGlobalService>;
|
|
4353
4359
|
}
|
|
4354
4360
|
|
|
4355
4361
|
declare class DynamicFieldDirective<T extends DataBaseModelInterface> implements OnChanges {
|
|
@@ -4690,5 +4696,5 @@ declare const VERSION: {
|
|
|
4690
4696
|
buildDate: string;
|
|
4691
4697
|
};
|
|
4692
4698
|
|
|
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,
|
|
4699
|
+
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, GalleryModalComponent, GalleryModalGlobalService, 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
4700
|
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 };
|