25 lines
1.1 KiB
TypeScript
25 lines
1.1 KiB
TypeScript
import type { CheckboxGroupProps } from 'antd/lib/checkbox';
|
|
import React from 'react';
|
|
import type { FieldSelectProps } from '../Select';
|
|
export type GroupProps = {
|
|
layout?: 'horizontal' | 'vertical';
|
|
options?: CheckboxGroupProps['options'];
|
|
} & FieldSelectProps;
|
|
import 'antd/lib/checkbox/style';
|
|
declare const _default: React.ForwardRefExoticComponent<import("@ant-design/pro-provider").BaseProFieldFC & import("@ant-design/pro-provider").ProRenderFieldPropsType & {
|
|
layout?: "vertical" | "horizontal" | undefined;
|
|
options?: (string | number | import("antd/lib/checkbox").CheckboxOptionType<any>)[] | undefined;
|
|
} & {
|
|
text: string;
|
|
valueEnum?: import("@ant-design/pro-utils").ProFieldValueEnumType | undefined;
|
|
debounceTime?: number | undefined;
|
|
request?: import("@ant-design/pro-utils").ProFieldRequestData | undefined;
|
|
params?: any;
|
|
fieldProps?: any;
|
|
bordered?: boolean | undefined;
|
|
id?: string | undefined;
|
|
children?: React.ReactNode;
|
|
defaultKeyWords?: string | undefined;
|
|
} & import("../../index").ProFieldLightProps & React.RefAttributes<any>>;
|
|
export default _default;
|