survey-react 1.10.2 → 1.10.3
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 +55 -19
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +13 -1
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +387 -1
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +31 -17
- package/survey.react.js +190 -98
- 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.10.
|
2
|
+
* surveyjs - Survey JavaScript library v1.10.3
|
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
|
*/
|
@@ -3952,6 +3952,18 @@ sv-brand-info, .sv-brand-info {
|
|
3952
3952
|
margin-left: var(--sjs-base-unit, var(--base-unit, 8px));
|
3953
3953
|
}
|
3954
3954
|
|
3955
|
+
.sv-ranking-shortcut {
|
3956
|
+
cursor: grabbing;
|
3957
|
+
position: absolute;
|
3958
|
+
z-index: 10000;
|
3959
|
+
border-radius: calc(12.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3960
|
+
min-width: 100px;
|
3961
|
+
max-width: 400px;
|
3962
|
+
box-shadow: var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1)), var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1));
|
3963
|
+
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
3964
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
3965
|
+
}
|
3966
|
+
|
3955
3967
|
.sv-ranking--select-to-rank {
|
3956
3968
|
display: flex;
|
3957
3969
|
}
|