ls-pro-common 1.0.73 → 1.0.76
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 +11 -9
- package/dist/common.js +1 -1
- package/dist/common.min.css +11 -9
- package/dist/common.min.js +1 -1
- package/es/components/IconSelector.js +1 -1
- package/es/components/ImageSelector.js +1 -1
- package/es/components/InputTable.js +1 -1
- package/es/components/common.less +13 -15
- package/es/http/index.js +37 -23
- package/es/typing.d.ts +2 -0
- package/es/utils/index.d.ts +8 -0
- package/es/utils/index.js +34 -1
- package/lib/components/IconSelector.js +1 -1
- package/lib/components/ImageSelector.js +1 -1
- package/lib/components/InputTable.js +1 -1
- package/lib/components/common.less +13 -15
- package/lib/http/index.js +36 -22
- package/lib/typing.d.ts +2 -0
- package/lib/utils/index.d.ts +8 -0
- package/lib/utils/index.js +49 -6
- package/package.json +2 -2
package/dist/common.css
CHANGED
|
@@ -124,8 +124,10 @@ body {
|
|
|
124
124
|
.loading {
|
|
125
125
|
height: 100%;
|
|
126
126
|
width: 100%;
|
|
127
|
-
|
|
128
|
-
|
|
127
|
+
position: absolute;
|
|
128
|
+
display: flex;
|
|
129
|
+
align-items: center;
|
|
130
|
+
justify-content: center;
|
|
129
131
|
background: #fff;
|
|
130
132
|
}
|
|
131
133
|
#myloading {
|
|
@@ -324,6 +326,9 @@ a:hover {
|
|
|
324
326
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
325
327
|
border-bottom: none;
|
|
326
328
|
}
|
|
329
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot.ant-table-summary tr td:last-child {
|
|
330
|
+
padding-right: 17px;
|
|
331
|
+
}
|
|
327
332
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title,
|
|
328
333
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer,
|
|
329
334
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th,
|
|
@@ -349,9 +354,6 @@ a:hover {
|
|
|
349
354
|
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
|
|
350
355
|
padding-right: 15px;
|
|
351
356
|
}
|
|
352
|
-
.ant-table-summary .last-cell {
|
|
353
|
-
padding-right: 18px;
|
|
354
|
-
}
|
|
355
357
|
.ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
356
358
|
background-color: #f7fafc;
|
|
357
359
|
}
|
|
@@ -2293,6 +2295,9 @@ html {
|
|
|
2293
2295
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
2294
2296
|
border-bottom: none;
|
|
2295
2297
|
}
|
|
2298
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot.ant-table-summary tr td:last-child {
|
|
2299
|
+
padding-right: 17px;
|
|
2300
|
+
}
|
|
2296
2301
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title,
|
|
2297
2302
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer,
|
|
2298
2303
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th,
|
|
@@ -2318,9 +2323,6 @@ html {
|
|
|
2318
2323
|
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
|
|
2319
2324
|
padding-right: 15px;
|
|
2320
2325
|
}
|
|
2321
|
-
.ant-table-summary .last-cell {
|
|
2322
|
-
padding-right: 18px;
|
|
2323
|
-
}
|
|
2324
2326
|
.ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
2325
2327
|
background-color: #f7fafc;
|
|
2326
2328
|
}
|
|
@@ -2631,7 +2633,7 @@ html {
|
|
|
2631
2633
|
|
|
2632
2634
|
.ant-pro-table-alert {
|
|
2633
2635
|
position: absolute;
|
|
2634
|
-
bottom:
|
|
2636
|
+
bottom: 24px;
|
|
2635
2637
|
margin-left: 8px;
|
|
2636
2638
|
}
|
|
2637
2639
|
.ant-pro-table-alert .ant-alert.ant-alert-no-icon {
|