@kdcloudjs/kdesign 1.5.0 → 1.5.1
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/CHANGELOG.md +41 -0
- package/dist/kdesign.css +1 -1
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +85 -29
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +1 -1
- package/dist/kdesign.min.js +3 -3
- package/dist/kdesign.min.js.map +1 -1
- package/es/table/table.js +8 -2
- package/lib/table/table.js +8 -2
- package/package.json +2 -2
package/es/table/table.js
CHANGED
|
@@ -48,7 +48,10 @@ function Table(props) {
|
|
|
48
48
|
getTableProps = props.getTableProps,
|
|
49
49
|
contextMenu = props.contextMenu,
|
|
50
50
|
rangeSelection = props.rangeSelection,
|
|
51
|
-
cssVariables = props.cssVariables
|
|
51
|
+
cssVariables = props.cssVariables,
|
|
52
|
+
stickyScrollHeight = props.stickyScrollHeight,
|
|
53
|
+
scrollbarWidth = props.scrollbarWidth,
|
|
54
|
+
scrollLoad = props.scrollLoad;
|
|
52
55
|
|
|
53
56
|
var _useContext = useContext(ConfigContext),
|
|
54
57
|
getPrefixCls = _useContext.getPrefixCls,
|
|
@@ -127,7 +130,10 @@ function Table(props) {
|
|
|
127
130
|
hasHeader: hasHeader,
|
|
128
131
|
useOuterBorder: useOuterBorder,
|
|
129
132
|
defaultColumnWidth: defaultColumnWidth,
|
|
130
|
-
cssVariables: cssVariables
|
|
133
|
+
cssVariables: cssVariables,
|
|
134
|
+
stickyScrollHeight: stickyScrollHeight,
|
|
135
|
+
scrollbarWidth: scrollbarWidth,
|
|
136
|
+
scrollLoad: scrollLoad
|
|
131
137
|
}));
|
|
132
138
|
}
|
|
133
139
|
|
package/lib/table/table.js
CHANGED
|
@@ -87,7 +87,10 @@ function Table(props) {
|
|
|
87
87
|
getTableProps = props.getTableProps,
|
|
88
88
|
contextMenu = props.contextMenu,
|
|
89
89
|
rangeSelection = props.rangeSelection,
|
|
90
|
-
cssVariables = props.cssVariables
|
|
90
|
+
cssVariables = props.cssVariables,
|
|
91
|
+
stickyScrollHeight = props.stickyScrollHeight,
|
|
92
|
+
scrollbarWidth = props.scrollbarWidth,
|
|
93
|
+
scrollLoad = props.scrollLoad;
|
|
91
94
|
|
|
92
95
|
var _useContext = (0, _react.useContext)(_ConfigContext.default),
|
|
93
96
|
getPrefixCls = _useContext.getPrefixCls,
|
|
@@ -166,7 +169,10 @@ function Table(props) {
|
|
|
166
169
|
hasHeader: hasHeader,
|
|
167
170
|
useOuterBorder: useOuterBorder,
|
|
168
171
|
defaultColumnWidth: defaultColumnWidth,
|
|
169
|
-
cssVariables: cssVariables
|
|
172
|
+
cssVariables: cssVariables,
|
|
173
|
+
stickyScrollHeight: stickyScrollHeight,
|
|
174
|
+
scrollbarWidth: scrollbarWidth,
|
|
175
|
+
scrollLoad: scrollLoad
|
|
170
176
|
}));
|
|
171
177
|
}
|
|
172
178
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kdcloudjs/kdesign",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "KDesign 金蝶前端react 组件库",
|
|
5
5
|
"title": "kdesign",
|
|
6
6
|
"keywords": [
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"@babel/runtime": "^7.10.4",
|
|
77
77
|
"@babel/runtime-corejs3": "^7.11.2",
|
|
78
78
|
"@babel/standalone": "^7.14.3",
|
|
79
|
-
"@kdcloudjs/table": "^1.1.
|
|
79
|
+
"@kdcloudjs/table": "^1.1.2",
|
|
80
80
|
"@popperjs/core": "^2.5.4",
|
|
81
81
|
"async-validator": "^3.5.1",
|
|
82
82
|
"axios": "^0.21.1",
|