survey-react 1.9.111 → 1.9.112
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 +18 -7
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +11 -2
- 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 +142 -39
- package/survey.react.js +255 -113
- 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.9.
|
2
|
+
* surveyjs - Survey JavaScript library v1.9.112
|
3
3
|
* Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
5
|
*/
|
@@ -509,6 +509,9 @@ sv-popup {
|
|
509
509
|
height: auto;
|
510
510
|
}
|
511
511
|
|
512
|
+
.sv-popup--confirm-delete .sv-popup__shadow {
|
513
|
+
height: initial;
|
514
|
+
}
|
512
515
|
.sv-popup--confirm-delete .sv-popup__container {
|
513
516
|
border-radius: var(--sjs-base-unit, var(--base-unit, 8px));
|
514
517
|
}
|
@@ -949,7 +952,7 @@ sv-popup {
|
|
949
952
|
|
950
953
|
.sv-title-actions .sv-title-actions__title {
|
951
954
|
flex-wrap: wrap;
|
952
|
-
flex: 0
|
955
|
+
flex: 0 1 auto;
|
953
956
|
max-width: unset;
|
954
957
|
min-width: unset;
|
955
958
|
}
|
@@ -1290,6 +1293,9 @@ sv-popup {
|
|
1290
1293
|
align-items: center;
|
1291
1294
|
}
|
1292
1295
|
|
1296
|
+
.sv-ranking--select-to-rank-horizontal .sv-ranking__container {
|
1297
|
+
max-width: calc(50% - 1px);
|
1298
|
+
}
|
1293
1299
|
.sv-ranking--select-to-rank-horizontal .sv-ranking__containers-divider {
|
1294
1300
|
width: 1px;
|
1295
1301
|
}
|
@@ -2926,11 +2932,9 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2926
2932
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
2927
2933
|
}
|
2928
2934
|
|
2929
|
-
.sd-root-modern .sv-conver__content .sd-header__text h3,
|
2930
2935
|
.sd-root-modern .sd-container-modern__title .sd-header__text h3 {
|
2931
2936
|
margin: 0;
|
2932
2937
|
}
|
2933
|
-
.sd-root-modern .sv-conver__content .sd-description,
|
2934
2938
|
.sd-root-modern .sd-container-modern__title .sd-description {
|
2935
2939
|
margin: 0;
|
2936
2940
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
@@ -4734,7 +4738,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4734
4738
|
.sd-file__drag-area {
|
4735
4739
|
position: static;
|
4736
4740
|
width: 100%;
|
4737
|
-
height: 100%;
|
4738
4741
|
}
|
4739
4742
|
|
4740
4743
|
.sd-file__change-camera-button {
|
@@ -5697,7 +5700,7 @@ svg.sd-action--icon {
|
|
5697
5700
|
}
|
5698
5701
|
|
5699
5702
|
.sv-conver__overlap.sv-conver__without-background {
|
5700
|
-
margin-bottom:
|
5703
|
+
margin-bottom: 0;
|
5701
5704
|
}
|
5702
5705
|
|
5703
5706
|
.sv-conver__without-background {
|
@@ -5752,6 +5755,10 @@ svg.sd-action--icon {
|
|
5752
5755
|
left: 0;
|
5753
5756
|
}
|
5754
5757
|
|
5758
|
+
.sv-cover__cell--center .sv-cover__cell-content {
|
5759
|
+
min-width: 100%;
|
5760
|
+
}
|
5761
|
+
|
5755
5762
|
.sv-cover__cell--right .sv-cover__cell-content {
|
5756
5763
|
right: 0;
|
5757
5764
|
}
|
@@ -5781,7 +5788,11 @@ svg.sd-action--icon {
|
|
5781
5788
|
|
5782
5789
|
.sv-cover__description .sd-description {
|
5783
5790
|
margin: 0;
|
5784
|
-
color: var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45));
|
5791
|
+
color: var(--sjs-cover-description-forecolor, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
|
5792
|
+
}
|
5793
|
+
|
5794
|
+
.sv-conver__content .sd-header__text h3 {
|
5795
|
+
margin: 0;
|
5785
5796
|
}
|
5786
5797
|
|
5787
5798
|
@keyframes rotationAnimation {
|