@wangxinowo/vue-datepicker-next 1.0.5 → 1.0.7
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/README.md +510 -510
- package/dist/vue-datepicker-next.min.css +153 -461
- package/dist/vue-datepicker-next.min.js +1 -1
- package/package.json +88 -88
- package/src/components/date-picker/PresetPanel.jsx +148 -148
- package/src/components/date-picker/style/RangePicker.less +515 -515
- package/src/components/date-picker/style/presets.less +120 -120
- package/src/components/date-picker/wrapPicker.js +2 -2
- package/src/components/style/core/base.less +4 -505
- package/src/components/style/core/motion/fade.less +4 -3
- package/src/components/style/core/motion/move.less +4 -3
- package/src/components/style/core/motion/other.less +3 -1
- package/src/components/style/core/motion/slide.less +4 -3
- package/src/components/style/core/motion/swing.less +5 -4
- package/src/components/style/core/motion/zoom.less +4 -3
- package/src/components/style/mixins/motion.less +7 -6
- package/src/components/time-picker/index.jsx +1 -1
- package/src/components/tooltip/abstractTooltipProps.js +1 -1
- package/src/components/vc-calendar/src/RangeCalendar.jsx +1105 -1105
- package/src/components/vc-calendar/src/calendar/CalendarHeader.jsx +277 -277
- package/src/components/vc-calendar/src/month/MonthPanel.jsx +130 -130
- package/src/components/vc-calendar/src/month/MonthTable.jsx +252 -252
- package/src/components/vc-calendar/src/range-calendar/CalendarPart.jsx +180 -180
- package/src/components/vc-calendar/src/year/YearPanel.jsx +242 -242
- package/src/index.js +48 -48
|
@@ -3,323 +3,15 @@
|
|
|
3
3
|
/* stylelint-disable */
|
|
4
4
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
5
5
|
/* stylelint-disable at-rule-no-unknown */
|
|
6
|
-
|
|
7
|
-
body {
|
|
8
|
-
width: 100%;
|
|
9
|
-
height: 100%;
|
|
10
|
-
}
|
|
11
|
-
input::-ms-clear,
|
|
12
|
-
input::-ms-reveal {
|
|
13
|
-
display: none;
|
|
14
|
-
}
|
|
15
|
-
*,
|
|
16
|
-
*::before,
|
|
17
|
-
*::after {
|
|
18
|
-
box-sizing: border-box;
|
|
19
|
-
}
|
|
20
|
-
html {
|
|
21
|
-
font-family: sans-serif;
|
|
22
|
-
line-height: 1.15;
|
|
23
|
-
-webkit-text-size-adjust: 100%;
|
|
24
|
-
-ms-text-size-adjust: 100%;
|
|
25
|
-
-ms-overflow-style: scrollbar;
|
|
26
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
27
|
-
}
|
|
28
|
-
@-ms-viewport {
|
|
29
|
-
width: device-width;
|
|
30
|
-
}
|
|
31
|
-
article,
|
|
32
|
-
aside,
|
|
33
|
-
dialog,
|
|
34
|
-
figcaption,
|
|
35
|
-
figure,
|
|
36
|
-
footer,
|
|
37
|
-
header,
|
|
38
|
-
hgroup,
|
|
39
|
-
main,
|
|
40
|
-
nav,
|
|
41
|
-
section {
|
|
42
|
-
display: block;
|
|
43
|
-
}
|
|
44
|
-
body {
|
|
45
|
-
margin: 0;
|
|
46
|
-
color: rgba(0, 0, 0, 0.65);
|
|
47
|
-
font-size: 14px;
|
|
48
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
49
|
-
font-variant: tabular-nums;
|
|
50
|
-
line-height: 1.5;
|
|
51
|
-
background-color: #fff;
|
|
52
|
-
font-feature-settings: 'tnum';
|
|
53
|
-
}
|
|
54
|
-
[tabindex='-1']:focus {
|
|
55
|
-
outline: none !important;
|
|
56
|
-
}
|
|
57
|
-
hr {
|
|
58
|
-
box-sizing: content-box;
|
|
59
|
-
height: 0;
|
|
60
|
-
overflow: visible;
|
|
61
|
-
}
|
|
62
|
-
h1,
|
|
63
|
-
h2,
|
|
64
|
-
h3,
|
|
65
|
-
h4,
|
|
66
|
-
h5,
|
|
67
|
-
h6 {
|
|
68
|
-
margin-top: 0;
|
|
69
|
-
margin-bottom: 0.5em;
|
|
70
|
-
color: rgba(0, 0, 0, 0.85);
|
|
71
|
-
font-weight: 500;
|
|
72
|
-
}
|
|
73
|
-
p {
|
|
74
|
-
margin-top: 0;
|
|
75
|
-
margin-bottom: 1em;
|
|
76
|
-
}
|
|
77
|
-
abbr[title],
|
|
78
|
-
abbr[data-original-title] {
|
|
79
|
-
text-decoration: underline;
|
|
80
|
-
text-decoration: underline dotted;
|
|
81
|
-
border-bottom: 0;
|
|
82
|
-
cursor: help;
|
|
83
|
-
}
|
|
84
|
-
address {
|
|
85
|
-
margin-bottom: 1em;
|
|
86
|
-
font-style: normal;
|
|
87
|
-
line-height: inherit;
|
|
88
|
-
}
|
|
89
|
-
input[type='text'],
|
|
90
|
-
input[type='password'],
|
|
91
|
-
input[type='number'],
|
|
92
|
-
textarea {
|
|
93
|
-
-webkit-appearance: none;
|
|
94
|
-
}
|
|
95
|
-
ol,
|
|
96
|
-
ul,
|
|
97
|
-
dl {
|
|
98
|
-
margin-top: 0;
|
|
99
|
-
margin-bottom: 1em;
|
|
100
|
-
}
|
|
101
|
-
ol ol,
|
|
102
|
-
ul ul,
|
|
103
|
-
ol ul,
|
|
104
|
-
ul ol {
|
|
105
|
-
margin-bottom: 0;
|
|
106
|
-
}
|
|
107
|
-
dt {
|
|
108
|
-
font-weight: 500;
|
|
109
|
-
}
|
|
110
|
-
dd {
|
|
111
|
-
margin-bottom: 0.5em;
|
|
112
|
-
margin-left: 0;
|
|
113
|
-
}
|
|
114
|
-
blockquote {
|
|
115
|
-
margin: 0 0 1em;
|
|
116
|
-
}
|
|
117
|
-
dfn {
|
|
118
|
-
font-style: italic;
|
|
119
|
-
}
|
|
120
|
-
b,
|
|
121
|
-
strong {
|
|
122
|
-
font-weight: bolder;
|
|
123
|
-
}
|
|
124
|
-
small {
|
|
125
|
-
font-size: 80%;
|
|
126
|
-
}
|
|
127
|
-
sub,
|
|
128
|
-
sup {
|
|
129
|
-
position: relative;
|
|
130
|
-
font-size: 75%;
|
|
131
|
-
line-height: 0;
|
|
132
|
-
vertical-align: baseline;
|
|
133
|
-
}
|
|
134
|
-
sub {
|
|
135
|
-
bottom: -0.25em;
|
|
136
|
-
}
|
|
137
|
-
sup {
|
|
138
|
-
top: -0.5em;
|
|
139
|
-
}
|
|
140
|
-
a {
|
|
141
|
-
color: #1890ff;
|
|
142
|
-
text-decoration: none;
|
|
143
|
-
background-color: transparent;
|
|
144
|
-
outline: none;
|
|
145
|
-
cursor: pointer;
|
|
146
|
-
transition: color 0.3s;
|
|
147
|
-
-webkit-text-decoration-skip: objects;
|
|
148
|
-
}
|
|
149
|
-
a:hover {
|
|
150
|
-
color: #40a9ff;
|
|
151
|
-
}
|
|
152
|
-
a:active {
|
|
153
|
-
color: #096dd9;
|
|
154
|
-
}
|
|
155
|
-
a:active,
|
|
156
|
-
a:hover {
|
|
157
|
-
text-decoration: none;
|
|
158
|
-
outline: 0;
|
|
159
|
-
}
|
|
160
|
-
a[disabled] {
|
|
161
|
-
color: rgba(0, 0, 0, 0.25);
|
|
162
|
-
cursor: not-allowed;
|
|
163
|
-
pointer-events: none;
|
|
164
|
-
}
|
|
165
|
-
pre,
|
|
166
|
-
code,
|
|
167
|
-
kbd,
|
|
168
|
-
samp {
|
|
169
|
-
font-size: 1em;
|
|
170
|
-
font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
|
171
|
-
}
|
|
172
|
-
pre {
|
|
173
|
-
margin-top: 0;
|
|
174
|
-
margin-bottom: 1em;
|
|
175
|
-
overflow: auto;
|
|
176
|
-
}
|
|
177
|
-
figure {
|
|
178
|
-
margin: 0 0 1em;
|
|
179
|
-
}
|
|
180
|
-
img {
|
|
181
|
-
vertical-align: middle;
|
|
182
|
-
border-style: none;
|
|
183
|
-
}
|
|
184
|
-
svg:not(:root) {
|
|
185
|
-
overflow: hidden;
|
|
186
|
-
}
|
|
187
|
-
a,
|
|
188
|
-
area,
|
|
189
|
-
button,
|
|
190
|
-
[role='button'],
|
|
191
|
-
input:not([type='range']),
|
|
192
|
-
label,
|
|
193
|
-
select,
|
|
194
|
-
summary,
|
|
195
|
-
textarea {
|
|
196
|
-
touch-action: manipulation;
|
|
197
|
-
}
|
|
198
|
-
table {
|
|
199
|
-
border-collapse: collapse;
|
|
200
|
-
}
|
|
201
|
-
caption {
|
|
202
|
-
padding-top: 0.75em;
|
|
203
|
-
padding-bottom: 0.3em;
|
|
204
|
-
color: rgba(0, 0, 0, 0.45);
|
|
205
|
-
text-align: left;
|
|
206
|
-
caption-side: bottom;
|
|
207
|
-
}
|
|
208
|
-
th {
|
|
209
|
-
text-align: inherit;
|
|
210
|
-
}
|
|
211
|
-
input,
|
|
212
|
-
button,
|
|
213
|
-
select,
|
|
214
|
-
optgroup,
|
|
215
|
-
textarea {
|
|
216
|
-
margin: 0;
|
|
217
|
-
color: inherit;
|
|
218
|
-
font-size: inherit;
|
|
219
|
-
font-family: inherit;
|
|
220
|
-
line-height: inherit;
|
|
221
|
-
}
|
|
222
|
-
button,
|
|
223
|
-
input {
|
|
224
|
-
overflow: visible;
|
|
225
|
-
}
|
|
226
|
-
button,
|
|
227
|
-
select {
|
|
228
|
-
text-transform: none;
|
|
229
|
-
}
|
|
230
|
-
button,
|
|
231
|
-
html [type="button"],
|
|
232
|
-
[type="reset"],
|
|
233
|
-
[type="submit"] {
|
|
234
|
-
-webkit-appearance: button;
|
|
235
|
-
}
|
|
236
|
-
button::-moz-focus-inner,
|
|
237
|
-
[type='button']::-moz-focus-inner,
|
|
238
|
-
[type='reset']::-moz-focus-inner,
|
|
239
|
-
[type='submit']::-moz-focus-inner {
|
|
240
|
-
padding: 0;
|
|
241
|
-
border-style: none;
|
|
242
|
-
}
|
|
243
|
-
input[type='radio'],
|
|
244
|
-
input[type='checkbox'] {
|
|
245
|
-
box-sizing: border-box;
|
|
246
|
-
padding: 0;
|
|
247
|
-
}
|
|
248
|
-
input[type='date'],
|
|
249
|
-
input[type='time'],
|
|
250
|
-
input[type='datetime-local'],
|
|
251
|
-
input[type='month'] {
|
|
252
|
-
-webkit-appearance: listbox;
|
|
253
|
-
}
|
|
254
|
-
textarea {
|
|
255
|
-
overflow: auto;
|
|
256
|
-
resize: vertical;
|
|
257
|
-
}
|
|
258
|
-
fieldset {
|
|
259
|
-
min-width: 0;
|
|
260
|
-
margin: 0;
|
|
261
|
-
padding: 0;
|
|
262
|
-
border: 0;
|
|
263
|
-
}
|
|
264
|
-
legend {
|
|
265
|
-
display: block;
|
|
266
|
-
width: 100%;
|
|
267
|
-
max-width: 100%;
|
|
268
|
-
margin-bottom: 0.5em;
|
|
269
|
-
padding: 0;
|
|
270
|
-
color: inherit;
|
|
271
|
-
font-size: 1.5em;
|
|
272
|
-
line-height: inherit;
|
|
273
|
-
white-space: normal;
|
|
274
|
-
}
|
|
275
|
-
progress {
|
|
276
|
-
vertical-align: baseline;
|
|
277
|
-
}
|
|
278
|
-
[type='number']::-webkit-inner-spin-button,
|
|
279
|
-
[type='number']::-webkit-outer-spin-button {
|
|
280
|
-
height: auto;
|
|
281
|
-
}
|
|
282
|
-
[type='search'] {
|
|
283
|
-
outline-offset: -2px;
|
|
284
|
-
-webkit-appearance: none;
|
|
285
|
-
}
|
|
286
|
-
[type='search']::-webkit-search-cancel-button,
|
|
287
|
-
[type='search']::-webkit-search-decoration {
|
|
288
|
-
-webkit-appearance: none;
|
|
289
|
-
}
|
|
290
|
-
::-webkit-file-upload-button {
|
|
291
|
-
font: inherit;
|
|
292
|
-
-webkit-appearance: button;
|
|
293
|
-
}
|
|
294
|
-
output {
|
|
295
|
-
display: inline-block;
|
|
296
|
-
}
|
|
297
|
-
summary {
|
|
298
|
-
display: list-item;
|
|
299
|
-
}
|
|
300
|
-
template {
|
|
301
|
-
display: none;
|
|
302
|
-
}
|
|
303
|
-
[hidden] {
|
|
304
|
-
display: none !important;
|
|
305
|
-
}
|
|
306
|
-
mark {
|
|
307
|
-
padding: 0.2em;
|
|
308
|
-
background-color: #feffe6;
|
|
309
|
-
}
|
|
310
|
-
::selection {
|
|
311
|
-
color: #fff;
|
|
312
|
-
background: #1890ff;
|
|
313
|
-
}
|
|
314
|
-
.clearfix {
|
|
6
|
+
.ant-clearfix {
|
|
315
7
|
zoom: 1;
|
|
316
8
|
}
|
|
317
|
-
.clearfix::before,
|
|
318
|
-
.clearfix::after {
|
|
9
|
+
.ant-clearfix::before,
|
|
10
|
+
.ant-clearfix::after {
|
|
319
11
|
display: table;
|
|
320
12
|
content: '';
|
|
321
13
|
}
|
|
322
|
-
.clearfix::after {
|
|
14
|
+
.ant-clearfix::after {
|
|
323
15
|
clear: both;
|
|
324
16
|
}
|
|
325
17
|
.anticon {
|
|
@@ -357,33 +49,33 @@ mark {
|
|
|
357
49
|
display: inline-block;
|
|
358
50
|
animation: loadingCircle 1s infinite linear;
|
|
359
51
|
}
|
|
360
|
-
.fade-enter,
|
|
361
|
-
.fade-appear {
|
|
52
|
+
.ant-fade-enter,
|
|
53
|
+
.ant-fade-appear {
|
|
362
54
|
animation-duration: 0.2s;
|
|
363
55
|
animation-fill-mode: both;
|
|
364
56
|
animation-play-state: paused;
|
|
365
57
|
}
|
|
366
|
-
.fade-leave {
|
|
58
|
+
.ant-fade-leave {
|
|
367
59
|
animation-duration: 0.2s;
|
|
368
60
|
animation-fill-mode: both;
|
|
369
61
|
animation-play-state: paused;
|
|
370
62
|
}
|
|
371
|
-
.fade-enter.fade-enter-active,
|
|
372
|
-
.fade-appear.fade-appear-active {
|
|
63
|
+
.ant-fade-enter.ant-fade-enter-active,
|
|
64
|
+
.ant-fade-appear.ant-fade-appear-active {
|
|
373
65
|
animation-name: antFadeIn;
|
|
374
66
|
animation-play-state: running;
|
|
375
67
|
}
|
|
376
|
-
.fade-leave.fade-leave-active {
|
|
68
|
+
.ant-fade-leave.ant-fade-leave-active {
|
|
377
69
|
animation-name: antFadeOut;
|
|
378
70
|
animation-play-state: running;
|
|
379
71
|
pointer-events: none;
|
|
380
72
|
}
|
|
381
|
-
.fade-enter,
|
|
382
|
-
.fade-appear {
|
|
73
|
+
.ant-fade-enter,
|
|
74
|
+
.ant-fade-appear {
|
|
383
75
|
opacity: 0;
|
|
384
76
|
animation-timing-function: linear;
|
|
385
77
|
}
|
|
386
|
-
.fade-leave {
|
|
78
|
+
.ant-fade-leave {
|
|
387
79
|
animation-timing-function: linear;
|
|
388
80
|
}
|
|
389
81
|
@keyframes antFadeIn {
|
|
@@ -402,120 +94,120 @@ mark {
|
|
|
402
94
|
opacity: 0;
|
|
403
95
|
}
|
|
404
96
|
}
|
|
405
|
-
.move-up-enter,
|
|
406
|
-
.move-up-appear {
|
|
97
|
+
.ant-move-up-enter,
|
|
98
|
+
.ant-move-up-appear {
|
|
407
99
|
animation-duration: 0.2s;
|
|
408
100
|
animation-fill-mode: both;
|
|
409
101
|
animation-play-state: paused;
|
|
410
102
|
}
|
|
411
|
-
.move-up-leave {
|
|
103
|
+
.ant-move-up-leave {
|
|
412
104
|
animation-duration: 0.2s;
|
|
413
105
|
animation-fill-mode: both;
|
|
414
106
|
animation-play-state: paused;
|
|
415
107
|
}
|
|
416
|
-
.move-up-enter.move-up-enter-active,
|
|
417
|
-
.move-up-appear.move-up-appear-active {
|
|
108
|
+
.ant-move-up-enter.ant-move-up-enter-active,
|
|
109
|
+
.ant-move-up-appear.ant-move-up-appear-active {
|
|
418
110
|
animation-name: antMoveUpIn;
|
|
419
111
|
animation-play-state: running;
|
|
420
112
|
}
|
|
421
|
-
.move-up-leave.move-up-leave-active {
|
|
113
|
+
.ant-move-up-leave.ant-move-up-leave-active {
|
|
422
114
|
animation-name: antMoveUpOut;
|
|
423
115
|
animation-play-state: running;
|
|
424
116
|
pointer-events: none;
|
|
425
117
|
}
|
|
426
|
-
.move-up-enter,
|
|
427
|
-
.move-up-appear {
|
|
118
|
+
.ant-move-up-enter,
|
|
119
|
+
.ant-move-up-appear {
|
|
428
120
|
opacity: 0;
|
|
429
121
|
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
430
122
|
}
|
|
431
|
-
.move-up-leave {
|
|
123
|
+
.ant-move-up-leave {
|
|
432
124
|
animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
|
|
433
125
|
}
|
|
434
|
-
.move-down-enter,
|
|
435
|
-
.move-down-appear {
|
|
126
|
+
.ant-move-down-enter,
|
|
127
|
+
.ant-move-down-appear {
|
|
436
128
|
animation-duration: 0.2s;
|
|
437
129
|
animation-fill-mode: both;
|
|
438
130
|
animation-play-state: paused;
|
|
439
131
|
}
|
|
440
|
-
.move-down-leave {
|
|
132
|
+
.ant-move-down-leave {
|
|
441
133
|
animation-duration: 0.2s;
|
|
442
134
|
animation-fill-mode: both;
|
|
443
135
|
animation-play-state: paused;
|
|
444
136
|
}
|
|
445
|
-
.move-down-enter.move-down-enter-active,
|
|
446
|
-
.move-down-appear.move-down-appear-active {
|
|
137
|
+
.ant-move-down-enter.ant-move-down-enter-active,
|
|
138
|
+
.ant-move-down-appear.ant-move-down-appear-active {
|
|
447
139
|
animation-name: antMoveDownIn;
|
|
448
140
|
animation-play-state: running;
|
|
449
141
|
}
|
|
450
|
-
.move-down-leave.move-down-leave-active {
|
|
142
|
+
.ant-move-down-leave.ant-move-down-leave-active {
|
|
451
143
|
animation-name: antMoveDownOut;
|
|
452
144
|
animation-play-state: running;
|
|
453
145
|
pointer-events: none;
|
|
454
146
|
}
|
|
455
|
-
.move-down-enter,
|
|
456
|
-
.move-down-appear {
|
|
147
|
+
.ant-move-down-enter,
|
|
148
|
+
.ant-move-down-appear {
|
|
457
149
|
opacity: 0;
|
|
458
150
|
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
459
151
|
}
|
|
460
|
-
.move-down-leave {
|
|
152
|
+
.ant-move-down-leave {
|
|
461
153
|
animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
|
|
462
154
|
}
|
|
463
|
-
.move-left-enter,
|
|
464
|
-
.move-left-appear {
|
|
155
|
+
.ant-move-left-enter,
|
|
156
|
+
.ant-move-left-appear {
|
|
465
157
|
animation-duration: 0.2s;
|
|
466
158
|
animation-fill-mode: both;
|
|
467
159
|
animation-play-state: paused;
|
|
468
160
|
}
|
|
469
|
-
.move-left-leave {
|
|
161
|
+
.ant-move-left-leave {
|
|
470
162
|
animation-duration: 0.2s;
|
|
471
163
|
animation-fill-mode: both;
|
|
472
164
|
animation-play-state: paused;
|
|
473
165
|
}
|
|
474
|
-
.move-left-enter.move-left-enter-active,
|
|
475
|
-
.move-left-appear.move-left-appear-active {
|
|
166
|
+
.ant-move-left-enter.ant-move-left-enter-active,
|
|
167
|
+
.ant-move-left-appear.ant-move-left-appear-active {
|
|
476
168
|
animation-name: antMoveLeftIn;
|
|
477
169
|
animation-play-state: running;
|
|
478
170
|
}
|
|
479
|
-
.move-left-leave.move-left-leave-active {
|
|
171
|
+
.ant-move-left-leave.ant-move-left-leave-active {
|
|
480
172
|
animation-name: antMoveLeftOut;
|
|
481
173
|
animation-play-state: running;
|
|
482
174
|
pointer-events: none;
|
|
483
175
|
}
|
|
484
|
-
.move-left-enter,
|
|
485
|
-
.move-left-appear {
|
|
176
|
+
.ant-move-left-enter,
|
|
177
|
+
.ant-move-left-appear {
|
|
486
178
|
opacity: 0;
|
|
487
179
|
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
488
180
|
}
|
|
489
|
-
.move-left-leave {
|
|
181
|
+
.ant-move-left-leave {
|
|
490
182
|
animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
|
|
491
183
|
}
|
|
492
|
-
.move-right-enter,
|
|
493
|
-
.move-right-appear {
|
|
184
|
+
.ant-move-right-enter,
|
|
185
|
+
.ant-move-right-appear {
|
|
494
186
|
animation-duration: 0.2s;
|
|
495
187
|
animation-fill-mode: both;
|
|
496
188
|
animation-play-state: paused;
|
|
497
189
|
}
|
|
498
|
-
.move-right-leave {
|
|
190
|
+
.ant-move-right-leave {
|
|
499
191
|
animation-duration: 0.2s;
|
|
500
192
|
animation-fill-mode: both;
|
|
501
193
|
animation-play-state: paused;
|
|
502
194
|
}
|
|
503
|
-
.move-right-enter.move-right-enter-active,
|
|
504
|
-
.move-right-appear.move-right-appear-active {
|
|
195
|
+
.ant-move-right-enter.ant-move-right-enter-active,
|
|
196
|
+
.ant-move-right-appear.ant-move-right-appear-active {
|
|
505
197
|
animation-name: antMoveRightIn;
|
|
506
198
|
animation-play-state: running;
|
|
507
199
|
}
|
|
508
|
-
.move-right-leave.move-right-leave-active {
|
|
200
|
+
.ant-move-right-leave.ant-move-right-leave-active {
|
|
509
201
|
animation-name: antMoveRightOut;
|
|
510
202
|
animation-play-state: running;
|
|
511
203
|
pointer-events: none;
|
|
512
204
|
}
|
|
513
|
-
.move-right-enter,
|
|
514
|
-
.move-right-appear {
|
|
205
|
+
.ant-move-right-enter,
|
|
206
|
+
.ant-move-right-appear {
|
|
515
207
|
opacity: 0;
|
|
516
208
|
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
517
209
|
}
|
|
518
|
-
.move-right-leave {
|
|
210
|
+
.ant-move-right-leave {
|
|
519
211
|
animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
|
|
520
212
|
}
|
|
521
213
|
@keyframes antMoveDownIn {
|
|
@@ -623,7 +315,7 @@ mark {
|
|
|
623
315
|
[ant-click-animating-without-extra-node='true'] {
|
|
624
316
|
position: relative;
|
|
625
317
|
}
|
|
626
|
-
|
|
318
|
+
:root {
|
|
627
319
|
--antd-wave-shadow-color: #1890ff;
|
|
628
320
|
}
|
|
629
321
|
[ant-click-animating-without-extra-node='true']::after,
|
|
@@ -654,120 +346,120 @@ html {
|
|
|
654
346
|
opacity: 0;
|
|
655
347
|
}
|
|
656
348
|
}
|
|
657
|
-
.slide-up-enter,
|
|
658
|
-
.slide-up-appear {
|
|
349
|
+
.ant-slide-up-enter,
|
|
350
|
+
.ant-slide-up-appear {
|
|
659
351
|
animation-duration: 0.2s;
|
|
660
352
|
animation-fill-mode: both;
|
|
661
353
|
animation-play-state: paused;
|
|
662
354
|
}
|
|
663
|
-
.slide-up-leave {
|
|
355
|
+
.ant-slide-up-leave {
|
|
664
356
|
animation-duration: 0.2s;
|
|
665
357
|
animation-fill-mode: both;
|
|
666
358
|
animation-play-state: paused;
|
|
667
359
|
}
|
|
668
|
-
.slide-up-enter.slide-up-enter-active,
|
|
669
|
-
.slide-up-appear.slide-up-appear-active {
|
|
360
|
+
.ant-slide-up-enter.ant-slide-up-enter-active,
|
|
361
|
+
.ant-slide-up-appear.ant-slide-up-appear-active {
|
|
670
362
|
animation-name: antSlideUpIn;
|
|
671
363
|
animation-play-state: running;
|
|
672
364
|
}
|
|
673
|
-
.slide-up-leave.slide-up-leave-active {
|
|
365
|
+
.ant-slide-up-leave.ant-slide-up-leave-active {
|
|
674
366
|
animation-name: antSlideUpOut;
|
|
675
367
|
animation-play-state: running;
|
|
676
368
|
pointer-events: none;
|
|
677
369
|
}
|
|
678
|
-
.slide-up-enter,
|
|
679
|
-
.slide-up-appear {
|
|
370
|
+
.ant-slide-up-enter,
|
|
371
|
+
.ant-slide-up-appear {
|
|
680
372
|
opacity: 0;
|
|
681
373
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
682
374
|
}
|
|
683
|
-
.slide-up-leave {
|
|
375
|
+
.ant-slide-up-leave {
|
|
684
376
|
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
685
377
|
}
|
|
686
|
-
.slide-down-enter,
|
|
687
|
-
.slide-down-appear {
|
|
378
|
+
.ant-slide-down-enter,
|
|
379
|
+
.ant-slide-down-appear {
|
|
688
380
|
animation-duration: 0.2s;
|
|
689
381
|
animation-fill-mode: both;
|
|
690
382
|
animation-play-state: paused;
|
|
691
383
|
}
|
|
692
|
-
.slide-down-leave {
|
|
384
|
+
.ant-slide-down-leave {
|
|
693
385
|
animation-duration: 0.2s;
|
|
694
386
|
animation-fill-mode: both;
|
|
695
387
|
animation-play-state: paused;
|
|
696
388
|
}
|
|
697
|
-
.slide-down-enter.slide-down-enter-active,
|
|
698
|
-
.slide-down-appear.slide-down-appear-active {
|
|
389
|
+
.ant-slide-down-enter.ant-slide-down-enter-active,
|
|
390
|
+
.ant-slide-down-appear.ant-slide-down-appear-active {
|
|
699
391
|
animation-name: antSlideDownIn;
|
|
700
392
|
animation-play-state: running;
|
|
701
393
|
}
|
|
702
|
-
.slide-down-leave.slide-down-leave-active {
|
|
394
|
+
.ant-slide-down-leave.ant-slide-down-leave-active {
|
|
703
395
|
animation-name: antSlideDownOut;
|
|
704
396
|
animation-play-state: running;
|
|
705
397
|
pointer-events: none;
|
|
706
398
|
}
|
|
707
|
-
.slide-down-enter,
|
|
708
|
-
.slide-down-appear {
|
|
399
|
+
.ant-slide-down-enter,
|
|
400
|
+
.ant-slide-down-appear {
|
|
709
401
|
opacity: 0;
|
|
710
402
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
711
403
|
}
|
|
712
|
-
.slide-down-leave {
|
|
404
|
+
.ant-slide-down-leave {
|
|
713
405
|
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
714
406
|
}
|
|
715
|
-
.slide-left-enter,
|
|
716
|
-
.slide-left-appear {
|
|
407
|
+
.ant-slide-left-enter,
|
|
408
|
+
.ant-slide-left-appear {
|
|
717
409
|
animation-duration: 0.2s;
|
|
718
410
|
animation-fill-mode: both;
|
|
719
411
|
animation-play-state: paused;
|
|
720
412
|
}
|
|
721
|
-
.slide-left-leave {
|
|
413
|
+
.ant-slide-left-leave {
|
|
722
414
|
animation-duration: 0.2s;
|
|
723
415
|
animation-fill-mode: both;
|
|
724
416
|
animation-play-state: paused;
|
|
725
417
|
}
|
|
726
|
-
.slide-left-enter.slide-left-enter-active,
|
|
727
|
-
.slide-left-appear.slide-left-appear-active {
|
|
418
|
+
.ant-slide-left-enter.ant-slide-left-enter-active,
|
|
419
|
+
.ant-slide-left-appear.ant-slide-left-appear-active {
|
|
728
420
|
animation-name: antSlideLeftIn;
|
|
729
421
|
animation-play-state: running;
|
|
730
422
|
}
|
|
731
|
-
.slide-left-leave.slide-left-leave-active {
|
|
423
|
+
.ant-slide-left-leave.ant-slide-left-leave-active {
|
|
732
424
|
animation-name: antSlideLeftOut;
|
|
733
425
|
animation-play-state: running;
|
|
734
426
|
pointer-events: none;
|
|
735
427
|
}
|
|
736
|
-
.slide-left-enter,
|
|
737
|
-
.slide-left-appear {
|
|
428
|
+
.ant-slide-left-enter,
|
|
429
|
+
.ant-slide-left-appear {
|
|
738
430
|
opacity: 0;
|
|
739
431
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
740
432
|
}
|
|
741
|
-
.slide-left-leave {
|
|
433
|
+
.ant-slide-left-leave {
|
|
742
434
|
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
743
435
|
}
|
|
744
|
-
.slide-right-enter,
|
|
745
|
-
.slide-right-appear {
|
|
436
|
+
.ant-slide-right-enter,
|
|
437
|
+
.ant-slide-right-appear {
|
|
746
438
|
animation-duration: 0.2s;
|
|
747
439
|
animation-fill-mode: both;
|
|
748
440
|
animation-play-state: paused;
|
|
749
441
|
}
|
|
750
|
-
.slide-right-leave {
|
|
442
|
+
.ant-slide-right-leave {
|
|
751
443
|
animation-duration: 0.2s;
|
|
752
444
|
animation-fill-mode: both;
|
|
753
445
|
animation-play-state: paused;
|
|
754
446
|
}
|
|
755
|
-
.slide-right-enter.slide-right-enter-active,
|
|
756
|
-
.slide-right-appear.slide-right-appear-active {
|
|
447
|
+
.ant-slide-right-enter.ant-slide-right-enter-active,
|
|
448
|
+
.ant-slide-right-appear.ant-slide-right-appear-active {
|
|
757
449
|
animation-name: antSlideRightIn;
|
|
758
450
|
animation-play-state: running;
|
|
759
451
|
}
|
|
760
|
-
.slide-right-leave.slide-right-leave-active {
|
|
452
|
+
.ant-slide-right-leave.ant-slide-right-leave-active {
|
|
761
453
|
animation-name: antSlideRightOut;
|
|
762
454
|
animation-play-state: running;
|
|
763
455
|
pointer-events: none;
|
|
764
456
|
}
|
|
765
|
-
.slide-right-enter,
|
|
766
|
-
.slide-right-appear {
|
|
457
|
+
.ant-slide-right-enter,
|
|
458
|
+
.ant-slide-right-appear {
|
|
767
459
|
opacity: 0;
|
|
768
460
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
769
461
|
}
|
|
770
|
-
.slide-right-leave {
|
|
462
|
+
.ant-slide-right-leave {
|
|
771
463
|
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
772
464
|
}
|
|
773
465
|
@keyframes antSlideUpIn {
|
|
@@ -866,14 +558,14 @@ html {
|
|
|
866
558
|
opacity: 0;
|
|
867
559
|
}
|
|
868
560
|
}
|
|
869
|
-
.swing-enter,
|
|
870
|
-
.swing-appear {
|
|
561
|
+
.ant-swing-enter,
|
|
562
|
+
.ant-swing-appear {
|
|
871
563
|
animation-duration: 0.2s;
|
|
872
564
|
animation-fill-mode: both;
|
|
873
565
|
animation-play-state: paused;
|
|
874
566
|
}
|
|
875
|
-
.swing-enter.swing-enter-active,
|
|
876
|
-
.swing-appear.swing-appear-active {
|
|
567
|
+
.ant-swing-enter.ant-swing-enter-active,
|
|
568
|
+
.ant-swing-appear.ant-swing-appear-active {
|
|
877
569
|
animation-name: antSwingIn;
|
|
878
570
|
animation-play-state: running;
|
|
879
571
|
}
|
|
@@ -895,214 +587,214 @@ html {
|
|
|
895
587
|
transform: translateX(5px);
|
|
896
588
|
}
|
|
897
589
|
}
|
|
898
|
-
.zoom-enter,
|
|
899
|
-
.zoom-appear {
|
|
590
|
+
.ant-zoom-enter,
|
|
591
|
+
.ant-zoom-appear {
|
|
900
592
|
animation-duration: 0.2s;
|
|
901
593
|
animation-fill-mode: both;
|
|
902
594
|
animation-play-state: paused;
|
|
903
595
|
}
|
|
904
|
-
.zoom-leave {
|
|
596
|
+
.ant-zoom-leave {
|
|
905
597
|
animation-duration: 0.2s;
|
|
906
598
|
animation-fill-mode: both;
|
|
907
599
|
animation-play-state: paused;
|
|
908
600
|
}
|
|
909
|
-
.zoom-enter.zoom-enter-active,
|
|
910
|
-
.zoom-appear.zoom-appear-active {
|
|
601
|
+
.ant-zoom-enter.ant-zoom-enter-active,
|
|
602
|
+
.ant-zoom-appear.ant-zoom-appear-active {
|
|
911
603
|
animation-name: antZoomIn;
|
|
912
604
|
animation-play-state: running;
|
|
913
605
|
}
|
|
914
|
-
.zoom-leave.zoom-leave-active {
|
|
606
|
+
.ant-zoom-leave.ant-zoom-leave-active {
|
|
915
607
|
animation-name: antZoomOut;
|
|
916
608
|
animation-play-state: running;
|
|
917
609
|
pointer-events: none;
|
|
918
610
|
}
|
|
919
|
-
.zoom-enter,
|
|
920
|
-
.zoom-appear {
|
|
611
|
+
.ant-zoom-enter,
|
|
612
|
+
.ant-zoom-appear {
|
|
921
613
|
transform: scale(0);
|
|
922
614
|
opacity: 0;
|
|
923
615
|
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
924
616
|
}
|
|
925
|
-
.zoom-leave {
|
|
617
|
+
.ant-zoom-leave {
|
|
926
618
|
animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
927
619
|
}
|
|
928
|
-
.zoom-big-enter,
|
|
929
|
-
.zoom-big-appear {
|
|
620
|
+
.ant-zoom-big-enter,
|
|
621
|
+
.ant-zoom-big-appear {
|
|
930
622
|
animation-duration: 0.2s;
|
|
931
623
|
animation-fill-mode: both;
|
|
932
624
|
animation-play-state: paused;
|
|
933
625
|
}
|
|
934
|
-
.zoom-big-leave {
|
|
626
|
+
.ant-zoom-big-leave {
|
|
935
627
|
animation-duration: 0.2s;
|
|
936
628
|
animation-fill-mode: both;
|
|
937
629
|
animation-play-state: paused;
|
|
938
630
|
}
|
|
939
|
-
.zoom-big-enter.zoom-big-enter-active,
|
|
940
|
-
.zoom-big-appear.zoom-big-appear-active {
|
|
631
|
+
.ant-zoom-big-enter.ant-zoom-big-enter-active,
|
|
632
|
+
.ant-zoom-big-appear.ant-zoom-big-appear-active {
|
|
941
633
|
animation-name: antZoomBigIn;
|
|
942
634
|
animation-play-state: running;
|
|
943
635
|
}
|
|
944
|
-
.zoom-big-leave.zoom-big-leave-active {
|
|
636
|
+
.ant-zoom-big-leave.ant-zoom-big-leave-active {
|
|
945
637
|
animation-name: antZoomBigOut;
|
|
946
638
|
animation-play-state: running;
|
|
947
639
|
pointer-events: none;
|
|
948
640
|
}
|
|
949
|
-
.zoom-big-enter,
|
|
950
|
-
.zoom-big-appear {
|
|
641
|
+
.ant-zoom-big-enter,
|
|
642
|
+
.ant-zoom-big-appear {
|
|
951
643
|
transform: scale(0);
|
|
952
644
|
opacity: 0;
|
|
953
645
|
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
954
646
|
}
|
|
955
|
-
.zoom-big-leave {
|
|
647
|
+
.ant-zoom-big-leave {
|
|
956
648
|
animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
957
649
|
}
|
|
958
|
-
.zoom-big-fast-enter,
|
|
959
|
-
.zoom-big-fast-appear {
|
|
650
|
+
.ant-zoom-big-fast-enter,
|
|
651
|
+
.ant-zoom-big-fast-appear {
|
|
960
652
|
animation-duration: 0.1s;
|
|
961
653
|
animation-fill-mode: both;
|
|
962
654
|
animation-play-state: paused;
|
|
963
655
|
}
|
|
964
|
-
.zoom-big-fast-leave {
|
|
656
|
+
.ant-zoom-big-fast-leave {
|
|
965
657
|
animation-duration: 0.1s;
|
|
966
658
|
animation-fill-mode: both;
|
|
967
659
|
animation-play-state: paused;
|
|
968
660
|
}
|
|
969
|
-
.zoom-big-fast-enter.zoom-big-fast-enter-active,
|
|
970
|
-
.zoom-big-fast-appear.zoom-big-fast-appear-active {
|
|
661
|
+
.ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active,
|
|
662
|
+
.ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active {
|
|
971
663
|
animation-name: antZoomBigIn;
|
|
972
664
|
animation-play-state: running;
|
|
973
665
|
}
|
|
974
|
-
.zoom-big-fast-leave.zoom-big-fast-leave-active {
|
|
666
|
+
.ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active {
|
|
975
667
|
animation-name: antZoomBigOut;
|
|
976
668
|
animation-play-state: running;
|
|
977
669
|
pointer-events: none;
|
|
978
670
|
}
|
|
979
|
-
.zoom-big-fast-enter,
|
|
980
|
-
.zoom-big-fast-appear {
|
|
671
|
+
.ant-zoom-big-fast-enter,
|
|
672
|
+
.ant-zoom-big-fast-appear {
|
|
981
673
|
transform: scale(0);
|
|
982
674
|
opacity: 0;
|
|
983
675
|
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
984
676
|
}
|
|
985
|
-
.zoom-big-fast-leave {
|
|
677
|
+
.ant-zoom-big-fast-leave {
|
|
986
678
|
animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
987
679
|
}
|
|
988
|
-
.zoom-up-enter,
|
|
989
|
-
.zoom-up-appear {
|
|
680
|
+
.ant-zoom-up-enter,
|
|
681
|
+
.ant-zoom-up-appear {
|
|
990
682
|
animation-duration: 0.2s;
|
|
991
683
|
animation-fill-mode: both;
|
|
992
684
|
animation-play-state: paused;
|
|
993
685
|
}
|
|
994
|
-
.zoom-up-leave {
|
|
686
|
+
.ant-zoom-up-leave {
|
|
995
687
|
animation-duration: 0.2s;
|
|
996
688
|
animation-fill-mode: both;
|
|
997
689
|
animation-play-state: paused;
|
|
998
690
|
}
|
|
999
|
-
.zoom-up-enter.zoom-up-enter-active,
|
|
1000
|
-
.zoom-up-appear.zoom-up-appear-active {
|
|
691
|
+
.ant-zoom-up-enter.ant-zoom-up-enter-active,
|
|
692
|
+
.ant-zoom-up-appear.ant-zoom-up-appear-active {
|
|
1001
693
|
animation-name: antZoomUpIn;
|
|
1002
694
|
animation-play-state: running;
|
|
1003
695
|
}
|
|
1004
|
-
.zoom-up-leave.zoom-up-leave-active {
|
|
696
|
+
.ant-zoom-up-leave.ant-zoom-up-leave-active {
|
|
1005
697
|
animation-name: antZoomUpOut;
|
|
1006
698
|
animation-play-state: running;
|
|
1007
699
|
pointer-events: none;
|
|
1008
700
|
}
|
|
1009
|
-
.zoom-up-enter,
|
|
1010
|
-
.zoom-up-appear {
|
|
701
|
+
.ant-zoom-up-enter,
|
|
702
|
+
.ant-zoom-up-appear {
|
|
1011
703
|
transform: scale(0);
|
|
1012
704
|
opacity: 0;
|
|
1013
705
|
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
1014
706
|
}
|
|
1015
|
-
.zoom-up-leave {
|
|
707
|
+
.ant-zoom-up-leave {
|
|
1016
708
|
animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
1017
709
|
}
|
|
1018
|
-
.zoom-down-enter,
|
|
1019
|
-
.zoom-down-appear {
|
|
710
|
+
.ant-zoom-down-enter,
|
|
711
|
+
.ant-zoom-down-appear {
|
|
1020
712
|
animation-duration: 0.2s;
|
|
1021
713
|
animation-fill-mode: both;
|
|
1022
714
|
animation-play-state: paused;
|
|
1023
715
|
}
|
|
1024
|
-
.zoom-down-leave {
|
|
716
|
+
.ant-zoom-down-leave {
|
|
1025
717
|
animation-duration: 0.2s;
|
|
1026
718
|
animation-fill-mode: both;
|
|
1027
719
|
animation-play-state: paused;
|
|
1028
720
|
}
|
|
1029
|
-
.zoom-down-enter.zoom-down-enter-active,
|
|
1030
|
-
.zoom-down-appear.zoom-down-appear-active {
|
|
721
|
+
.ant-zoom-down-enter.ant-zoom-down-enter-active,
|
|
722
|
+
.ant-zoom-down-appear.ant-zoom-down-appear-active {
|
|
1031
723
|
animation-name: antZoomDownIn;
|
|
1032
724
|
animation-play-state: running;
|
|
1033
725
|
}
|
|
1034
|
-
.zoom-down-leave.zoom-down-leave-active {
|
|
726
|
+
.ant-zoom-down-leave.ant-zoom-down-leave-active {
|
|
1035
727
|
animation-name: antZoomDownOut;
|
|
1036
728
|
animation-play-state: running;
|
|
1037
729
|
pointer-events: none;
|
|
1038
730
|
}
|
|
1039
|
-
.zoom-down-enter,
|
|
1040
|
-
.zoom-down-appear {
|
|
731
|
+
.ant-zoom-down-enter,
|
|
732
|
+
.ant-zoom-down-appear {
|
|
1041
733
|
transform: scale(0);
|
|
1042
734
|
opacity: 0;
|
|
1043
735
|
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
1044
736
|
}
|
|
1045
|
-
.zoom-down-leave {
|
|
737
|
+
.ant-zoom-down-leave {
|
|
1046
738
|
animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
1047
739
|
}
|
|
1048
|
-
.zoom-left-enter,
|
|
1049
|
-
.zoom-left-appear {
|
|
740
|
+
.ant-zoom-left-enter,
|
|
741
|
+
.ant-zoom-left-appear {
|
|
1050
742
|
animation-duration: 0.2s;
|
|
1051
743
|
animation-fill-mode: both;
|
|
1052
744
|
animation-play-state: paused;
|
|
1053
745
|
}
|
|
1054
|
-
.zoom-left-leave {
|
|
746
|
+
.ant-zoom-left-leave {
|
|
1055
747
|
animation-duration: 0.2s;
|
|
1056
748
|
animation-fill-mode: both;
|
|
1057
749
|
animation-play-state: paused;
|
|
1058
750
|
}
|
|
1059
|
-
.zoom-left-enter.zoom-left-enter-active,
|
|
1060
|
-
.zoom-left-appear.zoom-left-appear-active {
|
|
751
|
+
.ant-zoom-left-enter.ant-zoom-left-enter-active,
|
|
752
|
+
.ant-zoom-left-appear.ant-zoom-left-appear-active {
|
|
1061
753
|
animation-name: antZoomLeftIn;
|
|
1062
754
|
animation-play-state: running;
|
|
1063
755
|
}
|
|
1064
|
-
.zoom-left-leave.zoom-left-leave-active {
|
|
756
|
+
.ant-zoom-left-leave.ant-zoom-left-leave-active {
|
|
1065
757
|
animation-name: antZoomLeftOut;
|
|
1066
758
|
animation-play-state: running;
|
|
1067
759
|
pointer-events: none;
|
|
1068
760
|
}
|
|
1069
|
-
.zoom-left-enter,
|
|
1070
|
-
.zoom-left-appear {
|
|
761
|
+
.ant-zoom-left-enter,
|
|
762
|
+
.ant-zoom-left-appear {
|
|
1071
763
|
transform: scale(0);
|
|
1072
764
|
opacity: 0;
|
|
1073
765
|
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
1074
766
|
}
|
|
1075
|
-
.zoom-left-leave {
|
|
767
|
+
.ant-zoom-left-leave {
|
|
1076
768
|
animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
1077
769
|
}
|
|
1078
|
-
.zoom-right-enter,
|
|
1079
|
-
.zoom-right-appear {
|
|
770
|
+
.ant-zoom-right-enter,
|
|
771
|
+
.ant-zoom-right-appear {
|
|
1080
772
|
animation-duration: 0.2s;
|
|
1081
773
|
animation-fill-mode: both;
|
|
1082
774
|
animation-play-state: paused;
|
|
1083
775
|
}
|
|
1084
|
-
.zoom-right-leave {
|
|
776
|
+
.ant-zoom-right-leave {
|
|
1085
777
|
animation-duration: 0.2s;
|
|
1086
778
|
animation-fill-mode: both;
|
|
1087
779
|
animation-play-state: paused;
|
|
1088
780
|
}
|
|
1089
|
-
.zoom-right-enter.zoom-right-enter-active,
|
|
1090
|
-
.zoom-right-appear.zoom-right-appear-active {
|
|
781
|
+
.ant-zoom-right-enter.ant-zoom-right-enter-active,
|
|
782
|
+
.ant-zoom-right-appear.ant-zoom-right-appear-active {
|
|
1091
783
|
animation-name: antZoomRightIn;
|
|
1092
784
|
animation-play-state: running;
|
|
1093
785
|
}
|
|
1094
|
-
.zoom-right-leave.zoom-right-leave-active {
|
|
786
|
+
.ant-zoom-right-leave.ant-zoom-right-leave-active {
|
|
1095
787
|
animation-name: antZoomRightOut;
|
|
1096
788
|
animation-play-state: running;
|
|
1097
789
|
pointer-events: none;
|
|
1098
790
|
}
|
|
1099
|
-
.zoom-right-enter,
|
|
1100
|
-
.zoom-right-appear {
|
|
791
|
+
.ant-zoom-right-enter,
|
|
792
|
+
.ant-zoom-right-appear {
|
|
1101
793
|
transform: scale(0);
|
|
1102
794
|
opacity: 0;
|
|
1103
795
|
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
1104
796
|
}
|
|
1105
|
-
.zoom-right-leave {
|
|
797
|
+
.ant-zoom-right-leave {
|
|
1106
798
|
animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
1107
799
|
}
|
|
1108
800
|
@keyframes antZoomIn {
|