@occmundial/occ-atomic 3.0.0-beta.51 → 3.0.0-beta.53

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,3 +1,17 @@
1
+ # [3.0.0-beta.53](https://github.com/occmundial/occ-atomic/compare/v3.0.0-beta.52...v3.0.0-beta.53) (2024-09-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Add tabindex zero to bottom links ([18de40b](https://github.com/occmundial/occ-atomic/commit/18de40b3e5182dc2c7f2dca8bcf9c2a5eef82ffb))
7
+
8
+ # [3.0.0-beta.52](https://github.com/occmundial/occ-atomic/compare/v3.0.0-beta.51...v3.0.0-beta.52) (2024-09-03)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Add cursor pointer to bottom links ([93eb978](https://github.com/occmundial/occ-atomic/commit/93eb9787735c7846c35ae797f71a3b515cc0913e))
14
+
1
15
  # [3.0.0-beta.51](https://github.com/occmundial/occ-atomic/compare/v3.0.0-beta.50...v3.0.0-beta.51) (2024-09-03)
2
16
 
3
17
 
@@ -84,7 +84,8 @@ var Footer = function Footer(_ref) {
84
84
  href: item.href,
85
85
  target: item.target,
86
86
  rel: item.rel,
87
- onClick: item.onClick
87
+ onClick: item.onClick,
88
+ tabIndex: 0
88
89
  }, item.text)));
89
90
  })), copyText && /*#__PURE__*/_react["default"].createElement("div", {
90
91
  className: classes.copyright
@@ -56,6 +56,7 @@ var _default = {
56
56
  font: (0, _styles.parseFontValue)(_fonts["default"]['body-regular']),
57
57
  color: _colors["default"].text.corp.secondary,
58
58
  textDecoration: 'none',
59
+ cursor: 'pointer',
59
60
  transition: 'all cubic-bezier(0.25,0.46,0.45,0.94) 0.2s',
60
61
  '&:hover': {
61
62
  color: _colors["default"].text.corp.primary
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@occmundial/occ-atomic",
3
- "version": "3.0.0-beta.51",
3
+ "version": "3.0.0-beta.53",
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",