assui 3.1.56 → 3.1.57

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.
Files changed (33) hide show
  1. package/es/index.d.ts +2 -0
  2. package/es/index.js +2 -1
  3. package/es/label-select/index.js +6 -1
  4. package/es/label-select/style/index.css +1 -0
  5. package/es/label-select/style/index.less +1 -0
  6. package/es/multipart-upload/getMultipartUploadHandler.d.ts +2 -0
  7. package/es/multipart-upload/getMultipartUploadHandler.js +38 -0
  8. package/es/multipart-upload/index.d.ts +43 -0
  9. package/es/multipart-upload/index.js +220 -0
  10. package/es/multipart-upload/parse2RegexOption.d.ts +13 -0
  11. package/es/multipart-upload/parse2RegexOption.js +46 -0
  12. package/es/multipart-upload/style/index.css +1323 -0
  13. package/es/multipart-upload/style/index.d.ts +2 -0
  14. package/es/multipart-upload/style/index.js +2 -0
  15. package/es/multipart-upload/style/index.less +102 -0
  16. package/es/style/variables.less +6 -0
  17. package/lib/index.d.ts +2 -0
  18. package/lib/index.js +8 -1
  19. package/lib/label-select/index.js +6 -1
  20. package/lib/label-select/style/index.css +1 -0
  21. package/lib/label-select/style/index.less +1 -0
  22. package/lib/multipart-upload/getMultipartUploadHandler.d.ts +2 -0
  23. package/lib/multipart-upload/getMultipartUploadHandler.js +43 -0
  24. package/lib/multipart-upload/index.d.ts +43 -0
  25. package/lib/multipart-upload/index.js +263 -0
  26. package/lib/multipart-upload/parse2RegexOption.d.ts +13 -0
  27. package/lib/multipart-upload/parse2RegexOption.js +56 -0
  28. package/lib/multipart-upload/style/index.css +1323 -0
  29. package/lib/multipart-upload/style/index.d.ts +2 -0
  30. package/lib/multipart-upload/style/index.js +7 -0
  31. package/lib/multipart-upload/style/index.less +102 -0
  32. package/lib/style/variables.less +6 -0
  33. package/package.json +2 -2
