ls-pro-common 1.0.75 → 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 +5 -3
- package/dist/common.js +1 -1
- package/dist/common.min.css +5 -3
- 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 {
|
|
@@ -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 {
|