venus-design 0.7.7 → 0.7.8

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.
@@ -38,7 +38,7 @@ export var handleColumnFns = function handleColumnFns(columnList, showIndexColum
38
38
  var _loop = function _loop(i) {
39
39
  if (columnList[i] != null) {
40
40
  //@ts-ignore
41
- var handleEnumType = VENUS_TABLE_COLUMNENUM_TYPE[columnList[i].formUnitType] || function () {};
41
+ var handleEnumType = VENUS_TABLE_COLUMNENUM_TYPE[columnList[i].gridFilterType] || function () {};
42
42
  var handleRenderType = VENUS_TABLE_COLUMNRENDER_TYPE[columnList[i].parameterSource.render] || function () {};
43
43
  var handleCellType = VENUS_TABLE_ONCELL_TYPE[columnList[i].parameterSource.onCell] || function () {};
44
44
  var radioRender = getRenderColumn(columnList[i]);
@@ -55,6 +55,9 @@ export var VENUS_TABLE_COLUMNENUM_TYPE = {
55
55
  "Select": function Select(column) {
56
56
  return dataToEnum(column.selectSource);
57
57
  },
58
+ "select": function select(column) {
59
+ return dataToEnum(column.selectSource);
60
+ },
58
61
  "Input": function Input(column) {
59
62
  return undefined;
60
63
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "venus-design",
3
- "version": "0.7.7",
3
+ "version": "0.7.8",
4
4
  "description": "venus all compoments",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",