@nulogy/components 8.4.4 → 8.4.6
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/dist/main.js +8 -6
- package/dist/main.module.js +8 -6
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -26426,7 +26426,6 @@
|
|
|
26426
26426
|
theme = _ref.theme;
|
|
26427
26427
|
return Object.assign(Object.assign(Object.assign({
|
|
26428
26428
|
height: theme.space.x4,
|
|
26429
|
-
margin: 1,
|
|
26430
26429
|
padding: theme.space.half + " " + theme.space.x2,
|
|
26431
26430
|
background: selected ? theme.colors.white : "none",
|
|
26432
26431
|
color: selected ? theme.colors.darkBlue : theme.colors.darkGrey,
|
|
@@ -44132,11 +44131,14 @@
|
|
|
44132
44131
|
|
|
44133
44132
|
return /*#__PURE__*/React__default['default'].createElement(ReactResizeDetector__default['default'], {
|
|
44134
44133
|
handleWidth: true
|
|
44135
|
-
},
|
|
44136
|
-
|
|
44137
|
-
|
|
44138
|
-
|
|
44139
|
-
|
|
44134
|
+
}, function (_ref) {
|
|
44135
|
+
var width = _ref.width;
|
|
44136
|
+
return /*#__PURE__*/React__default['default'].createElement(SelectNavBarBasedOnWidth, Object.assign({
|
|
44137
|
+
breakpointUpper: breakpoints[breakpointUpper] || breakpointUpper,
|
|
44138
|
+
width: width,
|
|
44139
|
+
environment: environment
|
|
44140
|
+
}, props));
|
|
44141
|
+
});
|
|
44140
44142
|
};
|
|
44141
44143
|
|
|
44142
44144
|
var NavBar = styled__default['default'](BaseNavBar).withConfig({
|
package/dist/main.module.js
CHANGED
|
@@ -26400,7 +26400,6 @@ var SwitchButton = styled.button.withConfig({
|
|
|
26400
26400
|
theme = _ref.theme;
|
|
26401
26401
|
return Object.assign(Object.assign(Object.assign({
|
|
26402
26402
|
height: theme.space.x4,
|
|
26403
|
-
margin: 1,
|
|
26404
26403
|
padding: theme.space.half + " " + theme.space.x2,
|
|
26405
26404
|
background: selected ? theme.colors.white : "none",
|
|
26406
26405
|
color: selected ? theme.colors.darkBlue : theme.colors.darkGrey,
|
|
@@ -44106,11 +44105,14 @@ var BaseNavBar = function BaseNavBar(_a) {
|
|
|
44106
44105
|
|
|
44107
44106
|
return /*#__PURE__*/React__default.createElement(ReactResizeDetector, {
|
|
44108
44107
|
handleWidth: true
|
|
44109
|
-
},
|
|
44110
|
-
|
|
44111
|
-
|
|
44112
|
-
|
|
44113
|
-
|
|
44108
|
+
}, function (_ref) {
|
|
44109
|
+
var width = _ref.width;
|
|
44110
|
+
return /*#__PURE__*/React__default.createElement(SelectNavBarBasedOnWidth, Object.assign({
|
|
44111
|
+
breakpointUpper: breakpoints[breakpointUpper] || breakpointUpper,
|
|
44112
|
+
width: width,
|
|
44113
|
+
environment: environment
|
|
44114
|
+
}, props));
|
|
44115
|
+
});
|
|
44114
44116
|
};
|
|
44115
44117
|
|
|
44116
44118
|
var NavBar = styled(BaseNavBar).withConfig({
|