ls-pro-common 3.0.76 → 3.0.79

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.
@@ -30,6 +30,16 @@ PERFORMANCE OF THIS SOFTWARE.
30
30
  * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
31
31
  */
32
32
 
33
+ /**
34
+ * @license React
35
+ * react-is.production.min.js
36
+ *
37
+ * Copyright (c) Facebook, Inc. and its affiliates.
38
+ *
39
+ * This source code is licensed under the MIT license found in the
40
+ * LICENSE file in the root directory of this source tree.
41
+ */
42
+
33
43
  /** @license React v16.13.1
34
44
  * react-is.production.min.js
35
45
  *
@@ -434,6 +434,14 @@ a:hover {
434
434
  .ls-area-box-position .ls-ant-select-dropdown {
435
435
  top: 36px !important;
436
436
  }
437
+ .view-office-modal .ant-modal-body {
438
+ padding: 0;
439
+ }
440
+ .view-office-modal iframe {
441
+ width: 100%;
442
+ height: 100%;
443
+ border: none;
444
+ }
437
445
  .ant-timeline-item-tail {
438
446
  border-left: 2px dotted var(--ant-primary-color);
439
447
  }
@@ -795,6 +803,9 @@ a:hover {
795
803
  .ant-pro-table .ant-table.ant-table-has-fix-right:not(.ant-table-empty) .ant-table-container .ant-table-body {
796
804
  overflow: scroll !important;
797
805
  }
806
+ .ant-pro-table .ant-table.ant-table-small .ant-table-tbody > tr > td {
807
+ white-space: pre;
808
+ }
798
809
 
799
810
  .pro-table-tooltip-text span {
800
811
  color: #fff;
@@ -952,6 +963,9 @@ a:hover {
952
963
  .ant-pro-table-srcoll .ant-table-cell.ant-table-selection-column {
953
964
  text-overflow: inherit !important;
954
965
  }
966
+ .ant-pro-table-srcoll .ant-table-has-fix-left .ant-table-selection-col {
967
+ width: 36px;
968
+ }
955
969
  .ant-pro-table-srcoll .ant-table.ant-table-bordered .ant-table-tbody > tr > td {
956
970
  border-right: 1px solid #f0f0f0;
957
971
  }
@@ -1009,7 +1023,7 @@ a:hover {
1009
1023
  .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-left-last,
1010
1024
  .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-left-last,
1011
1025
  .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
1012
- padding-right: 15px !important;
1026
+ padding-right: 30px !important;
1013
1027
  }
1014
1028
  .ant-table.ant-table-small .ant-table-title.ant-table-selection-column,
1015
1029
  .ant-table.ant-table-small .ant-table-footer.ant-table-selection-column,
@@ -1915,7 +1929,8 @@ mark {
1915
1929
  content: '';
1916
1930
  }
1917
1931
  .anticon {
1918
- display: inline-block;
1932
+ display: inline-flex;
1933
+ align-items: center;
1919
1934
  color: inherit;
1920
1935
  font-style: normal;
1921
1936
  line-height: 0;
@@ -1945,14 +1960,11 @@ mark {
1945
1960
  .anticon[tabindex] {
1946
1961
  cursor: pointer;
1947
1962
  }
1963
+ .anticon-spin,
1948
1964
  .anticon-spin::before {
1949
1965
  display: inline-block;
1950
1966
  animation: loadingCircle 1s infinite linear;
1951
1967
  }
1952
- .anticon-spin {
1953
- display: inline-block;
1954
- animation: loadingCircle 1s infinite linear;
1955
- }
1956
1968
  .ant-fade-enter,
1957
1969
  .ant-fade-appear {
1958
1970
  animation-duration: 0.2s;
@@ -2274,6 +2286,8 @@ html {
2274
2286
  }
2275
2287
  .ant-slide-up-enter,
2276
2288
  .ant-slide-up-appear {
2289
+ transform: scale(0);
2290
+ transform-origin: 0% 0%;
2277
2291
  opacity: 0;
2278
2292
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
2279
2293
  }
@@ -2303,6 +2317,8 @@ html {
2303
2317
  }
2304
2318
  .ant-slide-down-enter,
2305
2319
  .ant-slide-down-appear {
2320
+ transform: scale(0);
2321
+ transform-origin: 0% 0%;
2306
2322
  opacity: 0;
2307
2323
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
2308
2324
  }
@@ -2332,6 +2348,8 @@ html {
2332
2348
  }
2333
2349
  .ant-slide-left-enter,
2334
2350
  .ant-slide-left-appear {
2351
+ transform: scale(0);
2352
+ transform-origin: 0% 0%;
2335
2353
  opacity: 0;
2336
2354
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
2337
2355
  }
@@ -2361,6 +2379,8 @@ html {
2361
2379
  }
2362
2380
  .ant-slide-right-enter,
2363
2381
  .ant-slide-right-appear {
2382
+ transform: scale(0);
2383
+ transform-origin: 0% 0%;
2364
2384
  opacity: 0;
2365
2385
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
2366
2386
  }
@@ -3207,6 +3227,9 @@ html {
3207
3227
  .ant-pro-table-srcoll .ant-table-cell.ant-table-selection-column {
3208
3228
  text-overflow: inherit !important;
3209
3229
  }
3230
+ .ant-pro-table-srcoll .ant-table-has-fix-left .ant-table-selection-col {
3231
+ width: 36px;
3232
+ }
3210
3233
  .ant-pro-table-srcoll .ant-table.ant-table-bordered .ant-table-tbody > tr > td {
3211
3234
  border-right: 1px solid #f0f0f0;
3212
3235
  }
@@ -3264,7 +3287,7 @@ html {
3264
3287
  .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-left-last,
3265
3288
  .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-left-last,
3266
3289
  .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
3267
- padding-right: 15px !important;
3290
+ padding-right: 30px !important;
3268
3291
  }
3269
3292
  .ant-table.ant-table-small .ant-table-title.ant-table-selection-column,
3270
3293
  .ant-table.ant-table-small .ant-table-footer.ant-table-selection-column,