2019-01-01 04:13:51 +00:00
|
|
|
// Project: https://github.com/vueComponent/ant-design-vue
|
|
|
|
// Definitions by: akki-jat <https://github.com/akki-jat>
|
|
|
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
|
|
|
|
2020-08-31 06:59:56 +00:00
|
|
|
import { AntdComponent, AntdProps } from '../component';
|
2019-01-01 04:13:51 +00:00
|
|
|
|
|
|
|
export declare class InputGroup extends AntdComponent {
|
2020-08-31 06:59:56 +00:00
|
|
|
$props: AntdProps & {
|
2020-08-19 13:01:12 +00:00
|
|
|
/**
|
|
|
|
* Whether use compact style
|
|
|
|
* @default false
|
|
|
|
* @type boolean
|
|
|
|
*/
|
|
|
|
compact?: boolean;
|
2019-01-01 04:13:51 +00:00
|
|
|
|
2020-08-19 13:01:12 +00:00
|
|
|
/**
|
|
|
|
* The size of Input.Group specifies the size of the included Input fields. Available: large default small
|
|
|
|
* @default 'default'
|
|
|
|
* @type string
|
|
|
|
*/
|
|
|
|
size?: 'small' | 'large' | 'default';
|
2020-08-30 14:59:47 +00:00
|
|
|
};
|
2019-01-01 04:13:51 +00:00
|
|
|
}
|