survey-react 1.9.130 → 1.9.132
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 +22 -2
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +15 -1
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +208 -134
- package/survey.react.js +176 -57
- 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.132
|
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
|
*/
|
@@ -160,10 +160,14 @@ sv-popup {
|
|
160
160
|
}
|
161
161
|
.sv-popup--confirm-delete .sv-popup__body-content {
|
162
162
|
border-radius: var(--sjs-base-unit, var(--base-unit, 8px));
|
163
|
+
max-width: min-content;
|
164
|
+
align-items: flex-end;
|
165
|
+
min-width: 452px;
|
163
166
|
}
|
164
167
|
.sv-popup--confirm-delete .sv-popup__body-header {
|
165
168
|
color: var(--sjs-font-editorfont-color, var(--sjs-general-forecolor, rgba(0, 0, 0, 0.91)));
|
166
169
|
margin-bottom: 0;
|
170
|
+
align-self: self-start;
|
167
171
|
/* UI/Default */
|
168
172
|
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
169
173
|
font-size: var(--sjs-font-size, 16px);
|
@@ -177,6 +181,7 @@ sv-popup {
|
|
177
181
|
}
|
178
182
|
.sv-popup--confirm-delete .sv-popup__body-footer {
|
179
183
|
padding-bottom: 0;
|
184
|
+
max-width: max-content;
|
180
185
|
}
|
181
186
|
.sv-popup--confirm-delete .sv-popup__body-footer .sv-action-bar {
|
182
187
|
gap: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -2883,10 +2888,14 @@ sv-popup {
|
|
2883
2888
|
}
|
2884
2889
|
.sv-popup--confirm-delete .sv-popup__body-content {
|
2885
2890
|
border-radius: var(--sjs-base-unit, var(--base-unit, 8px));
|
2891
|
+
max-width: min-content;
|
2892
|
+
align-items: flex-end;
|
2893
|
+
min-width: 452px;
|
2886
2894
|
}
|
2887
2895
|
.sv-popup--confirm-delete .sv-popup__body-header {
|
2888
2896
|
color: var(--sjs-font-editorfont-color, var(--sjs-general-forecolor, rgba(0, 0, 0, 0.91)));
|
2889
2897
|
margin-bottom: 0;
|
2898
|
+
align-self: self-start;
|
2890
2899
|
/* UI/Default */
|
2891
2900
|
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
2892
2901
|
font-size: var(--sjs-font-size, 16px);
|
@@ -2900,6 +2909,7 @@ sv-popup {
|
|
2900
2909
|
}
|
2901
2910
|
.sv-popup--confirm-delete .sv-popup__body-footer {
|
2902
2911
|
padding-bottom: 0;
|
2912
|
+
max-width: max-content;
|
2903
2913
|
}
|
2904
2914
|
.sv-popup--confirm-delete .sv-popup__body-footer .sv-action-bar {
|
2905
2915
|
gap: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -4183,6 +4193,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
4183
4193
|
font-weight: 600;
|
4184
4194
|
}
|
4185
4195
|
|
4196
|
+
.sv-string-viewer.sv-string-viewer--multiline {
|
4197
|
+
white-space: pre-wrap;
|
4198
|
+
}
|
4199
|
+
|
4186
4200
|
.sjs_sp_container {
|
4187
4201
|
position: relative;
|
4188
4202
|
max-width: 100%;
|