survey-react 1.9.130 → 1.9.131
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 +13 -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 +196 -131
- package/survey.react.js +72 -22
- 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.131
|
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);
|
@@ -4753,9 +4762,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4753
4762
|
font-weight: 600;
|
4754
4763
|
margin-left: 0%;
|
4755
4764
|
transform: translateX(0);
|
4756
|
-
white-space: nowrap;
|
4757
4765
|
z-index: 2;
|
4758
4766
|
}
|
4767
|
+
.sd-boolean__thumb .sv-string-viewer.sv-string-viewer--multiline {
|
4768
|
+
white-space: nowrap;
|
4769
|
+
}
|
4759
4770
|
|
4760
4771
|
.sd-boolean--checked .sd-boolean__thumb {
|
4761
4772
|
margin-left: 100%;
|