survey-react 1.9.107 → 1.9.109
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 +99 -57
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +6 -3
- 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 +2 -2
- package/survey.react.d.ts +328 -272
- package/survey.react.js +834 -461
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/modern.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.9.
|
2
|
+
* surveyjs - Survey JavaScript library v1.9.109
|
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
|
*/
|
@@ -156,7 +156,7 @@ sv-popup {
|
|
156
156
|
background: var(--sjs-general-backcolor, var(--background, #fff));
|
157
157
|
box-shadow: var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1));
|
158
158
|
padding: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
159
|
-
height: calc(100% -
|
159
|
+
height: calc(100% - 1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
160
160
|
}
|
161
161
|
.sv-popup--overlay.sv-popup--overlay .sv-popup__scrolling-content {
|
162
162
|
height: calc(100% - 10 * var(--base-unit, 8px));
|
@@ -2625,6 +2625,9 @@ button.sv-action-bar-item {
|
|
2625
2625
|
overflow: hidden;
|
2626
2626
|
visibility: hidden;
|
2627
2627
|
}
|
2628
|
+
.sv-action--hidden .sv-action__content {
|
2629
|
+
min-width: fit-content;
|
2630
|
+
}
|
2628
2631
|
|
2629
2632
|
.sv-action__content {
|
2630
2633
|
display: flex;
|
@@ -2765,7 +2768,7 @@ sv-popup {
|
|
2765
2768
|
background: var(--sjs-general-backcolor, var(--background, #fff));
|
2766
2769
|
box-shadow: var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1));
|
2767
2770
|
padding: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2768
|
-
height: calc(100% -
|
2771
|
+
height: calc(100% - 1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2769
2772
|
}
|
2770
2773
|
.sv-popup--overlay.sv-popup--overlay .sv-popup__scrolling-content {
|
2771
2774
|
height: calc(100% - 10 * var(--base-unit, 8px));
|