@@ -0,0 +1,1323 @@
1
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2
+ /* stylelint-disable no-duplicate-selectors */
3
+ /* stylelint-disable */
4
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
5
+ [class^=ant-]::-ms-clear,
6
+ [class*= ant-]::-ms-clear,
7
+ [class^=ant-] input::-ms-clear,
8
+ [class*= ant-] input::-ms-clear,
9
+ [class^=ant-] input::-ms-reveal,
10
+ [class*= ant-] input::-ms-reveal {
11
+ display: none;
12
+ }
13
+ /* stylelint-disable property-no-vendor-prefix, at-rule-no-vendor-prefix */
14
+ html,
15
+ body {
16
+ width: 100%;
17
+ height: 100%;
18
+ }
19
+ input::-ms-clear,
20
+ input::-ms-reveal {
21
+ display: none;
22
+ }
23
+ *,
24
+ *::before,
25
+ *::after {
26
+ box-sizing: border-box;
27
+ }
28
+ html {
29
+ font-family: sans-serif;
30
+ line-height: 1.15;
31
+ -webkit-text-size-adjust: 100%;
32
+ -ms-text-size-adjust: 100%;
33
+ -ms-overflow-style: scrollbar;
34
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
35
+ }
36
+ body {
37
+ margin: 0;
38
+ color: rgba(0, 0, 0, 0.85);
39
+ font-size: 14px;
40
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
41
+ font-variant: tabular-nums;
42
+ line-height: 1.5715;
43
+ background-color: #fff;
44
+ font-feature-settings: 'tnum';
45
+ }
46
+ [tabindex='-1']:focus {
47
+ outline: none !important;
48
+ }
49
+ hr {
50
+ box-sizing: content-box;
51
+ height: 0;
52
+ overflow: visible;
53
+ }
54
+ h1,
55
+ h2,
56
+ h3,
57
+ h4,
58
+ h5,
59
+ h6 {
60
+ margin-top: 0;
61
+ margin-bottom: 0.5em;
62
+ color: rgba(0, 0, 0, 0.85);
63
+ font-weight: 500;
64
+ }
65
+ p {
66
+ margin-top: 0;
67
+ margin-bottom: 1em;
68
+ }
69
+ abbr[title],
70
+ abbr[data-original-title] {
71
+ text-decoration: underline;
72
+ -webkit-text-decoration: underline dotted;
73
+ text-decoration: underline dotted;
74
+ border-bottom: 0;
75
+ cursor: help;
76
+ }
77
+ address {
78
+ margin-bottom: 1em;
79
+ font-style: normal;
80
+ line-height: inherit;
81
+ }
82
+ input[type='text'],
83
+ input[type='password'],
84
+ input[type='number'],
85
+ textarea {
86
+ -webkit-appearance: none;
87
+ }
88
+ ol,
89
+ ul,
90
+ dl {
91
+ margin-top: 0;
92
+ margin-bottom: 1em;
93
+ }
94
+ ol ol,
95
+ ul ul,
96
+ ol ul,
97
+ ul ol {
98
+ margin-bottom: 0;
99
+ }
100
+ dt {
101
+ font-weight: 500;
102
+ }
103
+ dd {
104
+ margin-bottom: 0.5em;
105
+ margin-left: 0;
106
+ }
107
+ blockquote {
108
+ margin: 0 0 1em;
109
+ }
110
+ dfn {
111
+ font-style: italic;
112
+ }
113
+ b,
114
+ strong {
115
+ font-weight: bolder;
116
+ }
117
+ small {
118
+ font-size: 80%;
119
+ }
120
+ sub,
121
+ sup {
122
+ position: relative;
123
+ font-size: 75%;
124
+ line-height: 0;
125
+ vertical-align: baseline;
126
+ }
127
+ sub {
128
+ bottom: -0.25em;
129
+ }
130
+ sup {
131
+ top: -0.5em;
132
+ }
133
+ a {
134
+ color: #1890ff;
135
+ text-decoration: none;
136
+ background-color: transparent;
137
+ outline: none;
138
+ cursor: pointer;
139
+ transition: color 0.3s;
140
+ -webkit-text-decoration-skip: objects;
141
+ }
142
+ a:hover {
143
+ color: #40a9ff;
144
+ }
145
+ a:active {
146
+ color: #096dd9;
147
+ }
148
+ a:active,
149
+ a:hover {
150
+ text-decoration: none;
151
+ outline: 0;
152
+ }
153
+ a:focus {
154
+ text-decoration: none;
155
+ outline: 0;
156
+ }
157
+ a[disabled] {
158
+ color: rgba(0, 0, 0, 0.25);
159
+ cursor: not-allowed;
160
+ }
161
+ pre,
162
+ code,
163
+ kbd,
164
+ samp {
165
+ font-size: 1em;
166
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
167
+ }
168
+ pre {
169
+ margin-top: 0;
170
+ margin-bottom: 1em;
171
+ overflow: auto;
172
+ }
173
+ figure {
174
+ margin: 0 0 1em;
175
+ }
176
+ img {
177
+ vertical-align: middle;
178
+ border-style: none;
179
+ }
180
+ a,
181
+ area,
182
+ button,
183
+ [role='button'],
184
+ input:not([type='range']),
185
+ label,
186
+ select,
187
+ summary,
188
+ textarea {
189
+ touch-action: manipulation;
190
+ }
191
+ table {
192
+ border-collapse: collapse;
193
+ }
194
+ caption {
195
+ padding-top: 0.75em;
196
+ padding-bottom: 0.3em;
197
+ color: rgba(0, 0, 0, 0.45);
198
+ text-align: left;
199
+ caption-side: bottom;
200
+ }
201
+ input,
202
+ button,
203
+ select,
204
+ optgroup,
205
+ textarea {
206
+ margin: 0;
207
+ color: inherit;
208
+ font-size: inherit;
209
+ font-family: inherit;
210
+ line-height: inherit;
211
+ }
212
+ button,
213
+ input {
214
+ overflow: visible;
215
+ }
216
+ button,
217
+ select {
218
+ text-transform: none;
219
+ }
220
+ button,
221
+ html [type="button"],
222
+ [type="reset"],
223
+ [type="submit"] {
224
+ -webkit-appearance: button;
225
+ }
226
+ button::-moz-focus-inner,
227
+ [type='button']::-moz-focus-inner,
228
+ [type='reset']::-moz-focus-inner,
229
+ [type='submit']::-moz-focus-inner {
230
+ padding: 0;
231
+ border-style: none;
232
+ }
233
+ input[type='radio'],
234
+ input[type='checkbox'] {
235
+ box-sizing: border-box;
236
+ padding: 0;
237
+ }
238
+ input[type='date'],
239
+ input[type='time'],
240
+ input[type='datetime-local'],
241
+ input[type='month'] {
242
+ -webkit-appearance: listbox;
243
+ }
244
+ textarea {
245
+ overflow: auto;
246
+ resize: vertical;
247
+ }
248
+ fieldset {
249
+ min-width: 0;
250
+ margin: 0;
251
+ padding: 0;
252
+ border: 0;
253
+ }
254
+ legend {
255
+ display: block;
256
+ width: 100%;
257
+ max-width: 100%;
258
+ margin-bottom: 0.5em;
259
+ padding: 0;
260
+ color: inherit;
261
+ font-size: 1.5em;
262
+ line-height: inherit;
263
+ white-space: normal;
264
+ }
265
+ progress {
266
+ vertical-align: baseline;
267
+ }
268
+ [type='number']::-webkit-inner-spin-button,
269
+ [type='number']::-webkit-outer-spin-button {
270
+ height: auto;
271
+ }
272
+ [type='search'] {
273
+ outline-offset: -2px;
274
+ -webkit-appearance: none;
275
+ }
276
+ [type='search']::-webkit-search-cancel-button,
277
+ [type='search']::-webkit-search-decoration {
278
+ -webkit-appearance: none;
279
+ }
280
+ ::-webkit-file-upload-button {
281
+ font: inherit;
282
+ -webkit-appearance: button;
283
+ }
284
+ output {
285
+ display: inline-block;
286
+ }
287
+ summary {
288
+ display: list-item;
289
+ }
290
+ template {
291
+ display: none;
292
+ }
293
+ [hidden] {
294
+ display: none !important;
295
+ }
296
+ mark {
297
+ padding: 0.2em;
298
+ background-color: #feffe6;
299
+ }
300
+ ::-moz-selection {
301
+ color: #fff;
302
+ background: #1890ff;
303
+ }
304
+ ::selection {
305
+ color: #fff;
306
+ background: #1890ff;
307
+ }
308
+ .clearfix::before {
309
+ display: table;
310
+ content: '';
311
+ }
312
+ .clearfix::after {
313
+ display: table;
314
+ clear: both;
315
+ content: '';
316
+ }
317
+ .anticon {
318
+ display: inline-block;
319
+ color: inherit;
320
+ font-style: normal;
321
+ line-height: 0;
322
+ text-align: center;
323
+ text-transform: none;
324
+ vertical-align: -0.125em;
325
+ text-rendering: optimizelegibility;
326
+ -webkit-font-smoothing: antialiased;
327
+ -moz-osx-font-smoothing: grayscale;
328
+ }
329
+ .anticon > * {
330
+ line-height: 1;
331
+ }
332
+ .anticon svg {
333
+ display: inline-block;
334
+ }
335
+ .anticon::before {
336
+ display: none;
337
+ }
338
+ .anticon .anticon-icon {
339
+ display: block;
340
+ }
341
+ .anticon > .anticon {
342
+ line-height: 0;
343
+ vertical-align: 0;
344
+ }
345
+ .anticon[tabindex] {
346
+ cursor: pointer;
347
+ }
348
+ .anticon-spin,
349
+ .anticon-spin::before {
350
+ display: inline-block;
351
+ animation: loadingCircle 1s infinite linear;
352
+ }
353
+ .ant-fade-enter,
354
+ .ant-fade-appear {
355
+ animation-duration: 0.2s;
356
+ animation-fill-mode: both;
357
+ animation-play-state: paused;
358
+ }
359
+ .ant-fade-leave {
360
+ animation-duration: 0.2s;
361
+ animation-fill-mode: both;
362
+ animation-play-state: paused;
363
+ }
364
+ .ant-fade-enter.ant-fade-enter-active,
365
+ .ant-fade-appear.ant-fade-appear-active {
366
+ animation-name: antFadeIn;
367
+ animation-play-state: running;
368
+ }
369
+ .ant-fade-leave.ant-fade-leave-active {
370
+ animation-name: antFadeOut;
371
+ animation-play-state: running;
372
+ pointer-events: none;
373
+ }
374
+ .ant-fade-enter,
375
+ .ant-fade-appear {
376
+ opacity: 0;
377
+ animation-timing-function: linear;
378
+ }
379
+ .ant-fade-leave {
380
+ animation-timing-function: linear;
381
+ }
382
+ @keyframes antFadeIn {
383
+ 0% {
384
+ opacity: 0;
385
+ }
386
+ 100% {
387
+ opacity: 1;
388
+ }
389
+ }
390
+ @keyframes antFadeOut {
391
+ 0% {
392
+ opacity: 1;
393
+ }
394
+ 100% {
395
+ opacity: 0;
396
+ }
397
+ }
398
+ .ant-move-up-enter,
399
+ .ant-move-up-appear {
400
+ animation-duration: 0.2s;
401
+ animation-fill-mode: both;
402
+ animation-play-state: paused;
403
+ }
404
+ .ant-move-up-leave {
405
+ animation-duration: 0.2s;
406
+ animation-fill-mode: both;
407
+ animation-play-state: paused;
408
+ }
409
+ .ant-move-up-enter.ant-move-up-enter-active,
410
+ .ant-move-up-appear.ant-move-up-appear-active {
411
+ animation-name: antMoveUpIn;
412
+ animation-play-state: running;
413
+ }
414
+ .ant-move-up-leave.ant-move-up-leave-active {
415
+ animation-name: antMoveUpOut;
416
+ animation-play-state: running;
417
+ pointer-events: none;
418
+ }
419
+ .ant-move-up-enter,
420
+ .ant-move-up-appear {
421
+ opacity: 0;
422
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
423
+ }
424
+ .ant-move-up-leave {
425
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
426
+ }
427
+ .ant-move-down-enter,
428
+ .ant-move-down-appear {
429
+ animation-duration: 0.2s;
430
+ animation-fill-mode: both;
431
+ animation-play-state: paused;
432
+ }
433
+ .ant-move-down-leave {
434
+ animation-duration: 0.2s;
435
+ animation-fill-mode: both;
436
+ animation-play-state: paused;
437
+ }
438
+ .ant-move-down-enter.ant-move-down-enter-active,
439
+ .ant-move-down-appear.ant-move-down-appear-active {
440
+ animation-name: antMoveDownIn;
441
+ animation-play-state: running;
442
+ }
443
+ .ant-move-down-leave.ant-move-down-leave-active {
444
+ animation-name: antMoveDownOut;
445
+ animation-play-state: running;
446
+ pointer-events: none;
447
+ }
448
+ .ant-move-down-enter,
449
+ .ant-move-down-appear {
450
+ opacity: 0;
451
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
452
+ }
453
+ .ant-move-down-leave {
454
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
455
+ }
456
+ .ant-move-left-enter,
457
+ .ant-move-left-appear {
458
+ animation-duration: 0.2s;
459
+ animation-fill-mode: both;
460
+ animation-play-state: paused;
461
+ }
462
+ .ant-move-left-leave {
463
+ animation-duration: 0.2s;
464
+ animation-fill-mode: both;
465
+ animation-play-state: paused;
466
+ }
467
+ .ant-move-left-enter.ant-move-left-enter-active,
468
+ .ant-move-left-appear.ant-move-left-appear-active {
469
+ animation-name: antMoveLeftIn;
470
+ animation-play-state: running;
471
+ }
472
+ .ant-move-left-leave.ant-move-left-leave-active {
473
+ animation-name: antMoveLeftOut;
474
+ animation-play-state: running;
475
+ pointer-events: none;
476
+ }
477
+ .ant-move-left-enter,
478
+ .ant-move-left-appear {
479
+ opacity: 0;
480
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
481
+ }
482
+ .ant-move-left-leave {
483
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
484
+ }
485
+ .ant-move-right-enter,
486
+ .ant-move-right-appear {
487
+ animation-duration: 0.2s;
488
+ animation-fill-mode: both;
489
+ animation-play-state: paused;
490
+ }
491
+ .ant-move-right-leave {
492
+ animation-duration: 0.2s;
493
+ animation-fill-mode: both;
494
+ animation-play-state: paused;
495
+ }
496
+ .ant-move-right-enter.ant-move-right-enter-active,
497
+ .ant-move-right-appear.ant-move-right-appear-active {
498
+ animation-name: antMoveRightIn;
499
+ animation-play-state: running;
500
+ }
501
+ .ant-move-right-leave.ant-move-right-leave-active {
502
+ animation-name: antMoveRightOut;
503
+ animation-play-state: running;
504
+ pointer-events: none;
505
+ }
506
+ .ant-move-right-enter,
507
+ .ant-move-right-appear {
508
+ opacity: 0;
509
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
510
+ }
511
+ .ant-move-right-leave {
512
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
513
+ }
514
+ @keyframes antMoveDownIn {
515
+ 0% {
516
+ transform: translateY(100%);
517
+ transform-origin: 0 0;
518
+ opacity: 0;
519
+ }
520
+ 100% {
521
+ transform: translateY(0%);
522
+ transform-origin: 0 0;
523
+ opacity: 1;
524
+ }
525
+ }
526
+ @keyframes antMoveDownOut {
527
+ 0% {
528
+ transform: translateY(0%);
529
+ transform-origin: 0 0;
530
+ opacity: 1;
531
+ }
532
+ 100% {
533
+ transform: translateY(100%);
534
+ transform-origin: 0 0;
535
+ opacity: 0;
536
+ }
537
+ }
538
+ @keyframes antMoveLeftIn {
539
+ 0% {
540
+ transform: translateX(-100%);
541
+ transform-origin: 0 0;
542
+ opacity: 0;
543
+ }
544
+ 100% {
545
+ transform: translateX(0%);
546
+ transform-origin: 0 0;
547
+ opacity: 1;
548
+ }
549
+ }
550
+ @keyframes antMoveLeftOut {
551
+ 0% {
552
+ transform: translateX(0%);
553
+ transform-origin: 0 0;
554
+ opacity: 1;
555
+ }
556
+ 100% {
557
+ transform: translateX(-100%);
558
+ transform-origin: 0 0;
559
+ opacity: 0;
560
+ }
561
+ }
562
+ @keyframes antMoveRightIn {
563
+ 0% {
564
+ transform: translateX(100%);
565
+ transform-origin: 0 0;
566
+ opacity: 0;
567
+ }
568
+ 100% {
569
+ transform: translateX(0%);
570
+ transform-origin: 0 0;
571
+ opacity: 1;
572
+ }
573
+ }
574
+ @keyframes antMoveRightOut {
575
+ 0% {
576
+ transform: translateX(0%);
577
+ transform-origin: 0 0;
578
+ opacity: 1;
579
+ }
580
+ 100% {
581
+ transform: translateX(100%);
582
+ transform-origin: 0 0;
583
+ opacity: 0;
584
+ }
585
+ }
586
+ @keyframes antMoveUpIn {
587
+ 0% {
588
+ transform: translateY(-100%);
589
+ transform-origin: 0 0;
590
+ opacity: 0;
591
+ }
592
+ 100% {
593
+ transform: translateY(0%);
594
+ transform-origin: 0 0;
595
+ opacity: 1;
596
+ }
597
+ }
598
+ @keyframes antMoveUpOut {
599
+ 0% {
600
+ transform: translateY(0%);
601
+ transform-origin: 0 0;
602
+ opacity: 1;
603
+ }
604
+ 100% {
605
+ transform: translateY(-100%);
606
+ transform-origin: 0 0;
607
+ opacity: 0;
608
+ }
609
+ }
610
+ @keyframes loadingCircle {
611
+ 100% {
612
+ transform: rotate(360deg);
613
+ }
614
+ }
615
+ [ant-click-animating='true'],
616
+ [ant-click-animating-without-extra-node='true'] {
617
+ position: relative;
618
+ }
619
+ html {
620
+ --antd-wave-shadow-color: #1890ff;
621
+ --scroll-bar: 0;
622
+ }
623
+ [ant-click-animating-without-extra-node='true']::after,
624
+ .ant-click-animating-node {
625
+ position: absolute;
626
+ top: 0;
627
+ right: 0;
628
+ bottom: 0;
629
+ left: 0;
630
+ display: block;
631
+ border-radius: inherit;
632
+ box-shadow: 0 0 0 0 #1890ff;
633
+ box-shadow: 0 0 0 0 var(--antd-wave-shadow-color);
634
+ opacity: 0.2;
635
+ animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
636
+ animation-fill-mode: forwards;
637
+ content: '';
638
+ pointer-events: none;
639
+ }
640
+ @keyframes waveEffect {
641
+ 100% {
642
+ box-shadow: 0 0 0 #1890ff;
643
+ box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
644
+ }
645
+ }
646
+ @keyframes fadeEffect {
647
+ 100% {
648
+ opacity: 0;
649
+ }
650
+ }
651
+ .ant-slide-up-enter,
652
+ .ant-slide-up-appear {
653
+ animation-duration: 0.2s;
654
+ animation-fill-mode: both;
655
+ animation-play-state: paused;
656
+ }
657
+ .ant-slide-up-leave {
658
+ animation-duration: 0.2s;
659
+ animation-fill-mode: both;
660
+ animation-play-state: paused;
661
+ }
662
+ .ant-slide-up-enter.ant-slide-up-enter-active,
663
+ .ant-slide-up-appear.ant-slide-up-appear-active {
664
+ animation-name: antSlideUpIn;
665
+ animation-play-state: running;
666
+ }
667
+ .ant-slide-up-leave.ant-slide-up-leave-active {
668
+ animation-name: antSlideUpOut;
669
+ animation-play-state: running;
670
+ pointer-events: none;
671
+ }
672
+ .ant-slide-up-enter,
673
+ .ant-slide-up-appear {
674
+ opacity: 0;
675
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
676
+ }
677
+ .ant-slide-up-leave {
678
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
679
+ }
680
+ .ant-slide-down-enter,
681
+ .ant-slide-down-appear {
682
+ animation-duration: 0.2s;
683
+ animation-fill-mode: both;
684
+ animation-play-state: paused;
685
+ }
686
+ .ant-slide-down-leave {
687
+ animation-duration: 0.2s;
688
+ animation-fill-mode: both;
689
+ animation-play-state: paused;
690
+ }
691
+ .ant-slide-down-enter.ant-slide-down-enter-active,
692
+ .ant-slide-down-appear.ant-slide-down-appear-active {
693
+ animation-name: antSlideDownIn;
694
+ animation-play-state: running;
695
+ }
696
+ .ant-slide-down-leave.ant-slide-down-leave-active {
697
+ animation-name: antSlideDownOut;
698
+ animation-play-state: running;
699
+ pointer-events: none;
700
+ }
701
+ .ant-slide-down-enter,
702
+ .ant-slide-down-appear {
703
+ opacity: 0;
704
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
705
+ }
706
+ .ant-slide-down-leave {
707
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
708
+ }
709
+ .ant-slide-left-enter,
710
+ .ant-slide-left-appear {
711
+ animation-duration: 0.2s;
712
+ animation-fill-mode: both;
713
+ animation-play-state: paused;
714
+ }
715
+ .ant-slide-left-leave {
716
+ animation-duration: 0.2s;
717
+ animation-fill-mode: both;
718
+ animation-play-state: paused;
719
+ }
720
+ .ant-slide-left-enter.ant-slide-left-enter-active,
721
+ .ant-slide-left-appear.ant-slide-left-appear-active {
722
+ animation-name: antSlideLeftIn;
723
+ animation-play-state: running;
724
+ }
725
+ .ant-slide-left-leave.ant-slide-left-leave-active {
726
+ animation-name: antSlideLeftOut;
727
+ animation-play-state: running;
728
+ pointer-events: none;
729
+ }
730
+ .ant-slide-left-enter,
731
+ .ant-slide-left-appear {
732
+ opacity: 0;
733
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
734
+ }
735
+ .ant-slide-left-leave {
736
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
737
+ }
738
+ .ant-slide-right-enter,
739
+ .ant-slide-right-appear {
740
+ animation-duration: 0.2s;
741
+ animation-fill-mode: both;
742
+ animation-play-state: paused;
743
+ }
744
+ .ant-slide-right-leave {
745
+ animation-duration: 0.2s;
746
+ animation-fill-mode: both;
747
+ animation-play-state: paused;
748
+ }
749
+ .ant-slide-right-enter.ant-slide-right-enter-active,
750
+ .ant-slide-right-appear.ant-slide-right-appear-active {
751
+ animation-name: antSlideRightIn;
752
+ animation-play-state: running;
753
+ }
754
+ .ant-slide-right-leave.ant-slide-right-leave-active {
755
+ animation-name: antSlideRightOut;
756
+ animation-play-state: running;
757
+ pointer-events: none;
758
+ }
759
+ .ant-slide-right-enter,
760
+ .ant-slide-right-appear {
761
+ opacity: 0;
762
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
763
+ }
764
+ .ant-slide-right-leave {
765
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
766
+ }
767
+ @keyframes antSlideUpIn {
768
+ 0% {
769
+ transform: scaleY(0.8);
770
+ transform-origin: 0% 0%;
771
+ opacity: 0;
772
+ }
773
+ 100% {
774
+ transform: scaleY(1);
775
+ transform-origin: 0% 0%;
776
+ opacity: 1;
777
+ }
778
+ }
779
+ @keyframes antSlideUpOut {
780
+ 0% {
781
+ transform: scaleY(1);
782
+ transform-origin: 0% 0%;
783
+ opacity: 1;
784
+ }
785
+ 100% {
786
+ transform: scaleY(0.8);
787
+ transform-origin: 0% 0%;
788
+ opacity: 0;
789
+ }
790
+ }
791
+ @keyframes antSlideDownIn {
792
+ 0% {
793
+ transform: scaleY(0.8);
794
+ transform-origin: 100% 100%;
795
+ opacity: 0;
796
+ }
797
+ 100% {
798
+ transform: scaleY(1);
799
+ transform-origin: 100% 100%;
800
+ opacity: 1;
801
+ }
802
+ }
803
+ @keyframes antSlideDownOut {
804
+ 0% {
805
+ transform: scaleY(1);
806
+ transform-origin: 100% 100%;
807
+ opacity: 1;
808
+ }
809
+ 100% {
810
+ transform: scaleY(0.8);
811
+ transform-origin: 100% 100%;
812
+ opacity: 0;
813
+ }
814
+ }
815
+ @keyframes antSlideLeftIn {
816
+ 0% {
817
+ transform: scaleX(0.8);
818
+ transform-origin: 0% 0%;
819
+ opacity: 0;
820
+ }
821
+ 100% {
822
+ transform: scaleX(1);
823
+ transform-origin: 0% 0%;
824
+ opacity: 1;
825
+ }
826
+ }
827
+ @keyframes antSlideLeftOut {
828
+ 0% {
829
+ transform: scaleX(1);
830
+ transform-origin: 0% 0%;
831
+ opacity: 1;
832
+ }
833
+ 100% {
834
+ transform: scaleX(0.8);
835
+ transform-origin: 0% 0%;
836
+ opacity: 0;
837
+ }
838
+ }
839
+ @keyframes antSlideRightIn {
840
+ 0% {
841
+ transform: scaleX(0.8);
842
+ transform-origin: 100% 0%;
843
+ opacity: 0;
844
+ }
845
+ 100% {
846
+ transform: scaleX(1);
847
+ transform-origin: 100% 0%;
848
+ opacity: 1;
849
+ }
850
+ }
851
+ @keyframes antSlideRightOut {
852
+ 0% {
853
+ transform: scaleX(1);
854
+ transform-origin: 100% 0%;
855
+ opacity: 1;
856
+ }
857
+ 100% {
858
+ transform: scaleX(0.8);
859
+ transform-origin: 100% 0%;
860
+ opacity: 0;
861
+ }
862
+ }
863
+ .ant-zoom-enter,
864
+ .ant-zoom-appear {
865
+ animation-duration: 0.2s;
866
+ animation-fill-mode: both;
867
+ animation-play-state: paused;
868
+ }
869
+ .ant-zoom-leave {
870
+ animation-duration: 0.2s;
871
+ animation-fill-mode: both;
872
+ animation-play-state: paused;
873
+ }
874
+ .ant-zoom-enter.ant-zoom-enter-active,
875
+ .ant-zoom-appear.ant-zoom-appear-active {
876
+ animation-name: antZoomIn;
877
+ animation-play-state: running;
878
+ }
879
+ .ant-zoom-leave.ant-zoom-leave-active {
880
+ animation-name: antZoomOut;
881
+ animation-play-state: running;
882
+ pointer-events: none;
883
+ }
884
+ .ant-zoom-enter,
885
+ .ant-zoom-appear {
886
+ transform: scale(0);
887
+ opacity: 0;
888
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
889
+ }
890
+ .ant-zoom-enter-prepare,
891
+ .ant-zoom-appear-prepare {
892
+ transform: none;
893
+ }
894
+ .ant-zoom-leave {
895
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
896
+ }
897
+ .ant-zoom-big-enter,
898
+ .ant-zoom-big-appear {
899
+ animation-duration: 0.2s;
900
+ animation-fill-mode: both;
901
+ animation-play-state: paused;
902
+ }
903
+ .ant-zoom-big-leave {
904
+ animation-duration: 0.2s;
905
+ animation-fill-mode: both;
906
+ animation-play-state: paused;
907
+ }
908
+ .ant-zoom-big-enter.ant-zoom-big-enter-active,
909
+ .ant-zoom-big-appear.ant-zoom-big-appear-active {
910
+ animation-name: antZoomBigIn;
911
+ animation-play-state: running;
912
+ }
913
+ .ant-zoom-big-leave.ant-zoom-big-leave-active {
914
+ animation-name: antZoomBigOut;
915
+ animation-play-state: running;
916
+ pointer-events: none;
917
+ }
918
+ .ant-zoom-big-enter,
919
+ .ant-zoom-big-appear {
920
+ transform: scale(0);
921
+ opacity: 0;
922
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
923
+ }
924
+ .ant-zoom-big-enter-prepare,
925
+ .ant-zoom-big-appear-prepare {
926
+ transform: none;
927
+ }
928
+ .ant-zoom-big-leave {
929
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
930
+ }
931
+ .ant-zoom-big-fast-enter,
932
+ .ant-zoom-big-fast-appear {
933
+ animation-duration: 0.1s;
934
+ animation-fill-mode: both;
935
+ animation-play-state: paused;
936
+ }
937
+ .ant-zoom-big-fast-leave {
938
+ animation-duration: 0.1s;
939
+ animation-fill-mode: both;
940
+ animation-play-state: paused;
941
+ }
942
+ .ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active,
943
+ .ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active {
944
+ animation-name: antZoomBigIn;
945
+ animation-play-state: running;
946
+ }
947
+ .ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active {
948
+ animation-name: antZoomBigOut;
949
+ animation-play-state: running;
950
+ pointer-events: none;
951
+ }
952
+ .ant-zoom-big-fast-enter,
953
+ .ant-zoom-big-fast-appear {
954
+ transform: scale(0);
955
+ opacity: 0;
956
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
957
+ }
958
+ .ant-zoom-big-fast-enter-prepare,
959
+ .ant-zoom-big-fast-appear-prepare {
960
+ transform: none;
961
+ }
962
+ .ant-zoom-big-fast-leave {
963
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
964
+ }
965
+ .ant-zoom-up-enter,
966
+ .ant-zoom-up-appear {
967
+ animation-duration: 0.2s;
968
+ animation-fill-mode: both;
969
+ animation-play-state: paused;
970
+ }
971
+ .ant-zoom-up-leave {
972
+ animation-duration: 0.2s;
973
+ animation-fill-mode: both;
974
+ animation-play-state: paused;
975
+ }
976
+ .ant-zoom-up-enter.ant-zoom-up-enter-active,
977
+ .ant-zoom-up-appear.ant-zoom-up-appear-active {
978
+ animation-name: antZoomUpIn;
979
+ animation-play-state: running;
980
+ }
981
+ .ant-zoom-up-leave.ant-zoom-up-leave-active {
982
+ animation-name: antZoomUpOut;
983
+ animation-play-state: running;
984
+ pointer-events: none;
985
+ }
986
+ .ant-zoom-up-enter,
987
+ .ant-zoom-up-appear {
988
+ transform: scale(0);
989
+ opacity: 0;
990
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
991
+ }
992
+ .ant-zoom-up-enter-prepare,
993
+ .ant-zoom-up-appear-prepare {
994
+ transform: none;
995
+ }
996
+ .ant-zoom-up-leave {
997
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
998
+ }
999
+ .ant-zoom-down-enter,
1000
+ .ant-zoom-down-appear {
1001
+ animation-duration: 0.2s;
1002
+ animation-fill-mode: both;
1003
+ animation-play-state: paused;
1004
+ }
1005
+ .ant-zoom-down-leave {
1006
+ animation-duration: 0.2s;
1007
+ animation-fill-mode: both;
1008
+ animation-play-state: paused;
1009
+ }
1010
+ .ant-zoom-down-enter.ant-zoom-down-enter-active,
1011
+ .ant-zoom-down-appear.ant-zoom-down-appear-active {
1012
+ animation-name: antZoomDownIn;
1013
+ animation-play-state: running;
1014
+ }
1015
+ .ant-zoom-down-leave.ant-zoom-down-leave-active {
1016
+ animation-name: antZoomDownOut;
1017
+ animation-play-state: running;
1018
+ pointer-events: none;
1019
+ }
1020
+ .ant-zoom-down-enter,
1021
+ .ant-zoom-down-appear {
1022
+ transform: scale(0);
1023
+ opacity: 0;
1024
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1025
+ }
1026
+ .ant-zoom-down-enter-prepare,
1027
+ .ant-zoom-down-appear-prepare {
1028
+ transform: none;
1029
+ }
1030
+ .ant-zoom-down-leave {
1031
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1032
+ }
1033
+ .ant-zoom-left-enter,
1034
+ .ant-zoom-left-appear {
1035
+ animation-duration: 0.2s;
1036
+ animation-fill-mode: both;
1037
+ animation-play-state: paused;
1038
+ }
1039
+ .ant-zoom-left-leave {
1040
+ animation-duration: 0.2s;
1041
+ animation-fill-mode: both;
1042
+ animation-play-state: paused;
1043
+ }
1044
+ .ant-zoom-left-enter.ant-zoom-left-enter-active,
1045
+ .ant-zoom-left-appear.ant-zoom-left-appear-active {
1046
+ animation-name: antZoomLeftIn;
1047
+ animation-play-state: running;
1048
+ }
1049
+ .ant-zoom-left-leave.ant-zoom-left-leave-active {
1050
+ animation-name: antZoomLeftOut;
1051
+ animation-play-state: running;
1052
+ pointer-events: none;
1053
+ }
1054
+ .ant-zoom-left-enter,
1055
+ .ant-zoom-left-appear {
1056
+ transform: scale(0);
1057
+ opacity: 0;
1058
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1059
+ }
1060
+ .ant-zoom-left-enter-prepare,
1061
+ .ant-zoom-left-appear-prepare {
1062
+ transform: none;
1063
+ }
1064
+ .ant-zoom-left-leave {
1065
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1066
+ }
1067
+ .ant-zoom-right-enter,
1068
+ .ant-zoom-right-appear {
1069
+ animation-duration: 0.2s;
1070
+ animation-fill-mode: both;
1071
+ animation-play-state: paused;
1072
+ }
1073
+ .ant-zoom-right-leave {
1074
+ animation-duration: 0.2s;
1075
+ animation-fill-mode: both;
1076
+ animation-play-state: paused;
1077
+ }
1078
+ .ant-zoom-right-enter.ant-zoom-right-enter-active,
1079
+ .ant-zoom-right-appear.ant-zoom-right-appear-active {
1080
+ animation-name: antZoomRightIn;
1081
+ animation-play-state: running;
1082
+ }
1083
+ .ant-zoom-right-leave.ant-zoom-right-leave-active {
1084
+ animation-name: antZoomRightOut;
1085
+ animation-play-state: running;
1086
+ pointer-events: none;
1087
+ }
1088
+ .ant-zoom-right-enter,
1089
+ .ant-zoom-right-appear {
1090
+ transform: scale(0);
1091
+ opacity: 0;
1092
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1093
+ }
1094
+ .ant-zoom-right-enter-prepare,
1095
+ .ant-zoom-right-appear-prepare {
1096
+ transform: none;
1097
+ }
1098
+ .ant-zoom-right-leave {
1099
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1100
+ }
1101
+ @keyframes antZoomIn {
1102
+ 0% {
1103
+ transform: scale(0.2);
1104
+ opacity: 0;
1105
+ }
1106
+ 100% {
1107
+ transform: scale(1);
1108
+ opacity: 1;
1109
+ }
1110
+ }
1111
+ @keyframes antZoomOut {
1112
+ 0% {
1113
+ transform: scale(1);
1114
+ }
1115
+ 100% {
1116
+ transform: scale(0.2);
1117
+ opacity: 0;
1118
+ }
1119
+ }
1120
+ @keyframes antZoomBigIn {
1121
+ 0% {
1122
+ transform: scale(0.8);
1123
+ opacity: 0;
1124
+ }
1125
+ 100% {
1126
+ transform: scale(1);
1127
+ opacity: 1;
1128
+ }
1129
+ }
1130
+ @keyframes antZoomBigOut {
1131
+ 0% {
1132
+ transform: scale(1);
1133
+ }
1134
+ 100% {
1135
+ transform: scale(0.8);
1136
+ opacity: 0;
1137
+ }
1138
+ }
1139
+ @keyframes antZoomUpIn {
1140
+ 0% {
1141
+ transform: scale(0.8);
1142
+ transform-origin: 50% 0%;
1143
+ opacity: 0;
1144
+ }
1145
+ 100% {
1146
+ transform: scale(1);
1147
+ transform-origin: 50% 0%;
1148
+ }
1149
+ }
1150
+ @keyframes antZoomUpOut {
1151
+ 0% {
1152
+ transform: scale(1);
1153
+ transform-origin: 50% 0%;
1154
+ }
1155
+ 100% {
1156
+ transform: scale(0.8);
1157
+ transform-origin: 50% 0%;
1158
+ opacity: 0;
1159
+ }
1160
+ }
1161
+ @keyframes antZoomLeftIn {
1162
+ 0% {
1163
+ transform: scale(0.8);
1164
+ transform-origin: 0% 50%;
1165
+ opacity: 0;
1166
+ }
1167
+ 100% {
1168
+ transform: scale(1);
1169
+ transform-origin: 0% 50%;
1170
+ }
1171
+ }
1172
+ @keyframes antZoomLeftOut {
1173
+ 0% {
1174
+ transform: scale(1);
1175
+ transform-origin: 0% 50%;
1176
+ }
1177
+ 100% {
1178
+ transform: scale(0.8);
1179
+ transform-origin: 0% 50%;
1180
+ opacity: 0;
1181
+ }
1182
+ }
1183
+ @keyframes antZoomRightIn {
1184
+ 0% {
1185
+ transform: scale(0.8);
1186
+ transform-origin: 100% 50%;
1187
+ opacity: 0;
1188
+ }
1189
+ 100% {
1190
+ transform: scale(1);
1191
+ transform-origin: 100% 50%;
1192
+ }
1193
+ }
1194
+ @keyframes antZoomRightOut {
1195
+ 0% {
1196
+ transform: scale(1);
1197
+ transform-origin: 100% 50%;
1198
+ }
1199
+ 100% {
1200
+ transform: scale(0.8);
1201
+ transform-origin: 100% 50%;
1202
+ opacity: 0;
1203
+ }
1204
+ }
1205
+ @keyframes antZoomDownIn {
1206
+ 0% {
1207
+ transform: scale(0.8);
1208
+ transform-origin: 50% 100%;
1209
+ opacity: 0;
1210
+ }
1211
+ 100% {
1212
+ transform: scale(1);
1213
+ transform-origin: 50% 100%;
1214
+ }
1215
+ }
1216
+ @keyframes antZoomDownOut {
1217
+ 0% {
1218
+ transform: scale(1);
1219
+ transform-origin: 50% 100%;
1220
+ }
1221
+ 100% {
1222
+ transform: scale(0.8);
1223
+ transform-origin: 50% 100%;
1224
+ opacity: 0;
1225
+ }
1226
+ }
1227
+ .ant-motion-collapse-legacy {
1228
+ overflow: hidden;
1229
+ }
1230
+ .ant-motion-collapse-legacy-active {
1231
+ transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
1232
+ }
1233
+ .ant-motion-collapse {
1234
+ overflow: hidden;
1235
+ transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
1236
+ }
1237
+ .multipart-upload-container {
1238
+ width: 130px;
1239
+ height: 100px;
1240
+ border-radius: 4px;
1241
+ }
1242
+ .multipart-uploading-file-container {
1243
+ display: flex;
1244
+ flex-direction: column;
1245
+ align-items: center;
1246
+ justify-content: center;
1247
+ width: 100%;
1248
+ height: 100%;
1249
+ overflow: hidden;
1250
+ color: #9f9f9f;
1251
+ font-size: 12px;
1252
+ background-color: #f5f5f5;
1253
+ border-radius: 8px;
1254
+ cursor: pointer;
1255
+ }
1256
+ .multipart-uploading-file-container .spotecicon {
1257
+ width: 30px;
1258
+ height: 30px;
1259
+ color: #d4d4d4;
1260
+ fill: #fff;
1261
+ }
1262
+ .multipart-uploading-file-container-disabled {
1263
+ cursor: not-allowed;
1264
+ }
1265
+ .multipart-uploading-container {
1266
+ position: relative;
1267
+ z-index: 1010;
1268
+ width: 100%;
1269
+ height: 100%;
1270
+ overflow: hidden;
1271
+ background-color: #fff;
1272
+ }
1273
+ .multipart-package-icon-files {
1274
+ display: flex;
1275
+ flex-direction: column;
1276
+ align-items: center;
1277
+ justify-content: center;
1278
+ width: 100%;
1279
+ height: 100%;
1280
+ overflow: hidden;
1281
+ }
1282
+ .multipart-upload-file-name {
1283
+ width: 85%;
1284
+ overflow: hidden;
1285
+ white-space: nowrap;
1286
+ text-overflow: ellipsis;
1287
+ }
1288
+ .multipart-upload-progress {
1289
+ position: absolute !important;
1290
+ top: 50%;
1291
+ left: 0;
1292
+ z-index: 2;
1293
+ transform: translateY(-34%);
1294
+ }
1295
+ .multipart-upload-progress .ant-progress-outer {
1296
+ margin-right: 0;
1297
+ padding-right: 0;
1298
+ }
1299
+ .multipart-upload-progress .ant-progress-text {
1300
+ display: inline-block;
1301
+ width: 100%;
1302
+ text-align: center;
1303
+ }
1304
+ .multipart-package-upload-close-button {
1305
+ position: absolute;
1306
+ top: 0;
1307
+ right: 0;
1308
+ z-index: 10;
1309
+ width: 20px;
1310
+ height: 20px;
1311
+ text-align: center;
1312
+ background-color: #9f9f9f;
1313
+ cursor: pointer;
1314
+ opacity: 0.6;
1315
+ }
1316
+ .multipart-package-upload-close-button .spotecicon {
1317
+ width: 15px;
1318
+ height: 15px;
1319
+ color: #fff;
1320
+ }
1321
+ .multipart-upload-icon-files {
1322
+ text-align: center;
1323
+ }