@mjhls/mjh-framework 1.0.65 → 1.0.66
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/index.es.js +5 -5
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React__default, { Component, useState,
|
|
1
|
+
import React__default, { Component, useState, createElement, createContext } from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import reactDom from 'react-dom';
|
|
4
4
|
import Row from 'react-bootstrap/Row';
|
|
@@ -11075,7 +11075,7 @@ var TableShow = function TableShow(_ref) {
|
|
|
11075
11075
|
'tr',
|
|
11076
11076
|
{ key: row._key },
|
|
11077
11077
|
row.cells && row.cells.map(function (cell, index) {
|
|
11078
|
-
return React__default.createElement(
|
|
11078
|
+
return cell && React__default.createElement(
|
|
11079
11079
|
'td',
|
|
11080
11080
|
{ key: index },
|
|
11081
11081
|
cell
|
|
@@ -11169,11 +11169,11 @@ var getSerializers$1 = function getSerializers(client) {
|
|
|
11169
11169
|
|
|
11170
11170
|
return React__default.createElement(Sidebar, { caption: caption, content: content });
|
|
11171
11171
|
},
|
|
11172
|
-
|
|
11172
|
+
datatable: function datatable(_ref5) {
|
|
11173
11173
|
var node = _ref5.node;
|
|
11174
|
-
var
|
|
11174
|
+
var table = node.table;
|
|
11175
11175
|
|
|
11176
|
-
return React__default.createElement(TableShow, { rows: rows });
|
|
11176
|
+
return React__default.createElement(TableShow, { rows: table.rows });
|
|
11177
11177
|
},
|
|
11178
11178
|
media: function media(_ref6) {
|
|
11179
11179
|
var node = _ref6.node;
|