You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.8 KiB
57 lines
1.8 KiB
import * as React from 'react';
|
|
import { RenderEmptyHandler } from './renderEmpty';
|
|
import { Locale } from '../locale-provider';
|
|
import { SizeType } from './SizeContext';
|
|
import { RequiredMark } from '../form/Form';
|
|
export interface Theme {
|
|
primaryColor?: string;
|
|
infoColor?: string;
|
|
successColor?: string;
|
|
processingColor?: string;
|
|
errorColor?: string;
|
|
warningColor?: string;
|
|
}
|
|
export interface CSPConfig {
|
|
nonce?: string;
|
|
}
|
|
export declare type DirectionType = 'ltr' | 'rtl' | undefined;
|
|
export interface ConfigConsumerProps {
|
|
getTargetContainer?: () => HTMLElement;
|
|
getPopupContainer?: (triggerNode?: HTMLElement) => HTMLElement;
|
|
rootPrefixCls?: string;
|
|
iconPrefixCls?: string;
|
|
getPrefixCls: (suffixCls?: string, customizePrefixCls?: string) => string;
|
|
renderEmpty: RenderEmptyHandler;
|
|
csp?: CSPConfig;
|
|
autoInsertSpaceInButton?: boolean;
|
|
input?: {
|
|
autoComplete?: string;
|
|
};
|
|
locale?: Locale;
|
|
pageHeader?: {
|
|
ghost: boolean;
|
|
};
|
|
direction?: DirectionType;
|
|
space?: {
|
|
size?: SizeType | number;
|
|
};
|
|
virtual?: boolean;
|
|
dropdownMatchSelectWidth?: boolean;
|
|
form?: {
|
|
requiredMark?: RequiredMark;
|
|
colon?: boolean;
|
|
};
|
|
}
|
|
export declare const ConfigContext: React.Context<ConfigConsumerProps>;
|
|
export declare const ConfigConsumer: React.Consumer<ConfigConsumerProps>;
|
|
declare type IReactComponent<P = any> = React.FC<P> | React.ComponentClass<P> | React.ClassicComponentClass<P>;
|
|
interface BasicExportProps {
|
|
prefixCls?: string;
|
|
}
|
|
interface ConsumerConfig {
|
|
prefixCls: string;
|
|
}
|
|
/** @deprecated Use hooks instead. This is a legacy function */
|
|
export declare function withConfigConsumer<ExportProps extends BasicExportProps>(config: ConsumerConfig): <ComponentDef>(Component: IReactComponent) => React.FC<ExportProps> & ComponentDef;
|
|
export {};
|