survey-react 1.9.117 → 1.9.118
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 +14 -4
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +5 -2
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +5 -2
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +93 -23
- package/survey.react.js +239 -118
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +4 -4
package/modern.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.9.
|
2
|
+
* surveyjs - Survey JavaScript library v1.9.118
|
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
|
*/
|
@@ -4011,11 +4011,14 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
4011
4011
|
opacity: 1;
|
4012
4012
|
}
|
4013
4013
|
|
4014
|
+
.sv-save-data_root.sv-save-data_root--with-buttons {
|
4015
|
+
padding: calc(2 * (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)))) calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4016
|
+
}
|
4017
|
+
|
4014
4018
|
.sv-save-data_root.sv-save-data_error {
|
4015
4019
|
background-color: var(--sjs-special-red, var(--red, #e60a3e));
|
4016
4020
|
color: var(--sjs-general-backcolor, var(--background, #fff));
|
4017
4021
|
font-weight: 600;
|
4018
|
-
padding: calc(2 * (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)))) calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4019
4022
|
gap: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4020
4023
|
}
|
4021
4024
|
|