survey-react 1.12.12 → 1.12.14
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 +49 -12
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +20 -3
- 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 +65 -43
- package/survey.react.js +437 -276
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/package.json
CHANGED
package/survey.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.12.
|
2
|
+
* surveyjs - Survey JavaScript library v1.12.14
|
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
|
*/
|
@@ -457,6 +457,21 @@ sv-brand-info,
|
|
457
457
|
align-items: center;
|
458
458
|
line-height: 0;
|
459
459
|
}
|
460
|
+
.sv-matrixdynamic-dragged-row .sd-table__cell.sd-table__cell--drag > div {
|
461
|
+
background-color: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
462
|
+
min-height: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
463
|
+
}
|
464
|
+
|
465
|
+
.sd-table__cell--header.sd-table__cell--drag,
|
466
|
+
.sd-table__cell.sd-table__cell--drag {
|
467
|
+
padding-right: 0;
|
468
|
+
padding-left: 0;
|
469
|
+
}
|
470
|
+
|
471
|
+
.sd-question--mobile .sd-table__cell--header.sd-table__cell--drag,
|
472
|
+
.sd-question--mobile .sd-table__cell.sd-table__cell--drag {
|
473
|
+
display: none;
|
474
|
+
}
|
460
475
|
|
461
476
|
.sv-matrix-row--drag-drop-ghost-mod td {
|
462
477
|
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|