ls-pro-common 3.0.76 → 3.0.77
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 -5
- package/dist/common.js +1 -1
- package/dist/common.js.LICENSE.txt +10 -0
- package/dist/common.min.css +11 -5
- package/dist/common.min.js +1 -1
- package/dist/common.min.js.LICENSE.txt +10 -0
- package/es/hooks/useQueue.d.ts +14 -0
- package/es/hooks/useQueue.js +60 -0
- package/es/index.d.ts +3 -2
- package/es/index.js +2 -1
- package/lib/hooks/useQueue.d.ts +14 -0
- package/lib/hooks/useQueue.js +60 -0
- package/lib/index.d.ts +3 -2
- package/lib/index.js +2 -1
- package/package.json +1 -1
package/dist/common.css
CHANGED
|
@@ -1915,7 +1915,8 @@ mark {
|
|
|
1915
1915
|
content: '';
|
|
1916
1916
|
}
|
|
1917
1917
|
.anticon {
|
|
1918
|
-
display: inline-
|
|
1918
|
+
display: inline-flex;
|
|
1919
|
+
align-items: center;
|
|
1919
1920
|
color: inherit;
|
|
1920
1921
|
font-style: normal;
|
|
1921
1922
|
line-height: 0;
|
|
@@ -1945,14 +1946,11 @@ mark {
|
|
|
1945
1946
|
.anticon[tabindex] {
|
|
1946
1947
|
cursor: pointer;
|
|
1947
1948
|
}
|
|
1949
|
+
.anticon-spin,
|
|
1948
1950
|
.anticon-spin::before {
|
|
1949
1951
|
display: inline-block;
|
|
1950
1952
|
animation: loadingCircle 1s infinite linear;
|
|
1951
1953
|
}
|
|
1952
|
-
.anticon-spin {
|
|
1953
|
-
display: inline-block;
|
|
1954
|
-
animation: loadingCircle 1s infinite linear;
|
|
1955
|
-
}
|
|
1956
1954
|
.ant-fade-enter,
|
|
1957
1955
|
.ant-fade-appear {
|
|
1958
1956
|
animation-duration: 0.2s;
|
|
@@ -2274,6 +2272,8 @@ html {
|
|
|
2274
2272
|
}
|
|
2275
2273
|
.ant-slide-up-enter,
|
|
2276
2274
|
.ant-slide-up-appear {
|
|
2275
|
+
transform: scale(0);
|
|
2276
|
+
transform-origin: 0% 0%;
|
|
2277
2277
|
opacity: 0;
|
|
2278
2278
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
2279
2279
|
}
|
|
@@ -2303,6 +2303,8 @@ html {
|
|
|
2303
2303
|
}
|
|
2304
2304
|
.ant-slide-down-enter,
|
|
2305
2305
|
.ant-slide-down-appear {
|
|
2306
|
+
transform: scale(0);
|
|
2307
|
+
transform-origin: 0% 0%;
|
|
2306
2308
|
opacity: 0;
|
|
2307
2309
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
2308
2310
|
}
|
|
@@ -2332,6 +2334,8 @@ html {
|
|
|
2332
2334
|
}
|
|
2333
2335
|
.ant-slide-left-enter,
|
|
2334
2336
|
.ant-slide-left-appear {
|
|
2337
|
+
transform: scale(0);
|
|
2338
|
+
transform-origin: 0% 0%;
|
|
2335
2339
|
opacity: 0;
|
|
2336
2340
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
2337
2341
|
}
|
|
@@ -2361,6 +2365,8 @@ html {
|
|
|
2361
2365
|
}
|
|
2362
2366
|
.ant-slide-right-enter,
|
|
2363
2367
|
.ant-slide-right-appear {
|
|
2368
|
+
transform: scale(0);
|
|
2369
|
+
transform-origin: 0% 0%;
|
|
2364
2370
|
opacity: 0;
|
|
2365
2371
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
2366
2372
|
}
|