survey-react 1.11.7 → 1.11.9
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 -9
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +1 -1
- package/modern.min.css +1 -1
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +105 -17
- package/survey.react.js +565 -148
- 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.9
|
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
|
*/
|
@@ -7504,8 +7504,8 @@ svg.sd-action--icon {
|
|
7504
7504
|
opacity: 0.5;
|
7505
7505
|
position: absolute;
|
7506
7506
|
bottom: calc(1.125 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
7507
|
-
right: calc(50% +
|
7508
|
-
width: calc(100% -
|
7507
|
+
right: calc(50% + 10px);
|
7508
|
+
width: calc(100% - 20px);
|
7509
7509
|
pointer-events: none;
|
7510
7510
|
}
|
7511
7511
|
.sd-progress-buttons__list li .sd-progress-buttons__button {
|
@@ -7531,7 +7531,6 @@ svg.sd-action--icon {
|
|
7531
7531
|
height: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
7532
7532
|
top: calc(-0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
7533
7533
|
left: calc(-1.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
7534
|
-
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
7535
7534
|
z-index: -2;
|
7536
7535
|
}
|
7537
7536
|
.sd-progress-buttons__list li .sd-progress-buttons__button .sd-progress-buttons__button-content {
|
@@ -7648,8 +7647,8 @@ svg.sd-action--icon {
|
|
7648
7647
|
}
|
7649
7648
|
.sd-progress-buttons--numbered .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
7650
7649
|
bottom: calc(2.175 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
7651
|
-
right: calc(50% +
|
7652
|
-
width: calc(100% -
|
7650
|
+
right: calc(50% + 18px);
|
7651
|
+
width: calc(100% - 36px);
|
7653
7652
|
}
|
7654
7653
|
.sd-progress-buttons--numbered .sd-progress-buttons__list li .sd-progress-buttons__button {
|
7655
7654
|
width: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -7696,13 +7695,13 @@ svg.sd-action--icon {
|
|
7696
7695
|
[style*="direction:rtl"] .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector,
|
7697
7696
|
[style*="direction: rtl"] .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
7698
7697
|
right: unset;
|
7699
|
-
left: calc(50% +
|
7698
|
+
left: calc(50% + 10px);
|
7700
7699
|
}
|
7701
7700
|
[dir=rtl] .sd-progress-buttons--numbered .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector,
|
7702
7701
|
[style*="direction:rtl"] .sd-progress-buttons--numbered .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector,
|
7703
7702
|
[style*="direction: rtl"] .sd-progress-buttons--numbered .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
7704
7703
|
right: unset;
|
7705
|
-
left: calc(50% +
|
7704
|
+
left: calc(50% + 20px);
|
7706
7705
|
}
|
7707
7706
|
|
7708
7707
|
.sv_progress-toc {
|
@@ -8519,7 +8518,8 @@ body {
|
|
8519
8518
|
z-index: 15;
|
8520
8519
|
}
|
8521
8520
|
|
8522
|
-
.sv-root--sticky-top.sd-progress--pages .sv-components-container-center
|
8521
|
+
.sv-root--sticky-top.sd-progress--pages .sv-components-container-center,
|
8522
|
+
.sv-root--sticky-top.sd-progress--buttons .sv-components-container-center {
|
8523
8523
|
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
8524
8524
|
box-shadow: var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1)), var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
8525
8525
|
}
|