survey-react 1.10.1 → 1.10.2
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 +78 -2
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +1 -1
- package/modern.min.css +1 -1
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +30 -11
- package/survey.react.js +259 -165
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/defaultV2.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.10.
|
2
|
+
* surveyjs - Survey JavaScript library v1.10.2
|
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
|
*/
|
@@ -4442,6 +4442,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4442
4442
|
position: relative;
|
4443
4443
|
width: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4444
4444
|
height: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4445
|
+
box-sizing: content-box;
|
4445
4446
|
}
|
4446
4447
|
.sd-rating__item-star:not(:first-of-type) {
|
4447
4448
|
padding-left: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -4484,6 +4485,81 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4484
4485
|
stroke: transparent;
|
4485
4486
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4486
4487
|
}
|
4488
|
+
.sd-rating__item-star--selected:nth-child(1) svg {
|
4489
|
+
transition-delay: 0ms;
|
4490
|
+
}
|
4491
|
+
.sd-rating__item-star--selected:nth-child(2) svg {
|
4492
|
+
transition-delay: 25ms;
|
4493
|
+
}
|
4494
|
+
.sd-rating__item-star--selected:nth-child(3) svg {
|
4495
|
+
transition-delay: 50ms;
|
4496
|
+
}
|
4497
|
+
.sd-rating__item-star--selected:nth-child(4) svg {
|
4498
|
+
transition-delay: 75ms;
|
4499
|
+
}
|
4500
|
+
.sd-rating__item-star--selected:nth-child(5) svg {
|
4501
|
+
transition-delay: 100ms;
|
4502
|
+
}
|
4503
|
+
.sd-rating__item-star--selected:nth-child(6) svg {
|
4504
|
+
transition-delay: 125ms;
|
4505
|
+
}
|
4506
|
+
.sd-rating__item-star--selected:nth-child(7) svg {
|
4507
|
+
transition-delay: 150ms;
|
4508
|
+
}
|
4509
|
+
.sd-rating__item-star--selected:nth-child(8) svg {
|
4510
|
+
transition-delay: 175ms;
|
4511
|
+
}
|
4512
|
+
.sd-rating__item-star--selected:nth-child(9) svg {
|
4513
|
+
transition-delay: 200ms;
|
4514
|
+
}
|
4515
|
+
.sd-rating__item-star--selected:nth-child(10) svg {
|
4516
|
+
transition-delay: 225ms;
|
4517
|
+
}
|
4518
|
+
.sd-rating__item-star--selected:nth-child(11) svg {
|
4519
|
+
transition-delay: 250ms;
|
4520
|
+
}
|
4521
|
+
.sd-rating__item-star--selected:nth-child(12) svg {
|
4522
|
+
transition-delay: 275ms;
|
4523
|
+
}
|
4524
|
+
.sd-rating__item-star--selected:nth-child(13) svg {
|
4525
|
+
transition-delay: 300ms;
|
4526
|
+
}
|
4527
|
+
.sd-rating__item-star--selected:nth-child(14) svg {
|
4528
|
+
transition-delay: 325ms;
|
4529
|
+
}
|
4530
|
+
.sd-rating__item-star--selected:nth-child(15) svg {
|
4531
|
+
transition-delay: 350ms;
|
4532
|
+
}
|
4533
|
+
.sd-rating__item-star--selected:nth-child(16) svg {
|
4534
|
+
transition-delay: 375ms;
|
4535
|
+
}
|
4536
|
+
.sd-rating__item-star--selected:nth-child(17) svg {
|
4537
|
+
transition-delay: 400ms;
|
4538
|
+
}
|
4539
|
+
.sd-rating__item-star--selected:nth-child(18) svg {
|
4540
|
+
transition-delay: 425ms;
|
4541
|
+
}
|
4542
|
+
.sd-rating__item-star--selected:nth-child(19) svg {
|
4543
|
+
transition-delay: 450ms;
|
4544
|
+
}
|
4545
|
+
.sd-rating__item-star--selected:nth-child(20) svg {
|
4546
|
+
transition-delay: 475ms;
|
4547
|
+
}
|
4548
|
+
.sd-rating__item-star--selected:nth-child(21) svg {
|
4549
|
+
transition-delay: 500ms;
|
4550
|
+
}
|
4551
|
+
.sd-rating__item-star--selected:nth-child(22) svg {
|
4552
|
+
transition-delay: 525ms;
|
4553
|
+
}
|
4554
|
+
.sd-rating__item-star--selected:nth-child(23) svg {
|
4555
|
+
transition-delay: 550ms;
|
4556
|
+
}
|
4557
|
+
.sd-rating__item-star--selected:nth-child(24) svg {
|
4558
|
+
transition-delay: 575ms;
|
4559
|
+
}
|
4560
|
+
.sd-rating__item-star--selected:nth-child(25) svg {
|
4561
|
+
transition-delay: 600ms;
|
4562
|
+
}
|
4487
4563
|
|
4488
4564
|
.sd-rating__item-star--error svg {
|
4489
4565
|
stroke: none;
|
@@ -6159,7 +6235,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
6159
6235
|
min-width: 100%;
|
6160
6236
|
max-width: 100%;
|
6161
6237
|
overflow: hidden;
|
6162
|
-
max-height: calc(
|
6238
|
+
max-height: calc(3 * (var(--sjs-font-size, 16px)));
|
6163
6239
|
text-overflow: ellipsis;
|
6164
6240
|
line-height: var(--sjs-font-size, 16px);
|
6165
6241
|
display: -webkit-box;
|