@lemon-fe/components 0.1.99 → 0.1.100

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.
@@ -1,5 +1,3 @@
1
- @import '../theme.less';
2
-
3
1
  .@{prefixCls}-form-item {
4
2
  display: flex;
5
3
  align-items: center;
@@ -16,4 +14,10 @@
16
14
  padding: 6px 6px 6px 0;
17
15
  cursor: pointer;
18
16
  }
17
+
18
+ .ant-table-cell-row-hover &:not(.ant-input) {
19
+ background-color: #fff;
20
+ border: 1px solid #c0c0c0;
21
+ border-radius: 4px;
22
+ }
19
23
  }
@@ -70,7 +70,10 @@ export type EditableTableRowError = {
70
70
  };
71
71
 
72
72
  export interface EditableTableProps<T>
73
- extends Pick<BaseTableProps<T>, 'rowKey' | 'virtual' | 'scroll' | 'pagination'> {
73
+ extends Pick<
74
+ BaseTableProps<T>,
75
+ 'rowKey' | 'virtual' | 'scroll' | 'pagination' | 'loading' | 'summaryRecord' | 'summaryTitle'
76
+ > {
74
77
  editable?: boolean;
75
78
  value?: T[];
76
79
  error?: string | EditableTableRowError[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lemon-fe/components",
3
- "version": "0.1.99",
3
+ "version": "0.1.100",
4
4
  "description": "> TODO: description",
5
5
  "author": "鲁盛杰 <lusj@cnlemon.net>",
6
6
  "homepage": "",
@@ -39,5 +39,5 @@
39
39
  "react": "^17.0.2",
40
40
  "react-dom": "^17.0.2"
41
41
  },
42
- "gitHead": "3396819657479029eee6dc5c61c090848fa70884"
42
+ "gitHead": "5f53ecae92b68b912baebcad654b448b93973526"
43
43
  }