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/defaultV2.css +22 -3
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +17 -1
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +17 -1
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +225 -46
- package/survey.react.js +772 -338
- 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.12.
|
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
|
*/
|
@@ -452,6 +452,22 @@ button.sv-action-bar-item {
|
|
452
452
|
margin-top: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
453
453
|
}
|
454
454
|
|
455
|
+
.sv-matrixdynamic-dragged-row {
|
456
|
+
cursor: grabbing;
|
457
|
+
position: absolute;
|
458
|
+
z-index: 10000;
|
459
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
460
|
+
}
|
461
|
+
.sv-matrixdynamic-dragged-row .sd-table__row {
|
462
|
+
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));
|
463
|
+
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
464
|
+
display: flex;
|
465
|
+
flex-grow: 0;
|
466
|
+
flex-shrink: 0;
|
467
|
+
align-items: center;
|
468
|
+
line-height: 0;
|
469
|
+
}
|
470
|
+
|
455
471
|
.sv-matrix-row--drag-drop-ghost-mod td {
|
456
472
|
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
457
473
|
}
|
@@ -2876,7 +2892,10 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2876
2892
|
inset-block-end: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2877
2893
|
}
|
2878
2894
|
|
2879
|
-
.sd-
|
2895
|
+
.sd-text__content:focus-within .sd-remaining-character-counter,
|
2896
|
+
.sd-comment__content:focus-within .sd-remaining-character-counter,
|
2897
|
+
.sd-multipletext__content:focus-within .sd-remaining-character-counter,
|
2898
|
+
.sd-matrix__question-wrapper:focus-within .sd-remaining-character-counter {
|
2880
2899
|
display: flex;
|
2881
2900
|
}
|
2882
2901
|
|
@@ -3579,7 +3598,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3579
3598
|
padding: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) var(--sjs-base-unit, var(--base-unit, 8px));
|
3580
3599
|
}
|
3581
3600
|
|
3582
|
-
.sd-
|
3601
|
+
.sd-matrix__question-wrapper {
|
3583
3602
|
position: relative;
|
3584
3603
|
}
|
3585
3604
|
|