fix 修复显示多个校验消息提示无效问题
This commit is contained in:
10
types/button-group.d.ts
vendored
10
types/button-group.d.ts
vendored
@@ -26,16 +26,26 @@ export interface VxeButtonGroupConstructor extends VxeComponentBase, VxeButtonGr
|
||||
export type VxeButtonGroupProps = {
|
||||
size?: VxeButtonGroupPropTypes.Size
|
||||
options?: VxeButtonGroupPropTypes.Options
|
||||
mode?: VxeButtonGroupPropTypes.Mode
|
||||
status?: VxeButtonGroupPropTypes.Status
|
||||
round?: VxeButtonGroupPropTypes.Round
|
||||
circle?: VxeButtonGroupPropTypes.Circle
|
||||
/**
|
||||
* 是否禁用
|
||||
*/
|
||||
disabled?: VxeButtonGroupPropTypes.Disabled
|
||||
className?: VxeButtonGroupPropTypes.ClassName
|
||||
}
|
||||
|
||||
export namespace VxeButtonGroupPropTypes {
|
||||
export type Size = SizeType
|
||||
export type Options = VxeButtonProps[]
|
||||
export type Round = boolean
|
||||
export type Circle = boolean
|
||||
export type Disabled = boolean
|
||||
export type Mode = VxeButtonPropTypes.Mode
|
||||
export type Status = VxeButtonPropTypes.Status
|
||||
export type ClassName = string | ((params: { $buttonGroup: VxeButtonGroupConstructor }) => string)
|
||||
}
|
||||
|
||||
export interface ButtonPrivateComputed {
|
||||
|
||||
6
types/table.d.ts
vendored
6
types/table.d.ts
vendored
@@ -1968,6 +1968,12 @@ export namespace VxeTablePropTypes {
|
||||
* 用于 mouse-config.area & column.type=checkbox|radio,开启空格键切换复选框或单选框状态功能
|
||||
*/
|
||||
isChecked?: boolean
|
||||
/**
|
||||
* 用于 mouse-config.area,方向键光标锁,开启后将支持两种状态
|
||||
* 非聚焦式输入状态:默认情况下,可以按方向键移动单元格。
|
||||
* 聚焦式输入状态:如果需要移动光标,可以按 F2 键或者鼠标左键点击输入框,切换为聚焦输入状态,就可以用方向键左右移动光标
|
||||
*/
|
||||
arrowCursorLock?: boolean
|
||||
/**
|
||||
* 用于 mouse-config.area,是否将回车键行为改成 Tab 键行为
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user