@zat-design/sisyphus-react 3.6.8-beta.3 → 3.6.8-beta.5
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/index.esm.css +8 -0
- package/dist/less.esm.css +8 -0
- package/es/ProForm/components/combination/ProCascader/index.js +2 -1
- package/es/ProForm/components/combination/ProModalSelect/style/index.less +13 -1
- package/lib/ProForm/components/combination/ProCascader/index.js +2 -1
- package/lib/ProForm/components/combination/ProModalSelect/style/index.less +13 -1
- package/package.json +1 -1
package/dist/index.esm.css
CHANGED
|
@@ -2516,6 +2516,10 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
|
|
|
2516
2516
|
.pro-tree-modal .ant-space-compact .ant-select-compact-item-div:has(.ant-select-status-error) + .ant-btn-compact-last-item > .viewSvg {
|
|
2517
2517
|
color: var(--ant-error-color);
|
|
2518
2518
|
}
|
|
2519
|
+
.pro-modal-select .ant-space-compact .ant-btn-compact-last-item,
|
|
2520
|
+
.pro-tree-modal .ant-space-compact .ant-btn-compact-last-item {
|
|
2521
|
+
border-left: none;
|
|
2522
|
+
}
|
|
2519
2523
|
.pro-modal-select .ant-input-group-addon,
|
|
2520
2524
|
.pro-tree-modal .ant-input-group-addon {
|
|
2521
2525
|
padding: 0px var(--zaui-space-size-sm, 8px);
|
|
@@ -2533,6 +2537,10 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
|
|
|
2533
2537
|
-ms-flex-align: center;
|
|
2534
2538
|
align-items: center;
|
|
2535
2539
|
}
|
|
2540
|
+
.ant-form-item-has-error .pro-modal-select .ant-btn-compact-last-item {
|
|
2541
|
+
color: var(--zaui-danger, #ff5050);
|
|
2542
|
+
border-color: var(--zaui-danger, #ff5050);
|
|
2543
|
+
}
|
|
2536
2544
|
.pro-group {
|
|
2537
2545
|
width: unset !important;
|
|
2538
2546
|
display: -webkit-box;
|
package/dist/less.esm.css
CHANGED
|
@@ -2516,6 +2516,10 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
|
|
|
2516
2516
|
.pro-tree-modal .ant-space-compact .ant-select-compact-item-div:has(.ant-select-status-error) + .ant-btn-compact-last-item > .viewSvg {
|
|
2517
2517
|
color: var(--ant-error-color);
|
|
2518
2518
|
}
|
|
2519
|
+
.pro-modal-select .ant-space-compact .ant-btn-compact-last-item,
|
|
2520
|
+
.pro-tree-modal .ant-space-compact .ant-btn-compact-last-item {
|
|
2521
|
+
border-left: none;
|
|
2522
|
+
}
|
|
2519
2523
|
.pro-modal-select .ant-input-group-addon,
|
|
2520
2524
|
.pro-tree-modal .ant-input-group-addon {
|
|
2521
2525
|
padding: 0px var(--zaui-space-size-sm, 8px);
|
|
@@ -2533,6 +2537,10 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
|
|
|
2533
2537
|
-ms-flex-align: center;
|
|
2534
2538
|
align-items: center;
|
|
2535
2539
|
}
|
|
2540
|
+
.ant-form-item-has-error .pro-modal-select .ant-btn-compact-last-item {
|
|
2541
|
+
color: var(--zaui-danger, #ff5050);
|
|
2542
|
+
border-color: var(--zaui-danger, #ff5050);
|
|
2543
|
+
}
|
|
2536
2544
|
.pro-group {
|
|
2537
2545
|
width: unset !important;
|
|
2538
2546
|
display: -webkit-box;
|
|
@@ -260,7 +260,8 @@ var ProCascader = function ProCascader(props) {
|
|
|
260
260
|
disabled: disabled,
|
|
261
261
|
displayRender: displayRender,
|
|
262
262
|
showSearch: {
|
|
263
|
-
filter: handlefilter
|
|
263
|
+
filter: handlefilter,
|
|
264
|
+
limit: false
|
|
264
265
|
},
|
|
265
266
|
onChange: handleChange
|
|
266
267
|
}, omit(otherProps, 'otherProps'))), hasDetail && (tooltip && disabled && detail ? _jsx(_Tooltip, {
|
|
@@ -118,7 +118,9 @@
|
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
120
|
}
|
|
121
|
-
|
|
121
|
+
.@{ant-prefix}-btn-compact-last-item{
|
|
122
|
+
border-left: none;
|
|
123
|
+
}
|
|
122
124
|
}
|
|
123
125
|
|
|
124
126
|
.@{ant-prefix}-input-group-addon {
|
|
@@ -132,3 +134,13 @@
|
|
|
132
134
|
}
|
|
133
135
|
}
|
|
134
136
|
}
|
|
137
|
+
|
|
138
|
+
// 报错信息
|
|
139
|
+
.@{ant-prefix}-form-item-has-error{
|
|
140
|
+
.pro-modal-select{
|
|
141
|
+
.ant-btn-compact-last-item{
|
|
142
|
+
color: @zaui-danger;
|
|
143
|
+
border-color: @zaui-danger;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
@@ -260,7 +260,8 @@ var ProCascader = function ProCascader(props) {
|
|
|
260
260
|
disabled: disabled,
|
|
261
261
|
displayRender: displayRender,
|
|
262
262
|
showSearch: {
|
|
263
|
-
filter: handlefilter
|
|
263
|
+
filter: handlefilter,
|
|
264
|
+
limit: false
|
|
264
265
|
},
|
|
265
266
|
onChange: handleChange
|
|
266
267
|
}, (0, _lodash.omit)(otherProps, 'otherProps'))), hasDetail && (tooltip && disabled && detail ? (0, _jsxRuntime.jsx)(_antd.Tooltip, {
|
|
@@ -118,7 +118,9 @@
|
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
120
|
}
|
|
121
|
-
|
|
121
|
+
.@{ant-prefix}-btn-compact-last-item{
|
|
122
|
+
border-left: none;
|
|
123
|
+
}
|
|
122
124
|
}
|
|
123
125
|
|
|
124
126
|
.@{ant-prefix}-input-group-addon {
|
|
@@ -132,3 +134,13 @@
|
|
|
132
134
|
}
|
|
133
135
|
}
|
|
134
136
|
}
|
|
137
|
+
|
|
138
|
+
// 报错信息
|
|
139
|
+
.@{ant-prefix}-form-item-has-error{
|
|
140
|
+
.pro-modal-select{
|
|
141
|
+
.ant-btn-compact-last-item{
|
|
142
|
+
color: @zaui-danger;
|
|
143
|
+
border-color: @zaui-danger;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|