@umbraco-ui/uui-range-slider 1.14.0-rc.1 → 1.14.0-rc.4
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/lib/index.js +25 -5
- package/package.json +3 -3
package/lib/index.js
CHANGED
|
@@ -503,13 +503,21 @@ UUIRangeSliderElement.styles = [
|
|
|
503
503
|
css`
|
|
504
504
|
:host {
|
|
505
505
|
--color-interactive: var(--uui-color-selected,#3544b1);
|
|
506
|
-
--color-hover: var(--uui-color-selected-emphasis,rgb(
|
|
506
|
+
--color-hover: var(--uui-color-selected-emphasis,rgb(
|
|
507
|
+
70,
|
|
508
|
+
86,
|
|
509
|
+
200
|
|
510
|
+
));
|
|
507
511
|
--color-focus: var(--uui-color-focus,#3879ff);
|
|
508
512
|
min-height: 30px;
|
|
509
513
|
}
|
|
510
514
|
|
|
511
515
|
:host([error]) {
|
|
512
|
-
--color-interactive: var(--uui-color-invalid-standalone,rgb(
|
|
516
|
+
--color-interactive: var(--uui-color-invalid-standalone,rgb(
|
|
517
|
+
191,
|
|
518
|
+
33,
|
|
519
|
+
78
|
|
520
|
+
));
|
|
513
521
|
--color-hover: var(--uui-color-invalid,#d42054);
|
|
514
522
|
}
|
|
515
523
|
|
|
@@ -587,11 +595,19 @@ UUIRangeSliderElement.styles = [
|
|
|
587
595
|
}
|
|
588
596
|
|
|
589
597
|
:host([error]) .color {
|
|
590
|
-
background-color: var(--uui-color-invalid-standalone,rgb(
|
|
598
|
+
background-color: var(--uui-color-invalid-standalone,rgb(
|
|
599
|
+
191,
|
|
600
|
+
33,
|
|
601
|
+
78
|
|
602
|
+
));
|
|
591
603
|
}
|
|
592
604
|
:host([error]) #inner-color-thumb:hover ~ .color,
|
|
593
605
|
:host([error]) #inner-color-thumb:focus ~ .color {
|
|
594
|
-
background-color: var(--uui-color-invalid-emphasis,rgb(
|
|
606
|
+
background-color: var(--uui-color-invalid-emphasis,rgb(
|
|
607
|
+
226,
|
|
608
|
+
60,
|
|
609
|
+
107
|
|
610
|
+
));
|
|
595
611
|
}
|
|
596
612
|
|
|
597
613
|
/** Steps */
|
|
@@ -619,7 +635,11 @@ UUIRangeSliderElement.styles = [
|
|
|
619
635
|
}
|
|
620
636
|
|
|
621
637
|
:host([error]) .track-step.filled {
|
|
622
|
-
fill: var(--uui-color-invalid-emphasis,rgb(
|
|
638
|
+
fill: var(--uui-color-invalid-emphasis,rgb(
|
|
639
|
+
226,
|
|
640
|
+
60,
|
|
641
|
+
107
|
|
642
|
+
));
|
|
623
643
|
}
|
|
624
644
|
|
|
625
645
|
:host #inner-color-thumb.active ~ .step-wrapper .track-step.filled,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-range-slider",
|
|
3
|
-
"version": "1.14.0-rc.
|
|
3
|
+
"version": "1.14.0-rc.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.14.0-rc.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.14.0-rc.4"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-range-slider",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "8f89db559dfdb60e8afd8a0dc297e2f248f2fb9d"
|
|
45
45
|
}
|