@umbraco-ui/uui-range-slider 1.12.2 → 1.13.0-rc.0
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
CHANGED
|
@@ -509,8 +509,8 @@ UUIRangeSliderElement.styles = [
|
|
|
509
509
|
}
|
|
510
510
|
|
|
511
511
|
:host([error]) {
|
|
512
|
-
--color-interactive: var(--uui-color-
|
|
513
|
-
--color-hover: var(--uui-color-
|
|
512
|
+
--color-interactive: var(--uui-color-invalid-standalone,rgb(191, 33, 78));
|
|
513
|
+
--color-hover: var(--uui-color-invalid,#d42054);
|
|
514
514
|
}
|
|
515
515
|
|
|
516
516
|
#range-slider {
|
|
@@ -587,11 +587,11 @@ UUIRangeSliderElement.styles = [
|
|
|
587
587
|
}
|
|
588
588
|
|
|
589
589
|
:host([error]) .color {
|
|
590
|
-
background-color: var(--uui-color-
|
|
590
|
+
background-color: var(--uui-color-invalid-standalone,rgb(191, 33, 78));
|
|
591
591
|
}
|
|
592
592
|
:host([error]) #inner-color-thumb:hover ~ .color,
|
|
593
593
|
:host([error]) #inner-color-thumb:focus ~ .color {
|
|
594
|
-
background-color: var(--uui-color-
|
|
594
|
+
background-color: var(--uui-color-invalid-emphasis,rgb(226, 60, 107));
|
|
595
595
|
}
|
|
596
596
|
|
|
597
597
|
/** Steps */
|
|
@@ -619,7 +619,7 @@ UUIRangeSliderElement.styles = [
|
|
|
619
619
|
}
|
|
620
620
|
|
|
621
621
|
:host([error]) .track-step.filled {
|
|
622
|
-
fill: var(--uui-color-
|
|
622
|
+
fill: var(--uui-color-invalid-emphasis,rgb(226, 60, 107));
|
|
623
623
|
}
|
|
624
624
|
|
|
625
625
|
: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.
|
|
3
|
+
"version": "1.13.0-rc.0",
|
|
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.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.13.0-rc.0"
|
|
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": "864afa6c182c2a73c479237732dadc1abc69a4a0"
|
|
45
45
|
}
|