@occmundial/occ-atomic 3.0.0-beta.32 → 3.0.0-beta.33
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 +10 -0
- package/build/Footer/Footer.js +7 -16
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
# [3.0.0-beta.33](https://github.com/occmundial/occ-atomic/compare/v3.0.0-beta.32...v3.0.0-beta.33) (2024-07-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Remove unnecesary div ([ab699f9](https://github.com/occmundial/occ-atomic/commit/ab699f9370b51dfdb7e57d21840ce452702aecf2))
|
|
7
|
+
* Resolve conflicts with beta ([e046e67](https://github.com/occmundial/occ-atomic/commit/e046e6717789a3d2ef8fd055d752a933eab18e33))
|
|
8
|
+
* Revert footer changes and remove row ([3345402](https://github.com/occmundial/occ-atomic/commit/33454022daeb247db464b297ba0596cdd5956cc1))
|
|
9
|
+
* Revert footer changes and remove row ([6345b4e](https://github.com/occmundial/occ-atomic/commit/6345b4ef24107127e0d1654ac32e7c3625c52442))
|
|
10
|
+
|
|
1
11
|
# [3.0.0-beta.32](https://github.com/occmundial/occ-atomic/compare/v3.0.0-beta.31...v3.0.0-beta.32) (2024-07-16)
|
|
2
12
|
|
|
3
13
|
|
package/build/Footer/Footer.js
CHANGED
|
@@ -54,17 +54,12 @@ var Footer = function Footer(_ref) {
|
|
|
54
54
|
className: columns.length > 0 ? classes.footer : classes.footerWithoutColumns
|
|
55
55
|
}, /*#__PURE__*/_react["default"].createElement(_Grid["default"], {
|
|
56
56
|
fluid: winWidth < _grid["default"].xl
|
|
57
|
-
}, /*#__PURE__*/_react["default"].createElement(
|
|
57
|
+
}, /*#__PURE__*/_react["default"].createElement(_Flexbox["default"], {
|
|
58
|
+
display: "flex",
|
|
59
|
+
direction: isMobile ? 'col' : 'row',
|
|
58
60
|
className: classes.column
|
|
59
61
|
}, columns.map(function (column, index) {
|
|
60
|
-
return /*#__PURE__*/_react["default"].createElement(
|
|
61
|
-
xxs: {
|
|
62
|
-
col: 12
|
|
63
|
-
},
|
|
64
|
-
sm: {
|
|
65
|
-
col: 6
|
|
66
|
-
}
|
|
67
|
-
}, /*#__PURE__*/_react["default"].createElement(_Flexbox["default"], {
|
|
62
|
+
return /*#__PURE__*/_react["default"].createElement(_Flexbox["default"], {
|
|
68
63
|
key: index,
|
|
69
64
|
flex: "1",
|
|
70
65
|
className: !isMobile ? classes.list : ''
|
|
@@ -75,12 +70,8 @@ var Footer = function Footer(_ref) {
|
|
|
75
70
|
key: list.key,
|
|
76
71
|
listClassName: listClassName
|
|
77
72
|
});
|
|
78
|
-
}))
|
|
79
|
-
})), /*#__PURE__*/_react["default"].createElement(
|
|
80
|
-
xxs: {
|
|
81
|
-
col: 12
|
|
82
|
-
}
|
|
83
|
-
}, /*#__PURE__*/_react["default"].createElement(_Flexbox["default"], {
|
|
73
|
+
}));
|
|
74
|
+
})), /*#__PURE__*/_react["default"].createElement(_Flexbox["default"], {
|
|
84
75
|
display: "flex",
|
|
85
76
|
alignItems: "start",
|
|
86
77
|
className: classes.bottomWrap,
|
|
@@ -119,7 +110,7 @@ var Footer = function Footer(_ref) {
|
|
|
119
110
|
})), copyText && /*#__PURE__*/_react["default"].createElement(_Text["default"], {
|
|
120
111
|
small: true,
|
|
121
112
|
mid: true
|
|
122
|
-
}, copyText)), bottomItem)))
|
|
113
|
+
}, copyText)), bottomItem)));
|
|
123
114
|
};
|
|
124
115
|
|
|
125
116
|
var columnPropTypes = _propTypes["default"].arrayOf(_propTypes["default"].arrayOf(_propTypes["default"].shape({
|
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.33",
|
|
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",
|