primeng
Version:
PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB
198 lines (197 loc) • 5.43 kB
TypeScript
import { BaseStyle } from 'primeng/base';
import * as i0 from "@angular/core";
export declare class GalleriaStyle extends BaseStyle {
name: string;
theme: ({ dt }: {
dt: any;
}) => 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: i0.ɵɵFactoryDeclaration<GalleriaStyle, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<GalleriaStyle>;
}
/**
*
* Galleria is an advanced content gallery component.
*
* [Live Demo](https://www.primeng.org/galleria/)
*
* @module galleriastyle
*
*/
export 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"
}
export interface GalleriaStyle extends BaseStyle {
}