survey-react 1.11.11 → 1.11.13
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 +34 -14
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +27 -7
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +27 -7
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +100 -46
- package/survey.react.js +423 -238
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/package.json
CHANGED
package/survey.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.11.
|
2
|
+
* surveyjs - Survey JavaScript library v1.11.13
|
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
|
*/
|
@@ -340,26 +340,40 @@
|
|
340
340
|
fill: var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45));
|
341
341
|
}
|
342
342
|
|
343
|
-
sv-brand-info,
|
343
|
+
sv-brand-info,
|
344
|
+
.sv-brand-info {
|
344
345
|
z-index: 1;
|
345
346
|
position: relative;
|
346
347
|
margin-top: 1px;
|
347
348
|
}
|
348
349
|
|
349
350
|
.sv-brand-info {
|
350
|
-
width: 100%;
|
351
351
|
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
352
|
-
text-align:
|
352
|
+
text-align: right;
|
353
353
|
color: #161616;
|
354
|
-
|
355
|
-
padding: 32px 0;
|
356
|
-
box-shadow: 0px -1px 0px #D6D6D6;
|
354
|
+
padding: 24px 40px;
|
357
355
|
}
|
358
356
|
.sv-brand-info a {
|
359
357
|
color: #161616;
|
360
358
|
text-decoration-line: underline;
|
361
359
|
}
|
362
360
|
|
361
|
+
.sd-body--static .sv-brand-info {
|
362
|
+
padding-top: 0;
|
363
|
+
margin-top: 16px;
|
364
|
+
}
|
365
|
+
|
366
|
+
.sd-body--responsive .sv-brand-info {
|
367
|
+
padding-top: 16px;
|
368
|
+
margin-top: -8px;
|
369
|
+
}
|
370
|
+
|
371
|
+
.sd-root-modern--mobile .sv-brand-info {
|
372
|
+
padding: 48px 24px 8px 24px;
|
373
|
+
margin-top: 0;
|
374
|
+
text-align: center;
|
375
|
+
}
|
376
|
+
|
363
377
|
.sv-brand-info__text {
|
364
378
|
font-weight: 600;
|
365
379
|
font-size: var(--sjs-font-size, 16px);
|
@@ -378,11 +392,17 @@ sv-brand-info, .sv-brand-info {
|
|
378
392
|
font-weight: 400;
|
379
393
|
font-size: calc(0.75 * (var(--sjs-font-size, 16px)));
|
380
394
|
line-height: var(--sjs-font-size, 16px);
|
395
|
+
padding-top: 4px;
|
381
396
|
}
|
382
397
|
.sv-brand-info__terms a {
|
383
398
|
color: #909090;
|
384
399
|
}
|
385
400
|
|
401
|
+
.sd-body--responsive .sv-brand-info {
|
402
|
+
padding-right: 0;
|
403
|
+
padding-left: 0;
|
404
|
+
}
|
405
|
+
|
386
406
|
:root {
|
387
407
|
--sjs-transition-duration: 150ms;
|
388
408
|
}
|