survey-react 1.11.5 → 1.11.7
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 -5
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +6 -6
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +6 -6
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +86 -86
- package/survey.react.js +296 -121
- 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.7
|
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
|
*/
|
@@ -2134,6 +2134,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
|
|
2134
2134
|
opacity: 0.25;
|
2135
2135
|
}
|
2136
2136
|
|
2137
|
+
.sd-element__title.sd-element__title--hidden {
|
2138
|
+
display: none;
|
2139
|
+
}
|
2140
|
+
|
2137
2141
|
.sd-root--readonly .sd-element__title.sd-element__title--disabled {
|
2138
2142
|
opacity: 1;
|
2139
2143
|
}
|
@@ -3953,6 +3957,10 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3953
3957
|
min-width: unset;
|
3954
3958
|
}
|
3955
3959
|
|
3960
|
+
.sd-root--compact .sd-title .sv-title-actions {
|
3961
|
+
width: 100%;
|
3962
|
+
}
|
3963
|
+
|
3956
3964
|
.sd-action-title-bar {
|
3957
3965
|
flex: 1 9 auto;
|
3958
3966
|
min-width: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -5878,8 +5886,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5878
5886
|
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
5879
5887
|
}
|
5880
5888
|
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header {
|
5881
|
-
padding-bottom: 0;
|
5882
5889
|
padding-top: var(--sd-base-vertical-padding);
|
5890
|
+
padding-bottom: 0;
|
5883
5891
|
}
|
5884
5892
|
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header:after {
|
5885
5893
|
display: none;
|
@@ -6588,6 +6596,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
6588
6596
|
transform: translateX(-50%);
|
6589
6597
|
padding: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6590
6598
|
}
|
6599
|
+
.sd-context-btn.sd-file__take-picture-button:hover, .sd-context-btn.sd-file__take-picture-button:focus {
|
6600
|
+
box-shadow: 0 0 0 2px var(--sjs-special-red, var(--red, #e60a3e));
|
6601
|
+
}
|
6591
6602
|
.sd-context-btn.sd-file__take-picture-button .sv-svg-icon {
|
6592
6603
|
height: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6593
6604
|
width: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -6595,9 +6606,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
6595
6606
|
.sd-context-btn.sd-file__take-picture-button .sv-svg-icon use {
|
6596
6607
|
fill: var(--sjs-general-backcolor, var(--background, #fff));
|
6597
6608
|
}
|
6598
|
-
.sd-context-btn.sd-file__take-picture-button:hover, .sd-context-btn.sd-file__take-picture-button:focus {
|
6599
|
-
box-shadow: 0 0 0 2px var(--sjs-special-red, var(--red, #e60a3e));
|
6600
|
-
}
|
6601
6609
|
|
6602
6610
|
.sd-file__video-container {
|
6603
6611
|
background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
|