survey-react 1.9.126 → 1.9.128
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 +313 -79
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +62 -4
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +31 -4
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +391 -71
- package/survey.react.js +1472 -617
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/survey.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.9.
|
2
|
+
* surveyjs - Survey JavaScript library v1.9.128
|
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
|
*/
|
@@ -7,6 +7,10 @@
|
|
7
7
|
--sjs-default-font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
8
8
|
}
|
9
9
|
|
10
|
+
:root {
|
11
|
+
--sjs-transition-duration: 150ms;
|
12
|
+
}
|
13
|
+
|
10
14
|
.sv_progress-buttons__container-center {
|
11
15
|
text-align: center;
|
12
16
|
}
|
@@ -116,6 +120,10 @@
|
|
116
120
|
cursor: not-allowed;
|
117
121
|
}
|
118
122
|
|
123
|
+
:root {
|
124
|
+
--sjs-transition-duration: 150ms;
|
125
|
+
}
|
126
|
+
|
119
127
|
.sv_progress-toc {
|
120
128
|
padding: var(--sjs-base-unit, var(--base-unit, 8px));
|
121
129
|
max-width: 336px;
|
@@ -167,6 +175,14 @@
|
|
167
175
|
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
168
176
|
}
|
169
177
|
|
178
|
+
:root {
|
179
|
+
--sjs-transition-duration: 150ms;
|
180
|
+
}
|
181
|
+
|
182
|
+
:root {
|
183
|
+
--sjs-transition-duration: 150ms;
|
184
|
+
}
|
185
|
+
|
170
186
|
.sv_window {
|
171
187
|
position: fixed;
|
172
188
|
bottom: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -206,7 +222,7 @@
|
|
206
222
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
207
223
|
flex: 1;
|
208
224
|
display: flex;
|
209
|
-
justify-content: start;
|
225
|
+
justify-content: flex-start;
|
210
226
|
align-items: center;
|
211
227
|
}
|
212
228
|
|
@@ -242,13 +258,16 @@
|
|
242
258
|
.sv_window_button:hover, .sv_window_button:active {
|
243
259
|
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
244
260
|
}
|
245
|
-
.sv_window_button:hover svg use,
|
261
|
+
.sv_window_button:hover svg use,
|
262
|
+
.sv_window_button:hover svg path, .sv_window_button:active svg use,
|
263
|
+
.sv_window_button:active svg path {
|
246
264
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
247
265
|
}
|
248
266
|
.sv_window_button:active {
|
249
267
|
opacity: 0.5;
|
250
268
|
}
|
251
|
-
.sv_window_button svg use,
|
269
|
+
.sv_window_button svg use,
|
270
|
+
.sv_window_button svg path {
|
252
271
|
fill: var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45));
|
253
272
|
}
|
254
273
|
|
@@ -295,6 +314,10 @@ sv-brand-info, .sv-brand-info {
|
|
295
314
|
color: #909090;
|
296
315
|
}
|
297
316
|
|
317
|
+
:root {
|
318
|
+
--sjs-transition-duration: 150ms;
|
319
|
+
}
|
320
|
+
|
298
321
|
.sv-dragged-element-shortcut {
|
299
322
|
height: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
300
323
|
min-width: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -335,6 +358,10 @@ sv-brand-info, .sv-brand-info {
|
|
335
358
|
visibility: hidden;
|
336
359
|
}
|
337
360
|
|
361
|
+
:root {
|
362
|
+
--sjs-transition-duration: 150ms;
|
363
|
+
}
|
364
|
+
|
338
365
|
.sv-save-data_root {
|
339
366
|
position: fixed;
|
340
367
|
left: 50%;
|