@zat-design/sisyphus-react 3.9.0-beta.16 → 3.9.0-beta.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/.vscode/extensions.json +5 -0
- package/dist/index.esm.css +5 -4
- package/dist/less.esm.css +5 -4
- package/es/ProEditTable/style/index.less +5 -2
- package/es/ProForm/utils/diffOriginal.js +1 -1
- package/lib/ProEditTable/style/index.less +5 -2
- package/lib/ProForm/utils/diffOriginal.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.css
CHANGED
@@ -4610,10 +4610,11 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
|
|
4610
4610
|
.pro-edit-table .ant-table-pagination .ant-pagination-options .ant-select.ant-select-in-form-item {
|
4611
4611
|
width: auto;
|
4612
4612
|
}
|
4613
|
-
.pro-edit-table .is-new-row td
|
4614
|
-
|
4615
|
-
|
4616
|
-
.pro-edit-table .
|
4613
|
+
.pro-edit-table .ant-table .ant-table-body .ant-table-tbody .is-new-row.ant-table-row td {
|
4614
|
+
background: var(--zaui-contract-bg-add, #d2fff4) !important;
|
4615
|
+
}
|
4616
|
+
.pro-edit-table .ant-table .ant-table-body .ant-table-tbody .is-new-row.ant-table-row:hover td,
|
4617
|
+
.pro-edit-table .ant-table .ant-table-body .ant-table-tbody .is-new-row.ant-table-row:hover .ant-table-cell-row-hover {
|
4617
4618
|
background: var(--zaui-contract-bg-add, #d2fff4) !important;
|
4618
4619
|
}
|
4619
4620
|
.pro-edit-table-footer {
|
package/dist/less.esm.css
CHANGED
@@ -4610,10 +4610,11 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
|
|
4610
4610
|
.pro-edit-table .ant-table-pagination .ant-pagination-options .ant-select.ant-select-in-form-item {
|
4611
4611
|
width: auto;
|
4612
4612
|
}
|
4613
|
-
.pro-edit-table .is-new-row td
|
4614
|
-
|
4615
|
-
|
4616
|
-
.pro-edit-table .
|
4613
|
+
.pro-edit-table .ant-table .ant-table-body .ant-table-tbody .is-new-row.ant-table-row td {
|
4614
|
+
background: var(--zaui-contract-bg-add, #d2fff4) !important;
|
4615
|
+
}
|
4616
|
+
.pro-edit-table .ant-table .ant-table-body .ant-table-tbody .is-new-row.ant-table-row:hover td,
|
4617
|
+
.pro-edit-table .ant-table .ant-table-body .ant-table-tbody .is-new-row.ant-table-row:hover .ant-table-cell-row-hover {
|
4617
4618
|
background: var(--zaui-contract-bg-add, #d2fff4) !important;
|
4618
4619
|
}
|
4619
4620
|
.pro-edit-table-footer {
|
@@ -281,8 +281,11 @@
|
|
281
281
|
}
|
282
282
|
}
|
283
283
|
|
284
|
-
|
285
|
-
|
284
|
+
.@{ant-prefix}-table .@{ant-prefix}-table-body .@{ant-prefix}-table-tbody .is-new-row.@{ant-prefix}-table-row td{
|
285
|
+
background: var(--zaui-contract-bg-add, #d2fff4) !important;
|
286
|
+
}
|
287
|
+
.@{ant-prefix}-table .@{ant-prefix}-table-body .@{ant-prefix}-table-tbody .is-new-row.@{ant-prefix}-table-row:hover{
|
288
|
+
td, .@{ant-prefix}-table-cell-row-hover {
|
286
289
|
background: var(--zaui-contract-bg-add, #d2fff4) !important;
|
287
290
|
}
|
288
291
|
}
|
@@ -6,7 +6,7 @@ var filterObject = function filterObject(data) {
|
|
6
6
|
if (!isObject(data) || Array.isArray(data) || data === null) return data;
|
7
7
|
var resData = {};
|
8
8
|
Object.keys(data).forEach(function (key) {
|
9
|
-
if (data[key]
|
9
|
+
if (!isEmpty(data[key])) {
|
10
10
|
resData[key] = data[key];
|
11
11
|
}
|
12
12
|
});
|
@@ -281,8 +281,11 @@
|
|
281
281
|
}
|
282
282
|
}
|
283
283
|
|
284
|
-
|
285
|
-
|
284
|
+
.@{ant-prefix}-table .@{ant-prefix}-table-body .@{ant-prefix}-table-tbody .is-new-row.@{ant-prefix}-table-row td{
|
285
|
+
background: var(--zaui-contract-bg-add, #d2fff4) !important;
|
286
|
+
}
|
287
|
+
.@{ant-prefix}-table .@{ant-prefix}-table-body .@{ant-prefix}-table-tbody .is-new-row.@{ant-prefix}-table-row:hover{
|
288
|
+
td, .@{ant-prefix}-table-cell-row-hover {
|
286
289
|
background: var(--zaui-contract-bg-add, #d2fff4) !important;
|
287
290
|
}
|
288
291
|
}
|
@@ -12,7 +12,7 @@ var filterObject = function filterObject(data) {
|
|
12
12
|
if (!(0, _lodash.isObject)(data) || Array.isArray(data) || data === null) return data;
|
13
13
|
var resData = {};
|
14
14
|
Object.keys(data).forEach(function (key) {
|
15
|
-
if (
|
15
|
+
if (!(0, _utils.isEmpty)(data[key])) {
|
16
16
|
resData[key] = data[key];
|
17
17
|
}
|
18
18
|
});
|