survey-react 1.12.12 → 1.12.13
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 +45 -10
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +16 -1
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +16 -1
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +15 -7
- package/survey.react.js +94 -46
- 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.13
|
|
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
|
*/
|
|
@@ -2878,6 +2878,21 @@ button.sv-action-bar-item {
|
|
|
2878
2878
|
align-items: center;
|
|
2879
2879
|
line-height: 0;
|
|
2880
2880
|
}
|
|
2881
|
+
.sv-matrixdynamic-dragged-row .sd-table__cell.sd-table__cell--drag > div {
|
|
2882
|
+
background-color: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
|
2883
|
+
min-height: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
|
2884
|
+
}
|
|
2885
|
+
|
|
2886
|
+
.sd-table__cell--header.sd-table__cell--drag,
|
|
2887
|
+
.sd-table__cell.sd-table__cell--drag {
|
|
2888
|
+
padding-right: 0;
|
|
2889
|
+
padding-left: 0;
|
|
2890
|
+
}
|
|
2891
|
+
|
|
2892
|
+
.sd-question--mobile .sd-table__cell--header.sd-table__cell--drag,
|
|
2893
|
+
.sd-question--mobile .sd-table__cell.sd-table__cell--drag {
|
|
2894
|
+
display: none;
|
|
2895
|
+
}
|
|
2881
2896
|
|
|
2882
2897
|
.sv-matrix-row--drag-drop-ghost-mod td {
|
|
2883
2898
|
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|