ls-pro-common 1.0.84 → 1.0.85
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/common.css +6 -0
- package/dist/common.js +1 -1
- package/dist/common.min.css +6 -0
- package/dist/common.min.js +1 -1
- package/es/components/InputTable.js +2 -0
- package/es/components/common.less +45 -38
- package/es/utils/index.d.ts +2 -5
- package/es/utils/index.js +15 -20
- package/lib/components/InputTable.js +2 -0
- package/lib/components/common.less +45 -38
- package/lib/utils/index.d.ts +2 -5
- package/lib/utils/index.js +16 -22
- package/package.json +2 -2
package/dist/common.min.css
CHANGED
|
@@ -245,6 +245,10 @@ a:hover {
|
|
|
245
245
|
.ant-input-has-value:hover .ant-input-clear-icon {
|
|
246
246
|
visibility: visible;
|
|
247
247
|
}
|
|
248
|
+
.ant-modal-confirm-body .ant-modal-confirm-content {
|
|
249
|
+
max-height: 60vh;
|
|
250
|
+
overflow: auto;
|
|
251
|
+
}
|
|
248
252
|
|
|
249
253
|
.pro-table-tooltip-text span {
|
|
250
254
|
color: #fff;
|
|
@@ -277,6 +281,7 @@ a:hover {
|
|
|
277
281
|
padding: 8px 24px;
|
|
278
282
|
}
|
|
279
283
|
.ant-pro-table-srcoll {
|
|
284
|
+
width: 100%;
|
|
280
285
|
height: 100%;
|
|
281
286
|
display: flex;
|
|
282
287
|
flex-direction: column;
|
|
@@ -2302,6 +2307,7 @@ html {
|
|
|
2302
2307
|
padding: 8px 24px;
|
|
2303
2308
|
}
|
|
2304
2309
|
.ant-pro-table-srcoll {
|
|
2310
|
+
width: 100%;
|
|
2305
2311
|
height: 100%;
|
|
2306
2312
|
display: flex;
|
|
2307
2313
|
flex-direction: column;
|