2021-04-10 17:33:00 +00:00
|
|
|
import Vue, { Plugin } from 'vue';
|
2020-12-10 08:03:08 +00:00
|
|
|
|
|
|
|
interface PrimeVueConfiguration {
|
|
|
|
ripple?: boolean;
|
2021-05-12 09:13:50 +00:00
|
|
|
inputStyle?: string;
|
2020-12-10 08:03:08 +00:00
|
|
|
locale?: PrimeVueLocaleOptions;
|
2022-08-16 12:44:51 +00:00
|
|
|
filterMatchModeOptions?: any;
|
|
|
|
zIndex?: PrimeVueZIndexOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface PrimeVueZIndexOptions {
|
|
|
|
modal?: number;
|
|
|
|
overlay?: number;
|
|
|
|
menu?: number;
|
|
|
|
tooltip?: number;
|
2020-12-10 08:03:08 +00:00
|
|
|
}
|
|
|
|
|
2022-07-18 10:36:43 +00:00
|
|
|
interface PrimeVueLocaleAriaOptions {
|
|
|
|
trueLabel?: string;
|
|
|
|
falseLabel?: string;
|
|
|
|
nullLabel?: string;
|
2022-08-16 12:44:51 +00:00
|
|
|
star?: string;
|
|
|
|
stars?: string;
|
|
|
|
selectAll?: string;
|
|
|
|
unselectAll?: string;
|
|
|
|
close?: string;
|
2022-09-14 11:26:01 +00:00
|
|
|
previous?: string;
|
|
|
|
next?: string;
|
2022-07-18 10:36:43 +00:00
|
|
|
}
|
|
|
|
|
2020-12-10 08:03:08 +00:00
|
|
|
interface PrimeVueLocaleOptions {
|
2021-02-16 13:07:15 +00:00
|
|
|
startsWith?: string;
|
|
|
|
contains?: string;
|
|
|
|
notContains?: string;
|
|
|
|
endWith?: string;
|
|
|
|
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;
|
2020-12-10 08:03:08 +00:00
|
|
|
accept?: string;
|
|
|
|
reject?: string;
|
|
|
|
choose?: string;
|
|
|
|
upload?: string;
|
|
|
|
cancel?: string;
|
|
|
|
dayNames: string[];
|
|
|
|
dayNamesShort: string[];
|
|
|
|
dayNamesMin: string[];
|
|
|
|
monthNames: string[];
|
|
|
|
monthNamesShort: string[];
|
2022-08-16 12:44:51 +00:00
|
|
|
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;
|
2020-12-10 08:03:08 +00:00
|
|
|
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;
|
2022-08-16 12:44:51 +00:00
|
|
|
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;
|
2020-12-10 08:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-06-09 10:57:48 +00:00
|
|
|
export declare function usePrimeVue(): { config: PrimeVueConfiguration };
|
2020-12-10 08:03:08 +00:00
|
|
|
|
2021-04-10 17:33:00 +00:00
|
|
|
declare const plugin: Plugin;
|
|
|
|
export default plugin;
|
2020-12-10 08:03:08 +00:00
|
|
|
|
|
|
|
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
|
|
|
};
|
2020-12-10 08:03:08 +00:00
|
|
|
}
|
2021-06-09 10:57:48 +00:00
|
|
|
}
|
2022-03-15 09:23:06 +00:00
|
|
|
|
|
|
|
declare module '@vue/runtime-core' {
|
|
|
|
interface ComponentCustomProperties {
|
|
|
|
$primevue: {
|
|
|
|
config: PrimeVueConfiguration;
|
2022-09-14 11:26:01 +00:00
|
|
|
};
|
2022-03-15 09:23:06 +00:00
|
|
|
}
|
|
|
|
}
|