import { GalleriaPassThrough, GalleriaResponsiveOptions, GalleriaPosition, GalleriaIndicatorTemplateContext, GalleriaCaptionTemplateContext, GalleriaItemTemplateContext, GalleriaThumbnailTemplateContext } from 'primeng/types/galleria'; export * from 'primeng/types/galleria'; import * as _angular_core from '@angular/core'; import { ElementRef, TemplateRef } from '@angular/core'; import { MotionOptions, MotionEvent } from '@primeuix/motion'; import { BaseComponent } from 'primeng/basecomponent'; import * as i1 from 'primeng/bind'; import { Bind } from 'primeng/bind'; import { CSSProperties } from 'primeng/types/shared'; import { BaseStyle } from 'primeng/base'; import * as i2 from 'primeng/api'; declare class GalleriaStyle extends BaseStyle { name: string; style: string; classes: { mask: string; root: ({ instance }: { instance: any; }) => any[]; closeButton: string; closeIcon: string; header: string; content: string; footer: string; itemsContainer: string; items: string; prevButton: ({ instance }: { instance: any; }) => (string | { 'p-disabled': any; })[]; prevIcon: string; item: string; nextButton: ({ instance }: { instance: any; }) => (string | { 'p-disabled': any; })[]; nextIcon: string; caption: string; indicatorList: string; indicator: ({ instance, index }: { instance: any; index: any; }) => (string | { 'p-galleria-indicator-active': any; })[]; indicatorButton: string; thumbnails: string; thumbnailContent: string; thumbnailPrevButton: ({ instance }: { instance: any; }) => (string | { 'p-disabled': any; })[]; thumbnailPrevIcon: string; thumbnailsViewport: string; thumbnailItems: string; thumbnailItem: ({ instance, index, activeIndex }: { instance: any; index: any; activeIndex: any; }) => (string | { 'p-galleria-thumbnail-item-current': boolean; 'p-galleria-thumbnail-item-active': any; 'p-galleria-thumbnail-item-start': boolean; 'p-galleria-thumbnail-item-end': boolean; })[]; thumbnail: string; thumbnailNextButton: ({ instance }: { instance: any; }) => (string | { 'p-disabled': any; })[]; thumbnailNextIcon: string; }; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵprov: _angular_core.ɵɵInjectableDeclaration; } /** * * Galleria is an advanced content gallery component. * * [Live Demo](https://www.primeng.org/galleria/) * * @module galleriastyle * */ declare enum GalleriaClasses { /** * Class name of the mask element */ mask = "p-galleria-mask", /** * Class name of the root element */ root = "p-galleria", /** * Class name of the close button element */ closeButton = "p-galleria-close-button", /** * Class name of the close icon element */ closeIcon = "p-galleria-close-icon", /** * Class name of the header element */ header = "p-galleria-header", /** * Class name of the content element */ content = "p-galleria-content", /** * Class name of the footer element */ footer = "p-galleria-footer", /** * Class name of the items container element */ itemsContainer = "p-galleria-items-container", /** * Class name of the items element */ items = "p-galleria-items", /** * Class name of the previous item button element */ prevButton = "p-galleria-prev-button", /** * Class name of the previous item icon element */ prevIcon = "p-galleria-prev-icon", /** * Class name of the item element */ item = "p-galleria-item", /** * Class name of the next item button element */ nextButton = "p-galleria-next-button", /** * Class name of the next item icon element */ nextIcon = "p-galleria-next-icon", /** * Class name of the caption element */ caption = "p-galleria-caption", /** * Class name of the indicator list element */ indicatorList = "p-galleria-indicator-list", /** * Class name of the indicator element */ indicator = "p-galleria-indicator", /** * Class name of the indicator button element */ indicatorButton = "p-galleria-indicator-button", /** * Class name of the thumbnails element */ thumbnails = "p-galleria-thumbnails", /** * Class name of the thumbnail content element */ thumbnailContent = "p-galleria-thumbnails-content", /** * Class name of the previous thumbnail button element */ previousThumbnailButton = "p-galleria-thumbnail-prev-button", /** * Class name of the previous thumbnail icon element */ previousThumbnailIcon = "p-galleria-thumbnail-prev-icon", /** * Class name of the thumbnails viewport element */ thumbnailsViewport = "p-galleria-thumbnails-viewport", /** * Class name of the thumbnail items element */ thumbnailItems = "p-galleria-thumbnail-items", /** * Class name of the thumbnail item element */ thumbnailItem = "p-galleria-thumbnail-item", /** * Class name of the thumbnail element */ thumbnail = "p-galleria-thumbnail", /** * Class name of the next thumbnail button element */ nextThumbnailButton = "p-galleria-thumbnail-next-button", /** * Class name of the next thumbnail icon element */ nextThumbnailIcon = "p-galleria-thumbnail-next-icon" } /** * Galleria is an advanced content gallery component. * @group Components * @deprecated Use Gallery component instead. */ declare class Galleria extends BaseComponent { componentName: string; bindDirectiveInstance: Bind; $pcGalleria: Galleria | undefined; /** * Index of the first item. * @group Props */ activeIndex: _angular_core.InputSignalWithTransform; /** * Whether to display the component on fullscreen. * @group Props */ fullScreen: _angular_core.InputSignalWithTransform; /** * Unique identifier of the element. * @group Props */ id: _angular_core.InputSignal; /** * An array of objects to display. * @group Props */ value: _angular_core.InputSignal; /** * Number of items per page. * @group Props */ numVisible: _angular_core.InputSignalWithTransform; /** * An array of options for responsive design. * @see {GalleriaResponsiveOptions} * @group Props */ responsiveOptions: _angular_core.InputSignal; /** * Whether to display navigation buttons in item section. * @group Props */ showItemNavigators: _angular_core.InputSignalWithTransform; /** * Whether to display navigation buttons in thumbnail container. * @group Props */ showThumbnailNavigators: _angular_core.InputSignalWithTransform; /** * Whether to display navigation buttons on item hover. * @group Props */ showItemNavigatorsOnHover: _angular_core.InputSignalWithTransform; /** * When enabled, item is changed on indicator hover. * @group Props */ changeItemOnIndicatorHover: _angular_core.InputSignalWithTransform; /** * Defines if scrolling would be infinite. * @group Props */ circular: _angular_core.InputSignalWithTransform; /** * Items are displayed with a slideshow in autoPlay mode. * @group Props */ autoPlay: _angular_core.InputSignalWithTransform; /** * When enabled, autorun should stop by click. * @group Props */ shouldStopAutoplayByClick: _angular_core.InputSignalWithTransform; /** * Time in milliseconds to scroll items. * @group Props */ transitionInterval: _angular_core.InputSignalWithTransform; /** * Whether to display thumbnail container. * @group Props */ showThumbnails: _angular_core.InputSignalWithTransform; /** * Position of thumbnails. * @group Props */ thumbnailsPosition: _angular_core.InputSignal; /** * Height of the viewport in vertical thumbnail. * @group Props */ verticalThumbnailViewPortHeight: _angular_core.InputSignal; /** * Whether to display indicator container. * @group Props */ showIndicators: _angular_core.InputSignalWithTransform; /** * When enabled, indicator container is displayed on item container. * @group Props */ showIndicatorsOnItem: _angular_core.InputSignalWithTransform; /** * Position of indicators. * @group Props */ indicatorsPosition: _angular_core.InputSignal; /** * Base zIndex value to use in layering. * @group Props */ baseZIndex: _angular_core.InputSignalWithTransform; /** * Style class of the mask on fullscreen mode. * @group Props */ maskClass: _angular_core.InputSignal; /** * Style class of the component on fullscreen mode. Otherwise, the 'class' property can be used. * @group Props */ containerClass: _angular_core.InputSignal; /** * Inline style of the component on fullscreen mode. Otherwise, the 'style' property can be used. * @group Props */ containerStyle: _angular_core.InputSignal; /** * The motion options. * @group Props */ motionOptions: _angular_core.InputSignal; computedMotionOptions: _angular_core.Signal; /** * The mask motion options. * @group Props */ maskMotionOptions: _angular_core.InputSignal; computedMaskMotionOptions: _angular_core.Signal; maskEnterActiveClass: _angular_core.Signal<"" | "p-overlay-mask-enter-active">; maskLeaveActiveClass: _angular_core.Signal<"" | "p-overlay-mask-leave-active">; maskRole: _angular_core.Signal<"dialog" | "region">; maskAriaModal: _angular_core.Signal<"true" | undefined>; /** * Specifies the visibility of the mask on fullscreen mode. * @group Props */ visible: _angular_core.ModelSignal; renderMask: _angular_core.WritableSignal; renderContent: _angular_core.WritableSignal; /** * Callback to invoke on active index change. * @param {number} number - Active index. * @group Emits */ activeIndexChange: _angular_core.OutputEmitterRef; container: _angular_core.Signal | undefined>; _activeIndex: _angular_core.WritableSignal; /** * Custom header template. * @group Templates */ headerTemplate: _angular_core.Signal | undefined>; /** * Custom footer template. * @group Templates */ footerTemplate: _angular_core.Signal | undefined>; /** * Custom indicator template. * @group Templates */ indicatorTemplate: _angular_core.Signal | undefined>; /** * Custom caption template. * @group Templates */ captionTemplate: _angular_core.Signal> | undefined>; /** * Custom close icon template. * @group Templates */ closeIconTemplate: _angular_core.Signal | undefined>; /** * Custom previous thumbnail icon template. * @group Templates */ previousThumbnailIconTemplate: _angular_core.Signal | undefined>; /** * Custom next thumbnail icon template. * @group Templates */ nextThumbnailIconTemplate: _angular_core.Signal | undefined>; /** * Custom item previous icon template. * @group Templates */ itemPreviousIconTemplate: _angular_core.Signal | undefined>; /** * Custom item next icon template. * @group Templates */ itemNextIconTemplate: _angular_core.Signal | undefined>; /** * Custom item template. * @group Templates */ itemTemplate: _angular_core.Signal> | undefined>; /** * Custom thumbnail template. * @group Templates */ thumbnailTemplate: _angular_core.Signal> | undefined>; maskVisible: boolean; numVisibleLimit: _angular_core.WritableSignal; d_numVisible: _angular_core.Signal; _componentStyle: GalleriaStyle; mask: HTMLElement | undefined; element: ElementRef; constructor(); onAfterViewChecked(): void; onMaskHide(event?: MouseEvent): void; onActiveItemChange(index: number): void; onBeforeEnter(event: MotionEvent): void; onBeforeLeave(): void; onAfterLeave(): void; onMaskAfterLeave(): void; enableModality(): void; disableModality(): void; onDestroy(): void; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } declare class GalleriaModule { static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵmod: _angular_core.ɵɵNgModuleDeclaration; static ɵinj: _angular_core.ɵɵInjectorDeclaration; } export { Galleria, GalleriaClasses, GalleriaModule, GalleriaStyle };