@kep-platform/basic-component 0.0.27 → 0.0.28
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/dist/Table/Table.js +1 -1
- package/package.json +3 -3
package/dist/Table/Table.js
CHANGED
|
@@ -171,7 +171,7 @@ function sortObjectsByProperty(objects, property, sorterType, func) {
|
|
|
171
171
|
function filterTableRows(rows, filters) {
|
|
172
172
|
return rows.filter(function (row) {
|
|
173
173
|
if (row === undefined) {
|
|
174
|
-
return
|
|
174
|
+
return true;
|
|
175
175
|
}
|
|
176
176
|
return Object.keys(filters).every(function (key) {
|
|
177
177
|
return row[key] && row[key].toString().includes(filters[key]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kep-platform/basic-component",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.28",
|
|
4
4
|
"description": "A react library developed with dumi",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -74,10 +74,10 @@
|
|
|
74
74
|
"react-dom": "^18.0.0",
|
|
75
75
|
"stylelint": "^14.9.1"
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "199e06d46f67de10c87f790fc5c704666a0eb288",
|
|
78
78
|
"dependencies": {
|
|
79
79
|
"@ant-design/icons": "^5.3.7",
|
|
80
|
-
"@kep-platform/hooks": "^0.0.
|
|
80
|
+
"@kep-platform/hooks": "^0.0.28",
|
|
81
81
|
"color": "^4.2.3",
|
|
82
82
|
"rc-pagination": "^4.1.0",
|
|
83
83
|
"styled-components": "^6.1.11"
|