survey-react 1.9.131 → 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 +10 -1
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +1 -1
- package/modern.min.css +1 -1
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +12 -3
- package/survey.react.js +108 -39
- 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.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
|
*/
|
@@ -3359,6 +3359,13 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3359
3359
|
white-space: normal;
|
3360
3360
|
width: 100%;
|
3361
3361
|
text-align: left;
|
3362
|
+
min-width: 0;
|
3363
|
+
}
|
3364
|
+
.sd-item__control-label .sv-string-viewer {
|
3365
|
+
max-width: 100%;
|
3366
|
+
overflow: hidden;
|
3367
|
+
text-overflow: ellipsis;
|
3368
|
+
display: block;
|
3362
3369
|
}
|
3363
3370
|
|
3364
3371
|
.sd-item--disabled .sd-item__control-label {
|
@@ -3401,6 +3408,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3401
3408
|
position: relative;
|
3402
3409
|
gap: var(--sjs-base-unit, var(--base-unit, 8px));
|
3403
3410
|
vertical-align: top;
|
3411
|
+
max-width: 100%;
|
3404
3412
|
}
|
3405
3413
|
|
3406
3414
|
.sd-selectbase__column {
|
@@ -3411,6 +3419,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3411
3419
|
display: block;
|
3412
3420
|
box-sizing: border-box;
|
3413
3421
|
flex: 1 1 0px;
|
3422
|
+
min-width: 0;
|
3414
3423
|
}
|
3415
3424
|
|
3416
3425
|
.sd-selectbase__column:not(:last-child) {
|