@umbraco-ui/uui-range-slider 1.14.0-rc.1 → 1.14.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.
Files changed (2) hide show
  1. package/lib/index.js +25 -5
  2. 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(70, 86, 200));
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(191, 33, 78));
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(191, 33, 78));
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(226, 60, 107));
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(226, 60, 107));
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.1",
3
+ "version": "1.14.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.14.0-rc.1"
33
+ "@umbraco-ui/uui-base": "1.14.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": "c3c2fc0f8a68b897b5c88e0c3e09f549150f1034"
44
+ "gitHead": "ce9a4d14f93b626822ebed268f92cf44295f13bd"
45
45
  }