@wx-design/components 0.1.6 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wx-design/components",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",
@@ -81,7 +81,7 @@ export type SabCellEditorParams =
81
81
  // 表格列设置
82
82
  export type SabColumnProps<D = VxeTableDataRow> = VxeColumnProps<D> & {
83
83
  // 单元格类型
84
- sabCellType?: SabCellType;
84
+ sabCellType?: 'input' | 'input-number' | 'select' | 'date-picker' | 'image' | 'color' | 'boolean';
85
85
  // 附加的单元格编辑器参数
86
86
  editorProps?: Partial<SabCellEditorParams>;
87
87
  // 单元格是否可编辑