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/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
|
*/
|
@@ -541,10 +541,14 @@ sv-popup {
|
|
541
541
|
}
|
542
542
|
.sv-popup--confirm-delete .sv-popup__body-content {
|
543
543
|
border-radius: var(--sjs-base-unit, var(--base-unit, 8px));
|
544
|
+
max-width: min-content;
|
545
|
+
align-items: flex-end;
|
546
|
+
min-width: 452px;
|
544
547
|
}
|
545
548
|
.sv-popup--confirm-delete .sv-popup__body-header {
|
546
549
|
color: var(--sjs-font-editorfont-color, var(--sjs-general-forecolor, rgba(0, 0, 0, 0.91)));
|
547
550
|
margin-bottom: 0;
|
551
|
+
align-self: self-start;
|
548
552
|
/* UI/Default */
|
549
553
|
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
550
554
|
font-size: var(--sjs-font-size, 16px);
|
@@ -558,6 +562,7 @@ sv-popup {
|
|
558
562
|
}
|
559
563
|
.sv-popup--confirm-delete .sv-popup__body-footer {
|
560
564
|
padding-bottom: 0;
|
565
|
+
max-width: max-content;
|
561
566
|
}
|
562
567
|
.sv-popup--confirm-delete .sv-popup__body-footer .sv-action-bar {
|
563
568
|
gap: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -1841,6 +1846,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1841
1846
|
font-weight: 600;
|
1842
1847
|
}
|
1843
1848
|
|
1849
|
+
.sv-string-viewer.sv-string-viewer--multiline {
|
1850
|
+
white-space: pre-wrap;
|
1851
|
+
}
|
1852
|
+
|
1844
1853
|
.sd-element {
|
1845
1854
|
padding-left: var(--sv-element-add-padding-left, 0px);
|
1846
1855
|
padding-right: var(--sv-element-add-padding-right, 0px);
|
@@ -3350,6 +3359,13 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3350
3359
|
white-space: normal;
|
3351
3360
|
width: 100%;
|
3352
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;
|
3353
3369
|
}
|
3354
3370
|
|
3355
3371
|
.sd-item--disabled .sd-item__control-label {
|
@@ -3392,6 +3408,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3392
3408
|
position: relative;
|
3393
3409
|
gap: var(--sjs-base-unit, var(--base-unit, 8px));
|
3394
3410
|
vertical-align: top;
|
3411
|
+
max-width: 100%;
|
3395
3412
|
}
|
3396
3413
|
|
3397
3414
|
.sd-selectbase__column {
|
@@ -3402,6 +3419,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3402
3419
|
display: block;
|
3403
3420
|
box-sizing: border-box;
|
3404
3421
|
flex: 1 1 0px;
|
3422
|
+
min-width: 0;
|
3405
3423
|
}
|
3406
3424
|
|
3407
3425
|
.sd-selectbase__column:not(:last-child) {
|
@@ -4753,9 +4771,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4753
4771
|
font-weight: 600;
|
4754
4772
|
margin-left: 0%;
|
4755
4773
|
transform: translateX(0);
|
4756
|
-
white-space: nowrap;
|
4757
4774
|
z-index: 2;
|
4758
4775
|
}
|
4776
|
+
.sd-boolean__thumb .sv-string-viewer.sv-string-viewer--multiline {
|
4777
|
+
white-space: nowrap;
|
4778
|
+
}
|
4759
4779
|
|
4760
4780
|
.sd-boolean--checked .sd-boolean__thumb {
|
4761
4781
|
margin-left: 100%;
|