@xqmsg/ui-core 0.21.4 → 0.21.5
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/README.md +1 -1
- package/dist/ui-core.cjs.development.js +4 -4
- package/dist/ui-core.cjs.development.js.map +1 -1
- package/dist/ui-core.cjs.production.min.js +1 -1
- package/dist/ui-core.cjs.production.min.js.map +1 -1
- package/dist/ui-core.esm.js +4 -4
- package/dist/ui-core.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/banner/Banner.stories.tsx +1 -1
- package/src/components/banner/index.tsx +1 -0
- package/src/components/link/index.tsx +1 -1
- package/src/components/navigation/index.tsx +1 -2
package/README.md
CHANGED
|
@@ -37,4 +37,4 @@ From staging we can merge into master.
|
|
|
37
37
|
Pull master locally and run the following, to fresh clean, install, build, and publish to npm, run the following:
|
|
38
38
|
`yarn clean && yarn && yarn build && npm publish`
|
|
39
39
|
|
|
40
|
-
Use Google Authenticator for your OTP
|
|
40
|
+
Use Google Authenticator for your OTP.
|
|
@@ -224,7 +224,8 @@ var Banner = function Banner(_ref) {
|
|
|
224
224
|
variant: variant
|
|
225
225
|
}, /*#__PURE__*/React__default.createElement(react.AlertDescription, null, /*#__PURE__*/React__default.createElement(react.Flex, {
|
|
226
226
|
flexDirection: type === 'condensed' ? 'row' : 'column',
|
|
227
|
-
alignItems: type === 'condensed' ? 'center' : ''
|
|
227
|
+
alignItems: type === 'condensed' ? 'center' : '',
|
|
228
|
+
minHeight: "26px"
|
|
228
229
|
}, /*#__PURE__*/React__default.createElement(react.Box, {
|
|
229
230
|
pr: "8px"
|
|
230
231
|
}, Icon), /*#__PURE__*/React__default.createElement(react.Box, {
|
|
@@ -2775,7 +2776,7 @@ var Link = function Link(_ref) {
|
|
|
2775
2776
|
}
|
|
2776
2777
|
}, [variant]);
|
|
2777
2778
|
return /*#__PURE__*/React__default.createElement(react.Flex, {
|
|
2778
|
-
alignItems: "
|
|
2779
|
+
alignItems: "flex-start",
|
|
2779
2780
|
cursor: "pointer",
|
|
2780
2781
|
onClick: onClick
|
|
2781
2782
|
}, getIcon, /*#__PURE__*/React__default.createElement(react.Text, {
|
|
@@ -2946,9 +2947,8 @@ var NavigationMenu = function NavigationMenu(_ref) {
|
|
|
2946
2947
|
}));
|
|
2947
2948
|
}), bottomMenuItem && /*#__PURE__*/React__default.createElement(NavigationMenuItem, Object.assign({}, bottomMenuItem, {
|
|
2948
2949
|
key: bottomMenuItem.label,
|
|
2949
|
-
isSelected:
|
|
2950
|
+
isSelected: true,
|
|
2950
2951
|
onClick: function onClick() {
|
|
2951
|
-
setSelectedMenuItem(bottomMenuItem.label);
|
|
2952
2952
|
if (bottomMenuItem.onClick) {
|
|
2953
2953
|
bottomMenuItem.onClick();
|
|
2954
2954
|
}
|