survey-react 1.9.123 → 1.9.124
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 +9 -8
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +3 -3
- package/modern.css +2 -2
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +2 -2
- package/survey.min.css +2 -2
- package/survey.react.d.ts +48 -12
- package/survey.react.js +292 -116
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +4 -4
package/defaultV2.css
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.9.
|
3
|
-
* Copyright (c) 2015-
|
2
|
+
* surveyjs - Survey JavaScript library v1.9.124
|
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
|
*/
|
6
6
|
/* cyrillic-ext */
|
@@ -2120,7 +2120,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2120
2120
|
padding-top: 0;
|
2121
2121
|
padding-bottom: 0;
|
2122
2122
|
}
|
2123
|
-
.sd-question--empty.sd-question--complex > .sd-question__content:first-
|
2123
|
+
.sd-question--empty.sd-question--complex > .sd-question__content:first-of-type {
|
2124
2124
|
padding-top: var(--sd-base-padding);
|
2125
2125
|
}
|
2126
2126
|
.sd-question--empty.sd-question--complex > .sd-question__header--location-top {
|
@@ -2551,10 +2551,10 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2551
2551
|
padding-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
2552
2552
|
margin-top: calc(-1 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2553
2553
|
}
|
2554
|
-
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__header
|
2554
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__header ~ .sd-question__content {
|
2555
2555
|
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2556
2556
|
}
|
2557
|
-
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__header
|
2557
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__header ~ .sd-question__content .sd-table--no-header {
|
2558
2558
|
padding-top: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2559
2559
|
}
|
2560
2560
|
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
@@ -2569,10 +2569,10 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2569
2569
|
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content > .sd-row:not(:first-of-type) .sd-question--table.sd-question--error-top > .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2570
2570
|
margin-top: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2571
2571
|
}
|
2572
|
-
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__header
|
2572
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__header ~ .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2573
2573
|
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
2574
2574
|
}
|
2575
|
-
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content > .sd-row:not(:first-of-type) .sd-question--table > .sd-question__header
|
2575
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content > .sd-row:not(:first-of-type) .sd-question--table > .sd-question__header ~ .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2576
2576
|
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
2577
2577
|
}
|
2578
2578
|
|
@@ -4707,7 +4707,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4707
4707
|
overflow-x: hidden;
|
4708
4708
|
white-space: nowrap;
|
4709
4709
|
}
|
4710
|
-
.sd-tab-item:hover {
|
4710
|
+
.sd-tab-item:hover, .sd-tab-item:focus-visible {
|
4711
|
+
outline: none;
|
4711
4712
|
box-shadow: inset 0px -2px 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4712
4713
|
}
|
4713
4714
|
|