@occmundial/occ-atomic 3.0.0-beta.13 → 3.0.0-beta.14

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [3.0.0-beta.14](https://github.com/occmundial/occ-atomic/compare/v3.0.0-beta.13...v3.0.0-beta.14) (2024-06-13)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Fix toggle background on focus when hovered ([8c35f96](https://github.com/occmundial/occ-atomic/commit/8c35f96b77fdb3d1692d864159561842a3213bba))
7
+
1
8
  # [3.0.0-beta.13](https://github.com/occmundial/occ-atomic/compare/v3.0.0-beta.12...v3.0.0-beta.13) (2024-06-13)
2
9
 
3
10
 
@@ -26,7 +26,7 @@ Object {
26
26
  "background": "#083CAE",
27
27
  },
28
28
  "&:hover $switch:not($checked), &:active $switch:not($checked)": Object {
29
- "background": "#CAD5EE",
29
+ "background": "#CAD5EE !important",
30
30
  },
31
31
  "alignItems": "start",
32
32
  "boxSizing": "border-box",
@@ -34,7 +34,7 @@ var _default = {
34
34
  background: toggle['selected']['bg']['default']
35
35
  },
36
36
  '&:hover $switch:not($checked), &:active $switch:not($checked)': {
37
- background: toggle['unselected']['bg']['hover']
37
+ background: "".concat(toggle['unselected']['bg']['hover'], " !important")
38
38
  },
39
39
  '&:focus $switch:not($checked)': {
40
40
  background: toggle['unselected']['bg']['default'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@occmundial/occ-atomic",
3
- "version": "3.0.0-beta.13",
3
+ "version": "3.0.0-beta.14",
4
4
  "description": "Collection of shareable styled React components for OCC applications.",
5
5
  "homepage": "http://occmundial.github.io/occ-atomic",
6
6
  "main": "build/index.js",