survey-react 1.12.14 → 1.12.15
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 +23 -2
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +4 -2
- 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 +350 -268
- package/survey.react.js +41 -29
- 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.15
|
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
|
*/
|
@@ -4270,13 +4270,15 @@ sv-brand-info,
|
|
4270
4270
|
}
|
4271
4271
|
|
4272
4272
|
.sv-list__item-body {
|
4273
|
+
--sjs-list-item-padding-left-default: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4274
|
+
--sjs-list-item-padding-left: calc(var(--sjs-list-item-level) * var(--sjs-list-item-padding-left-default));
|
4273
4275
|
position: relative;
|
4274
4276
|
width: 100%;
|
4275
4277
|
align-items: center;
|
4276
4278
|
box-sizing: border-box;
|
4277
4279
|
padding-block: var(--sjs-base-unit, var(--base-unit, 8px));
|
4278
4280
|
padding-inline-end: calc(8 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4279
|
-
padding-inline-start: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4281
|
+
padding-inline-start: var(--sjs-list-item-padding-left, calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4280
4282
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4281
4283
|
font-weight: normal;
|
4282
4284
|
font-size: var(--sjs-font-size, 16px);
|