@odx/ui 3.5.5 → 3.5.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @odx/ui
2
2
 
3
+ ## 3.5.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 9507e82: Fixed hover effect for disabled state in switch component
8
+
3
9
  ## 3.5.5
4
10
 
5
11
  ### Patch Changes
package/core-theme.css CHANGED
@@ -6260,7 +6260,7 @@ html body .odx-fs-italic {
6260
6260
  }
6261
6261
  }
6262
6262
  @media (hover: hover){
6263
- .odx-switch.is-active:hover .odx-switch__indicator::before {
6263
+ .odx-switch.is-active:not(.is-disabled):hover .odx-switch__indicator::before {
6264
6264
  background-color: var(--odx-c-highlight-hover);
6265
6265
  border-color: var(--odx-c-highlight-hover);
6266
6266
  }
@@ -6572,8 +6572,6 @@ html body .odx-fs-italic {
6572
6572
  -webkit-appearance: textfield;
6573
6573
  -moz-appearance: textfield;
6574
6574
  appearance: textfield;
6575
- font-weight: var(--odx-typography-font-weight-normal);
6576
- letter-spacing: var(--odx-typography-font-weight-normal-letter-spacing);
6577
6575
  width: 100%;
6578
6576
  }
6579
6577
  .odx-timepicker input[odxTimepickerControl]::-moz-placeholder {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odx/ui",
3
- "version": "3.5.5",
3
+ "version": "3.5.6",
4
4
  "author": "Drägerwerk AG & Co.KGaA",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "peerDependencies": {
@@ -103,7 +103,7 @@
103
103
  background-color: var(--odx-control-background-color-hover);
104
104
  }
105
105
 
106
- #{$root}.is-active:hover &::before {
106
+ #{$root}.is-active:not(.is-disabled):hover &::before {
107
107
  @include indicator-color(var(--odx-c-highlight-hover));
108
108
  }
109
109
 
@@ -20,8 +20,6 @@
20
20
 
21
21
  input[odxTimepickerControl] {
22
22
  appearance: textfield;
23
- font-weight: var(--odx-typography-font-weight-normal);
24
- letter-spacing: var(--odx-typography-font-weight-normal-letter-spacing);
25
23
  width: 100%;
26
24
 
27
25
  &::placeholder {