survey-react 1.12.4 → 1.12.6
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 +86 -6
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +1 -1
- package/modern.min.css +1 -1
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +202 -80
- package/survey.react.js +772 -348
- 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.12.
|
2
|
+
* surveyjs - Survey JavaScript library v1.12.6
|
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
|
*/
|
@@ -6691,17 +6691,91 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
6691
6691
|
|
6692
6692
|
.sd-file__list {
|
6693
6693
|
display: flex;
|
6694
|
-
|
6694
|
+
position: relative;
|
6695
|
+
overflow: hidden;
|
6695
6696
|
box-sizing: content-box;
|
6696
6697
|
flex-direction: row;
|
6697
|
-
align-items: stretch;
|
6698
|
-
justify-content: center;
|
6699
6698
|
padding: calc(10.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0;
|
6700
6699
|
min-height: calc(15 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6701
6700
|
max-height: calc(15 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6702
6701
|
width: 100%;
|
6703
6702
|
}
|
6704
6703
|
|
6704
|
+
.sd-file__page {
|
6705
|
+
display: flex;
|
6706
|
+
left: 0;
|
6707
|
+
align-items: stretch;
|
6708
|
+
justify-content: center;
|
6709
|
+
gap: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6710
|
+
height: calc(100% - 21 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
6711
|
+
width: 100%;
|
6712
|
+
position: absolute;
|
6713
|
+
}
|
6714
|
+
|
6715
|
+
@keyframes file-page-to-right {
|
6716
|
+
from {
|
6717
|
+
opacity: 1;
|
6718
|
+
left: 0;
|
6719
|
+
}
|
6720
|
+
to {
|
6721
|
+
opacity: 0;
|
6722
|
+
left: 100%;
|
6723
|
+
}
|
6724
|
+
}
|
6725
|
+
@keyframes file-page-from-right {
|
6726
|
+
from {
|
6727
|
+
opacity: 0;
|
6728
|
+
left: 100%;
|
6729
|
+
}
|
6730
|
+
to {
|
6731
|
+
opacity: 1;
|
6732
|
+
left: 0;
|
6733
|
+
}
|
6734
|
+
}
|
6735
|
+
@keyframes file-page-from-left {
|
6736
|
+
from {
|
6737
|
+
opacity: 0;
|
6738
|
+
left: -100%;
|
6739
|
+
}
|
6740
|
+
to {
|
6741
|
+
opacity: 1;
|
6742
|
+
left: 0;
|
6743
|
+
}
|
6744
|
+
}
|
6745
|
+
@keyframes file-page-to-left {
|
6746
|
+
from {
|
6747
|
+
opacity: 1;
|
6748
|
+
left: 0;
|
6749
|
+
}
|
6750
|
+
to {
|
6751
|
+
opacity: 0;
|
6752
|
+
left: -100%;
|
6753
|
+
}
|
6754
|
+
}
|
6755
|
+
.sd-file__page--leave-to-right,
|
6756
|
+
.sd-file__page--enter-from-right,
|
6757
|
+
.sd-file__page--leave-to-left,
|
6758
|
+
.sd-file__page--enter-from-left {
|
6759
|
+
animation-duration: 0.5s;
|
6760
|
+
animation-fill-mode: forwards;
|
6761
|
+
}
|
6762
|
+
|
6763
|
+
.sd-file__page--leave-to-right {
|
6764
|
+
animation-name: file-page-to-right;
|
6765
|
+
}
|
6766
|
+
|
6767
|
+
.sd-file__page--enter-from-right {
|
6768
|
+
animation-name: file-page-from-right;
|
6769
|
+
}
|
6770
|
+
|
6771
|
+
.sd-file__page--leave-to-left {
|
6772
|
+
animation-name: file-page-to-left;
|
6773
|
+
}
|
6774
|
+
|
6775
|
+
.sd-file__page--enter-from-left {
|
6776
|
+
animation-name: file-page-from-left;
|
6777
|
+
}
|
6778
|
+
|
6705
6779
|
.sd-file__preview-item {
|
6706
6780
|
position: relative;
|
6707
6781
|
display: flex;
|
@@ -6798,6 +6872,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
6798
6872
|
.sd-file--single-image {
|
6799
6873
|
height: calc(36 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
6800
6874
|
}
|
6875
|
+
.sd-file--single-image .sd-file__page {
|
6876
|
+
height: 100%;
|
6877
|
+
}
|
6801
6878
|
.sd-file--single-image .sd-file__preview-item {
|
6802
6879
|
width: 100%;
|
6803
6880
|
margin: 0;
|
@@ -8137,9 +8214,12 @@ svg.sd-action--icon {
|
|
8137
8214
|
}
|
8138
8215
|
|
8139
8216
|
.sd-timer__text--minor {
|
8140
|
-
color: var(--
|
8217
|
+
color: var(--lbr-timer-text-color-secondary, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
|
8218
|
+
font-size: var(--lbr-font-default-size, var(--sjs-font-size, 16px));
|
8219
|
+
font-style: normal;
|
8141
8220
|
font-weight: 600;
|
8142
|
-
|
8221
|
+
line-height: var(--lbr-font-default-line-height, calc(1.5 * (var(--sjs-font-size, 16px))));
|
8222
|
+
margin-top: calc(-0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8143
8223
|
}
|
8144
8224
|
|
8145
8225
|
.sv-header {
|