survey-react 1.11.14 → 1.12.1

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/defaultV2.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.11.14
2
+ * surveyjs - Survey JavaScript library v1.12.1
3
3
  * Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -542,7 +542,7 @@ sv-popup {
542
542
  align-items: center;
543
543
  justify-content: center;
544
544
  background-color: var(--background-semitransparent, rgba(144, 144, 144, 0.5));
545
- padding: calc(11 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(15 * (var(--sjs-base-unit, var(--base-unit, 8px))));
545
+ padding: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(15 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(8 * (var(--sjs-base-unit, var(--base-unit, 8px))));
546
546
  box-sizing: border-box;
547
547
  }
548
548
 
@@ -947,24 +947,26 @@ sv-popup {
947
947
  opacity: 0;
948
948
  }
949
949
 
950
- .sv-popup--animate-enter {
950
+ .sv-popup--enter {
951
951
  animation-name: fadeIn;
952
952
  animation-fill-mode: forwards;
953
953
  animation-duration: 0.15s;
954
954
  }
955
955
 
956
- .sv-popup--modal.sv-popup--animate-enter {
956
+ .sv-popup--modal.sv-popup--enter {
957
+ animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
957
958
  animation-duration: 0.25s;
958
959
  }
959
960
 
960
- .sv-popup--animate-leave {
961
+ .sv-popup--leave {
961
962
  animation-direction: reverse;
962
963
  animation-name: fadeIn;
963
964
  animation-fill-mode: forwards;
964
965
  animation-duration: 0.15s;
965
966
  }
966
967
 
967
- .sv-popup--modal.sv-popup--animate-leave {
968
+ .sv-popup--modal.sv-popup--leave {
969
+ animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
968
970
  animation-duration: 0.25s;
969
971
  }
970
972
 
@@ -972,14 +974,6 @@ sv-popup {
972
974
  opacity: 0;
973
975
  }
974
976
 
975
- @keyframes modalMoveDown {
976
- from {
977
- transform: translateY(0);
978
- }
979
- to {
980
- transform: translateY(64px);
981
- }
982
- }
983
977
  @keyframes modalMoveUp {
984
978
  from {
985
979
  transform: translateY(64px);
@@ -988,17 +982,16 @@ sv-popup {
988
982
  transform: translateY(0);
989
983
  }
990
984
  }
991
- .sv-popup--modal.sv-popup--animate-leave .sv-popup__container {
992
- animation-name: modalMoveDown;
993
- animation-fill-mode: forwards;
994
- animation-duration: 0.25s;
995
- }
996
-
997
- .sv-popup--modal.sv-popup--animate-enter .sv-popup__container {
985
+ .sv-popup--modal.sv-popup--leave .sv-popup__container, .sv-popup--modal.sv-popup--enter .sv-popup__container {
998
986
  animation-name: modalMoveUp;
987
+ animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
999
988
  animation-fill-mode: forwards;
1000
989
  animation-duration: 0.25s;
1001
990
  }
991
+ .sv-popup--modal.sv-popup--leave .sv-popup__container {
992
+ animation-direction: reverse;
993
+ animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
994
+ }
1002
995
 
1003
996
  :root {
1004
997
  --sjs-transition-duration: 150ms;
@@ -2135,15 +2128,33 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
2135
2128
  @keyframes moveInWithOverflow {
2136
2129
  from {
2137
2130
  overflow: hidden;
2138
- height: 0;
2131
+ height: var(--animation-height-from);
2132
+ margin-top: 0;
2133
+ margin-bottom: 0;
2134
+ padding-top: 0;
2135
+ padding-bottom: 0;
2136
+ border-top-width: 0;
2137
+ border-bottom-width: 0;
2139
2138
  }
2140
2139
  99% {
2141
2140
  overflow: hidden;
2142
- height: var(--animation-height);
2141
+ margin-top: var(--animation-margin-top);
2142
+ margin-bottom: var(--animation-margin-bottom);
2143
+ padding-top: var(--animation-padding-top);
2144
+ padding-bottom: var(--animation-padding-bottom);
2145
+ border-top-width: var(--animation-border-top-width);
2146
+ border-bottom-width: var(--animation-border-bottom-width);
2147
+ height: var(--animation-height-to);
2143
2148
  }
2144
2149
  to {
2145
2150
  overflow: visible;
2146
- height: var(--animation-height);
2151
+ margin-top: var(--animation-margin-top);
2152
+ margin-bottom: var(--animation-margin-bottom);
2153
+ padding-top: var(--animation-padding-top);
2154
+ padding-bottom: var(--animation-padding-bottom);
2155
+ border-top-width: var(--animation-border-top-width);
2156
+ border-bottom-width: var(--animation-border-bottom-width);
2157
+ height: var(--animation-height-to);
2147
2158
  }
2148
2159
  }
2149
2160
  @keyframes moveIn {
@@ -2334,7 +2345,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
2334
2345
  overflow: visible;
2335
2346
  }
2336
2347
  }
2337
- .sd-element-wrapper--fade-in {
2348
+ .sd-element-wrapper--enter {
2338
2349
  animation-name: elementMoveIn, fadeIn;
2339
2350
  animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
2340
2351
  animation-fill-mode: forwards;
@@ -2343,7 +2354,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
2343
2354
  opacity: 0;
2344
2355
  }
2345
2356
 
2346
- .sd-element-wrapper--fade-out {
2357
+ .sd-element-wrapper--leave {
2347
2358
  animation-name: elementMoveIn, fadeIn;
2348
2359
  animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
2349
2360
  animation-fill-mode: forwards;
@@ -2356,29 +2367,29 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
2356
2367
  box-sizing: border-box;
2357
2368
  }
2358
2369
 
2359
- .sd-element__content--fade-in,
2360
- .sd-element__content--fade-out {
2370
+ .sd-element__content--enter,
2371
+ .sd-element__content--leave {
2361
2372
  --animation-padding-top: 0;
2362
2373
  --animation-padding-bottom: 0;
2363
2374
  }
2364
2375
 
2365
- .sd-element__content--fade-in {
2366
- animation-name: fadeIn, moveInWithOverflow, paddingFadeIn;
2376
+ .sd-element__content--enter {
2377
+ animation-name: fadeIn, moveInWithOverflow;
2367
2378
  min-height: 0 !important;
2368
2379
  opacity: 0;
2369
2380
  animation-fill-mode: forwards;
2370
2381
  animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
2371
- animation-duration: var(--sjs-expand-fade-in-duration, 500ms), var(--sjs-expand-move-in-duration, 150ms), var(--sjs-expand-move-in-duration, 150ms);
2382
+ animation-duration: var(--sjs-expand-fade-in-duration, 500ms), var(--sjs-expand-move-in-duration, 150ms);
2372
2383
  animation-delay: var(--sjs-expand-fade-in-delay, 150ms), 0s, 0s;
2373
2384
  }
2374
2385
 
2375
- .sd-element__content--fade-out {
2376
- animation-name: fadeIn, moveInWithOverflow, paddingFadeIn;
2386
+ .sd-element__content--leave {
2387
+ animation-name: fadeIn, moveInWithOverflow;
2377
2388
  min-height: 0 !important;
2378
2389
  animation-direction: reverse;
2379
2390
  animation-fill-mode: forwards;
2380
2391
  animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
2381
- animation-duration: var(--sjs-collapse-fade-out-duration, 150ms), var(--sjs-collapse-move-out-duration, 250ms), var(--sjs-collapse-move-out-duration, 250ms);
2392
+ animation-duration: var(--sjs-collapse-fade-out-duration, 150ms), var(--sjs-collapse-move-out-duration, 250ms);
2382
2393
  animation-delay: 0s, var(--sjs-collapse-move-out-delay, 100ms), var(--sjs-collapse-move-out-delay, 100ms);
2383
2394
  }
2384
2395
 
@@ -3195,78 +3206,73 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
3195
3206
  }
3196
3207
  }
3197
3208
  @keyframes empty {}
3198
- .sd-table__row--fade-out,
3199
- .sd-table__row--fade-in {
3209
+ .sd-table__row--leave,
3210
+ .sd-table__row--enter {
3200
3211
  animation-name: empty;
3201
- animation-fill-mode: forwards;
3202
- --fade-in-animation-duration: calc(var(--sjs-matrix-row-fade-in-duration, 250ms) + var(--sjs-matrix-row-fade-in-delay, 150ms));
3203
- animation-duration: max(var(--fade-in-animation-duration), var(--sjs-matrix-row-move-in-duration, 150ms));
3212
+ --move-whole-animation-duration: calc(var(--move-animation-duration) + var(--move-animation-delay));
3213
+ --fade-whole-animation-duration: calc(var(--fade-animation-duration) + var(--fade-animation-delay));
3214
+ animation-duration: max(var(--fade-whole-animation-duration), var(--move-whole-animation-duration));
3204
3215
  }
3205
- .sd-table__row--fade-out > td,
3206
- .sd-table__row--fade-in > td {
3216
+ .sd-table__row--leave > td,
3217
+ .sd-table__row--enter > td {
3207
3218
  animation-name: borderAnimation;
3208
- animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
3209
- animation-duration: var(--sjs-matrix-row-move-in-duration, 150ms);
3219
+ animation-direction: var(--animation-direction);
3220
+ animation-timing-function: var(--animation-timing-function);
3221
+ animation-duration: var(--move-animation-duration);
3210
3222
  animation-fill-mode: forwards;
3223
+ animation-delay: var(--move-animation-delay);
3211
3224
  }
3212
- .sd-table__row--fade-out > td > div,
3213
- .sd-table__row--fade-in > td > div {
3225
+ .sd-table__row--leave > td > div,
3226
+ .sd-table__row--enter > td > div {
3214
3227
  animation-name: fadeIn, moveInWithOverflow;
3215
3228
  opacity: 0;
3216
- animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
3229
+ animation-direction: var(--animation-direction);
3230
+ animation-timing-function: var(--animation-timing-function);
3217
3231
  animation-fill-mode: forwards;
3218
- animation-duration: var(--sjs-matrix-row-fade-in-duration, 250ms), var(--sjs-matrix-row-move-in-duration, 150ms);
3219
- animation-delay: var(--sjs-matrix-row-fade-in-delay, 150ms), 0s;
3232
+ animation-duration: var(--fade-animation-duration), var(--move-animation-duration);
3233
+ animation-delay: var(--fade-animation-delay), var(--move-animation-delay);
3220
3234
  }
3221
3235
 
3222
- .sd-table__row--fade-out {
3223
- animation-direction: reverse;
3224
- --move-out-animation-duration: calc(var(--sjs-matrix-row-move-out-duration, 250ms) + var(--sjs-matrix-row-move-out-delay, 100ms));
3225
- animation-duration: max(var(--move-out-animation-duration), var(--sjs-matrix-row-fade-out-duration, 100ms));
3236
+ .sd-table__row--enter {
3237
+ --move-animation-delay: 0s;
3238
+ --move-animation-duration: var(--sjs-matrix-row-move-in-duration, 150ms);
3239
+ --fade-animation-duration: var(--sjs-matrix-row-fade-in-duration, 250ms);
3240
+ --fade-animation-delay: var(--sjs-matrix-row-fade-in-delay, 150ms);
3241
+ --animation-direction: normal;
3242
+ --animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
3226
3243
  }
3227
- .sd-table__row--fade-out > td {
3228
- animation-duration: var(--sjs-matrix-row-move-out-duration, 250ms);
3229
- animation-delay: var(--sjs-matrix-row-move-out-delay, 100ms);
3230
- animation-direction: reverse;
3231
- animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
3232
- }
3233
- .sd-table__row--fade-out > td > div {
3234
- animation-direction: reverse;
3235
- animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
3236
- animation-duration: var(--sjs-matrix-row-fade-out-duration, 100ms), var(--sjs-matrix-row-move-out-duration, 250ms);
3237
- animation-delay: 0s, var(--sjs-matrix-row-move-out-delay, 100ms);
3244
+
3245
+ .sd-table__row--leave {
3246
+ --move-animation-delay: var(--sjs-matrix-row-move-out-delay, 100ms);
3247
+ --move-animation-duration: var(--sjs-matrix-row-move-out-duration, 250ms);
3248
+ --fade-animation-duration: var(--sjs-matrix-row-fade-out-duration, 100ms);
3249
+ --fade-animation-delay: 0s;
3250
+ --animation-direction: reverse;
3251
+ --animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
3238
3252
  }
3239
3253
 
3240
- .sd-table__row--detail.sd-table__row--fade-in > td, .sd-table__row--detail.sd-table__row--fade-out > td {
3254
+ .sd-table__row--detail.sd-table__row--enter > td, .sd-table__row--detail.sd-table__row--leave > td {
3241
3255
  animation-name: borderAnimation, paddingAnimation;
3242
- animation-duration: var(--sjs-matrix-row-move-in-duration, 150ms);
3256
+ animation-duration: var(--move-animation-duration);
3243
3257
  animation-fill-mode: forwards;
3244
- }
3245
- .sd-table__row--detail.sd-table__row--fade-in {
3246
- --fade-in-animation-duration: calc(var(--sjs-matrix-detail-row-fade-in-duration, 500ms) + var(--sjs-matrix-detail-row-fade-in-delay, 150ms));
3247
- animation-duration: max(var(--fade-in-animation-duration), var(--sjs-matrix-detail-row-move-in-duration, 150ms));
3248
- }
3249
- .sd-table__row--detail.sd-table__row--fade-in > td {
3250
- animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
3251
- animation-duration: var(--sjs-matrix-detail-row-move-in-duration, 150ms);
3252
- }
3253
- .sd-table__row--detail.sd-table__row--fade-in > td > div {
3254
- animation-duration: var(--sjs-matrix-detail-row-fade-in-duration, 500ms), var(--sjs-matrix-detail-row-move-in-duration, 150ms);
3255
- animation-delay: var(--sjs-matrix-detail-row-fade-in-delay, 150ms), 0s;
3256
- }
3257
- .sd-table__row--detail.sd-table__row--fade-out {
3258
- --move-out-animation-duration: calc(var(--sjs-matrix-detail-row-move-out-duration, 250ms) + var(--sjs-matrix-detail-row-move-out-delay, 100ms));
3259
- animation-duration: max(var(--move-out-animation-duration), var(--sjs-matrix-detail-row-fade-out-duration, 150ms));
3260
- }
3261
- .sd-table__row--detail.sd-table__row--fade-out > td {
3262
- animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
3263
- animation-duration: var(--sjs-matrix-detail-row-move-out-duration, 250ms);
3264
- animation-delay: var(--sjs-matrix-detail-row-move-out-delay, 100ms);
3265
- animation-direction: reverse;
3266
- }
3267
- .sd-table__row--detail.sd-table__row--fade-out > td > div {
3268
- animation-duration: var(--sjs-matrix-detail-row-fade-out-duration, 150ms), var(--sjs-matrix-detail-row-move-out-duration, 250ms);
3269
- animation-delay: 0s, var(--sjs-matrix-detail-row-move-out-delay, 100ms);
3258
+ animation-direction: var(--animation-direction);
3259
+ animation-timing-function: var(--animation-timing-function);
3260
+ }
3261
+ .sd-table__row--detail.sd-table__row--enter {
3262
+ --move-animation-delay: 0s;
3263
+ --move-animation-duration: var(--sjs-matrix-detail-row-move-in-duration, 150ms);
3264
+ --fade-animation-duration: var(--sjs-matrix-detail-row-fade-in-duration, 500ms);
3265
+ --fade-animation-delay: var(--sjs-matrix-detail-row-fade-in-delay, 150ms);
3266
+ --animation-direction: normal;
3267
+ --animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
3268
+ }
3269
+ .sd-table__row--detail.sd-table__row--leave {
3270
+ --move-animation-delay: var(--sjs-matrix-detail-row-move-out-delay, 100ms);
3271
+ --move-animation-duration: var(--sjs-matrix-detail-row-move-out-duration, 250ms);
3272
+ --fade-animation-duration: var(--sjs-matrix-detail-row-fade-out-duration, 150ms);
3273
+ --fade-animation-delay: 0s;
3274
+ --animation-direction: reverse;
3275
+ --animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
3270
3276
  }
3271
3277
 
3272
3278
  .sd-table {
@@ -3956,45 +3962,38 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
3956
3962
  flex-direction: row;
3957
3963
  width: 100%;
3958
3964
  box-sizing: border-box;
3959
- --animate-margin: var(--sd-base-vertical-padding);
3960
3965
  margin-top: var(--sd-base-vertical-padding);
3961
3966
  }
3962
3967
 
3963
3968
  .sd-row.sd-page__row {
3964
3969
  margin-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
3965
- --animate-margin: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
3966
3970
  }
3967
3971
 
3968
3972
  .sd-page__row.sd-row--compact {
3969
3973
  margin-top: var(--sd-base-vertical-padding);
3970
- --animate-margin: var(--sd-base-vertical-padding);
3971
3974
  }
3972
3975
 
3973
3976
  .sd-row:first-of-type {
3974
3977
  margin-top: 0;
3975
- --animate-margin: 0;
3976
3978
  }
3977
3979
 
3978
3980
  .sd-page__title ~ .sd-row.sd-page__row:not(.sd-row--compact),
3979
3981
  .sd-page__description ~ .sd-row.sd-page__row:not(.sd-row--compact) {
3980
3982
  margin-top: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
3981
- --animate-margin: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
3982
3983
  }
3983
3984
  .sd-page__title ~ .sd-page__row.sd-row--compact,
3984
3985
  .sd-page__description ~ .sd-page__row.sd-row--compact {
3985
3986
  margin-top: var(--sd-base-vertical-padding);
3986
- --animate-margin: var(--sd-base-vertical-padding);
3987
3987
  }
3988
- .sd-page__title ~ .sd-page__row.sd-row.sd-row--fade-in.sd-row--fade-in,
3989
- .sd-page__description ~ .sd-page__row.sd-row.sd-row--fade-in.sd-row--fade-in {
3988
+ .sd-page__title ~ .sd-page__row.sd-row.sd-row--enter.sd-row-delayed-enter,
3989
+ .sd-page__description ~ .sd-page__row.sd-row.sd-row--enter.sd-row-delayed-enter {
3990
3990
  margin-top: 0;
3991
3991
  }
3992
3992
 
3993
3993
  .sd-row.sd-page__row:not(.sd-row--compact) ~ .sd-row.sd-page__row:not(.sd-row--compact) {
3994
3994
  margin-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
3995
- --animate-margin: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
3996
3995
  }
3997
- .sd-row.sd-page__row:not(.sd-row--compact) ~ .sd-page__row.sd-row.sd-row--fade-in.sd-row--fade-in {
3996
+ .sd-row.sd-page__row:not(.sd-row--compact) ~ .sd-page__row.sd-row.sd-row--enter.sd-row-delayed-enter {
3998
3997
  margin-top: 0;
3999
3998
  }
4000
3999
 
@@ -4052,21 +4051,13 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
4052
4051
  white-space: nowrap;
4053
4052
  }
4054
4053
 
4055
- @keyframes marginFadeIn {
4056
- from {
4057
- margin-top: 0;
4058
- }
4059
- to {
4060
- margin-top: var(--animate-margin);
4061
- }
4062
- }
4063
- .sd-row.sd-row--fade-in {
4054
+ .sd-row.sd-row--enter {
4064
4055
  margin-top: 0;
4065
4056
  }
4066
4057
 
4067
- .sd-row--fade-in {
4058
+ .sd-row--enter {
4068
4059
  animation-fill-mode: forwards;
4069
- animation-name: fadeIn, moveInWithOverflow, marginFadeIn;
4060
+ animation-name: fadeIn, moveInWithOverflow;
4070
4061
  min-height: 0 !important;
4071
4062
  opacity: 0;
4072
4063
  height: 0;
@@ -4075,12 +4066,12 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
4075
4066
  animation-duration: var(--sjs-row-fade-in-duration, 500ms), var(--sjs-row-move-in-duration, 150ms), var(--sjs-row-move-in-duration, 150ms);
4076
4067
  }
4077
4068
 
4078
- .sd-row--delayed-fade-in {
4069
+ .sd-row--delayed-enter {
4079
4070
  animation-delay: calc(var(--sjs-row-fade-in-delay, 150ms) + var(--sjs-row-fade-in-animation-delay, 400ms)), var(--sjs-row-fade-in-animation-delay, 400ms), var(--sjs-row-fade-in-animation-delay, 400ms);
4080
4071
  }
4081
4072
 
4082
- .sd-row--fade-out {
4083
- animation-name: fadeIn, moveInWithOverflow, marginFadeIn;
4073
+ .sd-row--leave {
4074
+ animation-name: fadeIn, moveInWithOverflow;
4084
4075
  animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
4085
4076
  animation-fill-mode: forwards;
4086
4077
  animation-direction: reverse;
@@ -4089,11 +4080,11 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
4089
4080
  animation-duration: var(--sjs-row-fade-out-duration, 150ms), var(--sjs-row-move-out-duration, 250ms), var(--sjs-row-move-out-duration, 250ms);
4090
4081
  }
4091
4082
 
4092
- .sd-row--fade-in .sd-element-wrapper--fade-in {
4083
+ .sd-row--enter .sd-element-wrapper--enter {
4093
4084
  animation: none;
4094
4085
  }
4095
4086
 
4096
- .sd-row--fade-out .sd-element-wrapper--fade-out {
4087
+ .sd-row--leave .sd-element-wrapper--leave {
4097
4088
  animation: none;
4098
4089
  }
4099
4090
 
@@ -4356,6 +4347,38 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
4356
4347
  width: 100%;
4357
4348
  }
4358
4349
 
4350
+ .sd-item--enter,
4351
+ .sd-item--leave {
4352
+ animation-name: moveInWithOverflow, fadeIn;
4353
+ opacity: 0;
4354
+ animation-fill-mode: forwards;
4355
+ animation-timing-function: linear;
4356
+ animation-direction: var(--animation-direction);
4357
+ animation-duration: var(--move-animation-duration), var(--fade-animation-duration);
4358
+ animation-delay: var(--move-animation-delay), var(--fade-animation-delay);
4359
+ }
4360
+
4361
+ .sd-item--enter {
4362
+ --animation-direction: normal;
4363
+ --move-animation-duration: var(--sjs-ranking-move-in-duration, 150ms);
4364
+ --move-animation-delay: 0s;
4365
+ --fade-animation-duration: var(--sjs-ranking-fade-in-duration, 100ms);
4366
+ --fade-animation-delay: var(--sjs-ranking-fade-in-delay, 150ms);
4367
+ }
4368
+
4369
+ .sd-item--leave {
4370
+ --animation-direction: reverse;
4371
+ --move-animation-duration: var(--sjs-ranking-move-out-duration, 150ms);
4372
+ --move-animation-delay: var(--sjs-ranking-move-out-delay, 0ms);
4373
+ --fade-animation-duration: var(--sjs-ranking-fade-out-duration, 100ms);
4374
+ --fade-animation-delay: 0s;
4375
+ }
4376
+
4377
+ div[class*=sv-q-column-]:not(:first-of-type) .sd-item--enter {
4378
+ --move-animation-duration: 0s;
4379
+ --fade-animation-delay: 0s;
4380
+ }
4381
+
4359
4382
  .sd-checkbox__decorator {
4360
4383
  border-radius: calc(0.5 * (var(--sjs-corner-radius, 4px)));
4361
4384
  }
@@ -5415,7 +5438,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5415
5438
  margin-inline-start: calc(-0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
5416
5439
  }
5417
5440
 
5418
- .sv-dropdown-popup.sv-single-select-list.sv-popup--animate-leave .sd-list__item.sv-list__item--selected .sv-list__item-body {
5441
+ .sv-dropdown-popup.sv-single-select-list.sv-popup--leave .sd-list__item.sv-list__item--selected .sv-list__item-body {
5419
5442
  font-weight: normal;
5420
5443
  color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
5421
5444
  background-color: transparent;
@@ -6399,8 +6422,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
6399
6422
  transform: translateX(0);
6400
6423
  }
6401
6424
  }
6402
- .sd-paneldynamic__panel-wrapper--fade-in.sv-pd-animation-left,
6403
- .sd-paneldynamic__panel-wrapper--fade-in.sv-pd-animation-right {
6425
+ .sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-left,
6426
+ .sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-right {
6404
6427
  --sjs-pd-tab-animation-delay: 0ms;
6405
6428
  animation-name: movePanel, changeHeight, paddingFadeIn, fadeIn;
6406
6429
  animation-duration: var(--sjs-pd-tab-move-in-duration, 250ms), var(--sjs-pd-tab-height-change-duration, 250ms), var(--sjs-pd-tab-height-change-duration, 250ms), var(--sjs-pd-tab-fade-in-duration, 250ms);
@@ -6415,16 +6438,16 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
6415
6438
  --animation-padding-bottom: calc(1 * var(--sd-base-padding));
6416
6439
  }
6417
6440
 
6418
- .sd-paneldynamic__panel-wrapper--fade-in.sv-pd-animation-left {
6441
+ .sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-left {
6419
6442
  --sjs-pd-tab-move-margin: calc(1 * var(--sjs-pd-tab-move-in-margin, 50%));
6420
6443
  }
6421
6444
 
6422
- .sd-paneldynamic__panel-wrapper--fade-in.sv-pd-animation-right {
6445
+ .sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-right {
6423
6446
  --sjs-pd-tab-move-margin: calc(-1 * var(--sjs-pd-tab-move-in-margin, 50%));
6424
6447
  }
6425
6448
 
6426
- .sd-paneldynamic__panel-wrapper--fade-out.sv-pd-animation-left,
6427
- .sd-paneldynamic__panel-wrapper--fade-out.sv-pd-animation-right {
6449
+ .sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-left,
6450
+ .sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-right {
6428
6451
  animation-name: fadeIn, movePanel;
6429
6452
  animation-duration: var(--sjs-pd-tab-fade-out-duration, 250ms), var(--sjs-pd-tab-move-out-duration, 250ms);
6430
6453
  animation-delay: var(--sjs-pd-tab-fade-out-delay, 0ms), var(--sjs-pd-tab-move-out-delay, 0ms);
@@ -6437,15 +6460,15 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
6437
6460
  width: calc(100% - 2 * var(--sd-base-padding));
6438
6461
  }
6439
6462
 
6440
- .sd-paneldynamic__panel-wrapper--fade-out.sv-pd-animation-left {
6463
+ .sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-left {
6441
6464
  --sjs-pd-tab-move-margin: calc(-1 * var(--sjs-pd-tab-move-out-margin, 50%));
6442
6465
  }
6443
6466
 
6444
- .sd-paneldynamic__panel-wrapper--fade-out.sv-pd-animation-right {
6467
+ .sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-right {
6445
6468
  --sjs-pd-tab-move-margin: calc(1 * var(--sjs-pd-tab-move-out-margin, 50%));
6446
6469
  }
6447
6470
 
6448
- .sd-paneldynamic__panel-wrapper--fade-in.sv-pd-animation-adding {
6471
+ .sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-adding {
6449
6472
  animation-name: fadeIn, changeHeight, paddingFadeIn;
6450
6473
  animation-duration: var(--sjs-pd-tab-add-fade-in-duration, 500ms), var(--sjs-pd-tab-height-change-duration, 250ms), var(--sjs-pd-tab-height-change-duration, 250ms);
6451
6474
  animation-delay: calc(var(--sjs-pd-tab-add-fade-in-delay, 250ms) + var(--sjs-pd-tab-animation-delay)), calc(var(--sjs-pd-tab-height-change-delay, 0ms) + var(--sjs-pd-tab-animation-delay)), calc(var(--sjs-pd-tab-height-change-delay, 0ms) + var(--sjs-pd-tab-animation-delay));
@@ -6454,11 +6477,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
6454
6477
  transform: translateX(0);
6455
6478
  }
6456
6479
 
6457
- .sd-paneldynamic__panel-wrapper--fade-in.sv-pd-animation-removing {
6480
+ .sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-removing {
6458
6481
  --sjs-pd-tab-animation-delay: var(--sjs-pd-tab-remove-fade-in-delay, 150ms);
6459
6482
  }
6460
6483
 
6461
- .sd-paneldynamic__panel-wrapper--fade-out.sv-pd-animation-removing {
6484
+ .sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-removing {
6462
6485
  animation-name: fadeIn;
6463
6486
  animation-duration: var(--sjs-pd-tab-remove-fade-out-duration, 150ms);
6464
6487
  animation-delay: var(--sjs-pd-tab-remove-fade-out-delay, 0ms);
@@ -6471,23 +6494,23 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
6471
6494
  width: calc(100% - 2 * var(--sd-base-padding));
6472
6495
  }
6473
6496
 
6474
- .sd-paneldynamic__panel-wrapper--fade-in,
6475
- .sd-paneldynamic__panel-wrapper--fade-out {
6476
- animation-name: fadeIn, moveInWithOverflow, paddingFadeIn;
6497
+ .sd-paneldynamic__panel-wrapper--enter,
6498
+ .sd-paneldynamic__panel-wrapper--leave {
6499
+ animation-name: fadeIn, moveInWithOverflow;
6477
6500
  animation-fill-mode: forwards;
6478
6501
  --animation-padding-top: 0;
6479
6502
  --animation-padding-bottom: calc(1 * var(--sd-base-padding));
6480
6503
  min-height: 0 !important;
6481
6504
  }
6482
6505
 
6483
- .sd-paneldynamic__panel-wrapper--fade-in {
6506
+ .sd-paneldynamic__panel-wrapper--enter {
6484
6507
  opacity: 0;
6485
6508
  animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
6486
6509
  animation-duration: var(--sjs-pd-list-fade-in-duration, 500ms), var(--sjs-pd-list-move-in-duration, 250ms), var(--sjs-pd-list-move-in-duration, 250ms);
6487
6510
  animation-delay: var(--sjs-pd-list-fade-in-delay, 250ms), 0s, 0s;
6488
6511
  }
6489
6512
 
6490
- .sd-paneldynamic__panel-wrapper--fade-out {
6513
+ .sd-paneldynamic__panel-wrapper--leave {
6491
6514
  animation-direction: reverse;
6492
6515
  animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
6493
6516
  animation-duration: var(--sjs-pd-list-fade-out-duration, 150ms), var(--sjs-pd-list-move-out-duration, 250ms), var(--sjs-pd-list-move-out-duration, 250ms);