survey-react 1.10.6 → 1.11.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 +131 -17
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +77 -9
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +17 -1
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +210 -66
- package/survey.react.js +1433 -594
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/package.json
CHANGED
package/survey.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.
|
2
|
+
* surveyjs - Survey JavaScript library v1.11.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
|
*/
|
@@ -175,6 +175,18 @@
|
|
175
175
|
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
176
176
|
}
|
177
177
|
|
178
|
+
.sd-title + .sv-components-row > .sv-components-column .sv_progress-toc:not(.sv_progress-toc--mobile),
|
179
|
+
.sd-title ~ .sv-components-row > .sv-components-column .sv_progress-toc:not(.sv_progress-toc--mobile) {
|
180
|
+
margin-top: 2px;
|
181
|
+
}
|
182
|
+
|
183
|
+
.sv_progress-toc.sv_progress-toc--sticky {
|
184
|
+
position: sticky;
|
185
|
+
height: auto;
|
186
|
+
overflow-y: auto;
|
187
|
+
top: 0;
|
188
|
+
}
|
189
|
+
|
178
190
|
:root {
|
179
191
|
--sjs-transition-duration: 150ms;
|
180
192
|
}
|
@@ -3491,6 +3503,10 @@ sv-popup {
|
|
3491
3503
|
height: 0;
|
3492
3504
|
}
|
3493
3505
|
|
3506
|
+
.sv-popup.sv-popup-inner {
|
3507
|
+
height: 0;
|
3508
|
+
}
|
3509
|
+
|
3494
3510
|
.sv-popup__container {
|
3495
3511
|
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
|
3496
3512
|
position: absolute;
|