ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
1,811 lines (1,790 loc) • 298 kB
TypeScript
import * as i0 from '@angular/core';
import { PipeTransform, InjectionToken, EnvironmentProviders } from '@angular/core';
import { Observable } from 'rxjs';
import { NzSafeAny } from 'ng-zorro-antd/core/types';
import { Locale as Locale$1 } from 'date-fns';
import { WeekDayIndex } from 'ng-zorro-antd/core/time';
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
declare class NzI18nPipe implements PipeTransform {
private _locale;
transform(path: string, keyValue?: object): string;
static ɵfac: i0.ɵɵFactoryDeclaration<NzI18nPipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<NzI18nPipe, "nzI18n", true>;
}
declare class NzI18nModule {
static ɵfac: i0.ɵɵFactoryDeclaration<NzI18nModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<NzI18nModule, never, [typeof NzI18nPipe], [typeof NzI18nPipe]>;
static ɵinj: i0.ɵɵInjectorDeclaration<NzI18nModule>;
}
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
interface NzPaginationI18nInterface {
items_per_page: string;
jump_to: string;
jump_to_confirm: string;
page: string;
prev_page: string;
next_page: string;
prev_5: string;
next_5: string;
prev_3: string;
next_3: string;
}
interface NzGlobalI18nInterface {
placeholder: string;
}
interface NzDatePickerI18nInterface {
lang: NzDatePickerLangI18nInterface;
timePickerLocale: NzTimePickerI18nInterface;
}
interface NzCalendarI18nInterface {
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
monthFormat?: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear?: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
}
interface NzDatePickerLangI18nInterface extends NzCalendarI18nInterface {
placeholder?: string;
yearPlaceholder?: string;
quarterPlaceholder?: string;
monthPlaceholder?: string;
weekPlaceholder?: string;
rangePlaceholder?: string[];
rangeYearPlaceholder?: string[];
rangeQuarterPlaceholder?: string[];
rangeMonthPlaceholder?: string[];
rangeWeekPlaceholder?: string[];
}
interface NzTimePickerI18nInterface {
placeholder?: string;
rangePlaceholder?: string[];
}
type ValidateMessage = string | (() => string);
type NzCascaderI18nInterface = NzGlobalI18nInterface;
interface NzTableI18nInterface {
filterTitle?: string;
filterConfirm?: string;
filterReset?: string;
selectAll?: string;
selectInvert?: string;
selectionAll?: string;
sortTitle?: string;
expand?: string;
collapse?: string;
triggerDesc?: string;
triggerAsc?: string;
cancelSort?: string;
}
interface NzModalI18nInterface {
okText: string;
cancelText: string;
justOkText: string;
}
interface NzPopconfirmI18nInterface {
okText: string;
cancelText: string;
}
interface NzTransferI18nInterface {
titles?: string[];
searchPlaceholder?: string;
itemUnit?: string;
itemsUnit?: string;
}
interface NzUploadI18nInterface {
uploading?: string;
removeFile?: string;
uploadError?: string;
previewFile?: string;
downloadFile?: string;
}
interface NzEmptyI18nInterface {
description: string;
}
interface NzTextI18nInterface {
edit: string;
copy: string;
copied: string;
expand: string;
}
interface NzCronExpressionLabelI18n {
second?: string;
minute?: string;
hour?: string;
day?: string;
month?: string;
week?: string;
}
interface NzCronExpressionCronErrorI18n {
cronError?: string;
}
type NzCronExpressionI18nInterface = NzCronExpressionCronErrorI18n & NzCronExpressionLabelI18n;
interface NzQRCodeI18nInterface {
expired: string;
refresh: string;
scanned: string;
}
interface NzCheckListI18nInterface {
checkList: string;
checkListFinish: string;
checkListClose: string;
checkListFooter: string;
checkListCheck: string;
ok: string;
cancel: string;
checkListCheckOther: string;
}
interface NzI18nInterface {
locale: string;
Pagination: NzPaginationI18nInterface;
DatePicker: NzDatePickerI18nInterface;
TimePicker: NzTimePickerI18nInterface;
Calendar: NzDatePickerI18nInterface;
global?: NzGlobalI18nInterface;
Table: NzTableI18nInterface;
Modal: NzModalI18nInterface;
Popconfirm: NzPopconfirmI18nInterface;
Transfer: NzTransferI18nInterface;
Upload: NzUploadI18nInterface;
Empty: NzEmptyI18nInterface;
Text?: NzTextI18nInterface;
CronExpression?: NzCronExpressionI18nInterface;
QRCode?: NzQRCodeI18nInterface;
CheckList?: NzCheckListI18nInterface;
}
type DateLocale = Locale$1;
declare class NzI18nService {
private _locale;
private _change;
private dateLocale;
get localeChange(): Observable<NzI18nInterface>;
constructor();
translate(path: string, data?: NzSafeAny): string;
/**
* Set/Change current locale globally throughout the WHOLE application
* NOTE: If called at runtime, rendered interface may not change along with the locale change,
* because this do not trigger another render schedule.
*
* @param locale The translating letters
*/
setLocale(locale: NzI18nInterface): void;
getLocale(): NzI18nInterface;
getLocaleId(): string;
setDateLocale(dateLocale: DateLocale): void;
getDateLocale(): DateLocale;
/**
* Get locale data
*
* @param path dot paths for finding exist value from locale data, eg. "a.b.c"
* @param defaultValue default value if the result is not "truthy"
*/
getLocaleData(path: string, defaultValue?: NzSafeAny): NzSafeAny;
private _getObjectPath;
static ɵfac: i0.ɵɵFactoryDeclaration<NzI18nService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<NzI18nService>;
}
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
interface NzDateConfig {
/** Customize the first day of a week */
firstDayOfWeek?: WeekDayIndex;
}
declare const NZ_DATE_CONFIG: InjectionToken<NzDateConfig>;
declare const NZ_DATE_CONFIG_DEFAULT: NzDateConfig;
declare function mergeDateConfig(config: NzDateConfig | null): NzDateConfig;
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
declare const NZ_I18N: InjectionToken<NzI18nInterface>;
declare function provideNzI18n(config: NzI18nInterface): EnvironmentProviders;
/** Locale for date operations, should import from date-fns, see example: https://github.com/date-fns/date-fns/blob/v1.30.1/src/locale/zh_cn/index.js */
declare const NZ_DATE_LOCALE: InjectionToken<Locale>;
declare function DATE_HELPER_SERVICE_FACTORY(): DateHelperService;
/**
* Abstract DateHelperService(Token via Class)
* Compatibility: compact for original usage by default which using DatePipe
*/
declare abstract class DateHelperService {
protected i18n: NzI18nService;
protected config: NzDateConfig;
constructor(i18n: NzI18nService);
abstract getISOWeek(date: Date): number;
abstract getFirstDayOfWeek(): WeekDayIndex;
abstract format(date: Date | null, formatStr: string): string;
abstract parseDate(text: string, formatStr?: string): Date;
abstract parseTime(text: string, formatStr?: string): Date | undefined;
static ɵfac: i0.ɵɵFactoryDeclaration<DateHelperService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<DateHelperService>;
}
/**
* DateHelper that handles date formats with date-fns
*/
declare class DateHelperByDateFns extends DateHelperService {
getISOWeek(date: Date): number;
getFirstDayOfWeek(): WeekDayIndex;
/**
* Format a date
*
* @see https://date-fns.org/docs/format#description
* @param date Date
* @param formatStr format string
*/
format(date: Date, formatStr: string): string;
parseDate(text: string, formatStr: string): Date;
parseTime(text: string, formatStr: string): Date | undefined;
}
/**
* DateHelper that handles date formats with angular's date-pipe
*
* @see https://github.com/NG-ZORRO/ng-zorro-antd/issues/2406 - DatePipe may cause non-standard week bug, see:
*
*/
declare class DateHelperByDatePipe extends DateHelperService {
getISOWeek(date: Date): number;
getFirstDayOfWeek(): WeekDayIndex;
format(date: Date | null, formatStr: string): string;
parseDate(text: string): Date;
parseTime(text: string, formatStr: string): Date;
private replaceQuarter;
}
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
declare const _default$11: {
locale: string;
Pagination: {
items_per_page: string;
jump_to: string;
jump_to_confirm: string;
page: string;
prev_page: string;
next_page: string;
prev_5: string;
next_5: string;
prev_3: string;
next_3: string;
page_size: string;
};
DatePicker: {
lang: {
placeholder: string;
yearPlaceholder: string;
quarterPlaceholder: string;
monthPlaceholder: string;
weekPlaceholder: string;
rangePlaceholder: string[];
rangeYearPlaceholder: string[];
rangeMonthPlaceholder: string[];
rangeWeekPlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
weekSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
};
dateFormat: string;
monthFormat: string;
dateTimeFormat: string;
weekFormat: string;
};
TimePicker: {
placeholder: string;
};
Calendar: {
lang: {
placeholder: string;
yearPlaceholder: string;
quarterPlaceholder: string;
monthPlaceholder: string;
weekPlaceholder: string;
rangePlaceholder: string[];
rangeYearPlaceholder: string[];
rangeMonthPlaceholder: string[];
rangeWeekPlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
weekSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
};
dateFormat: string;
monthFormat: string;
dateTimeFormat: string;
weekFormat: string;
};
global: {
placeholder: string;
};
Table: {
filterTitle: string;
filterConfirm: string;
filterReset: string;
selectAll: string;
selectInvert: string;
selectionAll: string;
sortTitle: string;
expand: string;
collapse: string;
triggerDesc: string;
triggerAsc: string;
cancelSort: string;
};
Modal: {
okText: string;
cancelText: string;
justOkText: string;
};
Popconfirm: {
okText: string;
cancelText: string;
};
Transfer: {
searchPlaceholder: string;
itemUnit: string;
itemsUnit: string;
};
Upload: {
uploading: string;
removeFile: string;
uploadError: string;
previewFile: string;
downloadFile: string;
};
Empty: {
description: string;
};
Icon: {
icon: string;
};
Text: {
edit: string;
copy: string;
copied: string;
expand: string;
};
PageHeader: {
back: string;
};
};
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
declare const _default$10: {
locale: string;
Pagination: {
items_per_page: string;
jump_to: string;
jump_to_confirm: string;
page: string;
prev_page: string;
next_page: string;
prev_5: string;
next_5: string;
prev_3: string;
next_3: string;
page_size: string;
};
DatePicker: {
lang: {
placeholder: string;
rangePlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
weekSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
};
};
TimePicker: {
placeholder: string;
};
Calendar: {
lang: {
placeholder: string;
rangePlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
weekSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
};
};
Table: {
filterTitle: string;
filterConfirm: string;
filterReset: string;
emptyText: string;
selectAll: string;
selectInvert: string;
};
Modal: {
okText: string;
cancelText: string;
justOkText: string;
};
Popconfirm: {
okText: string;
cancelText: string;
};
Transfer: {
titles: string[];
notFoundContent: string;
searchPlaceholder: string;
itemUnit: string;
itemsUnit: string;
};
Select: {
notFoundContent: string;
};
Upload: {
uploading: string;
removeFile: string;
uploadError: string;
previewFile: string;
};
};
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
declare const _default$$: {
locale: string;
Pagination: {
items_per_page: string;
jump_to: string;
jump_to_confirm: string;
page: string;
prev_page: string;
next_page: string;
prev_5: string;
next_5: string;
prev_3: string;
next_3: string;
page_size: string;
};
DatePicker: {
lang: {
placeholder: string;
rangePlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
};
};
TimePicker: {
placeholder: string;
};
Calendar: {
lang: {
placeholder: string;
rangePlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
};
};
Table: {
filterTitle: string;
filterConfirm: string;
filterReset: string;
selectAll: string;
selectInvert: string;
};
Modal: {
okText: string;
cancelText: string;
justOkText: string;
};
Popconfirm: {
okText: string;
cancelText: string;
};
Transfer: {
searchPlaceholder: string;
itemUnit: string;
itemsUnit: string;
};
Upload: {
uploading: string;
removeFile: string;
uploadError: string;
previewFile: string;
downloadFile: string;
};
Empty: {
description: string;
};
};
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
declare const _default$_: {
locale: string;
Pagination: {
items_per_page: string;
jump_to: string;
jump_to_confirm: string;
page: string;
prev_page: string;
next_page: string;
prev_5: string;
next_5: string;
prev_3: string;
next_3: string;
page_size: string;
};
DatePicker: {
lang: {
placeholder: string;
yearPlaceholder: string;
quarterPlaceholder: string;
monthPlaceholder: string;
weekPlaceholder: string;
rangePlaceholder: string[];
rangeYearPlaceholder: string[];
rangeMonthPlaceholder: string[];
rangeWeekPlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
weekSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
rangePlaceholder: string[];
};
};
TimePicker: {
placeholder: string;
rangePlaceholder: string[];
};
Calendar: {
lang: {
placeholder: string;
yearPlaceholder: string;
quarterPlaceholder: string;
monthPlaceholder: string;
weekPlaceholder: string;
rangePlaceholder: string[];
rangeYearPlaceholder: string[];
rangeMonthPlaceholder: string[];
rangeWeekPlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
weekSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
rangePlaceholder: string[];
};
};
global: {
placeholder: string;
};
Table: {
filterTitle: string;
filterConfirm: string;
filterReset: string;
filterEmptyText: string;
emptyText: string;
selectAll: string;
selectInvert: string;
selectNone: string;
selectionAll: string;
sortTitle: string;
expand: string;
collapse: string;
triggerDesc: string;
triggerAsc: string;
cancelSort: string;
};
Modal: {
okText: string;
cancelText: string;
justOkText: string;
};
Popconfirm: {
okText: string;
cancelText: string;
};
Transfer: {
titles: string[];
searchPlaceholder: string;
itemUnit: string;
itemsUnit: string;
remove: string;
selectCurrent: string;
removeCurrent: string;
selectAll: string;
removeAll: string;
selectInvert: string;
};
Upload: {
uploading: string;
removeFile: string;
uploadError: string;
previewFile: string;
downloadFile: string;
};
Empty: {
description: string;
};
Icon: {
icon: string;
};
Text: {
edit: string;
copy: string;
copied: string;
expand: string;
};
PageHeader: {
back: string;
};
Image: {
preview: string;
};
};
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
declare const _default$Z: {
locale: string;
Pagination: {
items_per_page: string;
jump_to: string;
jump_to_confirm: string;
page: string;
prev_page: string;
next_page: string;
prev_5: string;
next_5: string;
prev_3: string;
next_3: string;
page_size: string;
};
DatePicker: {
lang: {
placeholder: string;
yearPlaceholder: string;
quarterPlaceholder: string;
monthPlaceholder: string;
weekPlaceholder: string;
rangePlaceholder: string[];
rangeYearPlaceholder: string[];
rangeMonthPlaceholder: string[];
rangeWeekPlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
weekSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
rangePlaceholder: string[];
};
};
TimePicker: {
placeholder: string;
rangePlaceholder: string[];
};
Calendar: {
lang: {
placeholder: string;
yearPlaceholder: string;
quarterPlaceholder: string;
monthPlaceholder: string;
weekPlaceholder: string;
rangePlaceholder: string[];
rangeYearPlaceholder: string[];
rangeMonthPlaceholder: string[];
rangeWeekPlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
weekSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
rangePlaceholder: string[];
};
};
global: {
placeholder: string;
};
Table: {
filterTitle: string;
filterConfirm: string;
filterReset: string;
filterEmptyText: string;
emptyText: string;
selectAll: string;
selectInvert: string;
selectionAll: string;
sortTitle: string;
expand: string;
collapse: string;
triggerDesc: string;
triggerAsc: string;
cancelSort: string;
};
Modal: {
okText: string;
cancelText: string;
justOkText: string;
};
Popconfirm: {
okText: string;
cancelText: string;
};
Transfer: {
titles: string[];
searchPlaceholder: string;
itemUnit: string;
itemsUnit: string;
remove: string;
selectAll: string;
selectCurrent: string;
selectInvert: string;
removeAll: string;
removeCurrent: string;
};
Upload: {
uploading: string;
removeFile: string;
uploadError: string;
previewFile: string;
downloadFile: string;
};
Empty: {
description: string;
};
Icon: {
icon: string;
};
Text: {
edit: string;
copy: string;
copied: string;
expand: string;
};
PageHeader: {
back: string;
};
};
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
declare const _default$Y: {
locale: string;
Pagination: {
items_per_page: string;
jump_to: string;
jump_to_confirm: string;
page: string;
prev_page: string;
next_page: string;
prev_5: string;
next_5: string;
prev_3: string;
next_3: string;
page_size: string;
};
DatePicker: {
lang: {
placeholder: string;
rangePlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
};
};
TimePicker: {
placeholder: string;
};
Calendar: {
lang: {
placeholder: string;
rangePlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
};
};
global: {
placeholder: string;
};
Table: {
filterTitle: string;
filterConfirm: string;
filterReset: string;
filterEmptyText: string;
selectAll: string;
selectInvert: string;
selectionAll: string;
sortTitle: string;
expand: string;
collapse: string;
triggerDesc: string;
triggerAsc: string;
cancelSort: string;
};
Modal: {
okText: string;
cancelText: string;
justOkText: string;
};
Popconfirm: {
okText: string;
cancelText: string;
};
Transfer: {
titles: string[];
searchPlaceholder: string;
itemUnit: string;
itemsUnit: string;
remove: string;
selectCurrent: string;
removeCurrent: string;
selectAll: string;
removeAll: string;
selectInvert: string;
};
Upload: {
uploading: string;
removeFile: string;
uploadError: string;
previewFile: string;
downloadFile: string;
};
Empty: {
description: string;
};
Icon: {
icon: string;
};
Text: {
edit: string;
copy: string;
copied: string;
expand: string;
};
PageHeader: {
back: string;
};
};
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
declare const _default$X: {
locale: string;
Pagination: {
items_per_page: string;
jump_to: string;
jump_to_confirm: string;
page: string;
prev_page: string;
next_page: string;
prev_5: string;
next_5: string;
prev_3: string;
next_3: string;
page_size: string;
};
DatePicker: {
lang: {
placeholder: string;
rangePlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
};
};
TimePicker: {
placeholder: string;
};
Calendar: {
lang: {
placeholder: string;
rangePlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
};
};
global: {
placeholder: string;
};
Table: {
filterTitle: string;
filterConfirm: string;
filterReset: string;
filterEmptyText: string;
selectAll: string;
selectInvert: string;
selectionAll: string;
sortTitle: string;
expand: string;
collapse: string;
triggerDesc: string;
triggerAsc: string;
cancelSort: string;
};
Modal: {
okText: string;
cancelText: string;
justOkText: string;
};
Popconfirm: {
okText: string;
cancelText: string;
};
Transfer: {
searchPlaceholder: string;
itemUnit: string;
itemsUnit: string;
};
Upload: {
uploading: string;
removeFile: string;
uploadError: string;
previewFile: string;
downloadFile: string;
};
Empty: {
description: string;
};
};
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
declare const _default$W: {
locale: string;
DatePicker: {
lang: {
placeholder: string;
rangePlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
rangePlaceholder: string[];
};
};
TimePicker: {
placeholder: string;
rangePlaceholder: string[];
};
Calendar: {
lang: {
placeholder: string;
rangePlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
rangePlaceholder: string[];
};
};
Pagination: {
items_per_page: string;
jump_to: string;
jump_to_confirm: string;
page: string;
prev_page: string;
next_page: string;
prev_5: string;
next_5: string;
prev_3: string;
next_3: string;
page_size: string;
};
Table: {
filterTitle: string;
filterConfirm: string;
filterReset: string;
selectAll: string;
selectInvert: string;
filterEmptyText: string;
emptyText: string;
selectNone: string;
selectionAll: string;
sortTitle: string;
expand: string;
collapse: string;
triggerDesc: string;
triggerAsc: string;
cancelSort: string;
};
Modal: {
okText: string;
cancelText: string;
justOkText: string;
};
Popconfirm: {
okText: string;
cancelText: string;
};
Transfer: {
searchPlaceholder: string;
itemUnit: string;
itemsUnit: string;
};
Upload: {
uploading: string;
removeFile: string;
uploadError: string;
previewFile: string;
downloadFile: string;
};
Empty: {
description: string;
};
};
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
declare const _default$V: {
locale: string;
Pagination: {
items_per_page: string;
jump_to: string;
jump_to_confirm: string;
page: string;
prev_page: string;
next_page: string;
prev_5: string;
next_5: string;
prev_3: string;
next_3: string;
page_size: string;
};
DatePicker: {
lang: {
placeholder: string;
yearPlaceholder: string;
quarterPlaceholder: string;
monthPlaceholder: string;
weekPlaceholder: string;
rangePlaceholder: string[];
rangeYearPlaceholder: string[];
rangeQuarterPlaceholder: string[];
rangeMonthPlaceholder: string[];
rangeWeekPlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
weekSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
rangePlaceholder: string[];
};
};
TimePicker: {
placeholder: string;
rangePlaceholder: string[];
};
Calendar: {
lang: {
placeholder: string;
yearPlaceholder: string;
quarterPlaceholder: string;
monthPlaceholder: string;
weekPlaceholder: string;
rangePlaceholder: string[];
rangeYearPlaceholder: string[];
rangeMonthPlaceholder: string[];
rangeWeekPlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
weekSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
rangePlaceholder: string[];
};
};
global: {
placeholder: string;
};
Table: {
filterTitle: string;
filterConfirm: string;
filterReset: string;
filterEmptyText: string;
emptyText: string;
selectAll: string;
selectInvert: string;
selectionAll: string;
sortTitle: string;
expand: string;
collapse: string;
triggerDesc: string;
triggerAsc: string;
cancelSort: string;
filterCheckall: string;
filterSearchPlaceholder: string;
selectNone: string;
};
Modal: {
okText: string;
cancelText: string;
justOkText: string;
};
Popconfirm: {
okText: string;
cancelText: string;
};
Transfer: {
titles: string[];
searchPlaceholder: string;
itemUnit: string;
itemsUnit: string;
remove: string;
selectCurrent: string;
removeCurrent: string;
selectAll: string;
removeAll: string;
selectInvert: string;
};
Upload: {
uploading: string;
removeFile: string;
uploadError: string;
previewFile: string;
downloadFile: string;
};
Empty: {
description: string;
};
Icon: {
icon: string;
};
Text: {
edit: string;
copy: string;
copied: string;
expand: string;
};
PageHeader: {
back: string;
};
Image: {
preview: string;
};
};
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
declare const _default$U: {
locale: string;
Pagination: {
items_per_page: string;
jump_to: string;
jump_to_confirm: string;
page: string;
prev_page: string;
next_page: string;
prev_5: string;
next_5: string;
prev_3: string;
next_3: string;
page_size: string;
};
DatePicker: {
lang: {
placeholder: string;
yearPlaceholder: string;
quarterPlaceholder: string;
monthPlaceholder: string;
weekPlaceholder: string;
rangePlaceholder: string[];
rangeYearPlaceholder: string[];
rangeMonthPlaceholder: string[];
rangeWeekPlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
weekSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
rangePlaceholder: string[];
};
};
TimePicker: {
placeholder: string;
rangePlaceholder: string[];
};
Calendar: {
lang: {
placeholder: string;
yearPlaceholder: string;
quarterPlaceholder: string;
monthPlaceholder: string;
weekPlaceholder: string;
rangePlaceholder: string[];
rangeYearPlaceholder: string[];
rangeMonthPlaceholder: string[];
rangeWeekPlaceholder: string[];
locale: string;
today: string;
now: string;
backToToday: string;
ok: string;
clear: string;
month: string;
year: string;
timeSelect: string;
dateSelect: string;
weekSelect: string;
monthSelect: string;
yearSelect: string;
decadeSelect: string;
yearFormat: string;
dateFormat: string;
dayFormat: string;
dateTimeFormat: string;
monthBeforeYear: boolean;
previousMonth: string;
nextMonth: string;
previousYear: string;
nextYear: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
};
timePickerLocale: {
placeholder: string;
rangePlaceholder: string[];
};
};
Table: {
filterTitle: string;
filterConfirm: string;
filterReset: string;
selectAll: string;
selectInvert: string;
};
Modal: {
okText: string;
cancelText: string;
justOkText: string;
};
Popconfirm: {
okText: string;
cancelText: string;
};
Transfer: {
searchPlaceholder: string;
itemUnit: string;
itemsUnit: