survey-react 1.11.6 → 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 +9 -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 +39 -19
- package/survey.react.js +192 -70
- 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
|
*/
|
@@ -3957,6 +3957,10 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3957
3957
|
min-width: unset;
|
3958
3958
|
}
|
3959
3959
|
|
3960
|
+
.sd-root--compact .sd-title .sv-title-actions {
|
3961
|
+
width: 100%;
|
3962
|
+
}
|
3963
|
+
|
3960
3964
|
.sd-action-title-bar {
|
3961
3965
|
flex: 1 9 auto;
|
3962
3966
|
min-width: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -5882,8 +5886,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5882
5886
|
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
5883
5887
|
}
|
5884
5888
|
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header {
|
5885
|
-
padding-bottom: 0;
|
5886
5889
|
padding-top: var(--sd-base-vertical-padding);
|
5890
|
+
padding-bottom: 0;
|
5887
5891
|
}
|
5888
5892
|
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header:after {
|
5889
5893
|
display: none;
|
@@ -6592,6 +6596,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
6592
6596
|
transform: translateX(-50%);
|
6593
6597
|
padding: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6594
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
|
+
}
|
6595
6602
|
.sd-context-btn.sd-file__take-picture-button .sv-svg-icon {
|
6596
6603
|
height: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6597
6604
|
width: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -6599,9 +6606,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
6599
6606
|
.sd-context-btn.sd-file__take-picture-button .sv-svg-icon use {
|
6600
6607
|
fill: var(--sjs-general-backcolor, var(--background, #fff));
|
6601
6608
|
}
|
6602
|
-
.sd-context-btn.sd-file__take-picture-button:hover, .sd-context-btn.sd-file__take-picture-button:focus {
|
6603
|
-
box-shadow: 0 0 0 2px var(--sjs-special-red, var(--red, #e60a3e));
|
6604
|
-
}
|
6605
6609
|
|
6606
6610
|
.sd-file__video-container {
|
6607
6611
|
background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
|