@ccs-ui/rc-pro 1.1.17 → 1.1.18
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/es/keep-alive-tabs/index.less +1 -0
- package/es/table/index.js +1 -1
- package/es/table/index.less +0 -14
- package/package.json +6 -2
package/es/table/index.js
CHANGED
|
@@ -150,7 +150,7 @@ var CustomTable = function CustomTable(props) {
|
|
|
150
150
|
columns: filterColumns()
|
|
151
151
|
}, restProps), {}, {
|
|
152
152
|
size: restProps.size || 'middle',
|
|
153
|
-
className: classNames(
|
|
153
|
+
className: classNames(!totalNum ? 'ccs-table-nodata' : '', className),
|
|
154
154
|
scroll: scroll
|
|
155
155
|
})))
|
|
156
156
|
})
|
package/es/table/index.less
CHANGED
|
@@ -89,20 +89,6 @@
|
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
&-noselection {
|
|
93
|
-
.ant-table-thead {
|
|
94
|
-
tr th:first-child {
|
|
95
|
-
padding-left: 22px;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.ant-table-tbody {
|
|
100
|
-
tr td:first-child {
|
|
101
|
-
padding-left: 22px;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
92
|
&-nodata {
|
|
107
93
|
color: red;
|
|
108
94
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ccs-ui/rc-pro",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.1.18",
|
|
4
|
+
"description": "测试更新说明;测试更新说明2;测试更新说明3",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Hong",
|
|
8
|
+
"url": "https://xz7.gitee.io/rc-pro"
|
|
9
|
+
},
|
|
6
10
|
"module": "es/index.js",
|
|
7
11
|
"types": "es/index.d.ts",
|
|
8
12
|
"files": [
|