From 294e336c6ed199d72f94bf3e180ee13e43e73c68 Mon Sep 17 00:00:00 2001 From: Olly Rowe Date: Sat, 22 Aug 2020 12:21:14 +0100 Subject: [PATCH] Add missing localization typings --- types/index.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 2067ca888..d328e36ba 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -361,6 +361,7 @@ export interface Localization { dateTimePickerLocalization?: object; // The date-fns locale object applied to the datepickers emptyDataSourceMessage?: React.ReactNode; filterRow?: { + filterPlaceHolder?: React.ReactNode; filterTooltip?: React.ReactNode; }; editRow?: { @@ -399,9 +400,12 @@ export interface Localization { showColumnsAriaLabel?: string; exportTitle?: React.ReactNode; exportAriaLabel?: string; - exportName?: React.ReactNode; + exportCSVName?: React.ReactNode; + exportPDFName?: React.ReactNode; searchTooltip?: React.ReactNode; searchPlaceholder?: React.ReactNode; + searchAriaLabel?: string; + clearSearchAriaLabel?: string; }; }