mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[improvement] default props in tsx (#2789)
This commit is contained in:
parent
b9d7143fb3
commit
07a6bcbe9f
@ -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;
|
||||||
|
@ -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;
|
||||||
|
@ -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');
|
||||||
|
@ -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;
|
||||||
|
@ -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(
|
||||||
|
@ -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 = {
|
||||||
|
@ -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');
|
||||||
|
@ -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;
|
||||||
|
@ -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;
|
||||||
};
|
};
|
||||||
|
@ -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;
|
||||||
};
|
};
|
||||||
|
@ -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 = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user