survey-react 1.9.77 → 1.9.78
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 +23 -7
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +2 -7
- 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 +6766 -6365
- package/survey.react.js +206 -620
- 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.78
|
3
3
|
* Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
5
|
*/
|
@@ -544,9 +544,6 @@ sv-popup {
|
|
544
544
|
padding: 0;
|
545
545
|
border-radius: 0;
|
546
546
|
}
|
547
|
-
.sv-dropdown-popup.sv-popup--overlay .sv-popup__body-footer .sv-action-bar {
|
548
|
-
justify-content: flex-end;
|
549
|
-
}
|
550
547
|
.sv-dropdown-popup.sv-popup--overlay .sv-popup__body-footer .sv-action-bar .sv-action {
|
551
548
|
width: auto;
|
552
549
|
}
|
@@ -906,6 +903,7 @@ sv-popup {
|
|
906
903
|
.sv-ranking {
|
907
904
|
outline: none;
|
908
905
|
user-select: none;
|
906
|
+
-webkit-user-select: none;
|
909
907
|
}
|
910
908
|
|
911
909
|
.sv-ranking-item {
|
@@ -1566,7 +1564,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1566
1564
|
|
1567
1565
|
.sd-element__title--expandable .sd-element__num {
|
1568
1566
|
float: none;
|
1569
|
-
margin-
|
1567
|
+
margin-inline-start: 0;
|
1570
1568
|
width: auto;
|
1571
1569
|
padding-left: 0;
|
1572
1570
|
padding-right: 0;
|
@@ -3082,7 +3080,7 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
3082
3080
|
.sd-imagepicker__item img,
|
3083
3081
|
.sd-imagepicker__item .sd-imagepicker__image-container > div {
|
3084
3082
|
border-radius: calc(0.5 * var(--base-unit, 8px));
|
3085
|
-
background-color: var(--background-dim, #
|
3083
|
+
background-color: var(--background-dim-light, #f9f9f9);
|
3086
3084
|
}
|
3087
3085
|
|
3088
3086
|
.sd-imagepicker__item-decorator {
|
@@ -3154,6 +3152,7 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
3154
3152
|
.sd-imagepicker__no-image {
|
3155
3153
|
display: flex;
|
3156
3154
|
background-color: var(--background-dim-light, #f9f9f9);
|
3155
|
+
inset-block-start: 0;
|
3157
3156
|
}
|
3158
3157
|
|
3159
3158
|
.sd-imagepicker__no-image-svg {
|
@@ -3189,6 +3188,23 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
3189
3188
|
max-width: calc(80 * var(--base-unit, 8px));
|
3190
3189
|
}
|
3191
3190
|
|
3191
|
+
.sd-image__no-image {
|
3192
|
+
background: var(--background-dim-light, #f9f9f9);
|
3193
|
+
min-width: calc(5 * var(--base-unit, 8px));
|
3194
|
+
min-height: calc(5 * var(--base-unit, 8px));
|
3195
|
+
width: 100%;
|
3196
|
+
height: 100%;
|
3197
|
+
position: absolute;
|
3198
|
+
inset-block-start: 0;
|
3199
|
+
display: flex;
|
3200
|
+
align-items: center;
|
3201
|
+
justify-content: center;
|
3202
|
+
}
|
3203
|
+
|
3204
|
+
.sd-image__no-image use {
|
3205
|
+
fill: var(--foreground-light, #909090);
|
3206
|
+
}
|
3207
|
+
|
3192
3208
|
.sd-html {
|
3193
3209
|
white-space: initial;
|
3194
3210
|
}
|
@@ -4266,7 +4282,7 @@ sv-components-container,
|
|
4266
4282
|
|
4267
4283
|
.sd-root-modern.sd-root-modern--mobile .sd-element__num {
|
4268
4284
|
float: none;
|
4269
|
-
margin-
|
4285
|
+
margin-inline-start: 0;
|
4270
4286
|
width: auto;
|
4271
4287
|
padding-left: 0;
|
4272
4288
|
padding-right: 0;
|