survey-react 1.12.7 → 1.12.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-react",
3
- "version": "1.12.7",
3
+ "version": "1.12.8",
4
4
  "description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
5
5
  "keywords": [
6
6
  "Survey",
package/survey.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.7
2
+ * surveyjs - Survey JavaScript library v1.12.8
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
  */
@@ -439,6 +439,22 @@ sv-brand-info,
439
439
  margin-top: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
440
440
  }
441
441
 
442
+ .sv-matrixdynamic-dragged-row {
443
+ cursor: grabbing;
444
+ position: absolute;
445
+ z-index: 10000;
446
+ font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
447
+ }
448
+ .sv-matrixdynamic-dragged-row .sd-table__row {
449
+ box-shadow: var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1)), var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1));
450
+ background-color: var(--sjs-general-backcolor, var(--background, #fff));
451
+ display: flex;
452
+ flex-grow: 0;
453
+ flex-shrink: 0;
454
+ align-items: center;
455
+ line-height: 0;
456
+ }
457
+
442
458
  .sv-matrix-row--drag-drop-ghost-mod td {
443
459
  background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
444
460
  }