survey-react 1.11.14 → 1.12.2

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.2
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 {
@@ -2245,6 +2256,8 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
2245
2256
  white-space: nowrap;
2246
2257
  flex-shrink: 0;
2247
2258
  }
2259
+
2260
+ .sd-page__num + span,
2248
2261
  .sd-element__num + span {
2249
2262
  float: left;
2250
2263
  width: 0;
@@ -2334,7 +2347,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
2334
2347
  overflow: visible;
2335
2348
  }
2336
2349
  }
2337
- .sd-element-wrapper--fade-in {
2350
+ .sd-element-wrapper--enter {
2338
2351
  animation-name: elementMoveIn, fadeIn;
2339
2352
  animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
2340
2353
  animation-fill-mode: forwards;
@@ -2343,7 +2356,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
2343
2356
  opacity: 0;
2344
2357
  }
2345
2358
 
2346
- .sd-element-wrapper--fade-out {
2359
+ .sd-element-wrapper--leave {
2347
2360
  animation-name: elementMoveIn, fadeIn;
2348
2361
  animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
2349
2362
  animation-fill-mode: forwards;
@@ -2356,29 +2369,29 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
2356
2369
  box-sizing: border-box;
2357
2370
  }
2358
2371
 
2359
- .sd-element__content--fade-in,
2360
- .sd-element__content--fade-out {
2372
+ .sd-element__content--enter,
2373
+ .sd-element__content--leave {
2361
2374
  --animation-padding-top: 0;
2362
2375
  --animation-padding-bottom: 0;
2363
2376
  }
2364
2377
 
2365
- .sd-element__content--fade-in {
2366
- animation-name: fadeIn, moveInWithOverflow, paddingFadeIn;
2378
+ .sd-element__content--enter {
2379
+ animation-name: fadeIn, moveInWithOverflow;
2367
2380
  min-height: 0 !important;
2368
2381
  opacity: 0;
2369
2382
  animation-fill-mode: forwards;
2370
2383
  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);
2384
+ animation-duration: var(--sjs-expand-fade-in-duration, 500ms), var(--sjs-expand-move-in-duration, 150ms);
2372
2385
  animation-delay: var(--sjs-expand-fade-in-delay, 150ms), 0s, 0s;
2373
2386
  }
2374
2387
 
2375
- .sd-element__content--fade-out {
2376
- animation-name: fadeIn, moveInWithOverflow, paddingFadeIn;
2388
+ .sd-element__content--leave {
2389
+ animation-name: fadeIn, moveInWithOverflow;
2377
2390
  min-height: 0 !important;
2378
2391
  animation-direction: reverse;
2379
2392
  animation-fill-mode: forwards;
2380
2393
  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);
2394
+ animation-duration: var(--sjs-collapse-fade-out-duration, 150ms), var(--sjs-collapse-move-out-duration, 250ms);
2382
2395
  animation-delay: 0s, var(--sjs-collapse-move-out-delay, 100ms), var(--sjs-collapse-move-out-delay, 100ms);
2383
2396
  }
2384
2397
 
@@ -3195,78 +3208,73 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
3195
3208
  }
3196
3209
  }
3197
3210
  @keyframes empty {}
3198
- .sd-table__row--fade-out,
3199
- .sd-table__row--fade-in {
3211
+ .sd-table__row--leave,
3212
+ .sd-table__row--enter {
3200
3213
  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));
3214
+ --move-whole-animation-duration: calc(var(--move-animation-duration) + var(--move-animation-delay));
3215
+ --fade-whole-animation-duration: calc(var(--fade-animation-duration) + var(--fade-animation-delay));
3216
+ animation-duration: max(var(--fade-whole-animation-duration), var(--move-whole-animation-duration));
3204
3217
  }
3205
- .sd-table__row--fade-out > td,
3206
- .sd-table__row--fade-in > td {
3218
+ .sd-table__row--leave > td,
3219
+ .sd-table__row--enter > td {
3207
3220
  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);
3221
+ animation-direction: var(--animation-direction);
3222
+ animation-timing-function: var(--animation-timing-function);
3223
+ animation-duration: var(--move-animation-duration);
3210
3224
  animation-fill-mode: forwards;
3225
+ animation-delay: var(--move-animation-delay);
3211
3226
  }
3212
- .sd-table__row--fade-out > td > div,
3213
- .sd-table__row--fade-in > td > div {
3227
+ .sd-table__row--leave > td > div,
3228
+ .sd-table__row--enter > td > div {
3214
3229
  animation-name: fadeIn, moveInWithOverflow;
3215
3230
  opacity: 0;
3216
- animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
3231
+ animation-direction: var(--animation-direction);
3232
+ animation-timing-function: var(--animation-timing-function);
3217
3233
  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;
3234
+ animation-duration: var(--fade-animation-duration), var(--move-animation-duration);
3235
+ animation-delay: var(--fade-animation-delay), var(--move-animation-delay);
3220
3236
  }
3221
3237
 
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));
3226
- }
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);
3238
+ .sd-table__row--enter {
3239
+ --move-animation-delay: 0s;
3240
+ --move-animation-duration: var(--sjs-matrix-row-move-in-duration, 150ms);
3241
+ --fade-animation-duration: var(--sjs-matrix-row-fade-in-duration, 250ms);
3242
+ --fade-animation-delay: var(--sjs-matrix-row-fade-in-delay, 150ms);
3243
+ --animation-direction: normal;
3244
+ --animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
3232
3245
  }
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);
3246
+
3247
+ .sd-table__row--leave {
3248
+ --move-animation-delay: var(--sjs-matrix-row-move-out-delay, 100ms);
3249
+ --move-animation-duration: var(--sjs-matrix-row-move-out-duration, 250ms);
3250
+ --fade-animation-duration: var(--sjs-matrix-row-fade-out-duration, 100ms);
3251
+ --fade-animation-delay: 0s;
3252
+ --animation-direction: reverse;
3253
+ --animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
3238
3254
  }
3239
3255
 
3240
- .sd-table__row--detail.sd-table__row--fade-in > td, .sd-table__row--detail.sd-table__row--fade-out > td {
3256
+ .sd-table__row--detail.sd-table__row--enter > td, .sd-table__row--detail.sd-table__row--leave > td {
3241
3257
  animation-name: borderAnimation, paddingAnimation;
3242
- animation-duration: var(--sjs-matrix-row-move-in-duration, 150ms);
3258
+ animation-duration: var(--move-animation-duration);
3243
3259
  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);
3260
+ animation-direction: var(--animation-direction);
3261
+ animation-timing-function: var(--animation-timing-function);
3262
+ }
3263
+ .sd-table__row--detail.sd-table__row--enter {
3264
+ --move-animation-delay: 0s;
3265
+ --move-animation-duration: var(--sjs-matrix-detail-row-move-in-duration, 150ms);
3266
+ --fade-animation-duration: var(--sjs-matrix-detail-row-fade-in-duration, 500ms);
3267
+ --fade-animation-delay: var(--sjs-matrix-detail-row-fade-in-delay, 150ms);
3268
+ --animation-direction: normal;
3269
+ --animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
3270
+ }
3271
+ .sd-table__row--detail.sd-table__row--leave {
3272
+ --move-animation-delay: var(--sjs-matrix-detail-row-move-out-delay, 100ms);
3273
+ --move-animation-duration: var(--sjs-matrix-detail-row-move-out-duration, 250ms);
3274
+ --fade-animation-duration: var(--sjs-matrix-detail-row-fade-out-duration, 150ms);
3275
+ --fade-animation-delay: 0s;
3276
+ --animation-direction: reverse;
3277
+ --animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
3270
3278
  }
3271
3279
 
3272
3280
  .sd-table {
@@ -3956,45 +3964,38 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
3956
3964
  flex-direction: row;
3957
3965
  width: 100%;
3958
3966
  box-sizing: border-box;
3959
- --animate-margin: var(--sd-base-vertical-padding);
3960
3967
  margin-top: var(--sd-base-vertical-padding);
3961
3968
  }
3962
3969
 
3963
3970
  .sd-row.sd-page__row {
3964
3971
  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
3972
  }
3967
3973
 
3968
3974
  .sd-page__row.sd-row--compact {
3969
3975
  margin-top: var(--sd-base-vertical-padding);
3970
- --animate-margin: var(--sd-base-vertical-padding);
3971
3976
  }
3972
3977
 
3973
3978
  .sd-row:first-of-type {
3974
3979
  margin-top: 0;
3975
- --animate-margin: 0;
3976
3980
  }
3977
3981
 
3978
3982
  .sd-page__title ~ .sd-row.sd-page__row:not(.sd-row--compact),
3979
3983
  .sd-page__description ~ .sd-row.sd-page__row:not(.sd-row--compact) {
3980
3984
  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
3985
  }
3983
3986
  .sd-page__title ~ .sd-page__row.sd-row--compact,
3984
3987
  .sd-page__description ~ .sd-page__row.sd-row--compact {
3985
3988
  margin-top: var(--sd-base-vertical-padding);
3986
- --animate-margin: var(--sd-base-vertical-padding);
3987
3989
  }
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 {
3990
+ .sd-page__title ~ .sd-page__row.sd-row.sd-row--enter.sd-row-delayed-enter,
3991
+ .sd-page__description ~ .sd-page__row.sd-row.sd-row--enter.sd-row-delayed-enter {
3990
3992
  margin-top: 0;
3991
3993
  }
3992
3994
 
3993
3995
  .sd-row.sd-page__row:not(.sd-row--compact) ~ .sd-row.sd-page__row:not(.sd-row--compact) {
3994
3996
  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
3997
  }
3997
- .sd-row.sd-page__row:not(.sd-row--compact) ~ .sd-page__row.sd-row.sd-row--fade-in.sd-row--fade-in {
3998
+ .sd-row.sd-page__row:not(.sd-row--compact) ~ .sd-page__row.sd-row.sd-row--enter.sd-row-delayed-enter {
3998
3999
  margin-top: 0;
3999
4000
  }
4000
4001
 
@@ -4052,21 +4053,13 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
4052
4053
  white-space: nowrap;
4053
4054
  }
4054
4055
 
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 {
4056
+ .sd-row.sd-row--enter {
4064
4057
  margin-top: 0;
4065
4058
  }
4066
4059
 
4067
- .sd-row--fade-in {
4060
+ .sd-row--enter {
4068
4061
  animation-fill-mode: forwards;
4069
- animation-name: fadeIn, moveInWithOverflow, marginFadeIn;
4062
+ animation-name: fadeIn, moveInWithOverflow;
4070
4063
  min-height: 0 !important;
4071
4064
  opacity: 0;
4072
4065
  height: 0;
@@ -4075,12 +4068,12 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
4075
4068
  animation-duration: var(--sjs-row-fade-in-duration, 500ms), var(--sjs-row-move-in-duration, 150ms), var(--sjs-row-move-in-duration, 150ms);
4076
4069
  }
4077
4070
 
4078
- .sd-row--delayed-fade-in {
4071
+ .sd-row--delayed-enter {
4079
4072
  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
4073
  }
4081
4074
 
4082
- .sd-row--fade-out {
4083
- animation-name: fadeIn, moveInWithOverflow, marginFadeIn;
4075
+ .sd-row--leave {
4076
+ animation-name: fadeIn, moveInWithOverflow;
4084
4077
  animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
4085
4078
  animation-fill-mode: forwards;
4086
4079
  animation-direction: reverse;
@@ -4089,11 +4082,11 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
4089
4082
  animation-duration: var(--sjs-row-fade-out-duration, 150ms), var(--sjs-row-move-out-duration, 250ms), var(--sjs-row-move-out-duration, 250ms);
4090
4083
  }
4091
4084
 
4092
- .sd-row--fade-in .sd-element-wrapper--fade-in {
4085
+ .sd-row--enter .sd-element-wrapper--enter {
4093
4086
  animation: none;
4094
4087
  }
4095
4088
 
4096
- .sd-row--fade-out .sd-element-wrapper--fade-out {
4089
+ .sd-row--leave .sd-element-wrapper--leave {
4097
4090
  animation: none;
4098
4091
  }
4099
4092
 
@@ -4356,6 +4349,38 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
4356
4349
  width: 100%;
4357
4350
  }
4358
4351
 
4352
+ .sd-item--enter,
4353
+ .sd-item--leave {
4354
+ animation-name: moveInWithOverflow, fadeIn;
4355
+ opacity: 0;
4356
+ animation-fill-mode: forwards;
4357
+ animation-timing-function: linear;
4358
+ animation-direction: var(--animation-direction);
4359
+ animation-duration: var(--move-animation-duration), var(--fade-animation-duration);
4360
+ animation-delay: var(--move-animation-delay), var(--fade-animation-delay);
4361
+ }
4362
+
4363
+ .sd-item--enter {
4364
+ --animation-direction: normal;
4365
+ --move-animation-duration: var(--sjs-ranking-move-in-duration, 150ms);
4366
+ --move-animation-delay: 0s;
4367
+ --fade-animation-duration: var(--sjs-ranking-fade-in-duration, 100ms);
4368
+ --fade-animation-delay: var(--sjs-ranking-fade-in-delay, 150ms);
4369
+ }
4370
+
4371
+ .sd-item--leave {
4372
+ --animation-direction: reverse;
4373
+ --move-animation-duration: var(--sjs-ranking-move-out-duration, 150ms);
4374
+ --move-animation-delay: var(--sjs-ranking-move-out-delay, 0ms);
4375
+ --fade-animation-duration: var(--sjs-ranking-fade-out-duration, 100ms);
4376
+ --fade-animation-delay: 0s;
4377
+ }
4378
+
4379
+ div[class*=sv-q-column-]:not(:first-of-type) .sd-item--enter {
4380
+ --move-animation-duration: 0s;
4381
+ --fade-animation-delay: 0s;
4382
+ }
4383
+
4359
4384
  .sd-checkbox__decorator {
4360
4385
  border-radius: calc(0.5 * (var(--sjs-corner-radius, 4px)));
4361
4386
  }
@@ -5415,7 +5440,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5415
5440
  margin-inline-start: calc(-0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
5416
5441
  }
5417
5442
 
5418
- .sv-dropdown-popup.sv-single-select-list.sv-popup--animate-leave .sd-list__item.sv-list__item--selected .sv-list__item-body {
5443
+ .sv-dropdown-popup.sv-single-select-list.sv-popup--leave .sd-list__item.sv-list__item--selected .sv-list__item-body {
5419
5444
  font-weight: normal;
5420
5445
  color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
5421
5446
  background-color: transparent;
@@ -6399,8 +6424,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
6399
6424
  transform: translateX(0);
6400
6425
  }
6401
6426
  }
6402
- .sd-paneldynamic__panel-wrapper--fade-in.sv-pd-animation-left,
6403
- .sd-paneldynamic__panel-wrapper--fade-in.sv-pd-animation-right {
6427
+ .sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-left,
6428
+ .sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-right {
6404
6429
  --sjs-pd-tab-animation-delay: 0ms;
6405
6430
  animation-name: movePanel, changeHeight, paddingFadeIn, fadeIn;
6406
6431
  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 +6440,16 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
6415
6440
  --animation-padding-bottom: calc(1 * var(--sd-base-padding));
6416
6441
  }
6417
6442
 
6418
- .sd-paneldynamic__panel-wrapper--fade-in.sv-pd-animation-left {
6443
+ .sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-left {
6419
6444
  --sjs-pd-tab-move-margin: calc(1 * var(--sjs-pd-tab-move-in-margin, 50%));
6420
6445
  }
6421
6446
 
6422
- .sd-paneldynamic__panel-wrapper--fade-in.sv-pd-animation-right {
6447
+ .sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-right {
6423
6448
  --sjs-pd-tab-move-margin: calc(-1 * var(--sjs-pd-tab-move-in-margin, 50%));
6424
6449
  }
6425
6450
 
6426
- .sd-paneldynamic__panel-wrapper--fade-out.sv-pd-animation-left,
6427
- .sd-paneldynamic__panel-wrapper--fade-out.sv-pd-animation-right {
6451
+ .sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-left,
6452
+ .sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-right {
6428
6453
  animation-name: fadeIn, movePanel;
6429
6454
  animation-duration: var(--sjs-pd-tab-fade-out-duration, 250ms), var(--sjs-pd-tab-move-out-duration, 250ms);
6430
6455
  animation-delay: var(--sjs-pd-tab-fade-out-delay, 0ms), var(--sjs-pd-tab-move-out-delay, 0ms);
@@ -6437,15 +6462,15 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
6437
6462
  width: calc(100% - 2 * var(--sd-base-padding));
6438
6463
  }
6439
6464
 
6440
- .sd-paneldynamic__panel-wrapper--fade-out.sv-pd-animation-left {
6465
+ .sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-left {
6441
6466
  --sjs-pd-tab-move-margin: calc(-1 * var(--sjs-pd-tab-move-out-margin, 50%));
6442
6467
  }
6443
6468
 
6444
- .sd-paneldynamic__panel-wrapper--fade-out.sv-pd-animation-right {
6469
+ .sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-right {
6445
6470
  --sjs-pd-tab-move-margin: calc(1 * var(--sjs-pd-tab-move-out-margin, 50%));
6446
6471
  }
6447
6472
 
6448
- .sd-paneldynamic__panel-wrapper--fade-in.sv-pd-animation-adding {
6473
+ .sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-adding {
6449
6474
  animation-name: fadeIn, changeHeight, paddingFadeIn;
6450
6475
  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
6476
  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 +6479,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
6454
6479
  transform: translateX(0);
6455
6480
  }
6456
6481
 
6457
- .sd-paneldynamic__panel-wrapper--fade-in.sv-pd-animation-removing {
6482
+ .sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-removing {
6458
6483
  --sjs-pd-tab-animation-delay: var(--sjs-pd-tab-remove-fade-in-delay, 150ms);
6459
6484
  }
6460
6485
 
6461
- .sd-paneldynamic__panel-wrapper--fade-out.sv-pd-animation-removing {
6486
+ .sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-removing {
6462
6487
  animation-name: fadeIn;
6463
6488
  animation-duration: var(--sjs-pd-tab-remove-fade-out-duration, 150ms);
6464
6489
  animation-delay: var(--sjs-pd-tab-remove-fade-out-delay, 0ms);
@@ -6471,23 +6496,23 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
6471
6496
  width: calc(100% - 2 * var(--sd-base-padding));
6472
6497
  }
6473
6498
 
6474
- .sd-paneldynamic__panel-wrapper--fade-in,
6475
- .sd-paneldynamic__panel-wrapper--fade-out {
6476
- animation-name: fadeIn, moveInWithOverflow, paddingFadeIn;
6499
+ .sd-paneldynamic__panel-wrapper--enter,
6500
+ .sd-paneldynamic__panel-wrapper--leave {
6501
+ animation-name: fadeIn, moveInWithOverflow;
6477
6502
  animation-fill-mode: forwards;
6478
6503
  --animation-padding-top: 0;
6479
6504
  --animation-padding-bottom: calc(1 * var(--sd-base-padding));
6480
6505
  min-height: 0 !important;
6481
6506
  }
6482
6507
 
6483
- .sd-paneldynamic__panel-wrapper--fade-in {
6508
+ .sd-paneldynamic__panel-wrapper--enter {
6484
6509
  opacity: 0;
6485
6510
  animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
6486
6511
  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
6512
  animation-delay: var(--sjs-pd-list-fade-in-delay, 250ms), 0s, 0s;
6488
6513
  }
6489
6514
 
6490
- .sd-paneldynamic__panel-wrapper--fade-out {
6515
+ .sd-paneldynamic__panel-wrapper--leave {
6491
6516
  animation-direction: reverse;
6492
6517
  animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
6493
6518
  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);