@guillotinaweb/react-gmi 0.32.3 → 0.33.0

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.
@@ -9097,7 +9097,8 @@ function TabsPanel(_ref2) {
9097
9097
  currentTab = _ref2.currentTab,
9098
9098
  rightToolbar = _ref2.rightToolbar,
9099
9099
  _ref2$fallback = _ref2.fallback,
9100
- fallback = _ref2$fallback === void 0 ? FallbackTab : _ref2$fallback;
9100
+ fallback = _ref2$fallback === void 0 ? FallbackTab : _ref2$fallback,
9101
+ restProps = _objectWithoutPropertiesLoose(_ref2, ["tabs", "currentTab", "rightToolbar", "fallback"]);
9101
9102
 
9102
9103
  var _useLocation = useLocation(),
9103
9104
  location = _useLocation[0],
@@ -9126,6 +9127,7 @@ function TabsPanel(_ref2) {
9126
9127
  });
9127
9128
  };
9128
9129
 
9130
+ console.log('restProps', restProps);
9129
9131
  return jsxs("div", {
9130
9132
  className: "container",
9131
9133
  children: [jsxs("div", {
@@ -9155,9 +9157,9 @@ function TabsPanel(_ref2) {
9155
9157
  })]
9156
9158
  }), jsx("div", {
9157
9159
  className: "container",
9158
- children: jsx(CurrentComp, {
9160
+ children: jsx(CurrentComp, _extends({
9159
9161
  title: current
9160
- })
9162
+ }, restProps))
9161
9163
  })]
9162
9164
  });
9163
9165
  }