UNPKG

zp-bee

Version:

zp-bee,是一款基于 Dumi,由 React + TypeScript 开发的组件库 🎉。

39 lines (38 loc) 1.45 kB
import * as React from 'react'; import { RenderEmptyHandler } from './renderEmpty'; import { Locale } from '../bee-locale'; 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; autoInsertSpaceInButton?: boolean; input?: { autoComplete?: string; }; locale?: Locale; pageHeader?: { ghost: boolean; }; direction?: DirectionType; virtual?: boolean; dropdownMatchSelectWidth?: 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 {};