diff --git a/packages/button/index.tsx b/packages/button/index.tsx index dd0150c55..26aa27daa 100644 --- a/packages/button/index.tsx +++ b/packages/button/index.tsx @@ -8,9 +8,9 @@ import { CreateElement, RenderContext } from 'vue/types'; import { DefaultSlots } from '../utils/use/sfc'; export type ButtonProps = RouteProps & { - tag?: string; - type?: string; - size?: string; + tag: string; + type: string; + size: string; text?: string; block?: boolean; plain?: boolean; diff --git a/packages/card/index.tsx b/packages/card/index.tsx index 8ca46026f..3d4426c0a 100644 --- a/packages/card/index.tsx +++ b/packages/card/index.tsx @@ -13,7 +13,7 @@ export type CardProps = { thumb?: string; title?: string; price?: number | string; - currency?: string; + currency: string; centered?: boolean; lazyLoad?: boolean; thumbLink?: string; diff --git a/packages/cell-group/index.tsx b/packages/cell-group/index.tsx index 0c1fa206b..8c6b104e8 100644 --- a/packages/cell-group/index.tsx +++ b/packages/cell-group/index.tsx @@ -6,7 +6,7 @@ import { CreateElement, RenderContext } from 'vue/types'; import { DefaultSlots } from '../utils/use/sfc'; export type CellGroupProps = { - border?: boolean + border: boolean }; const [sfc, bem] = use('cell-group'); diff --git a/packages/cell/shared.ts b/packages/cell/shared.ts index 32c1acd12..35069747c 100644 --- a/packages/cell/shared.ts +++ b/packages/cell/shared.ts @@ -1,6 +1,6 @@ export type SharedCellProps = { icon?: string; - border?: boolean; + border: boolean; center?: boolean; isLink?: boolean; required?: boolean; diff --git a/packages/contact-card/index.tsx b/packages/contact-card/index.tsx index d773e749f..bfec063c8 100644 --- a/packages/contact-card/index.tsx +++ b/packages/contact-card/index.tsx @@ -12,8 +12,8 @@ export type ContactCardProps = { tel?: string; name?: string; type?: string; - addText?: string; - editable?: boolean; + addText: string; + editable: boolean; }; function ContactCard( diff --git a/packages/icon/index.tsx b/packages/icon/index.tsx index 0dd486418..74b622a20 100644 --- a/packages/icon/index.tsx +++ b/packages/icon/index.tsx @@ -12,7 +12,7 @@ export type IconProps = { size?: string; color?: string; info?: string | number; - classPrefix?: string; + classPrefix: string; }; export type IconEvents = { diff --git a/packages/loading/index.tsx b/packages/loading/index.tsx index 9cb4476c5..2994a2643 100644 --- a/packages/loading/index.tsx +++ b/packages/loading/index.tsx @@ -7,8 +7,8 @@ import { DefaultSlots } from '../utils/use/sfc'; export type LoadingProps = { size?: string; - type?: string; - color?: string; + type: string; + color: string; }; const [sfc, bem] = use('loading'); diff --git a/packages/nav-bar/index.tsx b/packages/nav-bar/index.tsx index 45f0b7858..114ebea37 100644 --- a/packages/nav-bar/index.tsx +++ b/packages/nav-bar/index.tsx @@ -9,8 +9,8 @@ import { ScopedSlot, DefaultSlots } from '../utils/use/sfc'; export type NavBarProps = { title?: string; fixed?: boolean; - zIndex?: number; - border?: boolean; + zIndex: number; + border: boolean; leftText?: string; rightText?: string; leftArrow?: boolean; diff --git a/packages/switch-cell/index.tsx b/packages/switch-cell/index.tsx index 2e9e04369..26e600b51 100644 --- a/packages/switch-cell/index.tsx +++ b/packages/switch-cell/index.tsx @@ -9,7 +9,7 @@ import { CreateElement, RenderContext } from 'vue/types'; import { DefaultSlots } from '../utils/use/sfc'; export type SwitchCellProps = SharedSwitchProps & { - size?: string; + size: string; title?: string; border?: boolean; }; diff --git a/packages/switch/shared.ts b/packages/switch/shared.ts index f9ad0aae3..296bd0354 100644 --- a/packages/switch/shared.ts +++ b/packages/switch/shared.ts @@ -3,12 +3,12 @@ */ export type SharedSwitchProps = { - size?: string; + size: string; value?: any; loading?: boolean; disabled?: boolean; - activeValue?: any; - inactiveValue?: any; + activeValue: any; + inactiveValue: any; activeColor?: string; inactiveColor?: string; }; diff --git a/packages/utils/use/sfc.ts b/packages/utils/use/sfc.ts index bd8495831..51954feb8 100644 --- a/packages/utils/use/sfc.ts +++ b/packages/utils/use/sfc.ts @@ -53,13 +53,13 @@ export type FunctionalComponent< }; export type TsxBaseProps = { - class?: any; - style?: any; + class: any; + style: any; // hack for jsx prop spread - props?: any; + props: any; }; export type TsxComponent = ( - props: Props & Events & TsxBaseProps + props: Partial ) => VNode; const arrayProp = {