@occmundial/occ-atomic 3.0.0-beta.46 → 3.0.0-beta.47
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +7 -0
- package/build/Tabs/Tab/Tab.js +2 -1
- package/build/Tabs/Tab/styles.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
# [3.0.0-beta.47](https://github.com/occmundial/occ-atomic/compare/v3.0.0-beta.46...v3.0.0-beta.47) (2024-08-26)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* Adjust icon size and align button items ([41702cc](https://github.com/occmundial/occ-atomic/commit/41702cc20135eb298d730a41e51d87e04bc86051))
|
7
|
+
|
1
8
|
# [3.0.0-beta.46](https://github.com/occmundial/occ-atomic/compare/v3.0.0-beta.45...v3.0.0-beta.46) (2024-08-26)
|
2
9
|
|
3
10
|
|
package/build/Tabs/Tab/Tab.js
CHANGED
@@ -47,7 +47,8 @@ function Tab(props) {
|
|
47
47
|
"data-testid": testId,
|
48
48
|
"aria-controls": "tabpanel-".concat(value)
|
49
49
|
}, icon ? /*#__PURE__*/_react["default"].createElement(_Icon["default"], {
|
50
|
-
|
50
|
+
width: iconSize,
|
51
|
+
height: iconSize,
|
51
52
|
iconName: icon,
|
52
53
|
className: "".concat(classes.icon).concat(disabled ? " ".concat(classes.iconDisabled) : ''),
|
53
54
|
transition: "all cubic-bezier(0.25,0.46,0.45,0.94) 0.2s"
|
package/build/Tabs/Tab/styles.js
CHANGED
@@ -25,7 +25,8 @@ var _default = {
|
|
25
25
|
background: 'transparent',
|
26
26
|
border: 0,
|
27
27
|
transition: 'all cubic-bezier(0.25,0.46,0.45,0.94) 0.2s',
|
28
|
-
whiteSpace: 'nowrap'
|
28
|
+
whiteSpace: 'nowrap',
|
29
|
+
alignItems: 'center'
|
29
30
|
},
|
30
31
|
enabled: {
|
31
32
|
color: _colors["default"].text.corp.secondary,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@occmundial/occ-atomic",
|
3
|
-
"version": "3.0.0-beta.
|
3
|
+
"version": "3.0.0-beta.47",
|
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",
|