antd
Version:
An enterprise-class UI design language and React components implementation
54 lines (53 loc) • 1.6 kB
TypeScript
import * as React from 'react';
import * as PropTypes from 'prop-types';
import { ModalLocale } from '../modal/locale';
export declare const ANT_MARK = "internalMark";
export interface Locale {
locale: string;
Pagination?: Object;
DatePicker?: Object;
TimePicker?: Object;
Calendar?: Object;
Table?: Object;
Modal?: ModalLocale;
Popconfirm?: Object;
Transfer?: Object;
Select?: Object;
Upload?: Object;
}
export interface LocaleProviderProps {
locale: Locale;
children?: React.ReactNode;
_ANT_MARK__?: string;
}
export default class LocaleProvider extends React.Component<LocaleProviderProps, any> {
static propTypes: {
locale: PropTypes.Requireable<object>;
};
static defaultProps: {
locale: {};
};
static childContextTypes: {
antLocale: PropTypes.Requireable<object>;
};
constructor(props: LocaleProviderProps);
getChildContext(): {
antLocale: {
exist: boolean;
locale: string;
Pagination?: Object | undefined;
DatePicker?: Object | undefined;
TimePicker?: Object | undefined;
Calendar?: Object | undefined;
Table?: Object | undefined;
Modal?: ModalLocale | undefined;
Popconfirm?: Object | undefined;
Transfer?: Object | undefined;
Select?: Object | undefined;
Upload?: Object | undefined;
};
};
componentDidUpdate(prevProps: LocaleProviderProps): void;
componentWillUnmount(): void;
render(): React.ReactNode;
}