1
0
mirror of synced 2025-12-11 00:28:09 +08:00

优化渲染、参数 title-help 更改为 title-prefix

This commit is contained in:
xuliangzhan
2022-02-19 15:41:37 +08:00
parent 34ec0c8769
commit 86e8ab3316
59 changed files with 3904 additions and 3831 deletions

32
types/colgroup.d.ts vendored
View File

@@ -5,67 +5,67 @@ import { VxeColumnPropTypes } from './column'
* 组件 - 表格分组列
* @example import { Colgroup as VxeColgroup } from 'vxe-table'
*/
export const Colgroup: VXEComponent<VxeColgroupProps>;
export const Colgroup: VXEComponent<VxeColgroupProps>
export type VxeColgroupProps = {
/**
* 渲染类型
*/
type?: VxeColumnPropTypes.Type;
type?: VxeColumnPropTypes.Type
/**
* 列字段名
*/
field?: VxeColumnPropTypes.Field;
field?: VxeColumnPropTypes.Field
/**
* 列标题
*/
title?: VxeColumnPropTypes.Title;
title?: VxeColumnPropTypes.Title
/**
* 列宽度
*/
width?: VxeColumnPropTypes.Width;
width?: VxeColumnPropTypes.Width
/**
* 列最小宽度,把剩余宽度按比例分配
*/
minWidth?: VxeColumnPropTypes.MinWidth;
minWidth?: VxeColumnPropTypes.MinWidth
/**
* 是否允许拖动列宽调整大小
*/
resizable?: VxeColumnPropTypes.Resizable;
resizable?: VxeColumnPropTypes.Resizable
/**
* 将列固定在左侧或者右侧
*/
fixed?: VxeColumnPropTypes.Fixed;
fixed?: VxeColumnPropTypes.Fixed
/**
* 列对其方式
*/
align?: VxeColumnPropTypes.Align;
align?: VxeColumnPropTypes.Align
/**
* 表头对齐方式
*/
headerAlign?: VxeColumnPropTypes.HeaderAlign;
headerAlign?: VxeColumnPropTypes.HeaderAlign
/**
* 当内容过长时显示为省略号
*/
showOverflow?: VxeColumnPropTypes.ShowOverflow;
showOverflow?: VxeColumnPropTypes.ShowOverflow
/**
* 当表头内容过长时显示为省略号
*/
showHeaderOverflow?: VxeColumnPropTypes.ShowHeaderOverflow;
showHeaderOverflow?: VxeColumnPropTypes.ShowHeaderOverflow
/**
* 给单元格附加 className
*/
className?: VxeColumnPropTypes.ClassName;
className?: VxeColumnPropTypes.ClassName
/**
* 给表头单元格附加 className
*/
headerClassName?: VxeColumnPropTypes.HeaderClassName;
headerClassName?: VxeColumnPropTypes.HeaderClassName
/**
* 是否可视
*/
visible?: VxeColumnPropTypes.Visible;
visible?: VxeColumnPropTypes.Visible
/**
* 额外的参数
*/
params?: VxeColumnPropTypes.Params;
params?: VxeColumnPropTypes.Params
}