@arcblock/ux 2.4.30 → 2.4.32
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/lib/Datatable/index.js +2 -2
- package/package.json +4 -4
- package/src/Datatable/index.js +2 -2
package/lib/Datatable/index.js
CHANGED
@@ -216,11 +216,11 @@ function ReDatatable(_ref2) {
|
|
216
216
|
emptyEl = emptyNode;
|
217
217
|
} else if (locale === 'zh') {
|
218
218
|
emptyEl = /*#__PURE__*/(0, _jsxRuntime.jsx)(_Empty.default, {
|
219
|
-
children: emptyNode || '
|
219
|
+
children: emptyNode || '没有找到匹配的记录'
|
220
220
|
});
|
221
221
|
} else {
|
222
222
|
emptyEl = /*#__PURE__*/(0, _jsxRuntime.jsx)(_Empty.default, {
|
223
|
-
children: emptyNode || '
|
223
|
+
children: emptyNode || 'No matching records found'
|
224
224
|
});
|
225
225
|
}
|
226
226
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@arcblock/ux",
|
3
|
-
"version": "2.4.
|
3
|
+
"version": "2.4.32",
|
4
4
|
"description": "Common used react components for arcblock products",
|
5
5
|
"keywords": [
|
6
6
|
"react",
|
@@ -47,10 +47,10 @@
|
|
47
47
|
"react": ">=18.1.0",
|
48
48
|
"react-ga": "^2.7.0"
|
49
49
|
},
|
50
|
-
"gitHead": "
|
50
|
+
"gitHead": "2d5ae94d1098073c5483f53af3613f0976841a5a",
|
51
51
|
"dependencies": {
|
52
|
-
"@arcblock/icons": "^2.4.
|
53
|
-
"@arcblock/react-hooks": "^2.4.
|
52
|
+
"@arcblock/icons": "^2.4.32",
|
53
|
+
"@arcblock/react-hooks": "^2.4.32",
|
54
54
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
55
55
|
"@emotion/react": "^11.10.0",
|
56
56
|
"@emotion/styled": "^11.10.0",
|
package/src/Datatable/index.js
CHANGED
@@ -171,9 +171,9 @@ function ReDatatable({
|
|
171
171
|
} else if (isValidElement(emptyNode)) {
|
172
172
|
emptyEl = emptyNode;
|
173
173
|
} else if (locale === 'zh') {
|
174
|
-
emptyEl = <Empty>{emptyNode || '
|
174
|
+
emptyEl = <Empty>{emptyNode || '没有找到匹配的记录'}</Empty>;
|
175
175
|
} else {
|
176
|
-
emptyEl = <Empty>{emptyNode || '
|
176
|
+
emptyEl = <Empty>{emptyNode || 'No matching records found'}</Empty>;
|
177
177
|
}
|
178
178
|
|
179
179
|
let textLabels = {
|