ywana-core8 0.0.854 → 0.0.856

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.
@@ -7279,6 +7279,7 @@ var TablePage = function TablePage(props) {
7279
7279
  icon = props.icon,
7280
7280
  title = props.title,
7281
7281
  name = props.name,
7282
+ className = props.className,
7282
7283
  schema = props.schema,
7283
7284
  url = props.url,
7284
7285
  field = props.field,
@@ -7438,7 +7439,7 @@ var TablePage = function TablePage(props) {
7438
7439
  className: "size"
7439
7440
  }, total), " ", title);
7440
7441
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
7441
- className: "table-page",
7442
+ className: "table-page " + className,
7442
7443
  title: /*#__PURE__*/React.createElement(Text, null, title2)
7443
7444
  }, canAdd ? /*#__PURE__*/React.createElement(Button, {
7444
7445
  icon: "add",
@@ -7455,7 +7456,7 @@ var TablePage = function TablePage(props) {
7455
7456
  label: "Cargar Escenario 1",
7456
7457
  onSelect: playScenario
7457
7458
  })) : null, renderActions()), canQuery || canFilter ? /*#__PURE__*/React.createElement("menu", {
7458
- className: "table-page"
7459
+ className: "table-page " + className
7459
7460
  }, canQuery ? /*#__PURE__*/React.createElement(TableQueries$2, {
7460
7461
  schema: schema,
7461
7462
  url: url,
@@ -7465,7 +7466,7 @@ var TablePage = function TablePage(props) {
7465
7466
  onSave: canQuery ? saveQuery : null
7466
7467
  }) : null) : null, /*#__PURE__*/React.createElement("main", {
7467
7468
  key: id,
7468
- className: "table-page"
7469
+ className: "table-page " + className
7469
7470
  }, /*#__PURE__*/React.createElement(TableEditor$2, {
7470
7471
  icon: icon,
7471
7472
  title: name,