survey-react 1.10.4 → 1.10.6
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 +25 -2
- 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 +157 -25
- package/survey.react.js +499 -175
- 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.10.
|
2
|
+
* surveyjs - Survey JavaScript library v1.10.6
|
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
|
*/
|
@@ -2755,6 +2755,19 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2755
2755
|
width: calc(100% - 4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2756
2756
|
height: calc(1.5 * (var(--sjs-internal-font-editorfont-size)));
|
2757
2757
|
}
|
2758
|
+
.sd-input[type=time].sd-text__character-counter:focus-within,
|
2759
|
+
.sd-input[type=date].sd-text__character-counter:focus-within,
|
2760
|
+
.sd-input[type=datetime-local].sd-text__character-counter:focus-within,
|
2761
|
+
.sd-input[type=week].sd-text__character-counter:focus-within,
|
2762
|
+
.sd-input[type=month].sd-text__character-counter:focus-within,
|
2763
|
+
.sd-input[type=tel].sd-text__character-counter:focus-within,
|
2764
|
+
.sd-input[type=password].sd-text__character-counter:focus-within,
|
2765
|
+
.sd-input[type=url].sd-text__character-counter:focus-within,
|
2766
|
+
.sd-input[type=email].sd-text__character-counter:focus-within,
|
2767
|
+
.sd-input[type=color].sd-text__character-counter:focus-within,
|
2768
|
+
.sd-input[type=range].sd-text__character-counter:focus-within {
|
2769
|
+
width: calc(100% - 10 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2770
|
+
}
|
2758
2771
|
|
2759
2772
|
.sd-input[type=range]::-webkit-slider-runnable-track {
|
2760
2773
|
background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
@@ -3475,6 +3488,10 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3475
3488
|
overflow-x: visible;
|
3476
3489
|
}
|
3477
3490
|
|
3491
|
+
.sd-question--table .sd-question__header--location--left {
|
3492
|
+
z-index: 12;
|
3493
|
+
}
|
3494
|
+
|
3478
3495
|
.sd-table-wrapper {
|
3479
3496
|
display: flex;
|
3480
3497
|
margin: 0 calc(-1 * var(--sd-base-padding));
|
@@ -7954,7 +7971,7 @@ sv-components-container,
|
|
7954
7971
|
padding-top: calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
7955
7972
|
}
|
7956
7973
|
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tfoot tr::before {
|
7957
|
-
|
7974
|
+
background-color: transparent;
|
7958
7975
|
}
|
7959
7976
|
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-table--has-footer) .sd-table__row:last-of-type .sd-table__cell-action--show-detail-mobile,
|
7960
7977
|
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-table--has-footer) .sd-table__row:last-of-type .sd-table__cell-action--remove-row {
|
@@ -7984,6 +8001,9 @@ sv-components-container,
|
|
7984
8001
|
.sd-root-modern.sd-root-modern--mobile .sd-matrix__cell {
|
7985
8002
|
margin-top: 0;
|
7986
8003
|
}
|
8004
|
+
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--footer:not(.sd-question--answered) {
|
8005
|
+
display: none;
|
8006
|
+
}
|
7987
8007
|
.sd-root-modern.sd-root-modern--mobile .sd-table__cell::before {
|
7988
8008
|
padding-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
7989
8009
|
content: attr(data-responsive-title);
|
@@ -8195,6 +8215,9 @@ body {
|
|
8195
8215
|
|
8196
8216
|
.sd-root-modern__wrapper {
|
8197
8217
|
position: relative;
|
8218
|
+
}
|
8219
|
+
|
8220
|
+
.sd-root-modern__wrapper--has-image {
|
8198
8221
|
min-height: 100%;
|
8199
8222
|
}
|
8200
8223
|
|