update the props types of some components (#2860)

* chore(types): update tags props types
remove afterClose prop types and add onClose prop types

* chore(types): update input props types

* chore(types): update card props types

* chore(types): update page-header props types

Co-authored-by: tangjinzhou <415800467@qq.com>
pull/2868/head
John60676 2020-09-18 23:00:27 +08:00 committed by GitHub
parent 47c5191b8c
commit efdb38d9f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 103 additions and 90 deletions

7
types/card.d.ts vendored
View File

@ -13,12 +13,13 @@ export declare class Card extends AntdComponent {
static Meta: typeof Meta;
$props: AntdProps & {
tabBarExtraContent?: any;
tabBarExtraContent?: VNodeChild | JSX.Element;
/**
* The action list, shows at the bottom of the Card.
* @type any (slots)
*/
actions?: VNodeChild | JSX.Element;
actions?: VNodeChild[] | JSX.Element[];
/**
* Current TabPane's key
@ -93,7 +94,7 @@ export declare class Card extends AntdComponent {
* Card style type, can be set to inner or not set
* @type string
*/
type?: string;
type?: 'inner';
/**
* Size of card

View File

@ -4,14 +4,22 @@
import { AntdComponent, AntdProps } from '../component';
import { VNodeChild } from 'vue';
import { InputProps } from './input';
export declare class InputSearch extends AntdComponent {
$props: AntdProps & {
$props: AntdProps &
InputProps & {
/**
* to show an enter button after input
* @default false
* @type any (boolean | slot)
*/
enterButton?: boolean | VNodeChild | JSX.Element;
/**
* Callback when search is clicked or enter is pressed
* @type Function
*/
onSearch?: (value: string | number, event: Event) => void;
};
}

View File

@ -9,12 +9,7 @@ import { TextArea } from './textarea';
import { Password } from './password';
import { VNodeChild } from 'vue';
export declare class Input extends AntdComponent {
static Group: typeof InputGroup;
static Search: typeof InputSearch;
static TextArea: typeof TextArea;
static Password: typeof Password;
$props: AntdProps & {
export type InputProps = {
/**
* The label text displayed after (on the right side of) the input field.
* @type any (string | slot)
@ -82,4 +77,11 @@ export declare class Input extends AntdComponent {
*/
allowClear?: boolean;
};
export declare class Input extends AntdComponent {
static Group: typeof InputGroup;
static Search: typeof InputSearch;
static TextArea: typeof TextArea;
static Password: typeof Password;
$props: AntdProps & InputProps;
}

View File

@ -3,9 +3,11 @@
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { AntdComponent, AntdProps } from '../component';
import { InputProps } from './input';
export declare class Password extends AntdComponent {
$props: AntdProps & {
$props: AntdProps &
Omit<InputProps, 'type' | 'suffix'> & {
/**
* Whether show toggle button
* @default true

View File

@ -69,6 +69,6 @@ export declare class PageHeader extends AntdComponent {
/**
* Specify a callback that will be called when a user clicks backIcon.
*/
onBack(): () => void;
onBack?: (e: MouseEvent) => void;
};
}

4
types/tag/tag.d.ts vendored
View File

@ -10,10 +10,10 @@ export declare class Tag extends AntdComponent {
$props: AntdProps & {
/**
* Callback executed when close animation is completed
* Callback executed when close
* @type Function
*/
afterClose?: () => void;
onClose?: (e: MouseEvent) => void;
/**
* Whether the Tag can be closed