@umbraco-ui/uui-range-slider 1.12.1 → 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-danger-standalone,rgb(191, 33, 78));
513
- --color-hover: var(--uui-color-danger,#d42054);
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-danger-standalone,rgb(191, 33, 78));
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-danger-emphasis,rgb(226, 60, 107));
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-danger-emphasis,rgb(226, 60, 107));
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,
@@ -15,7 +15,7 @@ export declare class UUIRangeSliderElement extends UUIRangeSliderElement_base {
15
15
  * @type {string}
16
16
  * @attr
17
17
  */
18
- label: String;
18
+ label: string;
19
19
  /**
20
20
  * Disables the input.
21
21
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-range-slider",
3
- "version": "1.12.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.12.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": "a7d67a9f6b60b8c0b351b21d5dac49cdfc764f44"
44
+ "gitHead": "864afa6c182c2a73c479237732dadc1abc69a4a0"
45
45
  }