[improvement] default props in tsx (#2789)

This commit is contained in:
neverland 2019-02-19 11:31:55 +08:00 committed by GitHub
parent b9d7143fb3
commit 07a6bcbe9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 21 additions and 21 deletions

View File

@ -8,9 +8,9 @@ import { CreateElement, RenderContext } from 'vue/types';
import { DefaultSlots } from '../utils/use/sfc'; import { DefaultSlots } from '../utils/use/sfc';
export type ButtonProps = RouteProps & { export type ButtonProps = RouteProps & {
tag?: string; tag: string;
type?: string; type: string;
size?: string; size: string;
text?: string; text?: string;
block?: boolean; block?: boolean;
plain?: boolean; plain?: boolean;

View File

@ -13,7 +13,7 @@ export type CardProps = {
thumb?: string; thumb?: string;
title?: string; title?: string;
price?: number | string; price?: number | string;
currency?: string; currency: string;
centered?: boolean; centered?: boolean;
lazyLoad?: boolean; lazyLoad?: boolean;
thumbLink?: string; thumbLink?: string;

View File

@ -6,7 +6,7 @@ import { CreateElement, RenderContext } from 'vue/types';
import { DefaultSlots } from '../utils/use/sfc'; import { DefaultSlots } from '../utils/use/sfc';
export type CellGroupProps = { export type CellGroupProps = {
border?: boolean border: boolean
}; };
const [sfc, bem] = use('cell-group'); const [sfc, bem] = use('cell-group');

View File

@ -1,6 +1,6 @@
export type SharedCellProps = { export type SharedCellProps = {
icon?: string; icon?: string;
border?: boolean; border: boolean;
center?: boolean; center?: boolean;
isLink?: boolean; isLink?: boolean;
required?: boolean; required?: boolean;

View File

@ -12,8 +12,8 @@ export type ContactCardProps = {
tel?: string; tel?: string;
name?: string; name?: string;
type?: string; type?: string;
addText?: string; addText: string;
editable?: boolean; editable: boolean;
}; };
function ContactCard( function ContactCard(

View File

@ -12,7 +12,7 @@ export type IconProps = {
size?: string; size?: string;
color?: string; color?: string;
info?: string | number; info?: string | number;
classPrefix?: string; classPrefix: string;
}; };
export type IconEvents = { export type IconEvents = {

View File

@ -7,8 +7,8 @@ import { DefaultSlots } from '../utils/use/sfc';
export type LoadingProps = { export type LoadingProps = {
size?: string; size?: string;
type?: string; type: string;
color?: string; color: string;
}; };
const [sfc, bem] = use('loading'); const [sfc, bem] = use('loading');

View File

@ -9,8 +9,8 @@ import { ScopedSlot, DefaultSlots } from '../utils/use/sfc';
export type NavBarProps = { export type NavBarProps = {
title?: string; title?: string;
fixed?: boolean; fixed?: boolean;
zIndex?: number; zIndex: number;
border?: boolean; border: boolean;
leftText?: string; leftText?: string;
rightText?: string; rightText?: string;
leftArrow?: boolean; leftArrow?: boolean;

View File

@ -9,7 +9,7 @@ import { CreateElement, RenderContext } from 'vue/types';
import { DefaultSlots } from '../utils/use/sfc'; import { DefaultSlots } from '../utils/use/sfc';
export type SwitchCellProps = SharedSwitchProps & { export type SwitchCellProps = SharedSwitchProps & {
size?: string; size: string;
title?: string; title?: string;
border?: boolean; border?: boolean;
}; };

View File

@ -3,12 +3,12 @@
*/ */
export type SharedSwitchProps = { export type SharedSwitchProps = {
size?: string; size: string;
value?: any; value?: any;
loading?: boolean; loading?: boolean;
disabled?: boolean; disabled?: boolean;
activeValue?: any; activeValue: any;
inactiveValue?: any; inactiveValue: any;
activeColor?: string; activeColor?: string;
inactiveColor?: string; inactiveColor?: string;
}; };

View File

@ -53,13 +53,13 @@ export type FunctionalComponent<
}; };
export type TsxBaseProps = { export type TsxBaseProps = {
class?: any; class: any;
style?: any; style: any;
// hack for jsx prop spread // hack for jsx prop spread
props?: any; props: any;
}; };
export type TsxComponent<Props, Events> = ( export type TsxComponent<Props, Events> = (
props: Props & Events & TsxBaseProps props: Partial<Props & Events & TsxBaseProps>
) => VNode; ) => VNode;
const arrayProp = { const arrayProp = {