survey-react 1.11.4 → 1.11.5
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 +126 -39
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +26 -1
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +33 -1
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +87 -16
- package/survey.react.js +203 -74
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/modern.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.11.
|
2
|
+
* surveyjs - Survey JavaScript library v1.11.5
|
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
|
*/
|
@@ -2897,6 +2897,22 @@ button.sv-action-bar-item {
|
|
2897
2897
|
visibility: hidden;
|
2898
2898
|
}
|
2899
2899
|
|
2900
|
+
.sv-drag-drop-choices-shortcut {
|
2901
|
+
cursor: grabbing;
|
2902
|
+
position: absolute;
|
2903
|
+
z-index: 10000;
|
2904
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
2905
|
+
}
|
2906
|
+
|
2907
|
+
.sv-drag-drop-choices-shortcut__content.sv-drag-drop-choices-shortcut__content {
|
2908
|
+
min-width: 100px;
|
2909
|
+
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));
|
2910
|
+
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
2911
|
+
border-radius: calc(4.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2912
|
+
padding-right: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2913
|
+
margin-left: 0;
|
2914
|
+
}
|
2915
|
+
|
2900
2916
|
:root {
|
2901
2917
|
--sjs-transition-duration: 150ms;
|
2902
2918
|
}
|
@@ -4312,6 +4328,15 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
|
|
4312
4328
|
font-weight: 400;
|
4313
4329
|
}
|
4314
4330
|
|
4331
|
+
.sv-list__item.sv-list__item--selected.sv-list__item--group > .sv-list__item-body {
|
4332
|
+
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
4333
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4334
|
+
font-weight: 400;
|
4335
|
+
}
|
4336
|
+
.sv-list__item.sv-list__item--selected.sv-list__item--group > .sv-list__item-body use {
|
4337
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4338
|
+
}
|
4339
|
+
|
4315
4340
|
.sv-list__item.sv-list__item--disabled .sv-list__item-body {
|
4316
4341
|
cursor: default;
|
4317
4342
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|