Fixed #2855 - Types: Missing types in PrimeVueLocaleOptions
parent
fa5ff89a39
commit
7e89147eda
|
@ -4,12 +4,26 @@ interface PrimeVueConfiguration {
|
||||||
ripple?: boolean;
|
ripple?: boolean;
|
||||||
inputStyle?: string;
|
inputStyle?: string;
|
||||||
locale?: PrimeVueLocaleOptions;
|
locale?: PrimeVueLocaleOptions;
|
||||||
|
filterMatchModeOptions?: any;
|
||||||
|
zIndex?: PrimeVueZIndexOptions;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface PrimeVueZIndexOptions {
|
||||||
|
modal?: number;
|
||||||
|
overlay?: number;
|
||||||
|
menu?: number;
|
||||||
|
tooltip?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface PrimeVueLocaleAriaOptions {
|
interface PrimeVueLocaleAriaOptions {
|
||||||
trueLabel?: string;
|
trueLabel?: string;
|
||||||
falseLabel?: string;
|
falseLabel?: string;
|
||||||
nullLabel?: string;
|
nullLabel?: string;
|
||||||
|
star?: string;
|
||||||
|
stars?: string;
|
||||||
|
selectAll?: string;
|
||||||
|
unselectAll?: string;
|
||||||
|
close?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface PrimeVueLocaleOptions {
|
interface PrimeVueLocaleOptions {
|
||||||
|
@ -44,6 +58,23 @@ interface PrimeVueLocaleOptions {
|
||||||
dayNamesMin: string[];
|
dayNamesMin: string[];
|
||||||
monthNames: string[];
|
monthNames: string[];
|
||||||
monthNamesShort: 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;
|
today?: string;
|
||||||
weekHeader?: string;
|
weekHeader?: string;
|
||||||
firstDayOfWeek?: number;
|
firstDayOfWeek?: number;
|
||||||
|
@ -53,6 +84,10 @@ interface PrimeVueLocaleOptions {
|
||||||
strong?: string;
|
strong?: string;
|
||||||
passwordPrompt?: string;
|
passwordPrompt?: string;
|
||||||
emptyFilterMessage?: string;
|
emptyFilterMessage?: string;
|
||||||
|
searchMessage?: string;
|
||||||
|
selectionMessage?: string;
|
||||||
|
emptySelectionMessage?: string;
|
||||||
|
emptySearchMessage?: string;
|
||||||
emptyMessage?: string;
|
emptyMessage?: string;
|
||||||
aria?: PrimeVueLocaleAriaOptions;
|
aria?: PrimeVueLocaleAriaOptions;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue