survey-react 1.9.139 → 1.10.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 +295 -52
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +2 -1
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.css.map +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +186 -20
- package/survey.react.js +818 -255
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/defaultV2.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.
|
2
|
+
* surveyjs - Survey JavaScript library v1.10.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
|
*/
|
@@ -1875,6 +1875,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1875
1875
|
background: var(--sjs-general-backcolor, var(--background, #fff));
|
1876
1876
|
box-sizing: border-box;
|
1877
1877
|
width: 100%;
|
1878
|
+
min-width: calc(30 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1878
1879
|
outline: none;
|
1879
1880
|
font-size: var(--sjs-font-size, 16px);
|
1880
1881
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
@@ -2004,23 +2005,44 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2004
2005
|
opacity: 1;
|
2005
2006
|
}
|
2006
2007
|
}
|
2007
|
-
@keyframes
|
2008
|
+
@keyframes changeHeight {
|
2008
2009
|
from {
|
2009
|
-
height:
|
2010
|
+
height: var(--animation-height-from);
|
2010
2011
|
}
|
2011
2012
|
to {
|
2012
|
-
height: var(--animation-height);
|
2013
|
+
height: var(--animation-height-to);
|
2013
2014
|
}
|
2014
2015
|
}
|
2015
|
-
@keyframes
|
2016
|
-
|
2016
|
+
@keyframes moveInWithOverflow {
|
2017
|
+
from {
|
2017
2018
|
overflow: hidden;
|
2019
|
+
height: 0;
|
2018
2020
|
}
|
2019
2021
|
99% {
|
2020
2022
|
overflow: hidden;
|
2023
|
+
height: var(--animation-height);
|
2021
2024
|
}
|
2022
|
-
|
2025
|
+
to {
|
2023
2026
|
overflow: visible;
|
2027
|
+
height: var(--animation-height);
|
2028
|
+
}
|
2029
|
+
}
|
2030
|
+
@keyframes moveIn {
|
2031
|
+
from {
|
2032
|
+
height: 0;
|
2033
|
+
}
|
2034
|
+
to {
|
2035
|
+
height: var(--animation-height);
|
2036
|
+
}
|
2037
|
+
}
|
2038
|
+
@keyframes paddingFadeIn {
|
2039
|
+
from {
|
2040
|
+
padding-top: 0;
|
2041
|
+
padding-bottom: 0;
|
2042
|
+
}
|
2043
|
+
to {
|
2044
|
+
padding-bottom: var(--animation-padding-bottom);
|
2045
|
+
padding-top: var(--animation-padding-top);
|
2024
2046
|
}
|
2025
2047
|
}
|
2026
2048
|
.sd-element {
|
@@ -2080,6 +2102,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2080
2102
|
.sd-element__title .sv-string-viewer {
|
2081
2103
|
white-space: normal;
|
2082
2104
|
}
|
2105
|
+
.sd-element__title .sv-string-viewer.sv-string-viewer--multiline {
|
2106
|
+
white-space: pre-wrap;
|
2107
|
+
}
|
2083
2108
|
|
2084
2109
|
.sd-element__num {
|
2085
2110
|
float: left;
|
@@ -2107,6 +2132,11 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2107
2132
|
[style*="direction: rtl"] .sd-element__num {
|
2108
2133
|
float: right;
|
2109
2134
|
}
|
2135
|
+
[dir=rtl] .sd-element__title--expandable:before,
|
2136
|
+
[style*="direction:rtl"] .sd-element__title--expandable:before,
|
2137
|
+
[style*="direction: rtl"] .sd-element__title--expandable:before {
|
2138
|
+
transform: rotate(180deg);
|
2139
|
+
}
|
2110
2140
|
|
2111
2141
|
.sd-element__title--num-inline .sd-element__num {
|
2112
2142
|
float: none;
|
@@ -2134,7 +2164,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2134
2164
|
height: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2135
2165
|
width: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2136
2166
|
position: absolute;
|
2137
|
-
|
2167
|
+
inset-inline-start: calc(-3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2138
2168
|
top: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2139
2169
|
transition-property: transform;
|
2140
2170
|
}
|
@@ -2199,16 +2229,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2199
2229
|
animation-delay: var(--sjs-element-move-out-delay, 0ms), 0s;
|
2200
2230
|
}
|
2201
2231
|
|
2202
|
-
@keyframes paddingFadeIn {
|
2203
|
-
from {
|
2204
|
-
padding-top: 0;
|
2205
|
-
padding-bottom: 0;
|
2206
|
-
}
|
2207
|
-
to {
|
2208
|
-
padding-bottom: var(--animation-padding-bottom);
|
2209
|
-
padding-top: var(--animation-padding-top);
|
2210
|
-
}
|
2211
|
-
}
|
2212
2232
|
.sd-element__content {
|
2213
2233
|
box-sizing: border-box;
|
2214
2234
|
}
|
@@ -2220,23 +2240,23 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2220
2240
|
}
|
2221
2241
|
|
2222
2242
|
.sd-element__content--fade-in {
|
2223
|
-
animation-name: fadeIn,
|
2243
|
+
animation-name: fadeIn, moveInWithOverflow, paddingFadeIn;
|
2224
2244
|
min-height: 0 !important;
|
2225
2245
|
opacity: 0;
|
2226
2246
|
animation-fill-mode: forwards;
|
2227
2247
|
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
2228
|
-
animation-duration: var(--sjs-expand-fade-in-duration, 500ms), var(--sjs-expand-move-in-duration, 150ms), var(--sjs-expand-move-in-duration, 150ms)
|
2229
|
-
animation-delay: var(--sjs-expand-fade-in-delay, 150ms), 0s, 0s
|
2248
|
+
animation-duration: var(--sjs-expand-fade-in-duration, 500ms), var(--sjs-expand-move-in-duration, 150ms), var(--sjs-expand-move-in-duration, 150ms);
|
2249
|
+
animation-delay: var(--sjs-expand-fade-in-delay, 150ms), 0s, 0s;
|
2230
2250
|
}
|
2231
2251
|
|
2232
2252
|
.sd-element__content--fade-out {
|
2233
|
-
animation-name: fadeIn,
|
2253
|
+
animation-name: fadeIn, moveInWithOverflow, paddingFadeIn;
|
2234
2254
|
min-height: 0 !important;
|
2235
2255
|
animation-direction: reverse;
|
2236
2256
|
animation-fill-mode: forwards;
|
2237
2257
|
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
2238
|
-
animation-duration: var(--sjs-collapse-fade-out-duration, 150ms), var(--sjs-collapse-move-out-duration, 250ms), var(--sjs-collapse-move-out-duration, 250ms)
|
2239
|
-
animation-delay: 0s, var(--sjs-collapse-move-out-delay, 100ms), var(--sjs-collapse-move-out-delay, 100ms)
|
2258
|
+
animation-duration: var(--sjs-collapse-fade-out-duration, 150ms), var(--sjs-collapse-move-out-duration, 250ms), var(--sjs-collapse-move-out-duration, 250ms);
|
2259
|
+
animation-delay: 0s, var(--sjs-collapse-move-out-delay, 100ms), var(--sjs-collapse-move-out-delay, 100ms);
|
2240
2260
|
}
|
2241
2261
|
|
2242
2262
|
.sd-element--expandable.sd-elemenet--expandable--animating > .sd-element__header:focus-within, .sd-element--expandable.sd-elemenet--expandable--animating > .sd-element__header:hover {
|
@@ -2274,14 +2294,24 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2274
2294
|
transition-duration: var(--sjs-collapse-move-out-duration, 250ms);
|
2275
2295
|
transition-delay: var(--sjs-collapse-move-out-delay, 100ms);
|
2276
2296
|
}
|
2277
|
-
.sd-elemenet--expandable--animating.sd-element--expandable.sd-element--complex > .sd-element__header--location-top:after {
|
2297
|
+
.sd-elemenet--expandable--animating.sd-element--expandable.sd-element--complex:not(.sd-question--empty) > .sd-element__header--location-top:after {
|
2278
2298
|
display: block;
|
2279
|
-
|
2299
|
+
opacity: 0;
|
2300
|
+
height: 0;
|
2301
|
+
--animation-height: 1px;
|
2302
|
+
animation-name: fadeIn, moveIn;
|
2280
2303
|
animation-fill-mode: forwards;
|
2281
|
-
animation-
|
2304
|
+
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
2305
|
+
animation-delay: var(--sjs-expand-fade-in-delay, 150ms), 0s;
|
2306
|
+
animation-duration: var(--sjs-expand-fade-in-duration, 500ms), var(--sjs-expand-move-in-duration, 150ms);
|
2282
2307
|
}
|
2283
|
-
.sd-elemenet--expandable--animating.sd-element--expandable.sd-element--complex.sd-element--collapsed .sd-element__header--location-top:after {
|
2308
|
+
.sd-elemenet--expandable--animating.sd-element--expandable.sd-element--complex:not(.sd-question--empty).sd-element--collapsed .sd-element__header--location-top:after {
|
2284
2309
|
animation-direction: reverse;
|
2310
|
+
opacity: 1;
|
2311
|
+
height: 1px;
|
2312
|
+
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
2313
|
+
animation-delay: 0s, var(--sjs-collapse-move-out-delay, 100ms);
|
2314
|
+
animation-duration: var(--sjs-collapse-fade-out-duration, 150ms), var(--sjs-collapse-move-out-duration, 250ms);
|
2285
2315
|
}
|
2286
2316
|
|
2287
2317
|
.sd-question {
|
@@ -2441,6 +2471,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2441
2471
|
height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
2442
2472
|
}
|
2443
2473
|
|
2474
|
+
.sd-question__content {
|
2475
|
+
box-sizing: border-box;
|
2476
|
+
}
|
2477
|
+
|
2444
2478
|
.sd-error {
|
2445
2479
|
display: block;
|
2446
2480
|
padding: var(--sjs-base-unit, var(--base-unit, 8px)) calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -2465,7 +2499,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2465
2499
|
padding: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px)))) var(--sd-base-padding);
|
2466
2500
|
box-sizing: border-box;
|
2467
2501
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
2468
|
-
margin-
|
2502
|
+
margin-inline-start: calc(-1 * var(--sd-base-padding));
|
2469
2503
|
width: calc(100% + 2 * var(--sd-base-padding));
|
2470
2504
|
}
|
2471
2505
|
.sd-element--collapsed.sd-element--with-frame {
|
@@ -2544,7 +2578,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2544
2578
|
.sd-element--nested-with-borders > .sd-element__header--location-top:after,
|
2545
2579
|
.sd-element--complex.sd-element--with-frame > .sd-element__header--location-top:after {
|
2546
2580
|
bottom: calc(-1 * var(--sd-base-vertical-padding));
|
2547
|
-
|
2581
|
+
inset-inline-start: calc(-1 * var(--sd-base-padding));
|
2548
2582
|
width: calc(100% + 2 * var(--sd-base-padding));
|
2549
2583
|
}
|
2550
2584
|
|
@@ -2999,6 +3033,99 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2999
3033
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3000
3034
|
}
|
3001
3035
|
|
3036
|
+
@keyframes borderAnimation {
|
3037
|
+
from {
|
3038
|
+
border-width: 0px;
|
3039
|
+
}
|
3040
|
+
to {
|
3041
|
+
border-width: 8px;
|
3042
|
+
}
|
3043
|
+
}
|
3044
|
+
@keyframes paddingAnimation {
|
3045
|
+
from {
|
3046
|
+
padding-top: 0;
|
3047
|
+
padding-bottom: 0;
|
3048
|
+
}
|
3049
|
+
to {
|
3050
|
+
padding-top: 24px;
|
3051
|
+
padding-bottom: 32px;
|
3052
|
+
}
|
3053
|
+
}
|
3054
|
+
@keyframes empty {}
|
3055
|
+
.sd-table__row--fade-out,
|
3056
|
+
.sd-table__row--fade-in {
|
3057
|
+
animation-name: empty;
|
3058
|
+
animation-fill-mode: forwards;
|
3059
|
+
--fade-in-animation-duration: calc(var(--sjs-matrix-row-fade-in-duration, 250ms) + var(--sjs-matrix-row-fade-in-delay, 150ms));
|
3060
|
+
animation-duration: max(var(--fade-in-animation-duration), var(--sjs-matrix-row-move-in-duration, 150ms));
|
3061
|
+
}
|
3062
|
+
.sd-table__row--fade-out > td,
|
3063
|
+
.sd-table__row--fade-in > td {
|
3064
|
+
animation-name: borderAnimation;
|
3065
|
+
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
3066
|
+
animation-duration: var(--sjs-matrix-row-move-in-duration, 150ms);
|
3067
|
+
animation-fill-mode: forwards;
|
3068
|
+
}
|
3069
|
+
.sd-table__row--fade-out > td > div,
|
3070
|
+
.sd-table__row--fade-in > td > div {
|
3071
|
+
animation-name: fadeIn, moveInWithOverflow;
|
3072
|
+
opacity: 0;
|
3073
|
+
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
3074
|
+
animation-fill-mode: forwards;
|
3075
|
+
animation-duration: var(--sjs-matrix-row-fade-in-duration, 250ms), var(--sjs-matrix-row-move-in-duration, 150ms);
|
3076
|
+
animation-delay: var(--sjs-matrix-row-fade-in-delay, 150ms), 0s;
|
3077
|
+
}
|
3078
|
+
|
3079
|
+
.sd-table__row--fade-out {
|
3080
|
+
animation-direction: reverse;
|
3081
|
+
--move-out-animation-duration: calc(var(--sjs-matrix-row-move-out-duration, 250ms) + var(--sjs-matrix-row-move-out-delay, 100ms));
|
3082
|
+
animation-duration: max(var(--move-out-animation-duration), var(--sjs-matrix-row-fade-out-duration, 100ms));
|
3083
|
+
}
|
3084
|
+
.sd-table__row--fade-out > td {
|
3085
|
+
animation-duration: var(--sjs-matrix-row-move-out-duration, 250ms);
|
3086
|
+
animation-delay: var(--sjs-matrix-row-move-out-delay, 100ms);
|
3087
|
+
animation-direction: reverse;
|
3088
|
+
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
3089
|
+
}
|
3090
|
+
.sd-table__row--fade-out > td > div {
|
3091
|
+
animation-direction: reverse;
|
3092
|
+
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
3093
|
+
animation-duration: var(--sjs-matrix-row-fade-out-duration, 100ms), var(--sjs-matrix-row-move-out-duration, 250ms);
|
3094
|
+
animation-delay: 0s, var(--sjs-matrix-row-move-out-delay, 100ms);
|
3095
|
+
}
|
3096
|
+
|
3097
|
+
.sd-table__row--detail.sd-table__row--fade-in > td, .sd-table__row--detail.sd-table__row--fade-out > td {
|
3098
|
+
animation-name: borderAnimation, paddingAnimation;
|
3099
|
+
animation-duration: var(--sjs-matrix-row-move-in-duration, 150ms);
|
3100
|
+
animation-fill-mode: forwards;
|
3101
|
+
}
|
3102
|
+
.sd-table__row--detail.sd-table__row--fade-in {
|
3103
|
+
--fade-in-animation-duration: calc(var(--sjs--fade-in-duration, 500ms) + var(--sjs-matrix-detail-row-fade-in-delay, 150ms));
|
3104
|
+
animation-duration: max(var(--fade-in-animation-duration), var(--sjs-matrix-detail-row-move-in-duration, 150ms));
|
3105
|
+
}
|
3106
|
+
.sd-table__row--detail.sd-table__row--fade-in > td {
|
3107
|
+
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
3108
|
+
animation-duration: var(--sjs-matrix-detail-row-move-in-duration, 150ms);
|
3109
|
+
}
|
3110
|
+
.sd-table__row--detail.sd-table__row--fade-in > td > div {
|
3111
|
+
animation-duration: var(--sjs--fade-in-duration, 500ms), var(--sjs-matrix-detail-row-move-in-duration, 150ms);
|
3112
|
+
animation-delay: var(--sjs-matrix-detail-row-fade-in-delay, 150ms), 0s;
|
3113
|
+
}
|
3114
|
+
.sd-table__row--detail.sd-table__row--fade-out {
|
3115
|
+
--move-out-animation-duration: calc(var(--sjs-matrix-detail-row-move-out-duration, 250ms) + var(--sjs-matrix-detail-row-move-out-delay, 100ms));
|
3116
|
+
animation-duration: max(var(--move-out-animation-duration), var(--sjs-matrix-detail-row-fade-out-duration, 150ms));
|
3117
|
+
}
|
3118
|
+
.sd-table__row--detail.sd-table__row--fade-out > td {
|
3119
|
+
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
3120
|
+
animation-duration: var(--sjs-matrix-detail-row-move-out-duration, 250ms);
|
3121
|
+
animation-delay: var(--sjs-matrix-detail-row-move-out-delay, 100ms);
|
3122
|
+
animation-direction: reverse;
|
3123
|
+
}
|
3124
|
+
.sd-table__row--detail.sd-table__row--fade-out > td > div {
|
3125
|
+
animation-duration: var(--sjs-matrix-detail-row-fade-out-duration, 150ms), var(--sjs-matrix-detail-row-move-out-duration, 250ms);
|
3126
|
+
animation-delay: 0s, var(--sjs-matrix-detail-row-move-out-delay, 100ms);
|
3127
|
+
}
|
3128
|
+
|
3002
3129
|
.sd-table {
|
3003
3130
|
width: 100%;
|
3004
3131
|
background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
@@ -3048,6 +3175,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3048
3175
|
}
|
3049
3176
|
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__header ~ .sd-question__content {
|
3050
3177
|
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3178
|
+
--animation-padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3051
3179
|
}
|
3052
3180
|
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__header ~ .sd-question__content .sd-table--no-header {
|
3053
3181
|
padding-top: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -3328,6 +3456,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3328
3456
|
overflow-x: auto;
|
3329
3457
|
}
|
3330
3458
|
|
3459
|
+
.sd-question--table.sd-element--collapsed,
|
3331
3460
|
.sd-question--table.sd-element--nested {
|
3332
3461
|
overflow-x: visible;
|
3333
3462
|
}
|
@@ -3383,6 +3512,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3383
3512
|
}
|
3384
3513
|
.sd-question--table > .sd-question__content {
|
3385
3514
|
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3515
|
+
--animation-padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3386
3516
|
min-width: min-content;
|
3387
3517
|
}
|
3388
3518
|
.sd-question--table.sd-element--nested > .sd-question__content {
|
@@ -3542,6 +3672,11 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3542
3672
|
align-items: stretch;
|
3543
3673
|
}
|
3544
3674
|
|
3675
|
+
.sd-panel.sd-panel--as-page > .sd-panel__content > .sd-row--multiple:not(.sd-row--compact) {
|
3676
|
+
margin-left: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3677
|
+
width: calc(100% + var(--base-unit) * 2);
|
3678
|
+
}
|
3679
|
+
|
3545
3680
|
.sd-panel:not(.sd-panel--as-page) .sd-row--multiple {
|
3546
3681
|
row-gap: var(--sd-base-vertical-padding);
|
3547
3682
|
}
|
@@ -3587,22 +3722,22 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3587
3722
|
}
|
3588
3723
|
.sd-row--fade-in {
|
3589
3724
|
animation-fill-mode: forwards;
|
3590
|
-
animation-name: fadeIn,
|
3725
|
+
animation-name: fadeIn, moveInWithOverflow, marginFadeIn;
|
3591
3726
|
min-height: 0 !important;
|
3592
3727
|
opacity: 0;
|
3593
3728
|
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
3594
|
-
animation-delay: var(--sjs-row-fade-in-delay, 150ms), 0s, 0s
|
3595
|
-
animation-duration: var(--sjs-row-fade-in-duration, 500ms), var(--sjs-row-move-in-duration, 150ms), var(--sjs-row-move-in-duration, 150ms)
|
3729
|
+
animation-delay: var(--sjs-row-fade-in-delay, 150ms), 0s, 0s;
|
3730
|
+
animation-duration: var(--sjs-row-fade-in-duration, 500ms), var(--sjs-row-move-in-duration, 150ms), var(--sjs-row-move-in-duration, 150ms);
|
3596
3731
|
}
|
3597
3732
|
|
3598
3733
|
.sd-row--fade-out {
|
3599
|
-
animation-name: fadeIn,
|
3734
|
+
animation-name: fadeIn, moveInWithOverflow, marginFadeIn;
|
3600
3735
|
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
3601
3736
|
animation-fill-mode: forwards;
|
3602
3737
|
animation-direction: reverse;
|
3603
3738
|
min-height: 0 !important;
|
3604
|
-
animation-delay: 0s, var(--sjs-row-move-out-delay, 100ms), var(--sjs-row-move-out-delay, 100ms)
|
3605
|
-
animation-duration: var(--sjs-row-fade-out-duration, 150ms), var(--sjs-row-move-out-duration, 250ms), var(--sjs-row-move-out-duration, 250ms)
|
3739
|
+
animation-delay: 0s, var(--sjs-row-move-out-delay, 100ms), var(--sjs-row-move-out-delay, 100ms);
|
3740
|
+
animation-duration: var(--sjs-row-fade-out-duration, 150ms), var(--sjs-row-move-out-duration, 250ms), var(--sjs-row-move-out-duration, 250ms);
|
3606
3741
|
}
|
3607
3742
|
|
3608
3743
|
.sd-row--fade-in .sd-element-wrapper--fade-in {
|
@@ -4693,10 +4828,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4693
4828
|
box-shadow: var(--sjs-shadow-inner-reset, inset 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4694
4829
|
}
|
4695
4830
|
|
4696
|
-
.sd-input.sd-dropdown:focus-within .sd-dropdown__filter-string-input {
|
4697
|
-
z-index: 2000;
|
4698
|
-
}
|
4699
|
-
|
4700
4831
|
.sd-dropdown__filter-string-input {
|
4701
4832
|
--sjs-internal-font-editorfont-size: var(--sjs-mobile-font-editorfont-size, var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px)));
|
4702
4833
|
position: absolute;
|
@@ -5498,6 +5629,23 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5498
5629
|
}
|
5499
5630
|
|
5500
5631
|
.sd-paneldynamic__separator {
|
5632
|
+
display: none;
|
5633
|
+
}
|
5634
|
+
|
5635
|
+
.sd-paneldynamic__panel-wrapper {
|
5636
|
+
box-sizing: border-box;
|
5637
|
+
padding-bottom: calc(1 * var(--sd-base-padding));
|
5638
|
+
}
|
5639
|
+
|
5640
|
+
.sd-paneldynamic__panel-wrapper:after {
|
5641
|
+
display: table;
|
5642
|
+
clear: both;
|
5643
|
+
content: " ";
|
5644
|
+
}
|
5645
|
+
|
5646
|
+
.sd-paneldynamic__footer .sd-paneldynamic__separator,
|
5647
|
+
.sd-paneldynamic__panel-wrapper--list ~ .sd-paneldynamic__panel-wrapper--list:before {
|
5648
|
+
content: " ";
|
5501
5649
|
display: block;
|
5502
5650
|
position: absolute;
|
5503
5651
|
left: 0;
|
@@ -5513,16 +5661,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5513
5661
|
display: none;
|
5514
5662
|
}
|
5515
5663
|
|
5516
|
-
.sd-paneldynamic__panel-wrapper {
|
5517
|
-
padding-bottom: calc(1 * var(--sd-base-padding));
|
5518
|
-
}
|
5519
|
-
|
5520
|
-
.sd-paneldynamic__panel-wrapper:after {
|
5521
|
-
display: table;
|
5522
|
-
clear: both;
|
5523
|
-
content: " ";
|
5524
|
-
}
|
5525
|
-
|
5526
5664
|
.sd-paneldynamic__panel-wrapper--in-row {
|
5527
5665
|
display: flex;
|
5528
5666
|
flex-direction: row;
|
@@ -5595,6 +5733,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5595
5733
|
|
5596
5734
|
.sd-question--empty.sd-question--paneldynamic > .sd-question__content {
|
5597
5735
|
padding-bottom: var(--sd-base-padding);
|
5736
|
+
--animation-padding-bottom: var(--sd-base-padding);
|
5598
5737
|
}
|
5599
5738
|
|
5600
5739
|
.sd-question--paneldynamic:not(.sd-question--empty) > .sd-question__content > .sd-question__comment-area {
|
@@ -5728,6 +5867,96 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5728
5867
|
padding-bottom: 0;
|
5729
5868
|
}
|
5730
5869
|
|
5870
|
+
.sd-paneldynamic__panels-container {
|
5871
|
+
position: relative;
|
5872
|
+
overflow: hidden;
|
5873
|
+
margin-left: calc(-1 * var(--sd-base-padding));
|
5874
|
+
padding-left: var(--sd-base-padding);
|
5875
|
+
margin-right: calc(-1 * var(--sd-base-padding));
|
5876
|
+
padding-right: var(--sd-base-padding);
|
5877
|
+
}
|
5878
|
+
|
5879
|
+
.sd-paneldynamic__panel-wrapper {
|
5880
|
+
box-sizing: border-box;
|
5881
|
+
}
|
5882
|
+
|
5883
|
+
@keyframes movePanel {
|
5884
|
+
from {
|
5885
|
+
transform: translateX(var(--sjs-pd-tab-move-margin));
|
5886
|
+
}
|
5887
|
+
to {
|
5888
|
+
transform: translateX(0);
|
5889
|
+
}
|
5890
|
+
}
|
5891
|
+
.sd-paneldynamic__panel-wrapper--fade-in-left,
|
5892
|
+
.sd-paneldynamic__panel-wrapper--fade-in-right {
|
5893
|
+
animation-name: movePanel, changeHeight, paddingFadeIn, fadeIn;
|
5894
|
+
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);
|
5895
|
+
animation-delay: var(--sjs-pd-tab-move-in-delay, 100ms), var(--sjs-pd-tab-height-change-delay, 0ms), var(--sjs-pd-tab-height-change-delay, 0ms), var(--sjs-pd-tab-fade-in-delay, 100ms);
|
5896
|
+
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
5897
|
+
animation-fill-mode: forwards;
|
5898
|
+
opacity: 0;
|
5899
|
+
padding-bottom: 0;
|
5900
|
+
transform: translateX(var(--sjs-pd-tab-move-margin));
|
5901
|
+
height: var(--animation-height-from);
|
5902
|
+
--animation-padding-top: 0;
|
5903
|
+
--animation-padding-bottom: calc(1 * var(--sd-base-padding));
|
5904
|
+
}
|
5905
|
+
|
5906
|
+
.sd-paneldynamic__panel-wrapper--fade-in-left {
|
5907
|
+
--sjs-pd-tab-move-margin: calc(1 * var(--sjs-pd-tab-move-in-margin, 50%));
|
5908
|
+
}
|
5909
|
+
|
5910
|
+
.sd-paneldynamic__panel-wrapper--fade-in-right {
|
5911
|
+
--sjs-pd-tab-move-margin: calc(-1 * var(--sjs-pd-tab-move-in-margin, 50%));
|
5912
|
+
}
|
5913
|
+
|
5914
|
+
.sd-paneldynamic__panel-wrapper--fade-out-left,
|
5915
|
+
.sd-paneldynamic__panel-wrapper--fade-out-right {
|
5916
|
+
animation-name: fadeIn, movePanel;
|
5917
|
+
animation-duration: var(--sjs-pd-tab-fade-out-duration, 250ms), var(--sjs-pd-tab-move-out-duration, 250ms);
|
5918
|
+
animation-delay: var(--sjs-pd-tab-fade-out-delay, 0ms), var(--sjs-pd-tab-move-out-delay, 0ms);
|
5919
|
+
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
5920
|
+
animation-direction: reverse;
|
5921
|
+
animation-fill-mode: forwards;
|
5922
|
+
position: absolute;
|
5923
|
+
left: var(--sd-base-padding);
|
5924
|
+
top: 0;
|
5925
|
+
width: calc(100% - 2 * var(--sd-base-padding));
|
5926
|
+
}
|
5927
|
+
|
5928
|
+
.sd-paneldynamic__panel-wrapper--fade-out-left {
|
5929
|
+
--sjs-pd-tab-move-margin: calc(-1 * var(--sjs-pd-tab-move-out-margin, 50%));
|
5930
|
+
}
|
5931
|
+
|
5932
|
+
.sd-paneldynamic__panel-wrapper--fade-out-right {
|
5933
|
+
--sjs-pd-tab-move-margin: calc(1 * var(--sjs-pd-tab-move-out-margin, 50%));
|
5934
|
+
}
|
5935
|
+
|
5936
|
+
.sd-paneldynamic__panel-wrapper--fade-in,
|
5937
|
+
.sd-paneldynamic__panel-wrapper--fade-out {
|
5938
|
+
animation-name: fadeIn, moveInWithOverflow, paddingFadeIn;
|
5939
|
+
animation-fill-mode: forwards;
|
5940
|
+
--animation-padding-top: 0;
|
5941
|
+
--animation-padding-bottom: calc(1 * var(--sd-base-padding));
|
5942
|
+
min-height: 0 !important;
|
5943
|
+
}
|
5944
|
+
|
5945
|
+
.sd-paneldynamic__panel-wrapper--fade-in {
|
5946
|
+
opacity: 0;
|
5947
|
+
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
5948
|
+
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);
|
5949
|
+
animation-delay: var(--sjs-pd-list-fade-in-delay, 250ms), 0s, 0s;
|
5950
|
+
}
|
5951
|
+
|
5952
|
+
.sd-paneldynamic__panel-wrapper--fade-out {
|
5953
|
+
animation-direction: reverse;
|
5954
|
+
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
5955
|
+
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);
|
5956
|
+
animation-delay: 0s, var(--sjs-pd-list-move-out-delay, 100ms), var(--sjs-pd-list-move-out-delay, 100ms);
|
5957
|
+
--animation-padding-bottom: calc(1 * var(--sd-base-padding));
|
5958
|
+
}
|
5959
|
+
|
5731
5960
|
:root {
|
5732
5961
|
--sjs-transition-duration: 150ms;
|
5733
5962
|
}
|
@@ -5906,7 +6135,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5906
6135
|
}
|
5907
6136
|
.sd-file__preview-item .sd-file__default-image {
|
5908
6137
|
width: calc(7 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5909
|
-
height:
|
6138
|
+
height: calc(8.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5910
6139
|
}
|
5911
6140
|
.sd-file__preview-item img:hover + .sd-file__remove-file-button,
|
5912
6141
|
.sd-file__preview-item svg:hover + .sd-file__remove-file-button,
|
@@ -7101,6 +7330,19 @@ svg.sd-action--icon {
|
|
7101
7330
|
margin: auto;
|
7102
7331
|
}
|
7103
7332
|
|
7333
|
+
[dir=rtl] .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector,
|
7334
|
+
[style*="direction:rtl"] .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector,
|
7335
|
+
[style*="direction: rtl"] .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
7336
|
+
right: unset;
|
7337
|
+
left: calc(50% + 4px);
|
7338
|
+
}
|
7339
|
+
[dir=rtl] .sd-progress-buttons--numbered .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector,
|
7340
|
+
[style*="direction:rtl"] .sd-progress-buttons--numbered .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector,
|
7341
|
+
[style*="direction: rtl"] .sd-progress-buttons--numbered .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
7342
|
+
right: unset;
|
7343
|
+
left: calc(50% + 8px);
|
7344
|
+
}
|
7345
|
+
|
7104
7346
|
.sv_progress-toc {
|
7105
7347
|
padding: var(--sjs-base-unit, var(--base-unit, 8px));
|
7106
7348
|
max-width: calc(42 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -7518,7 +7760,7 @@ sv-components-container,
|
|
7518
7760
|
width: auto;
|
7519
7761
|
}
|
7520
7762
|
.sd-root-modern.sd-root-modern--mobile .sd-element__title--expandable:before {
|
7521
|
-
|
7763
|
+
inset-inline-start: calc(-2.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
7522
7764
|
}
|
7523
7765
|
.sd-root-modern.sd-root-modern--mobile .sd-title.sd-container-modern__title {
|
7524
7766
|
flex-direction: column;
|
@@ -7528,6 +7770,7 @@ sv-components-container,
|
|
7528
7770
|
}
|
7529
7771
|
.sd-root-modern.sd-root-modern--mobile .sd-question.sd-question--table > .sd-question__content {
|
7530
7772
|
padding-top: 0;
|
7773
|
+
--animation-padding-top: 0;
|
7531
7774
|
}
|
7532
7775
|
.sd-root-modern.sd-root-modern--mobile .sd-question--table,
|
7533
7776
|
.sd-root-modern.sd-root-modern--mobile .sd-question--scroll {
|