survey-react 1.12.11 → 1.12.12
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 +5 -5
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +9 -1
- 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 +75 -57
- package/survey.react.js +281 -229
- 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.12.
|
2
|
+
* surveyjs - Survey JavaScript library v1.12.12
|
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
|
*/
|
@@ -189,6 +189,10 @@ sv-popup {
|
|
189
189
|
gap: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
190
190
|
}
|
191
191
|
|
192
|
+
.sd-root-modern--mobile .sv-popup--confirm-delete .sv-popup__body-content {
|
193
|
+
min-width: auto;
|
194
|
+
}
|
195
|
+
|
192
196
|
.sv-popup--overlay {
|
193
197
|
width: 100%;
|
194
198
|
height: var(--sv-popup-overlay-height, 100vh);
|
@@ -3019,6 +3023,10 @@ sv-popup {
|
|
3019
3023
|
gap: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3020
3024
|
}
|
3021
3025
|
|
3026
|
+
.sd-root-modern--mobile .sv-popup--confirm-delete .sv-popup__body-content {
|
3027
|
+
min-width: auto;
|
3028
|
+
}
|
3029
|
+
|
3022
3030
|
.sv-popup--overlay {
|
3023
3031
|
width: 100%;
|
3024
3032
|
height: var(--sv-popup-overlay-height, 100vh);
|