survey-react 1.11.9 → 1.11.10
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 +17 -2
- 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 +129 -53
- package/survey.react.js +226 -93
- 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.11.
|
2
|
+
* surveyjs - Survey JavaScript library v1.11.10
|
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
|
*/
|
@@ -2507,6 +2507,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
|
|
2507
2507
|
display: inline-block;
|
2508
2508
|
flex: 1;
|
2509
2509
|
margin-top: calc(0.25 * var(--sd-base-vertical-padding)) 0;
|
2510
|
+
max-width: 100%;
|
2510
2511
|
}
|
2511
2512
|
|
2512
2513
|
.sd-element--with-frame > .sd-question__content--left {
|
@@ -4098,6 +4099,8 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
4098
4099
|
.sd-selectbase--multi-column {
|
4099
4100
|
display: flex;
|
4100
4101
|
flex: 1 1 0px;
|
4102
|
+
flex-wrap: nowrap;
|
4103
|
+
overflow: auto;
|
4101
4104
|
}
|
4102
4105
|
|
4103
4106
|
.sd-selectbase__label {
|
@@ -4116,7 +4119,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
4116
4119
|
display: block;
|
4117
4120
|
box-sizing: border-box;
|
4118
4121
|
flex: 1 1 0px;
|
4119
|
-
|
4122
|
+
max-width: 100%;
|
4120
4123
|
}
|
4121
4124
|
|
4122
4125
|
.sd-selectbase__column:not(:last-child) {
|
@@ -5479,6 +5482,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5479
5482
|
align-items: flex-start;
|
5480
5483
|
padding-right: 0;
|
5481
5484
|
}
|
5485
|
+
.sd-imagepicker__column.sd-selectbase__column {
|
5486
|
+
min-width: 0;
|
5487
|
+
}
|
5482
5488
|
.sd-imagepicker__column .sd-imagepicker__item {
|
5483
5489
|
width: 100%;
|
5484
5490
|
}
|
@@ -5542,6 +5548,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5542
5548
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
5543
5549
|
}
|
5544
5550
|
|
5551
|
+
.sd-question--image {
|
5552
|
+
width: 100%;
|
5553
|
+
}
|
5554
|
+
|
5545
5555
|
:root {
|
5546
5556
|
--sjs-transition-duration: 150ms;
|
5547
5557
|
}
|
@@ -8524,4 +8534,9 @@ body {
|
|
8524
8534
|
box-shadow: var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1)), var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
8525
8535
|
}
|
8526
8536
|
|
8537
|
+
.sv-components-container-right,
|
8538
|
+
.sv-components-container-left {
|
8539
|
+
width: fit-content;
|
8540
|
+
}
|
8541
|
+
|
8527
8542
|
/*# sourceMappingURL=defaultV2.css.map*/
|