ywana-core8 0.0.471 → 0.0.472

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.
@@ -6674,7 +6674,7 @@ var TabbedTablePage = function TabbedTablePage(props) {
6674
6674
  }, /*#__PURE__*/React.createElement(MenuItem, {
6675
6675
  label: "Cargar Escenario 1",
6676
6676
  onSelect: playScenario
6677
- })) : null, renderActions(), renderTabs()), canQuery || canFilter ? /*#__PURE__*/React.createElement("menu", {
6677
+ })) : null, renderActions()), canQuery || canFilter ? /*#__PURE__*/React.createElement("menu", {
6678
6678
  className: "table-page"
6679
6679
  }, canQuery ? /*#__PURE__*/React.createElement(TableQueries, {
6680
6680
  schema: schema,
@@ -6689,6 +6689,7 @@ var TabbedTablePage = function TabbedTablePage(props) {
6689
6689
  }, /*#__PURE__*/React.createElement(TableEditor, {
6690
6690
  icon: icon,
6691
6691
  title: name,
6692
+ tabs: renderTabs(),
6692
6693
  schema: schema,
6693
6694
  delay: delay,
6694
6695
  editable: editable,
@@ -7009,7 +7010,8 @@ var TableEditor = function TableEditor(props) {
7009
7010
  editable = props.editable,
7010
7011
  canDelete = props.canDelete,
7011
7012
  filter = props.filter,
7012
- actions = props.actions;
7013
+ actions = props.actions,
7014
+ tabs = props.tabs;
7013
7015
 
7014
7016
  var _useState5 = useState(props.groupBy),
7015
7017
  groupBy = _useState5[0],
@@ -7166,7 +7168,7 @@ var TableEditor = function TableEditor(props) {
7166
7168
  value: groupBy,
7167
7169
  options: buildGroupOptions(schema),
7168
7170
  onChange: changeGroup
7169
- })), /*#__PURE__*/React.createElement("main", {
7171
+ }), tabs), /*#__PURE__*/React.createElement("main", {
7170
7172
  className: "table-editor"
7171
7173
  }, renderGroups()));
7172
7174
  };