parent
70980de77a
commit
428dbe0469
|
@ -80,7 +80,7 @@ export interface AccordionClickEvent extends AccordionTabOpenEvent {}
|
||||||
*/
|
*/
|
||||||
export interface AccordionPassThroughOptions {
|
export interface AccordionPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: AccordionPassThroughOptionType;
|
root?: AccordionPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,15 +50,15 @@ export interface AccordionContentPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface AccordionContentPassThroughOptions {
|
export interface AccordionContentPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: AccordionContentPassThroughOptionType;
|
root?: AccordionContentPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the transitions DOM element.
|
* Used to pass attributes to the transition's DOM element.
|
||||||
*/
|
*/
|
||||||
transition?: AccordionContentPassThroughOptionType;
|
transition?: AccordionContentPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: AccordionContentPassThroughOptionType;
|
content?: AccordionContentPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,11 +50,11 @@ export interface AccordionHeaderPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface AccordionHeaderPassThroughOptions {
|
export interface AccordionHeaderPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: AccordionHeaderPassThroughOptionType;
|
root?: AccordionHeaderPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
toggleicon?: AccordionHeaderPassThroughOptionType;
|
toggleicon?: AccordionHeaderPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,7 +50,7 @@ export interface AccordionPanelPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface AccordionPanelPassThroughOptions {
|
export interface AccordionPanelPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: AccordionPanelPassThroughOptionType;
|
root?: AccordionPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -52,31 +52,31 @@ export interface AccordionTabPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface AccordionTabPassThroughOptions {
|
export interface AccordionTabPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: AccordionTabPassThroughOptionType;
|
root?: AccordionTabPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: AccordionTabPassThroughOptionType;
|
header?: AccordionTabPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headeractions DOM element.
|
* Used to pass attributes to the headeraction's DOM element.
|
||||||
*/
|
*/
|
||||||
headerAction?: AccordionTabPassThroughOptionType;
|
headerAction?: AccordionTabPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headericons DOM element.
|
* Used to pass attributes to the headericon's DOM element.
|
||||||
*/
|
*/
|
||||||
headerIcon?: AccordionTabPassThroughOptionType;
|
headerIcon?: AccordionTabPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headertitles DOM element.
|
* Used to pass attributes to the headertitle's DOM element.
|
||||||
*/
|
*/
|
||||||
headerTitle?: AccordionTabPassThroughOptionType;
|
headerTitle?: AccordionTabPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the toggleablecontents DOM element.
|
* Used to pass attributes to the toggleablecontent's DOM element.
|
||||||
*/
|
*/
|
||||||
toggleableContent?: AccordionTabPassThroughOptionType;
|
toggleableContent?: AccordionTabPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: AccordionTabPassThroughOptionType;
|
content?: AccordionTabPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -140,7 +140,7 @@ export interface AutoCompleteCompleteEvent {
|
||||||
*/
|
*/
|
||||||
export interface AutoCompletePassThroughOptions {
|
export interface AutoCompletePassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: AutoCompletePassThroughOptionType;
|
root?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -149,11 +149,11 @@ export interface AutoCompletePassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcInput?: InputTextPassThroughOptions<AutoCompleteSharedPassThroughMethodOptions> | AutoCompletePassThroughOptionType;
|
pcInput?: InputTextPassThroughOptions<AutoCompleteSharedPassThroughMethodOptions> | AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the input multiples DOM element.
|
* Used to pass attributes to the input multiple's DOM element.
|
||||||
*/
|
*/
|
||||||
inputMultiple?: AutoCompletePassThroughOptionType;
|
inputMultiple?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the chips DOM element.
|
* Used to pass attributes to the chip's DOM element.
|
||||||
*/
|
*/
|
||||||
chipItem?: AutoCompletePassThroughOptionType;
|
chipItem?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -162,27 +162,27 @@ export interface AutoCompletePassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcChip?: ChipPassThroughOptions<AutoCompleteSharedPassThroughMethodOptions>;
|
pcChip?: ChipPassThroughOptions<AutoCompleteSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the chip icons DOM element.
|
* Used to pass attributes to the chip icon's DOM element.
|
||||||
*/
|
*/
|
||||||
chipIcon?: AutoCompletePassThroughOptionType;
|
chipIcon?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the input chips DOM element.
|
* Used to pass attributes to the input chip's DOM element.
|
||||||
*/
|
*/
|
||||||
inputChip?: AutoCompletePassThroughOptionType;
|
inputChip?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the loaders DOM element.
|
* Used to pass attributes to the loader's DOM element.
|
||||||
*/
|
*/
|
||||||
loader?: AutoCompletePassThroughOptionType;
|
loader?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the dropdowns DOM element.
|
* Used to pass attributes to the dropdown's DOM element.
|
||||||
*/
|
*/
|
||||||
dropdown?: AutoCompletePassThroughOptionType;
|
dropdown?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the dropdown icons DOM element.
|
* Used to pass attributes to the dropdown icon's DOM element.
|
||||||
*/
|
*/
|
||||||
dropdownIcon?: AutoCompletePassThroughOptionType;
|
dropdownIcon?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the overlays DOM element.
|
* Used to pass attributes to the overlay's DOM element.
|
||||||
*/
|
*/
|
||||||
overlay?: AutoCompletePassThroughOptionType;
|
overlay?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -191,27 +191,27 @@ export interface AutoCompletePassThroughOptions {
|
||||||
*/
|
*/
|
||||||
virtualScroller?: VirtualScrollerPassThroughOptionType;
|
virtualScroller?: VirtualScrollerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
list?: AutoCompletePassThroughOptionType;
|
list?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option groups DOM element.
|
* Used to pass attributes to the option group's DOM element.
|
||||||
*/
|
*/
|
||||||
optionGroup?: AutoCompletePassThroughOptionType;
|
optionGroup?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the options DOM element.
|
* Used to pass attributes to the option's DOM element.
|
||||||
*/
|
*/
|
||||||
option?: AutoCompletePassThroughOptionType;
|
option?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the empty messages DOM element.
|
* Used to pass attributes to the empty message's DOM element.
|
||||||
*/
|
*/
|
||||||
emptyMessage?: AutoCompletePassThroughOptionType;
|
emptyMessage?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the search result messages DOM element.
|
* Used to pass attributes to the search result message's DOM element.
|
||||||
*/
|
*/
|
||||||
searchResultMessage?: AutoCompletePassThroughOptionType;
|
searchResultMessage?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the selected messages DOM element.
|
* Used to pass attributes to the selected message's DOM element.
|
||||||
*/
|
*/
|
||||||
selectedMessage?: AutoCompletePassThroughOptionType;
|
selectedMessage?: AutoCompletePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -52,19 +52,19 @@ export interface AvatarPassThroughAttributes {
|
||||||
*/
|
*/
|
||||||
export interface AvatarPassThroughOptions {
|
export interface AvatarPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: AvatarPassThroughOptionType;
|
root?: AvatarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the labels DOM element.
|
* Used to pass attributes to the label's DOM element.
|
||||||
*/
|
*/
|
||||||
label?: AvatarPassThroughOptionType;
|
label?: AvatarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the icons DOM element.
|
* Used to pass attributes to the icon's DOM element.
|
||||||
*/
|
*/
|
||||||
icon?: AvatarPassThroughOptionType;
|
icon?: AvatarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the images DOM element.
|
* Used to pass attributes to the image's DOM element.
|
||||||
*/
|
*/
|
||||||
image?: AvatarPassThroughOptionType;
|
image?: AvatarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -53,7 +53,7 @@ export interface AvatarGroupPassThroughAttributes {
|
||||||
*/
|
*/
|
||||||
export interface AvatarGroupPassThroughOptions {
|
export interface AvatarGroupPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: AvatarGroupPassThroughOptionType;
|
root?: AvatarGroupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -49,7 +49,7 @@ export interface BadgePassThroughAttributes {
|
||||||
*/
|
*/
|
||||||
export interface BadgePassThroughOptions<T = any> {
|
export interface BadgePassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: BadgePassThroughOptionType<T>;
|
root?: BadgePassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -63,7 +63,7 @@ export interface BadgeDirectiveOptions {
|
||||||
*/
|
*/
|
||||||
export interface BadgeDirectivePassThroughOptions {
|
export interface BadgeDirectivePassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: BadgeDirectivePassThroughOptionType;
|
root?: BadgeDirectivePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,11 +50,11 @@ export interface BlockUIPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface BlockUIPassThroughOptions {
|
export interface BlockUIPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: BlockUIPassThroughOptionType;
|
root?: BlockUIPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the masks DOM element.
|
* Used to pass attributes to the mask's DOM element.
|
||||||
*/
|
*/
|
||||||
mask?: BlockUIPassThroughOptionType;
|
mask?: BlockUIPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -51,35 +51,35 @@ export interface BreadcrumbPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface BreadcrumbPassThroughOptions {
|
export interface BreadcrumbPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: BreadcrumbPassThroughOptionType;
|
root?: BreadcrumbPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
list?: BreadcrumbPassThroughOptionType;
|
list?: BreadcrumbPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the items DOM element.
|
* Used to pass attributes to the item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: BreadcrumbPassThroughOptionType;
|
item?: BreadcrumbPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item links DOM element.
|
* Used to pass attributes to the item link's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLink?: BreadcrumbPassThroughOptionType;
|
itemLink?: BreadcrumbPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item icons DOM element.
|
* Used to pass attributes to the item icon's DOM element.
|
||||||
*/
|
*/
|
||||||
itemIcon?: BreadcrumbPassThroughOptionType;
|
itemIcon?: BreadcrumbPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item labels DOM element.
|
* Used to pass attributes to the item label's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLabel?: BreadcrumbPassThroughOptionType;
|
itemLabel?: BreadcrumbPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the separators DOM element.
|
* Used to pass attributes to the separator's DOM element.
|
||||||
*/
|
*/
|
||||||
separator?: BreadcrumbPassThroughOptionType;
|
separator?: BreadcrumbPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the separator icons DOM element.
|
* Used to pass attributes to the separator icon's DOM element.
|
||||||
*/
|
*/
|
||||||
separatorIcon?: BreadcrumbPassThroughOptionType;
|
separatorIcon?: BreadcrumbPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -46,19 +46,19 @@ export interface ButtonPassThroughMethodOptions<T> {
|
||||||
*/
|
*/
|
||||||
export interface ButtonPassThroughOptions<T = any> {
|
export interface ButtonPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ButtonPassThroughOptionType<T>;
|
root?: ButtonPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the loading icons DOM element.
|
* Used to pass attributes to the loading icon's DOM element.
|
||||||
*/
|
*/
|
||||||
loadingIcon?: ButtonPassThroughOptionType<T>;
|
loadingIcon?: ButtonPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the icons DOM element.
|
* Used to pass attributes to the icon's DOM element.
|
||||||
*/
|
*/
|
||||||
icon?: ButtonPassThroughOptionType<T>;
|
icon?: ButtonPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the labels DOM element.
|
* Used to pass attributes to the label's DOM element.
|
||||||
*/
|
*/
|
||||||
label?: ButtonPassThroughOptionType<T>;
|
label?: ButtonPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -38,7 +38,7 @@ export interface ButtonGroupPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface ButtonGroupPassThroughOptions {
|
export interface ButtonGroupPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ButtonGroupPassThroughOptionType;
|
root?: ButtonGroupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -42,35 +42,35 @@ export interface CardPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface CardPassThroughOptions {
|
export interface CardPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: CardPassThroughOptionType;
|
root?: CardPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: CardPassThroughOptionType;
|
header?: CardPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the bodys DOM element.
|
* Used to pass attributes to the body's DOM element.
|
||||||
*/
|
*/
|
||||||
body?: CardPassThroughOptionType;
|
body?: CardPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the captions DOM element.
|
* Used to pass attributes to the caption's DOM element.
|
||||||
*/
|
*/
|
||||||
caption?: CardPassThroughOptionType;
|
caption?: CardPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the titles DOM element.
|
* Used to pass attributes to the title's DOM element.
|
||||||
*/
|
*/
|
||||||
title?: CardPassThroughOptionType;
|
title?: CardPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the subtitles DOM element.
|
* Used to pass attributes to the subtitle's DOM element.
|
||||||
*/
|
*/
|
||||||
subtitle?: CardPassThroughOptionType;
|
subtitle?: CardPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: CardPassThroughOptionType;
|
content?: CardPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the footers DOM element.
|
* Used to pass attributes to the footer's DOM element.
|
||||||
*/
|
*/
|
||||||
footer?: CardPassThroughOptionType;
|
footer?: CardPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -69,61 +69,61 @@ export interface CarouselSharedPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface CarouselPassThroughOptions {
|
export interface CarouselPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: CarouselPassThroughOptionType;
|
root?: CarouselPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: CarouselPassThroughOptionType;
|
header?: CarouselPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the content containers DOM element.
|
* Used to pass attributes to the content container's DOM element.
|
||||||
*/
|
*/
|
||||||
contentContainer?: CarouselPassThroughOptionType;
|
contentContainer?: CarouselPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: CarouselPassThroughOptionType;
|
content?: CarouselPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the previous buttons DOM element.
|
* Used to pass attributes to the previous button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcPreviousButton?: ButtonPassThroughOptions<CarouselSharedPassThroughMethodOptions>;
|
pcPreviousButton?: ButtonPassThroughOptions<CarouselSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the viewports DOM element.
|
* Used to pass attributes to the viewport's DOM element.
|
||||||
*/
|
*/
|
||||||
viewport?: CarouselPassThroughOptionType;
|
viewport?: CarouselPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the items lists DOM element.
|
* Used to pass attributes to the items list's DOM element.
|
||||||
*/
|
*/
|
||||||
itemList?: CarouselPassThroughOptionType;
|
itemList?: CarouselPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item clones DOM element.
|
* Used to pass attributes to the item clone's DOM element.
|
||||||
*/
|
*/
|
||||||
itemClone?: CarouselPassThroughOptionType;
|
itemClone?: CarouselPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the items DOM element.
|
* Used to pass attributes to the item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: CarouselPassThroughOptionType;
|
item?: CarouselPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the next buttons DOM element.
|
* Used to pass attributes to the next button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcNextButton?: ButtonPassThroughOptions<CarouselSharedPassThroughMethodOptions>;
|
pcNextButton?: ButtonPassThroughOptions<CarouselSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the indicator lists DOM element.
|
* Used to pass attributes to the indicator list's DOM element.
|
||||||
*/
|
*/
|
||||||
indicatorList?: CarouselPassThroughOptionType;
|
indicatorList?: CarouselPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the indicators DOM element.
|
* Used to pass attributes to the indicator's DOM element.
|
||||||
*/
|
*/
|
||||||
indicator?: CarouselPassThroughOptionType;
|
indicator?: CarouselPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the indicator buttons DOM element.
|
* Used to pass attributes to the indicator button's DOM element.
|
||||||
*/
|
*/
|
||||||
indicatorButton?: CarouselPassThroughOptionType;
|
indicatorButton?: CarouselPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the footers DOM element.
|
* Used to pass attributes to the footer's DOM element.
|
||||||
*/
|
*/
|
||||||
footer?: CarouselPassThroughOptionType;
|
footer?: CarouselPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -77,71 +77,71 @@ export interface CascadeSelectGroupChangeEvent extends CascadeSelectChangeEvent
|
||||||
*/
|
*/
|
||||||
export interface CascadeSelectPassThroughOptions {
|
export interface CascadeSelectPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: CascadeSelectPassThroughOptionType;
|
root?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the inputs DOM element.
|
* Used to pass attributes to the input's DOM element.
|
||||||
*/
|
*/
|
||||||
input?: CascadeSelectPassThroughOptionType;
|
input?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the labels DOM element.
|
* Used to pass attributes to the label's DOM element.
|
||||||
*/
|
*/
|
||||||
label?: CascadeSelectPassThroughOptionType;
|
label?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the dropdown buttons DOM element.
|
* Used to pass attributes to the dropdown button's DOM element.
|
||||||
*/
|
*/
|
||||||
dropdown?: CascadeSelectPassThroughOptionType;
|
dropdown?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the dropdown icons DOM element.
|
* Used to pass attributes to the dropdown icon's DOM element.
|
||||||
*/
|
*/
|
||||||
dropdownIcon?: CascadeSelectPassThroughOptionType;
|
dropdownIcon?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the loading icons DOM element.
|
* Used to pass attributes to the loading icon's DOM element.
|
||||||
*/
|
*/
|
||||||
loadingIcon?: CascadeSelectPassThroughOptionType;
|
loadingIcon?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the overlays DOM element.
|
* Used to pass attributes to the overlay's DOM element.
|
||||||
*/
|
*/
|
||||||
overlay?: CascadeSelectPassThroughOptionType;
|
overlay?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the list containers DOM element.
|
* Used to pass attributes to the list container's DOM element.
|
||||||
*/
|
*/
|
||||||
listContainer?: CascadeSelectPassThroughOptionType;
|
listContainer?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
list?: CascadeSelectPassThroughOptionType;
|
list?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the options DOM element.
|
* Used to pass attributes to the option's DOM element.
|
||||||
*/
|
*/
|
||||||
option?: CascadeSelectPassThroughOptionType;
|
option?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option contents DOM element.
|
* Used to pass attributes to the option content's DOM element.
|
||||||
*/
|
*/
|
||||||
optionContent?: CascadeSelectPassThroughOptionType;
|
optionContent?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option texts DOM element.
|
* Used to pass attributes to the option text's DOM element.
|
||||||
*/
|
*/
|
||||||
optionText?: CascadeSelectPassThroughOptionType;
|
optionText?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option lists DOM element.
|
* Used to pass attributes to the option list's DOM element.
|
||||||
*/
|
*/
|
||||||
optionList?: CascadeSelectPassThroughOptionType;
|
optionList?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the group icons DOM element.
|
* Used to pass attributes to the group icon's DOM element.
|
||||||
*/
|
*/
|
||||||
groupIcon?: CascadeSelectPassThroughOptionType;
|
groupIcon?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden input containers DOM element.
|
* Used to pass attributes to the hidden input container's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenInputContainer?: CascadeSelectPassThroughOptionType;
|
hiddenInputContainer?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden selected messages DOM element.
|
* Used to pass attributes to the hidden selected message's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenSelectedMessage?: CascadeSelectPassThroughOptionType;
|
hiddenSelectedMessage?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the search result message text arias DOM element.
|
* Used to pass attributes to the search result message text aria's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenSearchResult?: CascadeSelectPassThroughOptionType;
|
hiddenSearchResult?: CascadeSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -46,11 +46,11 @@ export interface ChartPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface ChartPassThroughOptions {
|
export interface ChartPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ChartPassThroughOptionType;
|
root?: ChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the canvass DOM element.
|
* Used to pass attributes to the canvas's DOM element.
|
||||||
*/
|
*/
|
||||||
canvas?: ChartPassThroughOptionType;
|
canvas?: ChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -54,19 +54,19 @@ export interface CheckboxPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface CheckboxPassThroughOptions {
|
export interface CheckboxPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: CheckboxPassThroughOptionType;
|
root?: CheckboxPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the inputs DOM element.
|
* Used to pass attributes to the input's DOM element.
|
||||||
*/
|
*/
|
||||||
input?: CheckboxPassThroughOptionType;
|
input?: CheckboxPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the boxs DOM element.
|
* Used to pass attributes to the box's DOM element.
|
||||||
*/
|
*/
|
||||||
box?: CheckboxPassThroughOptionType;
|
box?: CheckboxPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the icons DOM element.
|
* Used to pass attributes to the icon's DOM element.
|
||||||
*/
|
*/
|
||||||
icon?: CheckboxPassThroughOptionType;
|
icon?: CheckboxPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,15 +50,15 @@ export interface ChipPassThroughMethodOptions<T> {
|
||||||
*/
|
*/
|
||||||
export interface ChipPassThroughOptions<T = any> {
|
export interface ChipPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ChipPassThroughOptionType<T>;
|
root?: ChipPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the images DOM element.
|
* Used to pass attributes to the image's DOM element.
|
||||||
*/
|
*/
|
||||||
image?: ChipPassThroughOptionType<T>;
|
image?: ChipPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the icons DOM element.
|
* Used to pass attributes to the icon's DOM element.
|
||||||
*/
|
*/
|
||||||
icon?: ChipPassThroughOptionType<T>;
|
icon?: ChipPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
@ -66,7 +66,7 @@ export interface ChipPassThroughOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
label?: ChipPassThroughOptionType<T>;
|
label?: ChipPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the removeIcons DOM element.
|
* Used to pass attributes to the removeIcon's DOM element.
|
||||||
*/
|
*/
|
||||||
removeIcon?: ChipPassThroughOptionType<T>;
|
removeIcon?: ChipPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -67,39 +67,39 @@ export interface ColorPickerChangeEvent {
|
||||||
*/
|
*/
|
||||||
export interface ColorPickerPassThroughOptions {
|
export interface ColorPickerPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ColorPickerPassThroughOptionType;
|
root?: ColorPickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the previews DOM element.
|
* Used to pass attributes to the preview's DOM element.
|
||||||
*/
|
*/
|
||||||
preview?: ColorPickerPassThroughOptionType;
|
preview?: ColorPickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the panels DOM element.
|
* Used to pass attributes to the panel's DOM element.
|
||||||
*/
|
*/
|
||||||
panel?: ColorPickerPassThroughOptionType;
|
panel?: ColorPickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: ColorPickerPassThroughOptionType;
|
content?: ColorPickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the color selectors DOM element.
|
* Used to pass attributes to the color selector's DOM element.
|
||||||
*/
|
*/
|
||||||
colorSelector?: ColorPickerPassThroughOptionType;
|
colorSelector?: ColorPickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the color backgrounds DOM element.
|
* Used to pass attributes to the color background's DOM element.
|
||||||
*/
|
*/
|
||||||
colorBackground?: ColorPickerPassThroughOptionType;
|
colorBackground?: ColorPickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the color handlers DOM element.
|
* Used to pass attributes to the color handler's DOM element.
|
||||||
*/
|
*/
|
||||||
colorHandle?: ColorPickerPassThroughOptionType;
|
colorHandle?: ColorPickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hues DOM element.
|
* Used to pass attributes to the hue's DOM element.
|
||||||
*/
|
*/
|
||||||
hue?: ColorPickerPassThroughOptionType;
|
hue?: ColorPickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hue handlers DOM element.
|
* Used to pass attributes to the hue handler's DOM element.
|
||||||
*/
|
*/
|
||||||
hueHandle: ColorPickerPassThroughOptionType;
|
hueHandle: ColorPickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -127,31 +127,31 @@ export interface ColumnLoadingOptions extends VirtualScrollerLoaderOptions {
|
||||||
*/
|
*/
|
||||||
export interface ColumnPassThroughOptions {
|
export interface ColumnPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ColumnPassThroughOptionType;
|
root?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the header cells DOM element.
|
* Used to pass attributes to the header cell's DOM element.
|
||||||
*/
|
*/
|
||||||
headerCell?: ColumnPassThroughOptionType;
|
headerCell?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the column resizers DOM element.
|
* Used to pass attributes to the column resizer's DOM element.
|
||||||
*/
|
*/
|
||||||
columnResizer?: ColumnPassThroughOptionType;
|
columnResizer?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the column header contents DOM element.
|
* Used to pass attributes to the column header content's DOM element.
|
||||||
*/
|
*/
|
||||||
columnHeaderContent?: ColumnPassThroughOptionType;
|
columnHeaderContent?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the header titles DOM element.
|
* Used to pass attributes to the header title's DOM element.
|
||||||
*/
|
*/
|
||||||
columnTitle?: ColumnPassThroughOptionType;
|
columnTitle?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the sorts DOM element.
|
* Used to pass attributes to the sort's DOM element.
|
||||||
*/
|
*/
|
||||||
sort?: ColumnPassThroughOptionType;
|
sort?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the sort icons DOM element.
|
* Used to pass attributes to the sort icon's DOM element.
|
||||||
*/
|
*/
|
||||||
sortIcon?: ColumnPassThroughOptionType;
|
sortIcon?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -163,47 +163,47 @@ export interface ColumnPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcHeaderCheckbox?: CheckboxPassThroughOptionType;
|
pcHeaderCheckbox?: CheckboxPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the column filters DOM element.
|
* Used to pass attributes to the column filter's DOM element.
|
||||||
*/
|
*/
|
||||||
filter?: ColumnPassThroughOptionType;
|
filter?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter element containers DOM element.
|
* Used to pass attributes to the filter element container's DOM element.
|
||||||
*/
|
*/
|
||||||
filterElementContainer?: ColumnPassThroughOptionType;
|
filterElementContainer?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the column filter buttons DOM element.
|
* Used to pass attributes to the column filter button's DOM element.
|
||||||
*/
|
*/
|
||||||
pcColumnFilterButton?: ColumnPassThroughOptionType;
|
pcColumnFilterButton?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter menu icons DOM element.
|
* Used to pass attributes to the filter menu icon's DOM element.
|
||||||
*/
|
*/
|
||||||
filterMenuIcon?: ColumnPassThroughOptionType;
|
filterMenuIcon?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the column filter clear buttons DOM element.
|
* Used to pass attributes to the column filter clear button's DOM element.
|
||||||
*/
|
*/
|
||||||
pcColumnFilterClearButton?: ColumnPassThroughOptionType;
|
pcColumnFilterClearButton?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter clear icons DOM element.
|
* Used to pass attributes to the filter clear icon's DOM element.
|
||||||
*/
|
*/
|
||||||
filterClearIcon?: ColumnPassThroughOptionType;
|
filterClearIcon?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter overlays DOM element.
|
* Used to pass attributes to the filter overlay's DOM element.
|
||||||
*/
|
*/
|
||||||
filterOverlay?: ColumnPassThroughOptionType;
|
filterOverlay?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter constraint lists DOM element.
|
* Used to pass attributes to the filter constraint list's DOM element.
|
||||||
*/
|
*/
|
||||||
filterConstraintList?: ColumnPassThroughOptionType;
|
filterConstraintList?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter constraints DOM element.
|
* Used to pass attributes to the filter constraint's DOM element.
|
||||||
*/
|
*/
|
||||||
filterConstraint?: ColumnPassThroughOptionType;
|
filterConstraint?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter constraint separators DOM element.
|
* Used to pass attributes to the filter constraint separator's DOM element.
|
||||||
*/
|
*/
|
||||||
filterConstraintSeparator?: ColumnPassThroughOptionType;
|
filterConstraintSeparator?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter operators DOM element.
|
* Used to pass attributes to the filter operator's DOM element.
|
||||||
*/
|
*/
|
||||||
filterOperator?: ColumnPassThroughOptionType;
|
filterOperator?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -216,7 +216,7 @@ export interface ColumnPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
filterRuleList?: ColumnPassThroughOptionType;
|
filterRuleList?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter rules DOM element.
|
* Used to pass attributes to the filter rule's DOM element.
|
||||||
*/
|
*/
|
||||||
filterRule?: ColumnPassThroughOptionType;
|
filterRule?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -225,7 +225,7 @@ export interface ColumnPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcFilterConstraintDropdown?: SelectPassThroughOptionType<ColumnSharedPassThroughMethodOptions>;
|
pcFilterConstraintDropdown?: SelectPassThroughOptionType<ColumnSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter remove button containers DOM element.
|
* Used to pass attributes to the filter remove button container's DOM element.
|
||||||
*/
|
*/
|
||||||
filterRemove?: ColumnPassThroughOptionType;
|
filterRemove?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -234,7 +234,7 @@ export interface ColumnPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcFilterRemoveRuleButton?: ButtonPassThroughOptions<ColumnSharedPassThroughMethodOptions>;
|
pcFilterRemoveRuleButton?: ButtonPassThroughOptions<ColumnSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter add button containers DOM element.
|
* Used to pass attributes to the filter add button container's DOM element.
|
||||||
*/
|
*/
|
||||||
filterAddButtonContainer?: ColumnPassThroughOptionType;
|
filterAddButtonContainer?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -243,7 +243,7 @@ export interface ColumnPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcFilterAddRuleButton?: ButtonPassThroughOptions<ColumnSharedPassThroughMethodOptions>;
|
pcFilterAddRuleButton?: ButtonPassThroughOptions<ColumnSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter buttonbars DOM element.
|
* Used to pass attributes to the filter buttonbar's DOM element.
|
||||||
*/
|
*/
|
||||||
filterButtonbar?: ColumnPassThroughOptionType;
|
filterButtonbar?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -257,47 +257,47 @@ export interface ColumnPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcFilterApplyButton?: ButtonPassThroughOptions<ColumnSharedPassThroughMethodOptions>;
|
pcFilterApplyButton?: ButtonPassThroughOptions<ColumnSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the row toggler buttons DOM element.
|
* Used to pass attributes to the row toggler button's DOM element.
|
||||||
*/
|
*/
|
||||||
rowToggleButton?: ColumnPassThroughOptionType;
|
rowToggleButton?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the row toggler icons DOM element.
|
* Used to pass attributes to the row toggler icon's DOM element.
|
||||||
*/
|
*/
|
||||||
rowToggleIcon?: ColumnPassThroughOptionType;
|
rowToggleIcon?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the body cells DOM element.
|
* Used to pass attributes to the body cell's DOM element.
|
||||||
*/
|
*/
|
||||||
bodyCell?: ColumnPassThroughOptionType;
|
bodyCell?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the reorderable row handles DOM element.
|
* Used to pass attributes to the reorderable row handle's DOM element.
|
||||||
*/
|
*/
|
||||||
reorderableRowHandle?: ColumnPassThroughOptionType;
|
reorderableRowHandle?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the radiobuttons DOM element.
|
* Used to pass attributes to the radiobutton's DOM element.
|
||||||
*/
|
*/
|
||||||
pcRowRadiobutton?: RadioButtonPassThroughOptionType;
|
pcRowRadiobutton?: RadioButtonPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the checkboxs DOM element.
|
* Used to pass attributes to the checkbox's DOM element.
|
||||||
*/
|
*/
|
||||||
pcRowCheckbox?: CheckboxPassThroughOptionType;
|
pcRowCheckbox?: CheckboxPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the row editor init buttons DOM element.
|
* Used to pass attributes to the row editor init button's DOM element.
|
||||||
*/
|
*/
|
||||||
pcRowEditorInit?: ColumnPassThroughOptionType;
|
pcRowEditorInit?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the row editor save buttons DOM element.
|
* Used to pass attributes to the row editor save button's DOM element.
|
||||||
*/
|
*/
|
||||||
pcRowEditorSave?: ColumnPassThroughOptionType;
|
pcRowEditorSave?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the row editor cancel buttons DOM element.
|
* Used to pass attributes to the row editor cancel button's DOM element.
|
||||||
*/
|
*/
|
||||||
pcRowEditorCancel?: ColumnPassThroughOptionType;
|
pcRowEditorCancel?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the footer cells DOM element.
|
* Used to pass attributes to the footer cell's DOM element.
|
||||||
*/
|
*/
|
||||||
footerCell?: ColumnPassThroughOptionType;
|
footerCell?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the body cell contents DOM element.
|
* Used to pass attributes to the body cell content's DOM element.
|
||||||
*/
|
*/
|
||||||
bodyCellContent?: ColumnPassThroughOptionType;
|
bodyCellContent?: ColumnPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -49,7 +49,7 @@ export interface ColumnGroupPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface ColumnGroupPassThroughOptions {
|
export interface ColumnGroupPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ColumnGroupPassThroughOptionType;
|
root?: ColumnGroupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -66,15 +66,15 @@ export interface ConfirmDialogSharedPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface ConfirmDialogPassThroughOptions {
|
export interface ConfirmDialogPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ConfirmDialogPassThroughOptionType;
|
root?: ConfirmDialogPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: ConfirmDialogPassThroughOptionType;
|
header?: ConfirmDialogPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the header titles DOM element.
|
* Used to pass attributes to the header title's DOM element.
|
||||||
*/
|
*/
|
||||||
title?: ConfirmDialogPassThroughOptionType;
|
title?: ConfirmDialogPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -90,19 +90,19 @@ export interface ConfirmDialogPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
closeButtonIcon?: ConfirmDialogPassThroughOptionType;
|
closeButtonIcon?: ConfirmDialogPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: ConfirmDialogPassThroughOptionType;
|
content?: ConfirmDialogPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the icons DOM element.
|
* Used to pass attributes to the icon's DOM element.
|
||||||
*/
|
*/
|
||||||
icon?: ConfirmDialogPassThroughOptionType;
|
icon?: ConfirmDialogPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the messages DOM element.
|
* Used to pass attributes to the message's DOM element.
|
||||||
*/
|
*/
|
||||||
message?: ConfirmDialogPassThroughOptionType;
|
message?: ConfirmDialogPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the footers DOM element.
|
* Used to pass attributes to the footer's DOM element.
|
||||||
*/
|
*/
|
||||||
footer?: ConfirmDialogPassThroughOptionType;
|
footer?: ConfirmDialogPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -68,23 +68,23 @@ export interface ConfirmPopupSharedPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface ConfirmPopupPassThroughOptions {
|
export interface ConfirmPopupPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ConfirmPopupPassThroughOptionType;
|
root?: ConfirmPopupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: ConfirmPopupPassThroughOptionType;
|
content?: ConfirmPopupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the icons DOM element.
|
* Used to pass attributes to the icon's DOM element.
|
||||||
*/
|
*/
|
||||||
icon?: ConfirmPopupPassThroughOptionType;
|
icon?: ConfirmPopupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the messages DOM element.
|
* Used to pass attributes to the message's DOM element.
|
||||||
*/
|
*/
|
||||||
message?: ConfirmPopupPassThroughOptionType;
|
message?: ConfirmPopupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the footers DOM element.
|
* Used to pass attributes to the footer's DOM element.
|
||||||
*/
|
*/
|
||||||
footer?: ConfirmPopupPassThroughOptionType;
|
footer?: ConfirmPopupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -58,43 +58,43 @@ export interface ContextMenuPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface ContextMenuPassThroughOptions {
|
export interface ContextMenuPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ContextMenuPassThroughOptionType;
|
root?: ContextMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the root lists DOM element.
|
* Used to pass attributes to the root list's DOM element.
|
||||||
*/
|
*/
|
||||||
rootList?: ContextMenuPassThroughOptionType;
|
rootList?: ContextMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the items DOM element.
|
* Used to pass attributes to the item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: ContextMenuPassThroughOptionType;
|
item?: ContextMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item contents DOM element.
|
* Used to pass attributes to the item content's DOM element.
|
||||||
*/
|
*/
|
||||||
itemContent?: ContextMenuPassThroughOptionType;
|
itemContent?: ContextMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item links DOM element.
|
* Used to pass attributes to the item link's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLink?: ContextMenuPassThroughOptionType;
|
itemLink?: ContextMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item icons DOM element.
|
* Used to pass attributes to the item icon's DOM element.
|
||||||
*/
|
*/
|
||||||
itemIcon?: ContextMenuPassThroughOptionType;
|
itemIcon?: ContextMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item labels DOM element.
|
* Used to pass attributes to the item label's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLabel?: ContextMenuPassThroughOptionType;
|
itemLabel?: ContextMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the submenu icons DOM element.
|
* Used to pass attributes to the submenu icon's DOM element.
|
||||||
*/
|
*/
|
||||||
submenuIcon?: ContextMenuPassThroughOptionType;
|
submenuIcon?: ContextMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the separators DOM element.
|
* Used to pass attributes to the separator's DOM element.
|
||||||
*/
|
*/
|
||||||
separator?: ContextMenuPassThroughOptionType;
|
separator?: ContextMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the submenus DOM element.
|
* Used to pass attributes to the submenu's DOM element.
|
||||||
*/
|
*/
|
||||||
submenu?: ContextMenuPassThroughOptionType;
|
submenu?: ContextMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -654,19 +654,19 @@ export interface DataTableStateEvent {
|
||||||
*/
|
*/
|
||||||
export interface DataTablePassThroughOptions {
|
export interface DataTablePassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: DataTablePassThroughOptionType;
|
root?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the masks DOM element.
|
* Used to pass attributes to the mask's DOM element.
|
||||||
*/
|
*/
|
||||||
mask?: DataTablePassThroughOptionType;
|
mask?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the loading icons DOM element.
|
* Used to pass attributes to the loading icon's DOM element.
|
||||||
*/
|
*/
|
||||||
loadingIcon?: DataTablePassThroughOptionType;
|
loadingIcon?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: DataTablePassThroughOptionType;
|
header?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -675,7 +675,7 @@ export interface DataTablePassThroughOptions {
|
||||||
*/
|
*/
|
||||||
paginator?: PaginatorPassThroughOptionType<DataTableSharedPassThroughMethodOptions>;
|
paginator?: PaginatorPassThroughOptionType<DataTableSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the table containers DOM element.
|
* Used to pass attributes to the table container's DOM element.
|
||||||
*/
|
*/
|
||||||
tableContainer?: DataTablePassThroughOptionType;
|
tableContainer?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -684,83 +684,83 @@ export interface DataTablePassThroughOptions {
|
||||||
*/
|
*/
|
||||||
virtualScroller?: VirtualScrollerPassThroughOptionType;
|
virtualScroller?: VirtualScrollerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the tables DOM element.
|
* Used to pass attributes to the table's DOM element.
|
||||||
*/
|
*/
|
||||||
table?: DataTablePassThroughOptionType;
|
table?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the virtual scroller spacers DOM element.
|
* Used to pass attributes to the virtual scroller spacer's DOM element.
|
||||||
*/
|
*/
|
||||||
virtualScrollerSpacer?: DataTablePassThroughOptionType;
|
virtualScrollerSpacer?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the footers DOM element.
|
* Used to pass attributes to the footer's DOM element.
|
||||||
*/
|
*/
|
||||||
footer?: DataTablePassThroughOptionType;
|
footer?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the theads DOM element.
|
* Used to pass attributes to the thead's DOM element.
|
||||||
*/
|
*/
|
||||||
thead?: DataTablePassThroughOptionType;
|
thead?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the header rows DOM element.
|
* Used to pass attributes to the header row's DOM element.
|
||||||
*/
|
*/
|
||||||
headerRow?: DataTablePassThroughOptionType;
|
headerRow?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the tbodys DOM element.
|
* Used to pass attributes to the tbody's DOM element.
|
||||||
*/
|
*/
|
||||||
tbody?: DataTablePassThroughOptionType;
|
tbody?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the rowg roup headers DOM element.
|
* Used to pass attributes to the rowg roup header's DOM element.
|
||||||
*/
|
*/
|
||||||
rowGroupHeader?: DataTablePassThroughOptionType;
|
rowGroupHeader?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the row group header cells DOM element.
|
* Used to pass attributes to the row group header cell's DOM element.
|
||||||
*/
|
*/
|
||||||
rowGroupHeaderCell?: DataTablePassThroughOptionType;
|
rowGroupHeaderCell?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the body rows DOM element.
|
* Used to pass attributes to the body row's DOM element.
|
||||||
*/
|
*/
|
||||||
bodyRow?: DataTablePassThroughOptionType;
|
bodyRow?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the row expansions DOM element.
|
* Used to pass attributes to the row expansion's DOM element.
|
||||||
*/
|
*/
|
||||||
rowExpansion?: DataTablePassThroughOptionType;
|
rowExpansion?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the row expansion cells DOM element.
|
* Used to pass attributes to the row expansion cell's DOM element.
|
||||||
*/
|
*/
|
||||||
rowExpansionCell?: DataTablePassThroughOptionType;
|
rowExpansionCell?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the row group footers DOM element.
|
* Used to pass attributes to the row group footer's DOM element.
|
||||||
*/
|
*/
|
||||||
rowGroupFooter?: DataTablePassThroughOptionType;
|
rowGroupFooter?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the row group footer cells DOM element.
|
* Used to pass attributes to the row group footer cell's DOM element.
|
||||||
*/
|
*/
|
||||||
rowGroupFooterCell?: DataTablePassThroughOptionType;
|
rowGroupFooterCell?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the empty messages DOM element.
|
* Used to pass attributes to the empty message's DOM element.
|
||||||
*/
|
*/
|
||||||
emptyMessage?: DataTablePassThroughOptionType;
|
emptyMessage?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the empty message cells DOM element.
|
* Used to pass attributes to the empty message cell's DOM element.
|
||||||
*/
|
*/
|
||||||
emptyMessageCell?: DataTablePassThroughOptionType;
|
emptyMessageCell?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the tfoots DOM element.
|
* Used to pass attributes to the tfoot's DOM element.
|
||||||
*/
|
*/
|
||||||
tfoot?: DataTablePassThroughOptionType;
|
tfoot?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the footer rows DOM element.
|
* Used to pass attributes to the footer row's DOM element.
|
||||||
*/
|
*/
|
||||||
footerRow?: DataTablePassThroughOptionType;
|
footerRow?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the column resize indicators DOM element.
|
* Used to pass attributes to the column resize indicator's DOM element.
|
||||||
*/
|
*/
|
||||||
columnResizeIndicator?: DataTablePassThroughOptionType;
|
columnResizeIndicator?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the row reorder indicator ups DOM element.
|
* Used to pass attributes to the row reorder indicator up's DOM element.
|
||||||
*/
|
*/
|
||||||
rowReorderIndicatorUp?: DataTablePassThroughOptionType;
|
rowReorderIndicatorUp?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the row reorder indicator downs DOM element.
|
* Used to pass attributes to the row reorder indicator down's DOM element.
|
||||||
*/
|
*/
|
||||||
rowReorderIndicatorDown?: DataTablePassThroughOptionType;
|
rowReorderIndicatorDown?: DataTablePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -88,11 +88,11 @@ export interface DataViewPageEvent {
|
||||||
*/
|
*/
|
||||||
export interface DataViewPassThroughOptions {
|
export interface DataViewPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: DataViewPassThroughOptionType;
|
root?: DataViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: DataViewPassThroughOptionType;
|
header?: DataViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -101,15 +101,15 @@ export interface DataViewPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcPaginator?: PaginatorPassThroughOptionType<DataViewSharedPassThroughMethodOptions>;
|
pcPaginator?: PaginatorPassThroughOptionType<DataViewSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: DataViewPassThroughOptionType;
|
content?: DataViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the empty messages DOM element.
|
* Used to pass attributes to the empty message's DOM element.
|
||||||
*/
|
*/
|
||||||
emptyMessage?: DataViewPassThroughOptionType;
|
emptyMessage?: DataViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the footers DOM element.
|
* Used to pass attributes to the footer's DOM element.
|
||||||
*/
|
*/
|
||||||
footer?: DataViewPassThroughOptionType;
|
footer?: DataViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -131,7 +131,7 @@ export interface DatePickerBlurEvent {
|
||||||
*/
|
*/
|
||||||
export interface DatePickerPassThroughOptions {
|
export interface DatePickerPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: DatePickerPassThroughOptionType;
|
root?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -140,225 +140,225 @@ export interface DatePickerPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcInput?: InputTextPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
pcInput?: InputTextPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the dropdowns DOM element.
|
* Used to pass attributes to the dropdown's DOM element.
|
||||||
*/
|
*/
|
||||||
dropdown?: DatePickerPassThroughOptionType;
|
dropdown?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the dropdown icons DOM element.
|
* Used to pass attributes to the dropdown icon's DOM element.
|
||||||
*/
|
*/
|
||||||
dropdownIcon?: DatePickerPassThroughOptionType;
|
dropdownIcon?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the input icon containers DOM element.
|
* Used to pass attributes to the input icon container's DOM element.
|
||||||
*/
|
*/
|
||||||
inputIconContainer?: DatePickerPassThroughOptionType;
|
inputIconContainer?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the input icons DOM element.
|
* Used to pass attributes to the input icon's DOM element.
|
||||||
*/
|
*/
|
||||||
inputIcon?: DatePickerPassThroughOptionType;
|
inputIcon?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the panels DOM element.
|
* Used to pass attributes to the panel's DOM element.
|
||||||
*/
|
*/
|
||||||
panel?: DatePickerPassThroughOptionType;
|
panel?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the calendar containers DOM element.
|
* Used to pass attributes to the calendar container's DOM element.
|
||||||
*/
|
*/
|
||||||
calendarContainer?: DatePickerPassThroughOptionType;
|
calendarContainer?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the calendars DOM element.
|
* Used to pass attributes to the calendar's DOM element.
|
||||||
*/
|
*/
|
||||||
calendar?: DatePickerPassThroughOptionType;
|
calendar?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: DatePickerPassThroughOptionType;
|
header?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the previous buttons DOM element.
|
* Used to pass attributes to the previous button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcPreviousButton?: ButtonPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
pcPreviousButton?: ButtonPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the titles DOM element.
|
* Used to pass attributes to the title's DOM element.
|
||||||
*/
|
*/
|
||||||
title?: DatePickerPassThroughOptionType;
|
title?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the view months DOM element.
|
* Used to pass attributes to the view month's DOM element.
|
||||||
*/
|
*/
|
||||||
viewMonth?: DatePickerPassThroughOptionType;
|
viewMonth?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the view years DOM element.
|
* Used to pass attributes to the view year's DOM element.
|
||||||
*/
|
*/
|
||||||
viewYear?: DatePickerPassThroughOptionType;
|
viewYear?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the decades DOM element.
|
* Used to pass attributes to the decade's DOM element.
|
||||||
*/
|
*/
|
||||||
decade?: DatePickerPassThroughOptionType;
|
decade?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the view days DOM element.
|
* Used to pass attributes to the view day's DOM element.
|
||||||
*/
|
*/
|
||||||
dayView?: DatePickerPassThroughOptionType;
|
dayView?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the next buttons DOM element.
|
* Used to pass attributes to the next button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcNextButton?: ButtonPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
pcNextButton?: ButtonPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the containers DOM element.
|
* Used to pass attributes to the container's DOM element.
|
||||||
*/
|
*/
|
||||||
container?: DatePickerPassThroughOptionType;
|
container?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the tables DOM element.
|
* Used to pass attributes to the table's DOM element.
|
||||||
*/
|
*/
|
||||||
table?: DatePickerPassThroughOptionType;
|
table?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the table headers DOM element.
|
* Used to pass attributes to the table header's DOM element.
|
||||||
*/
|
*/
|
||||||
tableHeader?: DatePickerPassThroughOptionType;
|
tableHeader?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the table header rows DOM element.
|
* Used to pass attributes to the table header row's DOM element.
|
||||||
*/
|
*/
|
||||||
tableHeaderRow?: DatePickerPassThroughOptionType;
|
tableHeaderRow?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the week headers DOM element.
|
* Used to pass attributes to the week header's DOM element.
|
||||||
*/
|
*/
|
||||||
weekHeader?: DatePickerPassThroughOptionType;
|
weekHeader?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the week header labels DOM element.
|
* Used to pass attributes to the week header label's DOM element.
|
||||||
*/
|
*/
|
||||||
weekHeaderLabel?: DatePickerPassThroughOptionType;
|
weekHeaderLabel?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the table header cells DOM element.
|
* Used to pass attributes to the table header cell's DOM element.
|
||||||
*/
|
*/
|
||||||
tableHeaderCell?: DatePickerPassThroughOptionType;
|
tableHeaderCell?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the week day cells DOM element.
|
* Used to pass attributes to the week day cell's DOM element.
|
||||||
*/
|
*/
|
||||||
weekDayCell?: DatePickerPassThroughOptionType;
|
weekDayCell?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the week days DOM element.
|
* Used to pass attributes to the week day's DOM element.
|
||||||
*/
|
*/
|
||||||
weekDay?: DatePickerPassThroughOptionType;
|
weekDay?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the table bodys DOM element.
|
* Used to pass attributes to the table body's DOM element.
|
||||||
*/
|
*/
|
||||||
tableBody?: DatePickerPassThroughOptionType;
|
tableBody?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the table body rows DOM element.
|
* Used to pass attributes to the table body row's DOM element.
|
||||||
*/
|
*/
|
||||||
tableBodyRow?: DatePickerPassThroughOptionType;
|
tableBodyRow?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the week numbers DOM element.
|
* Used to pass attributes to the week number's DOM element.
|
||||||
*/
|
*/
|
||||||
weekNumber?: DatePickerPassThroughOptionType;
|
weekNumber?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the week label containers DOM element.
|
* Used to pass attributes to the week label container's DOM element.
|
||||||
*/
|
*/
|
||||||
weekLabelContainer?: DatePickerPassThroughOptionType;
|
weekLabelContainer?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the day cells DOM element.
|
* Used to pass attributes to the day cell's DOM element.
|
||||||
*/
|
*/
|
||||||
dayCell?: DatePickerPassThroughOptionType;
|
dayCell?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the days DOM element.
|
* Used to pass attributes to the day's DOM element.
|
||||||
*/
|
*/
|
||||||
day?: DatePickerPassThroughOptionType;
|
day?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the month views DOM element.
|
* Used to pass attributes to the month view's DOM element.
|
||||||
*/
|
*/
|
||||||
monthView?: DatePickerPassThroughOptionType;
|
monthView?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the months DOM element.
|
* Used to pass attributes to the month's DOM element.
|
||||||
*/
|
*/
|
||||||
month?: DatePickerPassThroughOptionType;
|
month?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the year views DOM element.
|
* Used to pass attributes to the year view's DOM element.
|
||||||
*/
|
*/
|
||||||
yearView?: DatePickerPassThroughOptionType;
|
yearView?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the years DOM element.
|
* Used to pass attributes to the year's DOM element.
|
||||||
*/
|
*/
|
||||||
year?: DatePickerPassThroughOptionType;
|
year?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the time pickers DOM element.
|
* Used to pass attributes to the time picker's DOM element.
|
||||||
*/
|
*/
|
||||||
timePicker?: DatePickerPassThroughOptionType;
|
timePicker?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hour pickers DOM element.
|
* Used to pass attributes to the hour picker's DOM element.
|
||||||
*/
|
*/
|
||||||
hourPicker?: DatePickerPassThroughOptionType;
|
hourPicker?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hours DOM element.
|
* Used to pass attributes to the hour's DOM element.
|
||||||
*/
|
*/
|
||||||
hour?: DatePickerPassThroughOptionType;
|
hour?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the separator containers DOM element.
|
* Used to pass attributes to the separator container's DOM element.
|
||||||
*/
|
*/
|
||||||
separatorContainer?: DatePickerPassThroughOptionType;
|
separatorContainer?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the separators DOM element.
|
* Used to pass attributes to the separator's DOM element.
|
||||||
*/
|
*/
|
||||||
separator?: DatePickerPassThroughOptionType;
|
separator?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the minute pickers DOM element.
|
* Used to pass attributes to the minute picker's DOM element.
|
||||||
*/
|
*/
|
||||||
minutePicker?: DatePickerPassThroughOptionType;
|
minutePicker?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the minutes DOM element.
|
* Used to pass attributes to the minute's DOM element.
|
||||||
*/
|
*/
|
||||||
minute?: DatePickerPassThroughOptionType;
|
minute?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the second pickers DOM element.
|
* Used to pass attributes to the second picker's DOM element.
|
||||||
*/
|
*/
|
||||||
secondPicker?: DatePickerPassThroughOptionType;
|
secondPicker?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the seconds DOM element.
|
* Used to pass attributes to the second's DOM element.
|
||||||
*/
|
*/
|
||||||
second?: DatePickerPassThroughOptionType;
|
second?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the ampm pickers DOM element.
|
* Used to pass attributes to the ampm picker's DOM element.
|
||||||
*/
|
*/
|
||||||
ampmPicker?: DatePickerPassThroughOptionType;
|
ampmPicker?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the ampms DOM element.
|
* Used to pass attributes to the ampm's DOM element.
|
||||||
*/
|
*/
|
||||||
ampm?: DatePickerPassThroughOptionType;
|
ampm?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the buttonbars DOM element.
|
* Used to pass attributes to the buttonbar's DOM element.
|
||||||
*/
|
*/
|
||||||
buttonbar?: DatePickerPassThroughOptionType;
|
buttonbar?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the increment buttons DOM element.
|
* Used to pass attributes to the increment button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcIncrementButton?: ButtonPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
pcIncrementButton?: ButtonPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the decrement buttons DOM element.
|
* Used to pass attributes to the decrement button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcDecrementButton?: ButtonPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
pcDecrementButton?: ButtonPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the today buttons DOM element.
|
* Used to pass attributes to the today button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcTodayButton?: ButtonPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
pcTodayButton?: ButtonPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the clear buttons DOM element.
|
* Used to pass attributes to the clear button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcClearButton?: ButtonPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
pcClearButton?: ButtonPassThroughOptions<DatePickerSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the aria selected days DOM element.
|
* Used to pass attributes to the aria selected day's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenSelectedDay?: DatePickerPassThroughOptionType;
|
hiddenSelectedDay?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the aria months DOM element.
|
* Used to pass attributes to the aria month's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenMonth?: DatePickerPassThroughOptionType;
|
hiddenMonth?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the aria years DOM element.
|
* Used to pass attributes to the aria year's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenYear?: DatePickerPassThroughOptionType;
|
hiddenYear?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the datepicker masks DOM element.
|
* Used to pass attributes to the datepicker mask's DOM element.
|
||||||
*/
|
*/
|
||||||
datepickerMask?: DatePickerPassThroughOptionType;
|
datepickerMask?: DatePickerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,7 +50,7 @@ export interface DeferredContentPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface DeferredContentPassThroughOptions {
|
export interface DeferredContentPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: DeferredContentPassThroughOptionType;
|
root?: DeferredContentPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -63,15 +63,15 @@ export interface DialogSharedPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface DialogPassThroughOptions<T = any> {
|
export interface DialogPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: DialogPassThroughOptionType<T>;
|
root?: DialogPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: DialogPassThroughOptionType<T>;
|
header?: DialogPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the header titles DOM element.
|
* Used to pass attributes to the header title's DOM element.
|
||||||
*/
|
*/
|
||||||
title?: DialogPassThroughOptionType<T>;
|
title?: DialogPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
@ -89,15 +89,15 @@ export interface DialogPassThroughOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
pcCloseButton?: ButtonPassThroughOptions<DialogSharedPassThroughMethodOptions>;
|
pcCloseButton?: ButtonPassThroughOptions<DialogSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: DialogPassThroughOptionType<T>;
|
content?: DialogPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the footers DOM element.
|
* Used to pass attributes to the footer's DOM element.
|
||||||
*/
|
*/
|
||||||
footer?: DialogPassThroughOptionType<T>;
|
footer?: DialogPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the masks DOM element.
|
* Used to pass attributes to the mask's DOM element.
|
||||||
*/
|
*/
|
||||||
mask?: DialogPassThroughOptionType<T>;
|
mask?: DialogPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -46,11 +46,11 @@ export interface DividerPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface DividerPassThroughOptions {
|
export interface DividerPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: DividerPassThroughOptionType;
|
root?: DividerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: DividerPassThroughOptionType;
|
content?: DividerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -55,31 +55,31 @@ export interface DockPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface DockPassThroughOptions {
|
export interface DockPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: DockPassThroughOptionType;
|
root?: DockPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the list containers DOM element.
|
* Used to pass attributes to the list container's DOM element.
|
||||||
*/
|
*/
|
||||||
listContainer?: DockPassThroughOptionType;
|
listContainer?: DockPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
list?: DockPassThroughOptionType;
|
list?: DockPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the items DOM element.
|
* Used to pass attributes to the item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: DockPassThroughOptionType;
|
item?: DockPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item contents DOM element.
|
* Used to pass attributes to the item content's DOM element.
|
||||||
*/
|
*/
|
||||||
itemContent?: DockPassThroughOptionType;
|
itemContent?: DockPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item links DOM element.
|
* Used to pass attributes to the item link's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLink?: DockPassThroughOptionType;
|
itemLink?: DockPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item icons DOM element.
|
* Used to pass attributes to the item icon's DOM element.
|
||||||
*/
|
*/
|
||||||
itemIcon?: DockPassThroughOptionType;
|
itemIcon?: DockPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -67,28 +67,28 @@ export interface DrawerSharedPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface DrawerPassThroughOptions {
|
export interface DrawerPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: DrawerPassThroughOptionType;
|
root?: DrawerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: DrawerPassThroughOptionType;
|
header?: DrawerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the header contents DOM element.
|
* Used to pass attributes to the header content's DOM element.
|
||||||
*/
|
*/
|
||||||
title?: DrawerPassThroughOptionType;
|
title?: DrawerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the close buttons DOM element.
|
* Used to pass attributes to the close button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcCloseButton?: ButtonPassThroughOptions<DrawerSharedPassThroughMethodOptions>;
|
pcCloseButton?: ButtonPassThroughOptions<DrawerSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: DrawerPassThroughOptionType;
|
content?: DrawerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the masks DOM element.
|
* Used to pass attributes to the mask's DOM element.
|
||||||
*/
|
*/
|
||||||
mask?: DrawerPassThroughOptionType;
|
mask?: DrawerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -117,11 +117,11 @@ export interface EditorLoadEvent {
|
||||||
*/
|
*/
|
||||||
export interface EditorPassThroughOptions {
|
export interface EditorPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: EditorPassThroughOptionType;
|
root?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the toolbars DOM element.
|
* Used to pass attributes to the toolbar's DOM element.
|
||||||
*/
|
*/
|
||||||
toolbar?: EditorPassThroughOptionType;
|
toolbar?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -129,59 +129,59 @@ export interface EditorPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
formats?: EditorPassThroughOptionType;
|
formats?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: EditorPassThroughOptionType;
|
header?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the options DOM element.
|
* Used to pass attributes to the option's DOM element.
|
||||||
*/
|
*/
|
||||||
option?: EditorPassThroughOptionType;
|
option?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the bolds DOM element.
|
* Used to pass attributes to the bold's DOM element.
|
||||||
*/
|
*/
|
||||||
bold?: EditorPassThroughOptionType;
|
bold?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the italics DOM element.
|
* Used to pass attributes to the italic's DOM element.
|
||||||
*/
|
*/
|
||||||
italic?: EditorPassThroughOptionType;
|
italic?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the underlines DOM element.
|
* Used to pass attributes to the underline's DOM element.
|
||||||
*/
|
*/
|
||||||
underline?: EditorPassThroughOptionType;
|
underline?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the colors DOM element.
|
* Used to pass attributes to the color's DOM element.
|
||||||
*/
|
*/
|
||||||
color?: EditorPassThroughOptionType;
|
color?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the backgrounds DOM element.
|
* Used to pass attributes to the background's DOM element.
|
||||||
*/
|
*/
|
||||||
background?: EditorPassThroughOptionType;
|
background?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
list?: EditorPassThroughOptionType;
|
list?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the selects DOM element.
|
* Used to pass attributes to the select's DOM element.
|
||||||
*/
|
*/
|
||||||
select?: EditorPassThroughOptionType;
|
select?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the links DOM element.
|
* Used to pass attributes to the link's DOM element.
|
||||||
*/
|
*/
|
||||||
link?: EditorPassThroughOptionType;
|
link?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the images DOM element.
|
* Used to pass attributes to the image's DOM element.
|
||||||
*/
|
*/
|
||||||
image?: EditorPassThroughOptionType;
|
image?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the code blocks DOM element.
|
* Used to pass attributes to the code block's DOM element.
|
||||||
*/
|
*/
|
||||||
codeBlock?: EditorPassThroughOptionType;
|
codeBlock?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the cleans DOM element.
|
* Used to pass attributes to the clean's DOM element.
|
||||||
*/
|
*/
|
||||||
clean?: EditorPassThroughOptionType;
|
clean?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: EditorPassThroughOptionType;
|
content?: EditorPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -67,35 +67,35 @@ export interface FieldsetToggleEvent {
|
||||||
*/
|
*/
|
||||||
export interface FieldsetPassThroughOptions {
|
export interface FieldsetPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: FieldsetPassThroughOptionType;
|
root?: FieldsetPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the legends DOM element.
|
* Used to pass attributes to the legend's DOM element.
|
||||||
*/
|
*/
|
||||||
legend?: FieldsetPassThroughOptionType;
|
legend?: FieldsetPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the togglers DOM element.
|
* Used to pass attributes to the toggler's DOM element.
|
||||||
*/
|
*/
|
||||||
toggler?: FieldsetPassThroughOptionType;
|
toggler?: FieldsetPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the toggle icons DOM element.
|
* Used to pass attributes to the toggle icon's DOM element.
|
||||||
*/
|
*/
|
||||||
toggleIcon?: FieldsetPassThroughOptionType;
|
toggleIcon?: FieldsetPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the legend labels DOM element.
|
* Used to pass attributes to the legend label's DOM element.
|
||||||
*/
|
*/
|
||||||
toggleButton?: FieldsetPassThroughOptionType;
|
toggleButton?: FieldsetPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the legend labels DOM element.
|
* Used to pass attributes to the legend label's DOM element.
|
||||||
*/
|
*/
|
||||||
legendLabel?: FieldsetPassThroughOptionType;
|
legendLabel?: FieldsetPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the content containers DOM element.
|
* Used to pass attributes to the content container's DOM element.
|
||||||
*/
|
*/
|
||||||
contentContainer?: FieldsetPassThroughOptionType;
|
contentContainer?: FieldsetPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: FieldsetPassThroughOptionType;
|
content?: FieldsetPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -196,15 +196,15 @@ export interface FileUploadRemoveUploadedFile {
|
||||||
*/
|
*/
|
||||||
export interface FileUploadPassThroughOptions {
|
export interface FileUploadPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: FileUploadPassThroughOptionType;
|
root?: FileUploadPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the inputs DOM element.
|
* Used to pass attributes to the input's DOM element.
|
||||||
*/
|
*/
|
||||||
input?: FileUploadPassThroughOptionType;
|
input?: FileUploadPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: FileUploadPassThroughOptionType;
|
header?: FileUploadPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -223,7 +223,7 @@ export interface FileUploadPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcCancelButton?: ButtonPassThroughOptions<FileUploadPassThroughMethodOptions>;
|
pcCancelButton?: ButtonPassThroughOptions<FileUploadPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: FileUploadPassThroughOptionType;
|
content?: FileUploadPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -232,28 +232,28 @@ export interface FileUploadPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcProgressbar?: ProgressBarPassThroughOptions<FileUploadPassThroughMethodOptions>;
|
pcProgressbar?: ProgressBarPassThroughOptions<FileUploadPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the messages DOM element.
|
* Used to pass attributes to the message's DOM element.
|
||||||
* @see {@link MessagePassThroughOptions}
|
* @see {@link MessagePassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcMessage?: MessagePassThroughOptions<FileUploadPassThroughMethodOptions>;
|
pcMessage?: MessagePassThroughOptions<FileUploadPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the files DOM element.
|
* Used to pass attributes to the file's DOM element.
|
||||||
*/
|
*/
|
||||||
file?: FileUploadPassThroughOptionType;
|
file?: FileUploadPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the file thumbnails DOM element.
|
* Used to pass attributes to the file thumbnail's DOM element.
|
||||||
*/
|
*/
|
||||||
fileThumbnail?: FileUploadPassThroughOptionType;
|
fileThumbnail?: FileUploadPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the file infos DOM element.
|
* Used to pass attributes to the file info's DOM element.
|
||||||
*/
|
*/
|
||||||
fileInfo?: FileUploadPassThroughOptionType;
|
fileInfo?: FileUploadPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the fileNames DOM element.
|
* Used to pass attributes to the fileName's DOM element.
|
||||||
*/
|
*/
|
||||||
fileName?: FileUploadPassThroughOptionType;
|
fileName?: FileUploadPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the fileSizes DOM element.
|
* Used to pass attributes to the fileSize's DOM element.
|
||||||
*/
|
*/
|
||||||
fileSize?: FileUploadPassThroughOptionType;
|
fileSize?: FileUploadPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -266,12 +266,12 @@ export interface FileUploadPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
fileActions?: FileUploadPassThroughOptionType;
|
fileActions?: FileUploadPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the file remove buttons DOM element.
|
* Used to pass attributes to the file remove button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcFileRemoveButton?: ButtonPassThroughOptions<FileUploadPassThroughMethodOptions>;
|
pcFileRemoveButton?: ButtonPassThroughOptions<FileUploadPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the emptys DOM element.
|
* Used to pass attributes to the empty's DOM element.
|
||||||
*/
|
*/
|
||||||
empty?: FileUploadPassThroughOptionType;
|
empty?: FileUploadPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -280,7 +280,7 @@ export interface FileUploadPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcMessages?: MessagePassThroughOptions<FileUploadPassThroughMethodOptions>;
|
pcMessages?: MessagePassThroughOptions<FileUploadPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the basic mode's buttons DOM element.
|
* Used to pass attributes to the basic mode's button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcButton?: ButtonPassThroughOptions<FileUploadPassThroughMethodOptions>;
|
pcButton?: ButtonPassThroughOptions<FileUploadPassThroughMethodOptions>;
|
||||||
|
|
|
@ -48,7 +48,7 @@ export interface FloatLabelPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface FloatLabelPassThroughOptions {
|
export interface FloatLabelPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: FloatLabelPassThroughOptionType;
|
root?: FloatLabelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,15 +50,15 @@ export interface FocusTrapOptions {
|
||||||
*/
|
*/
|
||||||
export interface FocusTrapDirectivePassThroughOptions {
|
export interface FocusTrapDirectivePassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: FocusTrapDirectivePassThroughOptionType;
|
root?: FocusTrapDirectivePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the first focusable elements DOM element.
|
* Used to pass attributes to the first focusable element's DOM element.
|
||||||
*/
|
*/
|
||||||
firstFocusableElement?: FocusTrapDirectivePassThroughOptionType;
|
firstFocusableElement?: FocusTrapDirectivePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the last focusable elements DOM element.
|
* Used to pass attributes to the last focusable element's DOM element.
|
||||||
*/
|
*/
|
||||||
lastFocusableElement?: FocusTrapDirectivePassThroughOptionType;
|
lastFocusableElement?: FocusTrapDirectivePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -67,31 +67,31 @@ export interface GalleriaResponsiveOptions {
|
||||||
*/
|
*/
|
||||||
export interface GalleriaPassThroughOptions {
|
export interface GalleriaPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: GalleriaPassThroughOptionType;
|
root?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the close buttons DOM element.
|
* Used to pass attributes to the close button's DOM element.
|
||||||
*/
|
*/
|
||||||
closeButton?: GalleriaPassThroughOptionType;
|
closeButton?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the close icons DOM element.
|
* Used to pass attributes to the close icon's DOM element.
|
||||||
*/
|
*/
|
||||||
closeIcon?: GalleriaPassThroughOptionType;
|
closeIcon?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: GalleriaPassThroughOptionType;
|
header?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: GalleriaPassThroughOptionType;
|
content?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the footers DOM element.
|
* Used to pass attributes to the footer's DOM element.
|
||||||
*/
|
*/
|
||||||
footer?: GalleriaPassThroughOptionType;
|
footer?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item containers DOM element.
|
* Used to pass attributes to the item container's DOM element.
|
||||||
*/
|
*/
|
||||||
itemsContainer?: GalleriaPassThroughOptionType;
|
itemsContainer?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -99,39 +99,39 @@ export interface GalleriaPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
items?: GalleriaPassThroughOptionType;
|
items?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the previous item buttons DOM element.
|
* Used to pass attributes to the previous item button's DOM element.
|
||||||
*/
|
*/
|
||||||
previousItemButton?: GalleriaPassThroughOptionType;
|
previousItemButton?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the previous item icons DOM element.
|
* Used to pass attributes to the previous item icon's DOM element.
|
||||||
*/
|
*/
|
||||||
previousItemIcon?: GalleriaPassThroughOptionType;
|
previousItemIcon?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the items DOM element.
|
* Used to pass attributes to the item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: GalleriaPassThroughOptionType;
|
item?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the next item buttons DOM element.
|
* Used to pass attributes to the next item button's DOM element.
|
||||||
*/
|
*/
|
||||||
nextItemButton?: GalleriaPassThroughOptionType;
|
nextItemButton?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the next item icons DOM element.
|
* Used to pass attributes to the next item icon's DOM element.
|
||||||
*/
|
*/
|
||||||
nextItemIcon?: GalleriaPassThroughOptionType;
|
nextItemIcon?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the captions DOM element.
|
* Used to pass attributes to the caption's DOM element.
|
||||||
*/
|
*/
|
||||||
caption?: GalleriaPassThroughOptionType;
|
caption?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the indicator lists DOM element.
|
* Used to pass attributes to the indicator list's DOM element.
|
||||||
*/
|
*/
|
||||||
indicatorList?: GalleriaPassThroughOptionType;
|
indicatorList?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the indicators DOM element.
|
* Used to pass attributes to the indicator's DOM element.
|
||||||
*/
|
*/
|
||||||
indicator?: GalleriaPassThroughOptionType;
|
indicator?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the indicator buttons DOM element.
|
* Used to pass attributes to the indicator button's DOM element.
|
||||||
*/
|
*/
|
||||||
indicatorButton?: GalleriaPassThroughOptionType;
|
indicatorButton?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -139,19 +139,19 @@ export interface GalleriaPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
thumbnails?: GalleriaPassThroughOptionType;
|
thumbnails?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the thumbnail contents DOM element.
|
* Used to pass attributes to the thumbnail content's DOM element.
|
||||||
*/
|
*/
|
||||||
thumbnailContent?: GalleriaPassThroughOptionType;
|
thumbnailContent?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the previous thumbnail buttons DOM element.
|
* Used to pass attributes to the previous thumbnail button's DOM element.
|
||||||
*/
|
*/
|
||||||
previousThumbnailButton?: GalleriaPassThroughOptionType;
|
previousThumbnailButton?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the previous thumbnail icons DOM element.
|
* Used to pass attributes to the previous thumbnail icon's DOM element.
|
||||||
*/
|
*/
|
||||||
previousThumbnailIcon?: GalleriaPassThroughOptionType;
|
previousThumbnailIcon?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the thumbnails viewports DOM element.
|
* Used to pass attributes to the thumbnails viewport's DOM element.
|
||||||
*/
|
*/
|
||||||
thumbnailsViewport?: GalleriaPassThroughOptionType;
|
thumbnailsViewport?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -159,23 +159,23 @@ export interface GalleriaPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
thumbnailItems?: GalleriaPassThroughOptionType;
|
thumbnailItems?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the thumbnail items DOM element.
|
* Used to pass attributes to the thumbnail item's DOM element.
|
||||||
*/
|
*/
|
||||||
thumbnailItem?: GalleriaPassThroughOptionType;
|
thumbnailItem?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the thumbnails DOM element.
|
* Used to pass attributes to the thumbnail's DOM element.
|
||||||
*/
|
*/
|
||||||
thumbnail?: GalleriaPassThroughOptionType;
|
thumbnail?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the next thumbnail buttons DOM element.
|
* Used to pass attributes to the next thumbnail button's DOM element.
|
||||||
*/
|
*/
|
||||||
nextThumbnailButton?: GalleriaPassThroughOptionType;
|
nextThumbnailButton?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the next thumbnail icons DOM element.
|
* Used to pass attributes to the next thumbnail icon's DOM element.
|
||||||
*/
|
*/
|
||||||
nextThumbnailIcon?: GalleriaPassThroughOptionType;
|
nextThumbnailIcon?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the masks DOM element.
|
* Used to pass attributes to the mask's DOM element.
|
||||||
*/
|
*/
|
||||||
mask?: GalleriaPassThroughOptionType;
|
mask?: GalleriaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -46,7 +46,7 @@ export interface IconFieldPassThroughMethodOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
export interface IconFieldPassThroughOptions<T = any> {
|
export interface IconFieldPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: IconFieldPassThroughOptionType<T>;
|
root?: IconFieldPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -52,75 +52,75 @@ export interface ImagePassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface ImagePassThroughOptions {
|
export interface ImagePassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ImagePassThroughOptionType;
|
root?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the images DOM element.
|
* Used to pass attributes to the image's DOM element.
|
||||||
*/
|
*/
|
||||||
image?: ImagePassThroughOptionType;
|
image?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the preview masks DOM element.
|
* Used to pass attributes to the preview mask's DOM element.
|
||||||
*/
|
*/
|
||||||
previewMask?: ImagePassThroughOptionType;
|
previewMask?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the preview icons DOM element.
|
* Used to pass attributes to the preview icon's DOM element.
|
||||||
*/
|
*/
|
||||||
previewIcon?: ImagePassThroughOptionType;
|
previewIcon?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the masks DOM element.
|
* Used to pass attributes to the mask's DOM element.
|
||||||
*/
|
*/
|
||||||
mask?: ImagePassThroughOptionType;
|
mask?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the toolbars DOM element.
|
* Used to pass attributes to the toolbar's DOM element.
|
||||||
*/
|
*/
|
||||||
toolbar?: ImagePassThroughOptionType;
|
toolbar?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the rotate right buttons DOM element.
|
* Used to pass attributes to the rotate right button's DOM element.
|
||||||
*/
|
*/
|
||||||
rotateRightButton?: ImagePassThroughOptionType;
|
rotateRightButton?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the rotate right icons DOM element.
|
* Used to pass attributes to the rotate right icon's DOM element.
|
||||||
*/
|
*/
|
||||||
rotateRightIcon?: ImagePassThroughOptionType;
|
rotateRightIcon?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the rotate left buttons DOM element.
|
* Used to pass attributes to the rotate left button's DOM element.
|
||||||
*/
|
*/
|
||||||
rotateLeftButton?: ImagePassThroughOptionType;
|
rotateLeftButton?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the rotate left icons DOM element.
|
* Used to pass attributes to the rotate left icon's DOM element.
|
||||||
*/
|
*/
|
||||||
rotateLeftIcon?: ImagePassThroughOptionType;
|
rotateLeftIcon?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the zoom out buttons DOM element.
|
* Used to pass attributes to the zoom out button's DOM element.
|
||||||
*/
|
*/
|
||||||
zoomOutButton?: ImagePassThroughOptionType;
|
zoomOutButton?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the zoom out icons DOM element.
|
* Used to pass attributes to the zoom out icon's DOM element.
|
||||||
*/
|
*/
|
||||||
zoomOutIcon?: ImagePassThroughOptionType;
|
zoomOutIcon?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the zoom in buttons DOM element.
|
* Used to pass attributes to the zoom in button's DOM element.
|
||||||
*/
|
*/
|
||||||
zoomInButton?: ImagePassThroughOptionType;
|
zoomInButton?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the zoom in icons DOM element.
|
* Used to pass attributes to the zoom in icon's DOM element.
|
||||||
*/
|
*/
|
||||||
zoomInIcon?: ImagePassThroughOptionType;
|
zoomInIcon?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the close buttons DOM element.
|
* Used to pass attributes to the close button's DOM element.
|
||||||
*/
|
*/
|
||||||
closeButton?: ImagePassThroughOptionType;
|
closeButton?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the close icons DOM element.
|
* Used to pass attributes to the close icon's DOM element.
|
||||||
*/
|
*/
|
||||||
closeIcon?: ImagePassThroughOptionType;
|
closeIcon?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the original containers DOM element.
|
* Used to pass attributes to the original container's DOM element.
|
||||||
*/
|
*/
|
||||||
originalContainer?: ImagePassThroughOptionType;
|
originalContainer?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the originals DOM element.
|
* Used to pass attributes to the original's DOM element.
|
||||||
*/
|
*/
|
||||||
original?: ImagePassThroughOptionType;
|
original?: ImagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,15 +50,15 @@ export interface InlineMessagePassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface InlineMessagePassThroughOptions {
|
export interface InlineMessagePassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: InlineMessagePassThroughOptionType;
|
root?: InlineMessagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the icons DOM element.
|
* Used to pass attributes to the icon's DOM element.
|
||||||
*/
|
*/
|
||||||
icon?: InlineMessagePassThroughOptionType;
|
icon?: InlineMessagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the texts DOM element.
|
* Used to pass attributes to the text's DOM element.
|
||||||
*/
|
*/
|
||||||
text?: InlineMessagePassThroughOptionType;
|
text?: InlineMessagePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -64,15 +64,15 @@ export interface InplaceSharedPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface InplacePassThroughOptions {
|
export interface InplacePassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: InplacePassThroughOptionType;
|
root?: InplacePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the displays DOM element.
|
* Used to pass attributes to the display's DOM element.
|
||||||
*/
|
*/
|
||||||
display?: InplacePassThroughOptionType;
|
display?: InplacePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: InplacePassThroughOptionType;
|
content?: InplacePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -87,15 +87,15 @@ export interface InputChipsRemoveEvent extends InputChipsAddEvent {}
|
||||||
*/
|
*/
|
||||||
export interface InputChipsPassThroughOptions {
|
export interface InputChipsPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: InputChipsPassThroughOptionType;
|
root?: InputChipsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the inputs DOM element.
|
* Used to pass attributes to the input's DOM element.
|
||||||
*/
|
*/
|
||||||
input?: InputChipsPassThroughOptionType;
|
input?: InputChipsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the chips DOM element.
|
* Used to pass attributes to the chip's DOM element.
|
||||||
*/
|
*/
|
||||||
chipItem?: InputChipsPassThroughOptionType;
|
chipItem?: InputChipsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -104,15 +104,15 @@ export interface InputChipsPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcChip?: ChipPassThroughOptions<InputChipsSharedPassThroughMethodOptions>;
|
pcChip?: ChipPassThroughOptions<InputChipsSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the chip icons DOM element.
|
* Used to pass attributes to the chip icon's DOM element.
|
||||||
*/
|
*/
|
||||||
chipIcon?: InputChipsPassThroughOptionType;
|
chipIcon?: InputChipsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the input items DOM element.
|
* Used to pass attributes to the input item's DOM element.
|
||||||
*/
|
*/
|
||||||
inputItem?: InputChipsPassThroughOptionType;
|
inputItem?: InputChipsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the input item fields DOM element.
|
* Used to pass attributes to the input item field's DOM element.
|
||||||
*/
|
*/
|
||||||
inputItemField?: InputChipsPassThroughOptionType;
|
inputItemField?: InputChipsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -42,7 +42,7 @@ export interface InputGroupPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface InputGroupPassThroughOptions {
|
export interface InputGroupPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: InputGroupPassThroughOptionType;
|
root?: InputGroupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -42,7 +42,7 @@ export interface InputGroupAddonPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface InputGroupAddonPassThroughOptions {
|
export interface InputGroupAddonPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: InputGroupAddonPassThroughOptionType;
|
root?: InputGroupAddonPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -42,7 +42,7 @@ export interface InputIconPassThroughMethodOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
export interface InputIconPassThroughOptions<T = any> {
|
export interface InputIconPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: InputIconPassThroughOptionType<T>;
|
root?: InputIconPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -97,7 +97,7 @@ export interface InputNumberBlurEvent {
|
||||||
*/
|
*/
|
||||||
export interface InputNumberPassThroughOptions<T = any> {
|
export interface InputNumberPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: InputNumberPassThroughOptionType<T>;
|
root?: InputNumberPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
@ -106,23 +106,23 @@ export interface InputNumberPassThroughOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
pcInput?: InputTextPassThroughOptions<InputNumberSharedPassThroughMethodOptions>;
|
pcInput?: InputTextPassThroughOptions<InputNumberSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the button groups DOM element.
|
* Used to pass attributes to the button group's DOM element.
|
||||||
*/
|
*/
|
||||||
buttonGroup?: InputNumberPassThroughOptionType<T>;
|
buttonGroup?: InputNumberPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the increment buttons DOM element.
|
* Used to pass attributes to the increment button's DOM element.
|
||||||
*/
|
*/
|
||||||
incrementButton?: InputNumberPassThroughOptionType<T>;
|
incrementButton?: InputNumberPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the increment icons DOM element.
|
* Used to pass attributes to the increment icon's DOM element.
|
||||||
*/
|
*/
|
||||||
incrementIcon?: InputNumberPassThroughOptionType<T>;
|
incrementIcon?: InputNumberPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the decrement buttons DOM element.
|
* Used to pass attributes to the decrement button's DOM element.
|
||||||
*/
|
*/
|
||||||
decrementButton?: InputNumberPassThroughOptionType<T>;
|
decrementButton?: InputNumberPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the decrement icons DOM element.
|
* Used to pass attributes to the decrement icon's DOM element.
|
||||||
*/
|
*/
|
||||||
decrementIcon?: InputNumberPassThroughOptionType<T>;
|
decrementIcon?: InputNumberPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -61,7 +61,7 @@ export interface InputOtpSharedPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface InputOtpPassThroughOptions {
|
export interface InputOtpPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: InputOtpPassThroughOptionType;
|
root?: InputOtpPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -46,7 +46,7 @@ export interface InputTextPassThroughMethodOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
export interface InputTextPassThroughOptions<T = any> {
|
export interface InputTextPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: InputTextPassThroughOptionType<T>;
|
root?: InputTextPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -49,15 +49,15 @@ export interface KnobPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface KnobPassThroughOptions {
|
export interface KnobPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: KnobPassThroughOptionType;
|
root?: KnobPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the svgs DOM element.
|
* Used to pass attributes to the svg's DOM element.
|
||||||
*/
|
*/
|
||||||
svg?: KnobPassThroughOptionType;
|
svg?: KnobPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the ranges DOM element.
|
* Used to pass attributes to the range's DOM element.
|
||||||
*/
|
*/
|
||||||
range?: KnobPassThroughOptionType;
|
range?: KnobPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -65,7 +65,7 @@ export interface KnobPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
value?: KnobPassThroughOptionType;
|
value?: KnobPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the texts DOM element.
|
* Used to pass attributes to the text's DOM element.
|
||||||
*/
|
*/
|
||||||
text?: KnobPassThroughOptionType;
|
text?: KnobPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -117,11 +117,11 @@ export interface ListboxFilterEvent {
|
||||||
*/
|
*/
|
||||||
export interface ListboxPassThroughOptions<T = any> {
|
export interface ListboxPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ListboxPassThroughOptionType<T>;
|
root?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: ListboxPassThroughOptionType<T>;
|
header?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
@ -140,11 +140,11 @@ export interface ListboxPassThroughOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
pcFilterIconContainer?: InputIconPassThroughOptions<ListboxSharedPassThroughMethodOptions>;
|
pcFilterIconContainer?: InputIconPassThroughOptions<ListboxSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter icons DOM element.
|
* Used to pass attributes to the filter icon's DOM element.
|
||||||
*/
|
*/
|
||||||
filterIcon?: ListboxPassThroughOptionType<T>;
|
filterIcon?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the list containers DOM element.
|
* Used to pass attributes to the list container's DOM element.
|
||||||
*/
|
*/
|
||||||
listContainer?: ListboxPassThroughOptionType<T>;
|
listContainer?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
@ -153,43 +153,43 @@ export interface ListboxPassThroughOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
virtualScroller?: VirtualScrollerPassThroughOptionType;
|
virtualScroller?: VirtualScrollerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
list?: ListboxPassThroughOptionType<T>;
|
list?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option groups DOM element.
|
* Used to pass attributes to the option group's DOM element.
|
||||||
*/
|
*/
|
||||||
optionGroup?: ListboxPassThroughOptionType<T>;
|
optionGroup?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the options DOM element.
|
* Used to pass attributes to the option's DOM element.
|
||||||
*/
|
*/
|
||||||
option?: ListboxPassThroughOptionType<T>;
|
option?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option check icons DOM element.
|
* Used to pass attributes to the option check icon's DOM element.
|
||||||
*/
|
*/
|
||||||
optionCheckIcon?: ListboxPassThroughOptionType<T>;
|
optionCheckIcon?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option blank icons DOM element.
|
* Used to pass attributes to the option blank icon's DOM element.
|
||||||
*/
|
*/
|
||||||
optionBlankIcon?: ListboxPassThroughOptionType<T>;
|
optionBlankIcon?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the emptyMessages DOM element.
|
* Used to pass attributes to the emptyMessage's DOM element.
|
||||||
*/
|
*/
|
||||||
emptyMessage?: ListboxPassThroughOptionType<T>;
|
emptyMessage?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden first focusable elements DOM element.
|
* Used to pass attributes to the hidden first focusable element's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenFirstFocusableEl?: ListboxPassThroughOptionType<T>;
|
hiddenFirstFocusableEl?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden filter results DOM element.
|
* Used to pass attributes to the hidden filter result's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenFilterResult?: ListboxPassThroughOptionType<T>;
|
hiddenFilterResult?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden selected messages DOM element.
|
* Used to pass attributes to the hidden selected message's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenSelectedMessage?: ListboxPassThroughOptionType<T>;
|
hiddenSelectedMessage?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden last focusable elements DOM element.
|
* Used to pass attributes to the hidden last focusable element's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenLastFocusableEl?: ListboxPassThroughOptionType<T>;
|
hiddenLastFocusableEl?: ListboxPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -55,35 +55,35 @@ export interface MegaMenuPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface MegaMenuPassThroughOptions {
|
export interface MegaMenuPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: MegaMenuPassThroughOptionType;
|
root?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the root lists DOM element.
|
* Used to pass attributes to the root list's DOM element.
|
||||||
*/
|
*/
|
||||||
rootList?: MegaMenuPassThroughOptionType;
|
rootList?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the items DOM element.
|
* Used to pass attributes to the item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: MegaMenuPassThroughOptionType;
|
item?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item contents DOM element.
|
* Used to pass attributes to the item content's DOM element.
|
||||||
*/
|
*/
|
||||||
itemContent?: MegaMenuPassThroughOptionType;
|
itemContent?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item links DOM element.
|
* Used to pass attributes to the item link's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLink?: MegaMenuPassThroughOptionType;
|
itemLink?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item icons DOM element.
|
* Used to pass attributes to the item icon's DOM element.
|
||||||
*/
|
*/
|
||||||
itemIcon?: MegaMenuPassThroughOptionType;
|
itemIcon?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item labels DOM element.
|
* Used to pass attributes to the item label's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLabel?: MegaMenuPassThroughOptionType;
|
itemLabel?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the submenu icons DOM element.
|
* Used to pass attributes to the submenu icon's DOM element.
|
||||||
*/
|
*/
|
||||||
submenuIcon?: MegaMenuPassThroughOptionType;
|
submenuIcon?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -91,27 +91,27 @@ export interface MegaMenuPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
overlay?: MegaMenuPassThroughOptionType;
|
overlay?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the grids DOM element.
|
* Used to pass attributes to the grid's DOM element.
|
||||||
*/
|
*/
|
||||||
grid?: MegaMenuPassThroughOptionType;
|
grid?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the columns DOM element.
|
* Used to pass attributes to the column's DOM element.
|
||||||
*/
|
*/
|
||||||
column?: MegaMenuPassThroughOptionType;
|
column?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the submenu items DOM element.
|
* Used to pass attributes to the submenu item's DOM element.
|
||||||
*/
|
*/
|
||||||
submenuLabel?: MegaMenuPassThroughOptionType;
|
submenuLabel?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the submenus DOM element.
|
* Used to pass attributes to the submenu's DOM element.
|
||||||
*/
|
*/
|
||||||
submenu?: MegaMenuPassThroughOptionType;
|
submenu?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the separators DOM element.
|
* Used to pass attributes to the separator's DOM element.
|
||||||
*/
|
*/
|
||||||
separator?: MegaMenuPassThroughOptionType;
|
separator?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the mobile popup menu buttons DOM element.
|
* Used to pass attributes to the mobile popup menu button's DOM element.
|
||||||
*/
|
*/
|
||||||
button?: MegaMenuPassThroughOptionType;
|
button?: MegaMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -57,39 +57,39 @@ export interface MenuPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface MenuPassThroughOptions {
|
export interface MenuPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: MenuPassThroughOptionType;
|
root?: MenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
list?: MenuPassThroughOptionType;
|
list?: MenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the submenu items DOM element.
|
* Used to pass attributes to the submenu item's DOM element.
|
||||||
*/
|
*/
|
||||||
submenuItem?: MenuPassThroughOptionType;
|
submenuItem?: MenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the items DOM element.
|
* Used to pass attributes to the item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: MenuPassThroughOptionType;
|
item?: MenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item contents DOM element.
|
* Used to pass attributes to the item content's DOM element.
|
||||||
*/
|
*/
|
||||||
itemContent?: MenuPassThroughOptionType;
|
itemContent?: MenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item links DOM element.
|
* Used to pass attributes to the item link's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLink?: MenuPassThroughOptionType;
|
itemLink?: MenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item icons DOM element.
|
* Used to pass attributes to the item icon's DOM element.
|
||||||
*/
|
*/
|
||||||
itemIcon?: MenuPassThroughOptionType;
|
itemIcon?: MenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item labels DOM element.
|
* Used to pass attributes to the item label's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLabel?: MenuPassThroughOptionType;
|
itemLabel?: MenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the separators DOM element.
|
* Used to pass attributes to the separator's DOM element.
|
||||||
*/
|
*/
|
||||||
separator?: MenuPassThroughOptionType;
|
separator?: MenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -55,51 +55,51 @@ export interface MenubarPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface MenubarPassThroughOptions {
|
export interface MenubarPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: MenubarPassThroughOptionType;
|
root?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the root lists DOM element.
|
* Used to pass attributes to the root list's DOM element.
|
||||||
*/
|
*/
|
||||||
rootList?: MenubarPassThroughOptionType;
|
rootList?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the items DOM element.
|
* Used to pass attributes to the item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: MenubarPassThroughOptionType;
|
item?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item contents DOM element.
|
* Used to pass attributes to the item content's DOM element.
|
||||||
*/
|
*/
|
||||||
itemContent?: MenubarPassThroughOptionType;
|
itemContent?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item links DOM element.
|
* Used to pass attributes to the item link's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLink?: MenubarPassThroughOptionType;
|
itemLink?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item icons DOM element.
|
* Used to pass attributes to the item icon's DOM element.
|
||||||
*/
|
*/
|
||||||
itemIcon?: MenubarPassThroughOptionType;
|
itemIcon?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item labels DOM element.
|
* Used to pass attributes to the item label's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLabel?: MenubarPassThroughOptionType;
|
itemLabel?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the submenu icons DOM element.
|
* Used to pass attributes to the submenu icon's DOM element.
|
||||||
*/
|
*/
|
||||||
submenuIcon?: MenubarPassThroughOptionType;
|
submenuIcon?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the separators DOM element.
|
* Used to pass attributes to the separator's DOM element.
|
||||||
*/
|
*/
|
||||||
separator?: MenubarPassThroughOptionType;
|
separator?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the mobile menu buttons DOM element.
|
* Used to pass attributes to the mobile menu button's DOM element.
|
||||||
*/
|
*/
|
||||||
button?: MenubarPassThroughOptionType;
|
button?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the mobile menu button icons DOM element.
|
* Used to pass attributes to the mobile menu button icon's DOM element.
|
||||||
*/
|
*/
|
||||||
buttonicon?: MenubarPassThroughOptionType;
|
buttonicon?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the submenus DOM element.
|
* Used to pass attributes to the submenu's DOM element.
|
||||||
*/
|
*/
|
||||||
submenu?: MenubarPassThroughOptionType;
|
submenu?: MenubarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -48,37 +48,37 @@ export interface MessagePassThroughMethodOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
export interface MessagePassThroughOptions<T = any> {
|
export interface MessagePassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: MessagePassThroughOptionType<T>;
|
root?: MessagePassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: MessagePassThroughOptionType<T>;
|
content?: MessagePassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the icons DOM element.
|
* Used to pass attributes to the icon's DOM element.
|
||||||
*/
|
*/
|
||||||
icon?: MessagePassThroughOptionType<T>;
|
icon?: MessagePassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the texts DOM element.
|
* Used to pass attributes to the text's DOM element.
|
||||||
*/
|
*/
|
||||||
text?: MessagePassThroughOptionType<T>;
|
text?: MessagePassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the buttons DOM element.
|
* Used to pass attributes to the button's DOM element.
|
||||||
* @deprecated since v3.30.2. Use 'closeButton' option.
|
* @deprecated since v3.30.2. Use 'closeButton' option.
|
||||||
*/
|
*/
|
||||||
button?: MessagePassThroughOptionType<T>;
|
button?: MessagePassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the buttons DOM element.
|
* Used to pass attributes to the button's DOM element.
|
||||||
*/
|
*/
|
||||||
closeButton?: MessagePassThroughOptionType<T>;
|
closeButton?: MessagePassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the button icons DOM element.
|
* Used to pass attributes to the button icon's DOM element.
|
||||||
* @deprecated since v3.30.2. Use 'closeIcon' option.
|
* @deprecated since v3.30.2. Use 'closeIcon' option.
|
||||||
*/
|
*/
|
||||||
buttonIcon?: MessagePassThroughOptionType<T>;
|
buttonIcon?: MessagePassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the button icons DOM element.
|
* Used to pass attributes to the button icon's DOM element.
|
||||||
*/
|
*/
|
||||||
closeIcon?: MessagePassThroughOptionType<T>;
|
closeIcon?: MessagePassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -49,35 +49,35 @@ export interface MeterGroupPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface MeterGroupPassThroughOptions {
|
export interface MeterGroupPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: MeterGroupPassThroughOptionType;
|
root?: MeterGroupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the meter containers DOM element.
|
* Used to pass attributes to the meter container's DOM element.
|
||||||
*/
|
*/
|
||||||
meters?: MeterGroupPassThroughOptionType;
|
meters?: MeterGroupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the meters DOM element.
|
* Used to pass attributes to the meter's DOM element.
|
||||||
*/
|
*/
|
||||||
meter?: MeterGroupPassThroughOptionType;
|
meter?: MeterGroupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the label lists DOM element.
|
* Used to pass attributes to the label list's DOM element.
|
||||||
*/
|
*/
|
||||||
labelList?: MeterGroupPassThroughOptionType;
|
labelList?: MeterGroupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the label list items DOM element.
|
* Used to pass attributes to the label list item's DOM element.
|
||||||
*/
|
*/
|
||||||
label?: MeterGroupPassThroughOptionType;
|
label?: MeterGroupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the label icon types DOM element.
|
* Used to pass attributes to the label icon type's DOM element.
|
||||||
*/
|
*/
|
||||||
labelIcon?: MeterGroupPassThroughOptionType;
|
labelIcon?: MeterGroupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the label list types DOM element.
|
* Used to pass attributes to the label list type's DOM element.
|
||||||
*/
|
*/
|
||||||
labelMarker?: MeterGroupPassThroughOptionType;
|
labelMarker?: MeterGroupPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the labels DOM element.
|
* Used to pass attributes to the label's DOM element.
|
||||||
*/
|
*/
|
||||||
labelText?: MeterGroupPassThroughOptionType;
|
labelText?: MeterGroupPassThroughOptionType;
|
||||||
}
|
}
|
||||||
|
|
|
@ -120,19 +120,19 @@ export interface MultiSelectFilterEvent {
|
||||||
*/
|
*/
|
||||||
export interface MultiSelectPassThroughOptions {
|
export interface MultiSelectPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: MultiSelectPassThroughOptionType;
|
root?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the label containers DOM element.
|
* Used to pass attributes to the label container's DOM element.
|
||||||
*/
|
*/
|
||||||
labelContainer?: MultiSelectPassThroughOptionType;
|
labelContainer?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the labels DOM element.
|
* Used to pass attributes to the label's DOM element.
|
||||||
*/
|
*/
|
||||||
label?: MultiSelectPassThroughOptionType;
|
label?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the chips DOM element.
|
* Used to pass attributes to the chip's DOM element.
|
||||||
*/
|
*/
|
||||||
chipItem?: MultiSelectPassThroughOptionType;
|
chipItem?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -141,27 +141,27 @@ export interface MultiSelectPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcChip?: ChipPassThroughOptions<MultiSelectSharedPassThroughMethodOptions>;
|
pcChip?: ChipPassThroughOptions<MultiSelectSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the chip icons DOM element.
|
* Used to pass attributes to the chip icon's DOM element.
|
||||||
*/
|
*/
|
||||||
chipIcon?: MultiSelectPassThroughOptionType;
|
chipIcon?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the dropdowns DOM element.
|
* Used to pass attributes to the dropdown's DOM element.
|
||||||
*/
|
*/
|
||||||
dropdown?: MultiSelectPassThroughOptionType;
|
dropdown?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the dropdown icons DOM element.
|
* Used to pass attributes to the dropdown icon's DOM element.
|
||||||
*/
|
*/
|
||||||
dropdownIcon?: MultiSelectPassThroughOptionType;
|
dropdownIcon?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the overlays DOM element.
|
* Used to pass attributes to the overlay's DOM element.
|
||||||
*/
|
*/
|
||||||
overlay?: MultiSelectPassThroughOptionType;
|
overlay?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: MultiSelectPassThroughOptionType;
|
header?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the header checkboxs DOM element.
|
* Used to pass attributes to the header checkbox's DOM element.
|
||||||
*/
|
*/
|
||||||
pcHeaderCheckbox?: MultiSelectPassThroughOptionType;
|
pcHeaderCheckbox?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -180,11 +180,11 @@ export interface MultiSelectPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcFilterIconContainer?: InputIconPassThroughOptions<MultiSelectSharedPassThroughMethodOptions>;
|
pcFilterIconContainer?: InputIconPassThroughOptions<MultiSelectSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter icons DOM element.
|
* Used to pass attributes to the filter icon's DOM element.
|
||||||
*/
|
*/
|
||||||
filterIcon?: MultiSelectPassThroughOptionType;
|
filterIcon?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the list containers DOM element.
|
* Used to pass attributes to the list container's DOM element.
|
||||||
*/
|
*/
|
||||||
listContainer?: MultiSelectPassThroughOptionType;
|
listContainer?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -193,47 +193,47 @@ export interface MultiSelectPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
virtualScroller?: VirtualScrollerPassThroughOptionType;
|
virtualScroller?: VirtualScrollerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
list?: MultiSelectPassThroughOptionType;
|
list?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option groups DOM element.
|
* Used to pass attributes to the option group's DOM element.
|
||||||
*/
|
*/
|
||||||
optionGroup?: MultiSelectPassThroughOptionType;
|
optionGroup?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the options DOM element.
|
* Used to pass attributes to the option's DOM element.
|
||||||
*/
|
*/
|
||||||
option?: MultiSelectPassThroughOptionType;
|
option?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option labels DOM element.
|
* Used to pass attributes to the option label's DOM element.
|
||||||
*/
|
*/
|
||||||
optionLabel?: MultiSelectPassThroughOptionType;
|
optionLabel?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option checkboxs DOM element.
|
* Used to pass attributes to the option checkbox's DOM element.
|
||||||
*/
|
*/
|
||||||
pcOptionCheckbox?: MultiSelectPassThroughOptionType;
|
pcOptionCheckbox?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the emptyMessages DOM element.
|
* Used to pass attributes to the emptyMessage's DOM element.
|
||||||
*/
|
*/
|
||||||
emptyMessage?: MultiSelectPassThroughOptionType;
|
emptyMessage?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden input containers DOM element.
|
* Used to pass attributes to the hidden input container's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenInputContainer?: MultiSelectPassThroughOptionType;
|
hiddenInputContainer?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden first focusable elements DOM element.
|
* Used to pass attributes to the hidden first focusable element's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenFirstFocusableEl?: MultiSelectPassThroughOptionType;
|
hiddenFirstFocusableEl?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden filter results DOM element.
|
* Used to pass attributes to the hidden filter result's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenFilterResult?: MultiSelectPassThroughOptionType;
|
hiddenFilterResult?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden selected messages DOM element.
|
* Used to pass attributes to the hidden selected message's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenSelectedMessage?: MultiSelectPassThroughOptionType;
|
hiddenSelectedMessage?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden last focusable elements DOM element.
|
* Used to pass attributes to the hidden last focusable element's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenLastFocusableEl?: MultiSelectPassThroughOptionType;
|
hiddenLastFocusableEl?: MultiSelectPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -102,7 +102,7 @@ export interface OrderListSelectionChangeEvent {
|
||||||
*/
|
*/
|
||||||
export interface OrderListPassThroughOptions {
|
export interface OrderListPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: OrderListPassThroughOptionType;
|
root?: OrderListPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -130,7 +130,7 @@ export interface OrderListPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcMoveBottomButton?: ButtonPassThroughOptions<OrderListSharedPassThroughMethodOptions>;
|
pcMoveBottomButton?: ButtonPassThroughOptions<OrderListSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the containers DOM element.
|
* Used to pass attributes to the container's DOM element.
|
||||||
*/
|
*/
|
||||||
container?: OrderListPassThroughOptionType;
|
container?: OrderListPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -108,15 +108,15 @@ export interface OrganizationChartCollapsedKeys {
|
||||||
*/
|
*/
|
||||||
export interface OrganizationChartPassThroughOptions {
|
export interface OrganizationChartPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: OrganizationChartPassThroughOptionType;
|
root?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the tables DOM element.
|
* Used to pass attributes to the table's DOM element.
|
||||||
*/
|
*/
|
||||||
table?: OrganizationChartPassThroughOptionType;
|
table?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the bodys DOM element.
|
* Used to pass attributes to the body's DOM element.
|
||||||
*/
|
*/
|
||||||
body?: OrganizationChartPassThroughOptionType;
|
body?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -124,47 +124,47 @@ export interface OrganizationChartPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
row?: OrganizationChartPassThroughOptionType;
|
row?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the cells DOM element.
|
* Used to pass attributes to the cell's DOM element.
|
||||||
*/
|
*/
|
||||||
cell?: OrganizationChartPassThroughOptionType;
|
cell?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the nodes DOM element.
|
* Used to pass attributes to the node's DOM element.
|
||||||
*/
|
*/
|
||||||
node?: OrganizationChartPassThroughOptionType;
|
node?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the node toggle buttons DOM element.
|
* Used to pass attributes to the node toggle button's DOM element.
|
||||||
*/
|
*/
|
||||||
nodeToggleButton?: OrganizationChartPassThroughOptionType;
|
nodeToggleButton?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the node toggle button icons DOM element.
|
* Used to pass attributes to the node toggle button icon's DOM element.
|
||||||
*/
|
*/
|
||||||
nodeToggleButtonIcon?: OrganizationChartPassThroughOptionType;
|
nodeToggleButtonIcon?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the connectorss DOM element.
|
* Used to pass attributes to the connectors's DOM element.
|
||||||
*/
|
*/
|
||||||
connectors?: OrganizationChartPassThroughOptionType;
|
connectors?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lineCells DOM element.
|
* Used to pass attributes to the lineCell's DOM element.
|
||||||
*/
|
*/
|
||||||
lineCell?: OrganizationChartPassThroughOptionType;
|
lineCell?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the connector downs DOM element.
|
* Used to pass attributes to the connector down's DOM element.
|
||||||
*/
|
*/
|
||||||
connectorDown?: OrganizationChartPassThroughOptionType;
|
connectorDown?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the connector lefts DOM element.
|
* Used to pass attributes to the connector left's DOM element.
|
||||||
*/
|
*/
|
||||||
connectorLeft?: OrganizationChartPassThroughOptionType;
|
connectorLeft?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the connector rights DOM element.
|
* Used to pass attributes to the connector right's DOM element.
|
||||||
*/
|
*/
|
||||||
connectorRight?: OrganizationChartPassThroughOptionType;
|
connectorRight?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the node childrens DOM element.
|
* Used to pass attributes to the node children's DOM element.
|
||||||
*/
|
*/
|
||||||
nodeChildren?: OrganizationChartPassThroughOptionType;
|
nodeChildren?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the nodeCells DOM element.
|
* Used to pass attributes to the nodeCell's DOM element.
|
||||||
*/
|
*/
|
||||||
nodeCell?: OrganizationChartPassThroughOptionType;
|
nodeCell?: OrganizationChartPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -66,59 +66,59 @@ export interface PaginatorSharedPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface PaginatorPassThroughOptions<T = any> {
|
export interface PaginatorPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the paginator containers DOM element.
|
* Used to pass attributes to the paginator container's DOM element.
|
||||||
*/
|
*/
|
||||||
paginatorContainer?: PaginatorPassThroughOptionType<T> | any;
|
paginatorContainer?: PaginatorPassThroughOptionType<T> | any;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: PaginatorPassThroughOptionType<T>;
|
root?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the content starts DOM element.
|
* Used to pass attributes to the content start's DOM element.
|
||||||
*/
|
*/
|
||||||
contentStart?: PaginatorPassThroughOptionType<T>;
|
contentStart?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the first page buttons DOM element.
|
* Used to pass attributes to the first page button's DOM element.
|
||||||
*/
|
*/
|
||||||
first?: PaginatorPassThroughOptionType<T>;
|
first?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the first icons DOM element.
|
* Used to pass attributes to the first icon's DOM element.
|
||||||
*/
|
*/
|
||||||
firstIcon?: PaginatorPassThroughOptionType<T>;
|
firstIcon?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the prev page buttons DOM element.
|
* Used to pass attributes to the prev page button's DOM element.
|
||||||
*/
|
*/
|
||||||
prev?: PaginatorPassThroughOptionType<T>;
|
prev?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the prev page icons DOM element.
|
* Used to pass attributes to the prev page icon's DOM element.
|
||||||
*/
|
*/
|
||||||
prevIcon?: PaginatorPassThroughOptionType<T>;
|
prevIcon?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the next page buttons DOM element.
|
* Used to pass attributes to the next page button's DOM element.
|
||||||
*/
|
*/
|
||||||
next?: PaginatorPassThroughOptionType<T>;
|
next?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the next page icons DOM element.
|
* Used to pass attributes to the next page icon's DOM element.
|
||||||
*/
|
*/
|
||||||
nextIcon?: PaginatorPassThroughOptionType<T>;
|
nextIcon?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the last page buttons DOM element.
|
* Used to pass attributes to the last page button's DOM element.
|
||||||
*/
|
*/
|
||||||
last?: PaginatorPassThroughOptionType<T>;
|
last?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the last page icons DOM element.
|
* Used to pass attributes to the last page icon's DOM element.
|
||||||
*/
|
*/
|
||||||
lastIcon?: PaginatorPassThroughOptionType<T>;
|
lastIcon?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the pagess DOM element.
|
* Used to pass attributes to the pages's DOM element.
|
||||||
*/
|
*/
|
||||||
pages?: PaginatorPassThroughOptionType<T>;
|
pages?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the page buttons DOM element.
|
* Used to pass attributes to the page button's DOM element.
|
||||||
*/
|
*/
|
||||||
page?: PaginatorPassThroughOptionType<T>;
|
page?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the currents DOM element.
|
* Used to pass attributes to the current's DOM element.
|
||||||
*/
|
*/
|
||||||
current?: PaginatorPassThroughOptionType<T>;
|
current?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
@ -137,7 +137,7 @@ export interface PaginatorPassThroughOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
pcJumpToPageInput?: InputNumberPassThroughOptions<PaginatorSharedPassThroughMethodOptions>;
|
pcJumpToPageInput?: InputNumberPassThroughOptions<PaginatorSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the content ends DOM element.
|
* Used to pass attributes to the content end's DOM element.
|
||||||
*/
|
*/
|
||||||
contentEnd?: PaginatorPassThroughOptionType<T>;
|
contentEnd?: PaginatorPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -82,15 +82,15 @@ export interface PanelToggleEvent {
|
||||||
*/
|
*/
|
||||||
export interface PanelPassThroughOptions {
|
export interface PanelPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: PanelPassThroughOptionType;
|
root?: PanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: PanelPassThroughOptionType;
|
header?: PanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the titles DOM element.
|
* Used to pass attributes to the title's DOM element.
|
||||||
*/
|
*/
|
||||||
title?: PanelPassThroughOptionType;
|
title?: PanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -98,20 +98,20 @@ export interface PanelPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
headerActions?: PanelPassThroughOptionType;
|
headerActions?: PanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the toggle button buttons DOM element.
|
* Used to pass attributes to the toggle button button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcToggleButton?: ButtonPassThroughOptions<PanelSharedPassThroughMethodOptions>;
|
pcToggleButton?: ButtonPassThroughOptions<PanelSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the content containers DOM element.
|
* Used to pass attributes to the content container's DOM element.
|
||||||
*/
|
*/
|
||||||
contentContainer?: PanelPassThroughOptionType;
|
contentContainer?: PanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: PanelPassThroughOptionType;
|
content?: PanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the footers DOM element.
|
* Used to pass attributes to the footer's DOM element.
|
||||||
*/
|
*/
|
||||||
footer?: PanelPassThroughOptionType;
|
footer?: PanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -57,75 +57,75 @@ export interface PanelMenuPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface PanelMenuPassThroughOptions {
|
export interface PanelMenuPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: PanelMenuPassThroughOptionType;
|
root?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the panels DOM element.
|
* Used to pass attributes to the panel's DOM element.
|
||||||
*/
|
*/
|
||||||
panel?: PanelMenuPassThroughOptionType;
|
panel?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: PanelMenuPassThroughOptionType;
|
header?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the header contents DOM element.
|
* Used to pass attributes to the header content's DOM element.
|
||||||
*/
|
*/
|
||||||
headerContent?: PanelMenuPassThroughOptionType;
|
headerContent?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the header links DOM element.
|
* Used to pass attributes to the header link's DOM element.
|
||||||
*/
|
*/
|
||||||
headerLink?: PanelMenuPassThroughOptionType;
|
headerLink?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the submenuIcons DOM element.
|
* Used to pass attributes to the submenuIcon's DOM element.
|
||||||
*/
|
*/
|
||||||
submenuIcon?: PanelMenuPassThroughOptionType;
|
submenuIcon?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the header icons DOM element.
|
* Used to pass attributes to the header icon's DOM element.
|
||||||
*/
|
*/
|
||||||
headerIcon?: PanelMenuPassThroughOptionType;
|
headerIcon?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the header labels DOM element.
|
* Used to pass attributes to the header label's DOM element.
|
||||||
*/
|
*/
|
||||||
headerLabel?: PanelMenuPassThroughOptionType;
|
headerLabel?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the content containers DOM element.
|
* Used to pass attributes to the content container's DOM element.
|
||||||
*/
|
*/
|
||||||
contentContainer?: PanelMenuPassThroughOptionType;
|
contentContainer?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: PanelMenuPassThroughOptionType;
|
content?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the root lists DOM element.
|
* Used to pass attributes to the root list's DOM element.
|
||||||
*/
|
*/
|
||||||
rootList?: PanelMenuPassThroughOptionType;
|
rootList?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the list items DOM element.
|
* Used to pass attributes to the list item's DOM element.
|
||||||
*/
|
*/
|
||||||
menuitem?: PanelMenuPassThroughOptionType;
|
menuitem?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item contents DOM element.
|
* Used to pass attributes to the item content's DOM element.
|
||||||
*/
|
*/
|
||||||
itemContent?: PanelMenuPassThroughOptionType;
|
itemContent?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item links DOM element.
|
* Used to pass attributes to the item link's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLink?: PanelMenuPassThroughOptionType;
|
itemLink?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item icons DOM element.
|
* Used to pass attributes to the item icon's DOM element.
|
||||||
*/
|
*/
|
||||||
itemIcon?: PanelMenuPassThroughOptionType;
|
itemIcon?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item labels DOM element.
|
* Used to pass attributes to the item label's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLabel?: PanelMenuPassThroughOptionType;
|
itemLabel?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the submenus DOM element.
|
* Used to pass attributes to the submenu's DOM element.
|
||||||
*/
|
*/
|
||||||
submenu?: PanelMenuPassThroughOptionType;
|
submenu?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the separators DOM element.
|
* Used to pass attributes to the separator's DOM element.
|
||||||
*/
|
*/
|
||||||
separator?: PanelMenuPassThroughOptionType;
|
separator?: PanelMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -67,7 +67,7 @@ export interface PasswordSharedPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface PasswordPassThroughOptions {
|
export interface PasswordPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: PasswordPassThroughOptionType;
|
root?: PasswordPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -76,27 +76,27 @@ export interface PasswordPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
ptInput?: InputTextPassThroughOptions<PasswordSharedPassThroughMethodOptions>;
|
ptInput?: InputTextPassThroughOptions<PasswordSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the mask icons DOM element.
|
* Used to pass attributes to the mask icon's DOM element.
|
||||||
*/
|
*/
|
||||||
maskIcon?: PasswordPassThroughOptionType;
|
maskIcon?: PasswordPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the unmask icons DOM element.
|
* Used to pass attributes to the unmask icon's DOM element.
|
||||||
*/
|
*/
|
||||||
unmaskIcon?: PasswordPassThroughOptionType;
|
unmaskIcon?: PasswordPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the overlays DOM element.
|
* Used to pass attributes to the overlay's DOM element.
|
||||||
*/
|
*/
|
||||||
overlay?: PasswordPassThroughOptionType;
|
overlay?: PasswordPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the meters DOM element.
|
* Used to pass attributes to the meter's DOM element.
|
||||||
*/
|
*/
|
||||||
meter?: PasswordPassThroughOptionType;
|
meter?: PasswordPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the meter labels DOM element.
|
* Used to pass attributes to the meter label's DOM element.
|
||||||
*/
|
*/
|
||||||
meterLabel?: PasswordPassThroughOptionType;
|
meterLabel?: PasswordPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the meter texts DOM element.
|
* Used to pass attributes to the meter text's DOM element.
|
||||||
*/
|
*/
|
||||||
meterText?: PasswordPassThroughOptionType;
|
meterText?: PasswordPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -146,7 +146,7 @@ export interface PickListMoveAllToSourceEvent extends PickListMoveToTargetEvent
|
||||||
*/
|
*/
|
||||||
export interface PickListPassThroughOptions {
|
export interface PickListPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: PickListPassThroughOptionType;
|
root?: PickListPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -174,11 +174,11 @@ export interface PickListPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcList?: ListboxPassThroughOptions<PickListSharedPassThroughMethodOptions>;
|
pcList?: ListboxPassThroughOptions<PickListSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the source list containerrs DOM element.
|
* Used to pass attributes to the source list containerr's DOM element.
|
||||||
*/
|
*/
|
||||||
sourceListContainer?: PickListPassThroughOptionType;
|
sourceListContainer?: PickListPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the source lists DOM element.
|
* Used to pass attributes to the source list's DOM element.
|
||||||
*/
|
*/
|
||||||
sourceList?: PickListPassThroughOptionType;
|
sourceList?: PickListPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -202,15 +202,15 @@ export interface PickListPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
moveAllToSourceButton?: ButtonPassThroughOptions<PickListSharedPassThroughMethodOptions>;
|
moveAllToSourceButton?: ButtonPassThroughOptions<PickListSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the target list containers DOM element.
|
* Used to pass attributes to the target list container's DOM element.
|
||||||
*/
|
*/
|
||||||
targetListContainer?: PickListPassThroughOptionType;
|
targetListContainer?: PickListPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the target lists DOM element.
|
* Used to pass attributes to the target list's DOM element.
|
||||||
*/
|
*/
|
||||||
targetList?: PickListPassThroughOptionType;
|
targetList?: PickListPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the target items DOM element.
|
* Used to pass attributes to the target item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: PickListPassThroughOptionType;
|
item?: PickListPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -52,11 +52,11 @@ export interface PopoverPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface PopoverPassThroughOptions {
|
export interface PopoverPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: PopoverPassThroughOptionType;
|
root?: PopoverPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: PopoverPassThroughOptionType;
|
content?: PopoverPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -42,19 +42,19 @@ export interface ProgressBarPassThroughMethodOptions<T> {
|
||||||
*/
|
*/
|
||||||
export interface ProgressBarPassThroughOptions<T = any> {
|
export interface ProgressBarPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ProgressBarPassThroughOptionType<T>;
|
root?: ProgressBarPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the indeterminate containers DOM element.
|
* Used to pass attributes to the indeterminate container's DOM element.
|
||||||
*/
|
*/
|
||||||
indeterminateContainer?: ProgressBarPassThroughOptionType<T>;
|
indeterminateContainer?: ProgressBarPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the values DOM element.
|
* Used to pass attributes to the value's DOM element.
|
||||||
*/
|
*/
|
||||||
value?: ProgressBarPassThroughOptionType<T>;
|
value?: ProgressBarPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the labels DOM element.
|
* Used to pass attributes to the label's DOM element.
|
||||||
*/
|
*/
|
||||||
label?: ProgressBarPassThroughOptionType<T>;
|
label?: ProgressBarPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -45,15 +45,15 @@ export interface ProgressSpinnerPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface ProgressSpinnerPassThroughOptions {
|
export interface ProgressSpinnerPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ProgressSpinnerPassThroughOptionType;
|
root?: ProgressSpinnerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the spinners DOM element.
|
* Used to pass attributes to the spinner's DOM element.
|
||||||
*/
|
*/
|
||||||
spinner?: ProgressSpinnerPassThroughOptionType;
|
spinner?: ProgressSpinnerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the circles DOM element.
|
* Used to pass attributes to the circle's DOM element.
|
||||||
*/
|
*/
|
||||||
circle?: ProgressSpinnerPassThroughOptionType;
|
circle?: ProgressSpinnerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -53,19 +53,19 @@ export interface RadioButtonPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface RadioButtonPassThroughOptions {
|
export interface RadioButtonPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: RadioButtonPassThroughOptionType;
|
root?: RadioButtonPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the inputs DOM element.
|
* Used to pass attributes to the input's DOM element.
|
||||||
*/
|
*/
|
||||||
input?: RadioButtonPassThroughOptionType;
|
input?: RadioButtonPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the boxs DOM element.
|
* Used to pass attributes to the box's DOM element.
|
||||||
*/
|
*/
|
||||||
box?: RadioButtonPassThroughOptionType;
|
box?: RadioButtonPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the icons DOM element.
|
* Used to pass attributes to the icon's DOM element.
|
||||||
*/
|
*/
|
||||||
icon?: RadioButtonPassThroughOptionType;
|
icon?: RadioButtonPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -54,27 +54,27 @@ export interface RatingPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface RatingPassThroughOptions {
|
export interface RatingPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: RatingPassThroughOptionType;
|
root?: RatingPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the options DOM element.
|
* Used to pass attributes to the option's DOM element.
|
||||||
*/
|
*/
|
||||||
option?: RatingPassThroughOptionType;
|
option?: RatingPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the on icons DOM element.
|
* Used to pass attributes to the on icon's DOM element.
|
||||||
*/
|
*/
|
||||||
onIcon?: RatingPassThroughOptionType;
|
onIcon?: RatingPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the off icons DOM element.
|
* Used to pass attributes to the off icon's DOM element.
|
||||||
*/
|
*/
|
||||||
offIcon?: RatingPassThroughOptionType;
|
offIcon?: RatingPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden option input containers DOM element.
|
* Used to pass attributes to the hidden option input container's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenOptionInputContainer?: RatingPassThroughOptionType;
|
hiddenOptionInputContainer?: RatingPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden option inputs DOM element.
|
* Used to pass attributes to the hidden option input's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenOptionInput?: RatingPassThroughOptionType;
|
hiddenOptionInput?: RatingPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -45,7 +45,7 @@ export interface RippleOptions {
|
||||||
*/
|
*/
|
||||||
export interface RippleDirectivePassThroughOptions {
|
export interface RippleDirectivePassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: RippleDirectivePassThroughOptionType;
|
root?: RippleDirectivePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -48,7 +48,7 @@ export interface RowPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface RowPassThroughOptions {
|
export interface RowPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: RowPassThroughOptionType;
|
root?: RowPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,23 +50,23 @@ export interface ScrollPanelPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface ScrollPanelPassThroughOptions {
|
export interface ScrollPanelPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ScrollPanelPassThroughOptionType;
|
root?: ScrollPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the content containers DOM element.
|
* Used to pass attributes to the content container's DOM element.
|
||||||
*/
|
*/
|
||||||
contentContainer?: ScrollPanelPassThroughOptionType;
|
contentContainer?: ScrollPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: ScrollPanelPassThroughOptionType;
|
content?: ScrollPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the horizontal panels DOM element.
|
* Used to pass attributes to the horizontal panel's DOM element.
|
||||||
*/
|
*/
|
||||||
barX?: ScrollPanelPassThroughOptionType;
|
barX?: ScrollPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the vertical panels DOM element.
|
* Used to pass attributes to the vertical panel's DOM element.
|
||||||
*/
|
*/
|
||||||
barY?: ScrollPanelPassThroughOptionType;
|
barY?: ScrollPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -67,12 +67,12 @@ export interface ScrollTopSharedPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface ScrollTopPassThroughOptions {
|
export interface ScrollTopPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the previous buttons DOM element.
|
* Used to pass attributes to the previous button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
root?: ButtonPassThroughOptions<ScrollTopSharedPassThroughMethodOptions>;
|
root?: ButtonPassThroughOptions<ScrollTopSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the previous buttons DOM element.
|
* Used to pass attributes to the previous button's DOM element.
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
button?: ButtonPassThroughOptions<ScrollTopSharedPassThroughMethodOptions>;
|
button?: ButtonPassThroughOptions<ScrollTopSharedPassThroughMethodOptions>;
|
||||||
|
|
|
@ -100,15 +100,15 @@ export interface SelectFilterEvent {
|
||||||
*/
|
*/
|
||||||
export interface SelectPassThroughOptions<T = any> {
|
export interface SelectPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: SelectPassThroughOptionType<T>;
|
root?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the labels DOM element.
|
* Used to pass attributes to the label's DOM element.
|
||||||
*/
|
*/
|
||||||
label?: SelectPassThroughOptionType<T>;
|
label?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the clear icons DOM element.
|
* Used to pass attributes to the clear icon's DOM element.
|
||||||
*/
|
*/
|
||||||
clearIcon?: SelectPassThroughOptionType<T>;
|
clearIcon?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
@ -116,15 +116,15 @@ export interface SelectPassThroughOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
dropdown?: SelectPassThroughOptionType<T>;
|
dropdown?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the loading icons DOM element.
|
* Used to pass attributes to the loading icon's DOM element.
|
||||||
*/
|
*/
|
||||||
loadingIcon?: SelectPassThroughOptionType<T>;
|
loadingIcon?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the overlays DOM element.
|
* Used to pass attributes to the overlay's DOM element.
|
||||||
*/
|
*/
|
||||||
overlay?: SelectPassThroughOptionType<T>;
|
overlay?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
*/
|
*/
|
||||||
header?: SelectPassThroughOptionType<T>;
|
header?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
@ -143,11 +143,11 @@ export interface SelectPassThroughOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
pcFilterIconContainer?: InputIconPassThroughOptions<SelectSharedPassThroughMethodOptions>;
|
pcFilterIconContainer?: InputIconPassThroughOptions<SelectSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the filter icons DOM element.
|
* Used to pass attributes to the filter icon's DOM element.
|
||||||
*/
|
*/
|
||||||
filterIcon?: SelectPassThroughOptionType<T>;
|
filterIcon?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the list containers DOM element.
|
* Used to pass attributes to the list container's DOM element.
|
||||||
*/
|
*/
|
||||||
listContainer?: SelectPassThroughOptionType<T>;
|
listContainer?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
@ -156,55 +156,55 @@ export interface SelectPassThroughOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
virtualScroller?: VirtualScrollerPassThroughOptionType;
|
virtualScroller?: VirtualScrollerPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
list?: SelectPassThroughOptionType<T>;
|
list?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option groups DOM element.
|
* Used to pass attributes to the option group's DOM element.
|
||||||
*/
|
*/
|
||||||
optionGroup?: SelectPassThroughOptionType<T>;
|
optionGroup?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option group labels DOM element.
|
* Used to pass attributes to the option group label's DOM element.
|
||||||
*/
|
*/
|
||||||
optionGroupLabel?: SelectPassThroughOptionType<T>;
|
optionGroupLabel?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the options DOM element.
|
* Used to pass attributes to the option's DOM element.
|
||||||
*/
|
*/
|
||||||
option?: SelectPassThroughOptionType<T>;
|
option?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option labels DOM element.
|
* Used to pass attributes to the option label's DOM element.
|
||||||
*/
|
*/
|
||||||
optionLabel?: SelectPassThroughOptionType<T>;
|
optionLabel?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option check icons DOM element.
|
* Used to pass attributes to the option check icon's DOM element.
|
||||||
*/
|
*/
|
||||||
optionCheckIcon?: SelectPassThroughOptionType<T>;
|
optionCheckIcon?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the option blank icons DOM element.
|
* Used to pass attributes to the option blank icon's DOM element.
|
||||||
*/
|
*/
|
||||||
optionBlankIcon?: SelectPassThroughOptionType<T>;
|
optionBlankIcon?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the empty messages DOM element.
|
* Used to pass attributes to the empty message's DOM element.
|
||||||
*/
|
*/
|
||||||
emptyMessage?: SelectPassThroughOptionType<T>;
|
emptyMessage?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden first focusable elements DOM element.
|
* Used to pass attributes to the hidden first focusable element's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenFirstFocusableEl?: SelectPassThroughOptionType<T>;
|
hiddenFirstFocusableEl?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden filter results DOM element.
|
* Used to pass attributes to the hidden filter result's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenFilterResult?: SelectPassThroughOptionType<T>;
|
hiddenFilterResult?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden empty messages DOM element.
|
* Used to pass attributes to the hidden empty message's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenEmptyMessage?: SelectPassThroughOptionType<T>;
|
hiddenEmptyMessage?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden selected messages DOM element.
|
* Used to pass attributes to the hidden selected message's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenSelectedMessage?: SelectPassThroughOptionType<T>;
|
hiddenSelectedMessage?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the hidden last focusable elements DOM element.
|
* Used to pass attributes to the hidden last focusable element's DOM element.
|
||||||
*/
|
*/
|
||||||
hiddenLastFocusableEl?: SelectPassThroughOptionType<T>;
|
hiddenLastFocusableEl?: SelectPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -55,7 +55,7 @@ export interface SelectButtonPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface SelectButtonPassThroughOptions {
|
export interface SelectButtonPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: SelectButtonPassThroughOptionType;
|
root?: SelectButtonPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -45,7 +45,7 @@ export interface SkeletonPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface SkeletonPassThroughOptions {
|
export interface SkeletonPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: SkeletonPassThroughOptionType;
|
root?: SkeletonPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -45,23 +45,23 @@ export interface SliderPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface SliderPassThroughOptions {
|
export interface SliderPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: SliderPassThroughOptionType;
|
root?: SliderPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the ranges DOM element.
|
* Used to pass attributes to the range's DOM element.
|
||||||
*/
|
*/
|
||||||
range?: SliderPassThroughOptionType;
|
range?: SliderPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the handles DOM element.
|
* Used to pass attributes to the handle's DOM element.
|
||||||
*/
|
*/
|
||||||
handle?: SliderPassThroughOptionType;
|
handle?: SliderPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the start handlers DOM element.
|
* Used to pass attributes to the start handler's DOM element.
|
||||||
*/
|
*/
|
||||||
startHandler?: SliderPassThroughOptionType;
|
startHandler?: SliderPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the end handlers DOM element.
|
* Used to pass attributes to the end handler's DOM element.
|
||||||
*/
|
*/
|
||||||
endHandler?: SliderPassThroughOptionType;
|
endHandler?: SliderPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -70,7 +70,7 @@ export interface SpeedDialSharedPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface SpeedDialPassThroughOptions {
|
export interface SpeedDialPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: SpeedDialPassThroughOptionType;
|
root?: SpeedDialPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -79,11 +79,11 @@ export interface SpeedDialPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
pcButton?: ButtonPassThroughOptions<SpeedDialSharedPassThroughMethodOptions>;
|
pcButton?: ButtonPassThroughOptions<SpeedDialSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
list?: SpeedDialPassThroughOptionType;
|
list?: SpeedDialPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the items DOM element.
|
* Used to pass attributes to the item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: SpeedDialPassThroughOptionType;
|
item?: SpeedDialPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -92,11 +92,11 @@ export interface SpeedDialPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
action?: ButtonPassThroughOptions<SpeedDialSharedPassThroughMethodOptions>;
|
action?: ButtonPassThroughOptions<SpeedDialSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the action icons DOM element.
|
* Used to pass attributes to the action icon's DOM element.
|
||||||
*/
|
*/
|
||||||
actionIcon?: SpeedDialPassThroughOptionType;
|
actionIcon?: SpeedDialPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the masks DOM element.
|
* Used to pass attributes to the mask's DOM element.
|
||||||
*/
|
*/
|
||||||
mask?: SpeedDialPassThroughOptionType;
|
mask?: SpeedDialPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -67,7 +67,7 @@ export interface SplitButtonSharedPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface SplitButtonPassThroughOptions {
|
export interface SplitButtonPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: SplitButtonPassThroughOptionType;
|
root?: SplitButtonPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -99,15 +99,15 @@ export interface SplitterResizeEndEvent {
|
||||||
*/
|
*/
|
||||||
export interface SplitterPassThroughOptions {
|
export interface SplitterPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: SplitterPassThroughOptionType;
|
root?: SplitterPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the gutters DOM element.
|
* Used to pass attributes to the gutter's DOM element.
|
||||||
*/
|
*/
|
||||||
gutter?: SplitterPassThroughOptionType;
|
gutter?: SplitterPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the gutter handles DOM element.
|
* Used to pass attributes to the gutter handle's DOM element.
|
||||||
*/
|
*/
|
||||||
gutterHandle?: SplitterPassThroughOptionType;
|
gutterHandle?: SplitterPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,7 +50,7 @@ export interface SplitterPanelPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface SplitterPanelPassThroughOptions {
|
export interface SplitterPanelPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: SplitterPanelPassThroughOptionType;
|
root?: SplitterPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -51,11 +51,11 @@ export interface StepperPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface StepperPassThroughOptions {
|
export interface StepperPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: StepperPassThroughOptionType;
|
root?: StepperPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
list?: StepperPassThroughOptionType;
|
list?: StepperPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -63,7 +63,7 @@ export interface StepperPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
panels?: StepperPassThroughOptionType;
|
panels?: StepperPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the end handlers DOM element.
|
* Used to pass attributes to the end handler's DOM element.
|
||||||
*/
|
*/
|
||||||
stepperpanel?: StepperPanelPassThroughOptionType;
|
stepperpanel?: StepperPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -52,35 +52,35 @@ export interface StepperPanelPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface StepperPanelPassThroughOptions {
|
export interface StepperPanelPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: StepperPanelPassThroughOptionType;
|
root?: StepperPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the items DOM element.
|
* Used to pass attributes to the item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: StepperPanelPassThroughOptionType;
|
item?: StepperPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item headers DOM element.
|
* Used to pass attributes to the item header's DOM element.
|
||||||
*/
|
*/
|
||||||
itemHeader?: StepperPanelPassThroughOptionType;
|
itemHeader?: StepperPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item numbers DOM element.
|
* Used to pass attributes to the item number's DOM element.
|
||||||
*/
|
*/
|
||||||
itemNumber?: StepperPanelPassThroughOptionType;
|
itemNumber?: StepperPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item titles DOM element.
|
* Used to pass attributes to the item title's DOM element.
|
||||||
*/
|
*/
|
||||||
itemTitle?: StepperPanelPassThroughOptionType;
|
itemTitle?: StepperPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the separators DOM element.
|
* Used to pass attributes to the separator's DOM element.
|
||||||
*/
|
*/
|
||||||
separator?: StepperPanelPassThroughOptionType;
|
separator?: StepperPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the panel content containers DOM element.
|
* Used to pass attributes to the panel content container's DOM element.
|
||||||
*/
|
*/
|
||||||
panelContentContainer?: StepperPanelPassThroughOptionType;
|
panelContentContainer?: StepperPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the panel contents DOM element.
|
* Used to pass attributes to the panel content's DOM element.
|
||||||
*/
|
*/
|
||||||
panelContent?: StepperPanelPassThroughOptionType;
|
panelContent?: StepperPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -51,27 +51,27 @@ export interface StepsPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface StepsPassThroughOptions {
|
export interface StepsPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: StepsPassThroughOptionType;
|
root?: StepsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
list?: StepsPassThroughOptionType;
|
list?: StepsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the list items DOM element.
|
* Used to pass attributes to the list item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: StepsPassThroughOptionType;
|
item?: StepsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item links DOM element.
|
* Used to pass attributes to the item link's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLink?: StepsPassThroughOptionType;
|
itemLink?: StepsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item numbers DOM element.
|
* Used to pass attributes to the item number's DOM element.
|
||||||
*/
|
*/
|
||||||
itemNumber?: StepsPassThroughOptionType;
|
itemNumber?: StepsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item labels DOM element.
|
* Used to pass attributes to the item label's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLabel?: StepsPassThroughOptionType;
|
itemLabel?: StepsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,7 +50,7 @@ export interface TabPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface TabPassThroughOptions {
|
export interface TabPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: TabPassThroughOptionType;
|
root?: TabPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,7 +50,7 @@ export interface TabListPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface TabListPassThroughOptions {
|
export interface TabListPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: TabListPassThroughOptionType;
|
root?: TabListPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -62,11 +62,11 @@ export interface TabListPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
nextButton?: TabListPassThroughOptionType;
|
nextButton?: TabListPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: TabListPassThroughOptionType;
|
content?: TabListPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the inkbars DOM element.
|
* Used to pass attributes to the inkbar's DOM element.
|
||||||
*/
|
*/
|
||||||
inkbar?: TabListPassThroughOptionType;
|
inkbar?: TabListPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -55,31 +55,31 @@ export interface TabMenuPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface TabMenuPassThroughOptions {
|
export interface TabMenuPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: TabMenuPassThroughOptionType;
|
root?: TabMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the tablists DOM element.
|
* Used to pass attributes to the tablist's DOM element.
|
||||||
*/
|
*/
|
||||||
tablist?: TabMenuPassThroughOptionType;
|
tablist?: TabMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the items DOM element.
|
* Used to pass attributes to the item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: TabMenuPassThroughOptionType;
|
item?: TabMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item links DOM element.
|
* Used to pass attributes to the item link's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLink?: TabMenuPassThroughOptionType;
|
itemLink?: TabMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item itemIcons DOM element.
|
* Used to pass attributes to the item itemIcon's DOM element.
|
||||||
*/
|
*/
|
||||||
itemIcon?: TabMenuPassThroughOptionType;
|
itemIcon?: TabMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item labels DOM element.
|
* Used to pass attributes to the item label's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLabel?: TabMenuPassThroughOptionType;
|
itemLabel?: TabMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the inkbars DOM element.
|
* Used to pass attributes to the inkbar's DOM element.
|
||||||
*/
|
*/
|
||||||
activeBar?: TabMenuPassThroughOptionType;
|
activeBar?: TabMenuPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,26 +50,26 @@ export interface TabPanelPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface TabPanelPassThroughOptions {
|
export interface TabPanelPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: TabPanelPassThroughOptionType;
|
root?: TabPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the headers DOM element.
|
* Used to pass attributes to the header's DOM element.
|
||||||
* @deprecated since v4. Only supported by TabView.
|
* @deprecated since v4. Only supported by TabView.
|
||||||
*/
|
*/
|
||||||
header?: TabPanelPassThroughOptionType;
|
header?: TabPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the header actions DOM element.
|
* Used to pass attributes to the header action's DOM element.
|
||||||
* @deprecated since v4. Only supported by TabView.
|
* @deprecated since v4. Only supported by TabView.
|
||||||
*/
|
*/
|
||||||
headerAction?: TabPanelPassThroughOptionType;
|
headerAction?: TabPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the titles DOM element.
|
* Used to pass attributes to the title's DOM element.
|
||||||
* @deprecated since v4. Only supported by TabView.
|
* @deprecated since v4. Only supported by TabView.
|
||||||
*/
|
*/
|
||||||
headerTitle?: TabPanelPassThroughOptionType;
|
headerTitle?: TabPanelPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
* @deprecated since v4. Only supported by TabView.
|
* @deprecated since v4. Only supported by TabView.
|
||||||
*/
|
*/
|
||||||
content?: TabPanelPassThroughOptionType;
|
content?: TabPanelPassThroughOptionType;
|
||||||
|
|
|
@ -50,7 +50,7 @@ export interface TabPanelsPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface TabPanelsPassThroughOptions {
|
export interface TabPanelsPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: TabPanelsPassThroughOptionType;
|
root?: TabPanelsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,7 +50,7 @@ export interface TabsPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface TabsPassThroughOptions {
|
export interface TabsPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: TabsPassThroughOptionType;
|
root?: TabsPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -74,43 +74,43 @@ export interface TabViewClickEvent extends TabViewChangeEvent {}
|
||||||
*/
|
*/
|
||||||
export interface TabViewPassThroughOptions {
|
export interface TabViewPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: TabViewPassThroughOptionType;
|
root?: TabViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the nav containers DOM element.
|
* Used to pass attributes to the nav container's DOM element.
|
||||||
*/
|
*/
|
||||||
navContainer?: TabViewPassThroughOptionType;
|
navContainer?: TabViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the nav contents DOM element.
|
* Used to pass attributes to the nav content's DOM element.
|
||||||
*/
|
*/
|
||||||
navContent?: TabViewPassThroughOptionType;
|
navContent?: TabViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the lists DOM element.
|
* Used to pass attributes to the list's DOM element.
|
||||||
*/
|
*/
|
||||||
nav?: TabViewPassThroughOptionType;
|
nav?: TabViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the inkbars DOM element.
|
* Used to pass attributes to the inkbar's DOM element.
|
||||||
*/
|
*/
|
||||||
inkbar?: TabViewPassThroughOptionType;
|
inkbar?: TabViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the previous buttons DOM element.
|
* Used to pass attributes to the previous button's DOM element.
|
||||||
*/
|
*/
|
||||||
previousButton?: TabViewPassThroughOptionType;
|
previousButton?: TabViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the previous button icons DOM element.
|
* Used to pass attributes to the previous button icon's DOM element.
|
||||||
*/
|
*/
|
||||||
previousIcon?: TabViewPassThroughOptionType;
|
previousIcon?: TabViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the next buttons DOM element.
|
* Used to pass attributes to the next button's DOM element.
|
||||||
*/
|
*/
|
||||||
nextButton?: TabViewPassThroughOptionType;
|
nextButton?: TabViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the next button icons DOM element.
|
* Used to pass attributes to the next button icon's DOM element.
|
||||||
*/
|
*/
|
||||||
nextIcon?: TabViewPassThroughOptionType;
|
nextIcon?: TabViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the panels DOM element.
|
* Used to pass attributes to the panel's DOM element.
|
||||||
*/
|
*/
|
||||||
panelContainer?: TabViewPassThroughOptionType;
|
panelContainer?: TabViewPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -46,15 +46,15 @@ export interface TagPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface TagPassThroughOptions {
|
export interface TagPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: TagPassThroughOptionType;
|
root?: TagPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the icons DOM element.
|
* Used to pass attributes to the icon's DOM element.
|
||||||
*/
|
*/
|
||||||
icon?: TagPassThroughOptionType;
|
icon?: TagPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the labels DOM element.
|
* Used to pass attributes to the label's DOM element.
|
||||||
*/
|
*/
|
||||||
label?: TagPassThroughOptionType;
|
label?: TagPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -49,15 +49,15 @@ export interface TerminalPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface TerminalPassThroughOptions {
|
export interface TerminalPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: TerminalPassThroughOptionType;
|
root?: TerminalPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the welcome messages DOM element.
|
* Used to pass attributes to the welcome message's DOM element.
|
||||||
*/
|
*/
|
||||||
welcomeMessage?: TerminalPassThroughOptionType;
|
welcomeMessage?: TerminalPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: TerminalPassThroughOptionType;
|
content?: TerminalPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
@ -65,23 +65,23 @@ export interface TerminalPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
commands?: TerminalPassThroughOptionType;
|
commands?: TerminalPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the prompts DOM element.
|
* Used to pass attributes to the prompt's DOM element.
|
||||||
*/
|
*/
|
||||||
prompt?: TerminalPassThroughOptionType;
|
prompt?: TerminalPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the commands DOM element.
|
* Used to pass attributes to the command's DOM element.
|
||||||
*/
|
*/
|
||||||
command?: TerminalPassThroughOptionType;
|
command?: TerminalPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the responses DOM element.
|
* Used to pass attributes to the response's DOM element.
|
||||||
*/
|
*/
|
||||||
response?: TerminalPassThroughOptionType;
|
response?: TerminalPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the containers DOM element.
|
* Used to pass attributes to the container's DOM element.
|
||||||
*/
|
*/
|
||||||
container?: TerminalPassThroughOptionType;
|
container?: TerminalPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the command texts DOM element.
|
* Used to pass attributes to the command text's DOM element.
|
||||||
*/
|
*/
|
||||||
commandText?: TerminalPassThroughOptionType;
|
commandText?: TerminalPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,7 +50,7 @@ export interface TextareaPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface TextareaPassThroughOptions {
|
export interface TextareaPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: TextareaPassThroughOptionType;
|
root?: TextareaPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -57,43 +57,43 @@ export interface TieredMenuPassThroughMethodOptions<T> {
|
||||||
*/
|
*/
|
||||||
export interface TieredMenuPassThroughOptions<T = any> {
|
export interface TieredMenuPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: TieredMenuPassThroughOptionType<T>;
|
root?: TieredMenuPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the root lists DOM element.
|
* Used to pass attributes to the root list's DOM element.
|
||||||
*/
|
*/
|
||||||
rootList?: TieredMenuPassThroughOptionType<T>;
|
rootList?: TieredMenuPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the list items DOM element.
|
* Used to pass attributes to the list item's DOM element.
|
||||||
*/
|
*/
|
||||||
item?: TieredMenuPassThroughOptionType<T>;
|
item?: TieredMenuPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item contents DOM element.
|
* Used to pass attributes to the item content's DOM element.
|
||||||
*/
|
*/
|
||||||
itemContent?: TieredMenuPassThroughOptionType<T>;
|
itemContent?: TieredMenuPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item links DOM element.
|
* Used to pass attributes to the item link's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLink?: TieredMenuPassThroughOptionType<T>;
|
itemLink?: TieredMenuPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item icons DOM element.
|
* Used to pass attributes to the item icon's DOM element.
|
||||||
*/
|
*/
|
||||||
itemIcon?: TieredMenuPassThroughOptionType<T>;
|
itemIcon?: TieredMenuPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the item labels DOM element.
|
* Used to pass attributes to the item label's DOM element.
|
||||||
*/
|
*/
|
||||||
itemLabel?: TieredMenuPassThroughOptionType<T>;
|
itemLabel?: TieredMenuPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the submenu icons DOM element.
|
* Used to pass attributes to the submenu icon's DOM element.
|
||||||
*/
|
*/
|
||||||
submenuIcon?: TieredMenuPassThroughOptionType<T>;
|
submenuIcon?: TieredMenuPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the separators DOM element.
|
* Used to pass attributes to the separator's DOM element.
|
||||||
*/
|
*/
|
||||||
separator?: TieredMenuPassThroughOptionType<T>;
|
separator?: TieredMenuPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the submenus DOM element.
|
* Used to pass attributes to the submenu's DOM element.
|
||||||
*/
|
*/
|
||||||
submenu?: TieredMenuPassThroughOptionType<T>;
|
submenu?: TieredMenuPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,31 +50,31 @@ export interface TimelinePassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface TimelinePassThroughOptions {
|
export interface TimelinePassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: TimelinePassThroughOptionType;
|
root?: TimelinePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the events DOM element.
|
* Used to pass attributes to the event's DOM element.
|
||||||
*/
|
*/
|
||||||
event?: TimelinePassThroughOptionType;
|
event?: TimelinePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the event opposites DOM element.
|
* Used to pass attributes to the event opposite's DOM element.
|
||||||
*/
|
*/
|
||||||
eventOpposite?: TimelinePassThroughOptionType;
|
eventOpposite?: TimelinePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the event separators DOM element.
|
* Used to pass attributes to the event separator's DOM element.
|
||||||
*/
|
*/
|
||||||
eventSeparator?: TimelinePassThroughOptionType;
|
eventSeparator?: TimelinePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the event markers DOM element.
|
* Used to pass attributes to the event marker's DOM element.
|
||||||
*/
|
*/
|
||||||
eventMarker?: TimelinePassThroughOptionType;
|
eventMarker?: TimelinePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the event connectors DOM element.
|
* Used to pass attributes to the event connector's DOM element.
|
||||||
*/
|
*/
|
||||||
eventConnector?: TimelinePassThroughOptionType;
|
eventConnector?: TimelinePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the event contents DOM element.
|
* Used to pass attributes to the event content's DOM element.
|
||||||
*/
|
*/
|
||||||
eventContent?: TimelinePassThroughOptionType;
|
eventContent?: TimelinePassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -52,48 +52,48 @@ export interface ToastPassThroughMethodOptions {
|
||||||
*/
|
*/
|
||||||
export interface ToastPassThroughOptions {
|
export interface ToastPassThroughOptions {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ToastPassThroughOptionType;
|
root?: ToastPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the messages DOM element.
|
* Used to pass attributes to the message's DOM element.
|
||||||
*/
|
*/
|
||||||
message?: ToastPassThroughOptionType;
|
message?: ToastPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the message contents DOM element.
|
* Used to pass attributes to the message content's DOM element.
|
||||||
*/
|
*/
|
||||||
messageContent?: ToastPassThroughOptionType;
|
messageContent?: ToastPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the message icons DOM element.
|
* Used to pass attributes to the message icon's DOM element.
|
||||||
*/
|
*/
|
||||||
messageIcon?: ToastPassThroughOptionType;
|
messageIcon?: ToastPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the message texts DOM element.
|
* Used to pass attributes to the message text's DOM element.
|
||||||
*/
|
*/
|
||||||
messageText?: ToastPassThroughOptionType;
|
messageText?: ToastPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the summarys DOM element.
|
* Used to pass attributes to the summary's DOM element.
|
||||||
*/
|
*/
|
||||||
summary?: ToastPassThroughOptionType;
|
summary?: ToastPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the details DOM element.
|
* Used to pass attributes to the detail's DOM element.
|
||||||
*/
|
*/
|
||||||
detail?: ToastPassThroughOptionType;
|
detail?: ToastPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the button containers DOM element.
|
* Used to pass attributes to the button container's DOM element.
|
||||||
*/
|
*/
|
||||||
buttonContainer?: ToastPassThroughOptionType;
|
buttonContainer?: ToastPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the buttons DOM element.
|
* Used to pass attributes to the button's DOM element.
|
||||||
* @deprecated since v3.30.2. Use 'closeButton' option.
|
* @deprecated since v3.30.2. Use 'closeButton' option.
|
||||||
*/
|
*/
|
||||||
button?: ToastPassThroughOptionType;
|
button?: ToastPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the buttons DOM element.
|
* Used to pass attributes to the button's DOM element.
|
||||||
*/
|
*/
|
||||||
closeButton?: ToastPassThroughOptionType;
|
closeButton?: ToastPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the button icons DOM element.
|
* Used to pass attributes to the button icon's DOM element.
|
||||||
*/
|
*/
|
||||||
closeIcon?: ToastPassThroughOptionType;
|
closeIcon?: ToastPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,19 +50,19 @@ export interface ToggleButtonPassThroughMethodOptions<T = any> {
|
||||||
*/
|
*/
|
||||||
export interface ToggleButtonPassThroughOptions<T = any> {
|
export interface ToggleButtonPassThroughOptions<T = any> {
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the roots DOM element.
|
* Used to pass attributes to the root's DOM element.
|
||||||
*/
|
*/
|
||||||
root?: ToggleButtonPassThroughOptionType<T>;
|
root?: ToggleButtonPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the contents DOM element.
|
* Used to pass attributes to the content's DOM element.
|
||||||
*/
|
*/
|
||||||
content?: ToggleButtonPassThroughOptionType<T>;
|
content?: ToggleButtonPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the icons DOM element.
|
* Used to pass attributes to the icon's DOM element.
|
||||||
*/
|
*/
|
||||||
icon?: ToggleButtonPassThroughOptionType<T>;
|
icon?: ToggleButtonPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the labels DOM element.
|
* Used to pass attributes to the label's DOM element.
|
||||||
*/
|
*/
|
||||||
label?: ToggleButtonPassThroughOptionType<T>;
|
label?: ToggleButtonPassThroughOptionType<T>;
|
||||||
/**
|
/**
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue