survey-react 1.9.129 → 1.9.130
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 -4
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +5 -3
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +3 -2
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +63 -30
- package/survey.react.js +448 -154
- 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.130
|
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
|
*/
|
@@ -1063,6 +1063,7 @@ sv-popup {
|
|
1063
1063
|
overflow: auto;
|
1064
1064
|
box-sizing: border-box;
|
1065
1065
|
background: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
1066
|
+
width: calc(100% - 4 * (var(--sjs-base-unit, var(--base-unit, 8px)))) !important;
|
1066
1067
|
}
|
1067
1068
|
@-moz-document url-prefix() {
|
1068
1069
|
.sv_window,
|
@@ -1166,7 +1167,7 @@ sv-popup {
|
|
1166
1167
|
margin-right: var(--sjs-base-unit, var(--base-unit, 8px));
|
1167
1168
|
display: flex;
|
1168
1169
|
gap: var(--sjs-base-unit, var(--base-unit, 8px));
|
1169
|
-
z-index:
|
1170
|
+
z-index: 10000;
|
1170
1171
|
}
|
1171
1172
|
|
1172
1173
|
.sv_window_button {
|
@@ -1503,13 +1504,14 @@ sv-brand-info, .sv-brand-info {
|
|
1503
1504
|
font-style: normal;
|
1504
1505
|
font-size: var(--sjs-font-size, 16px);
|
1505
1506
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
1506
|
-
white-space:
|
1507
|
+
white-space: normal;
|
1507
1508
|
display: flex;
|
1508
1509
|
justify-content: center;
|
1509
1510
|
align-items: center;
|
1510
1511
|
height: 100%;
|
1511
1512
|
padding-top: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1512
1513
|
padding-bottom: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1514
|
+
box-sizing: border-box;
|
1513
1515
|
}
|
1514
1516
|
|
1515
1517
|
.sv-ranking__container {
|
@@ -4760,6 +4762,18 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4760
4762
|
transform: translateX(-100%);
|
4761
4763
|
}
|
4762
4764
|
|
4765
|
+
.sd-boolean--exchanged .sd-boolean__thumb {
|
4766
|
+
margin-left: 100%;
|
4767
|
+
transform: translateX(-100%);
|
4768
|
+
}
|
4769
|
+
.sd-boolean--exchanged.sd-boolean--checked .sd-boolean__thumb {
|
4770
|
+
margin-left: 0%;
|
4771
|
+
transform: translateX(0);
|
4772
|
+
}
|
4773
|
+
.sd-boolean--exchanged.sd-boolean:not(.sd-boolean--checked):not(sd-boolean--indeterminate) .sd-boolean__label--false, .sd-boolean--exchanged.sd-boolean.sd-boolean--checked .sd-boolean__label--true {
|
4774
|
+
color: var(--sjs-font-editorfont-placeholdercolor, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
|
4775
|
+
}
|
4776
|
+
|
4763
4777
|
.sd-boolean--disabled {
|
4764
4778
|
pointer-events: none;
|
4765
4779
|
}
|
@@ -7046,7 +7060,7 @@ body {
|
|
7046
7060
|
width: 100%;
|
7047
7061
|
height: 100%;
|
7048
7062
|
overflow: auto;
|
7049
|
-
position:
|
7063
|
+
position: relative;
|
7050
7064
|
}
|
7051
7065
|
|
7052
7066
|
.sd-root-modern--mobile {
|