primevue-mirror/components/lib/config/PrimeVue.d.ts

257 lines
8.4 KiB
TypeScript
Raw Normal View History

2022-12-08 11:04:25 +00:00
import { Plugin } from 'vue';
2023-05-03 14:40:21 +00:00
import { AccordionPassThroughOptions } from '../accordion';
import { AccordionTabPassThroughOptions } from '../accordiontab';
import { AvatarPassThroughOptions } from '../avatar';
import { BadgePassThroughOptions } from '../badge';
import { BlockUIPassThroughOptions } from '../blockui';
import { BreadcrumbPassThroughOptions } from '../breadcrumb';
import { ButtonPassThroughOptions } from '../button';
import { CardPassThroughOptions } from '../card';
2023-05-04 07:46:18 +00:00
import { CarouselPassThroughOptions } from '../carousel';
2023-05-03 14:40:21 +00:00
import { ChartPassThroughOptions } from '../chart';
import { ChipPassThroughOptions } from '../chip';
import { ConfirmDialogPassThroughOptions } from '../confirmdialog';
import { ConfirmPopupPassThroughOptions } from '../confirmpopup';
import { ContextMenuPassThroughOptions } from '../contextmenu';
import { DeferredContentPassThroughOptions } from '../deferredcontent';
import { DialogPassThroughOptions } from '../dialog';
import { DividerPassThroughOptions } from '../divider';
import { DockPassThroughOptions } from '../dock';
import { FieldsetPassThroughOptions } from '../fieldset';
import { FileUploadPassThroughOptions } from '../fileupload';
2023-05-04 07:45:01 +00:00
import { ImagePassThroughOptions } from '../image';
2023-05-03 14:40:21 +00:00
import { InlineMessagePassThroughOptions } from '../inlinemessage';
import { InplacePassThroughOptions } from '../inplace';
import { MegaMenuPassThroughOptions } from '../megamenu';
import { MenuPassThroughOptions } from '../menu';
import { MenubarPassThroughOptions } from '../menubar';
import { MessagePassThroughOptions } from '../message';
import { OverlayPanelPassThroughOptions } from '../overlaypanel';
import { PanelPassThroughOptions } from '../panel';
2023-05-03 14:40:21 +00:00
import { PanelMenuPassThroughOptions } from '../panelmenu';
import { ProgressBarPassThroughOptions } from '../progressbar';
import { ProgressSpinnerPassThroughOptions } from '../progressspinner';
import { ScrollPanelPassThroughOptions } from '../scrollpanel';
import { ScrollTopPassThroughOptions } from '../scrolltop';
import { SidebarPassThroughOptions } from '../sidebar';
import { SkeletonPassThroughOptions } from '../skeleton';
import { SpeedDialPassThroughOptions } from '../speeddial';
import { SplitButtonPassThroughOptions } from '../splitbutton';
import { SplitterPassThroughOptions } from '../splitter';
import { TabMenuPassThroughOptions } from '../tabmenu';
import { TabPanelPassThroughOptions } from '../tabpanel';
import { TabViewPassThroughOptions } from '../tabview';
import { TagPassThroughOptions } from '../tag';
import { TerminalPassThroughOptions } from '../terminal';
import { TieredMenuPassThroughOptions } from '../tieredmenu';
import { ToastPassThroughOptions } from '../toast';
import { ToolbarPassThroughOptions } from '../toolbar';
interface PrimeVueConfiguration {
ripple?: boolean;
inputStyle?: string;
locale?: PrimeVueLocaleOptions;
filterMatchModeOptions?: any;
zIndex?: PrimeVueZIndexOptions;
pt?: PrimeVuePTOptions;
}
interface PrimeVueZIndexOptions {
modal?: number;
overlay?: number;
menu?: number;
tooltip?: number;
}
interface PrimeVuePTOptions {
2023-05-03 14:40:21 +00:00
accordion?: AccordionPassThroughOptions;
accordiontab?: AccordionTabPassThroughOptions;
avatar?: AvatarPassThroughOptions;
badge?: BadgePassThroughOptions;
blockui?: BlockUIPassThroughOptions;
breadcrumb?: BreadcrumbPassThroughOptions;
button?: ButtonPassThroughOptions;
card?: CardPassThroughOptions;
2023-05-04 07:46:18 +00:00
carousel?: CarouselPassThroughOptions;
2023-05-03 14:40:21 +00:00
chart?: ChartPassThroughOptions;
chip?: ChipPassThroughOptions;
confirmdialog?: ConfirmDialogPassThroughOptions;
confirmpopup?: ConfirmPopupPassThroughOptions;
contextmenu?: ContextMenuPassThroughOptions;
deferredcontent?: DeferredContentPassThroughOptions;
divider?: DividerPassThroughOptions;
dialog?: DialogPassThroughOptions;
dock?: DockPassThroughOptions;
dynamicdialog?: DialogPassThroughOptions;
fieldset?: FieldsetPassThroughOptions;
fileupload?: FileUploadPassThroughOptions;
2023-05-04 07:45:01 +00:00
image?: ImagePassThroughOptions;
2023-05-03 14:40:21 +00:00
inlinemessage?: InlineMessagePassThroughOptions;
inplace?: InplacePassThroughOptions;
megamenu?: MegaMenuPassThroughOptions;
menu?: MenuPassThroughOptions;
menubar?: MenubarPassThroughOptions;
message?: MessagePassThroughOptions;
overlaypanel?: OverlayPanelPassThroughOptions;
panel?: PanelPassThroughOptions;
panelmenu?: PanelMenuPassThroughOptions;
progressbar?: ProgressBarPassThroughOptions;
progressspinner?: ProgressSpinnerPassThroughOptions;
scrollpanel?: ScrollPanelPassThroughOptions;
scrolltop?: ScrollTopPassThroughOptions;
sidebar?: SidebarPassThroughOptions;
skeleton?: SkeletonPassThroughOptions;
speeddial?: SpeedDialPassThroughOptions;
splitbutton?: SplitButtonPassThroughOptions;
splitter?: SplitterPassThroughOptions;
steps?: PanelMenuPassThroughOptions;
tabmenu?: TabMenuPassThroughOptions;
tabpanel?: TabPanelPassThroughOptions;
tabview?: TabViewPassThroughOptions;
tag?: TagPassThroughOptions;
terminal?: TerminalPassThroughOptions;
tieredmenu?: TieredMenuPassThroughOptions;
toast?: ToastPassThroughOptions;
toolbar?: ToolbarPassThroughOptions;
}
2022-07-18 10:36:43 +00:00
interface PrimeVueLocaleAriaOptions {
trueLabel?: string;
falseLabel?: string;
nullLabel?: string;
star?: string;
stars?: string;
selectAll?: string;
unselectAll?: string;
close?: string;
2022-09-14 11:26:01 +00:00
previous?: string;
next?: string;
2022-12-08 11:04:25 +00:00
navigation?: string;
scrollTop?: string;
moveUp?: string;
moveTop?: string;
moveDown?: string;
moveBottom?: string;
moveToTarget?: string;
moveToSource?: string;
moveAllToTarget?: string;
moveAllToSource?: string;
pageLabel?: string;
firstPageLabel?: string;
lastPageLabel?: string;
nextPageLabel?: string;
prevPageLabel?: string;
rowsPerPageLabel?: string;
jumpToPageDropdownLabel?: string;
jumpToPageInputLabel?: string;
selectRow?: string;
unselectRow?: string;
expandRow?: string;
collapseRow?: string;
showFilterMenu?: string;
hideFilterMenu?: string;
filterOperator?: string;
filterConstraint?: string;
editRow?: string;
saveEdit?: string;
cancelEdit?: string;
listView?: string;
gridView?: string;
slide?: string;
slideNumber?: string;
zoomImage?: string;
zoomIn?: string;
zoomOut?: string;
rotateRight?: string;
rotateLeft?: string;
2022-07-18 10:36:43 +00:00
}
interface PrimeVueLocaleOptions {
2021-02-16 13:07:15 +00:00
startsWith?: string;
contains?: string;
notContains?: string;
endsWith?: string;
2021-02-16 13:07:15 +00:00
equals?: string;
notEquals?: string;
noFilter?: string;
lt?: string;
lte?: string;
gt?: string;
gte?: string;
dateIs?: string;
dateIsNot?: string;
dateBefore?: string;
dateAfter?: string;
clear?: string;
apply?: string;
matchAll?: string;
matchAny?: string;
addRule?: string;
removeRule?: string;
accept?: string;
reject?: string;
choose?: string;
upload?: string;
cancel?: string;
2022-12-08 11:04:25 +00:00
completed?: string;
pending?: string;
dayNames: string[];
dayNamesShort: string[];
dayNamesMin: string[];
monthNames: string[];
monthNamesShort: string[];
chooseYear?: string;
chooseMonth?: string;
chooseDate?: string;
prevDecade?: string;
nextDecade?: string;
prevYear?: string;
nextYear?: string;
prevMonth?: string;
nextMonth?: string;
prevHour?: string;
nextHour?: string;
prevMinute?: string;
nextMinute?: string;
prevSecond?: string;
nextSecond?: string;
am?: string;
pm?: string;
today?: string;
weekHeader?: string;
firstDayOfWeek?: number;
dateFormat?: string;
weak?: string;
medium?: string;
strong?: string;
passwordPrompt?: string;
2021-02-16 13:07:15 +00:00
emptyFilterMessage?: string;
searchMessage?: string;
selectionMessage?: string;
emptySelectionMessage?: string;
emptySearchMessage?: string;
2021-02-16 13:07:15 +00:00
emptyMessage?: string;
2022-07-18 10:36:43 +00:00
aria?: PrimeVueLocaleAriaOptions;
}
export declare function usePrimeVue(): { config: PrimeVueConfiguration };
declare const plugin: Plugin;
export default plugin;
declare module 'vue/types/vue' {
interface Vue {
2020-12-10 12:38:14 +00:00
$primevue: {
config: PrimeVueConfiguration;
2022-09-14 11:26:01 +00:00
};
}
}
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$primevue: {
config: PrimeVueConfiguration;
2022-09-14 11:26:01 +00:00
};
}
}