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/modern.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
|
*/
|
@@ -3405,6 +3405,7 @@ sv-popup {
|
|
3405
3405
|
overflow: auto;
|
3406
3406
|
box-sizing: border-box;
|
3407
3407
|
background: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
3408
|
+
width: calc(100% - 4 * (var(--sjs-base-unit, var(--base-unit, 8px)))) !important;
|
3408
3409
|
}
|
3409
3410
|
@-moz-document url-prefix() {
|
3410
3411
|
.sv_window,
|
@@ -3508,7 +3509,7 @@ sv-popup {
|
|
3508
3509
|
margin-right: var(--sjs-base-unit, var(--base-unit, 8px));
|
3509
3510
|
display: flex;
|
3510
3511
|
gap: var(--sjs-base-unit, var(--base-unit, 8px));
|
3511
|
-
z-index:
|
3512
|
+
z-index: 10000;
|
3512
3513
|
}
|
3513
3514
|
|
3514
3515
|
.sv_window_button {
|
@@ -3845,13 +3846,14 @@ sv-brand-info, .sv-brand-info {
|
|
3845
3846
|
font-style: normal;
|
3846
3847
|
font-size: var(--sjs-font-size, 16px);
|
3847
3848
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
3848
|
-
white-space:
|
3849
|
+
white-space: normal;
|
3849
3850
|
display: flex;
|
3850
3851
|
justify-content: center;
|
3851
3852
|
align-items: center;
|
3852
3853
|
height: 100%;
|
3853
3854
|
padding-top: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3854
3855
|
padding-bottom: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3856
|
+
box-sizing: border-box;
|
3855
3857
|
}
|
3856
3858
|
|
3857
3859
|
.sv-ranking__container {
|