@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/dist/index.js
CHANGED
|
@@ -11082,7 +11082,7 @@ var TableShow = function TableShow(_ref) {
|
|
|
11082
11082
|
'tr',
|
|
11083
11083
|
{ key: row._key },
|
|
11084
11084
|
row.cells && row.cells.map(function (cell, index) {
|
|
11085
|
-
return React__default.createElement(
|
|
11085
|
+
return cell && React__default.createElement(
|
|
11086
11086
|
'td',
|
|
11087
11087
|
{ key: index },
|
|
11088
11088
|
cell
|
|
@@ -11176,11 +11176,11 @@ var getSerializers$1 = function getSerializers(client) {
|
|
|
11176
11176
|
|
|
11177
11177
|
return React__default.createElement(Sidebar, { caption: caption, content: content });
|
|
11178
11178
|
},
|
|
11179
|
-
|
|
11179
|
+
datatable: function datatable(_ref5) {
|
|
11180
11180
|
var node = _ref5.node;
|
|
11181
|
-
var
|
|
11181
|
+
var table = node.table;
|
|
11182
11182
|
|
|
11183
|
-
return React__default.createElement(TableShow, { rows: rows });
|
|
11183
|
+
return React__default.createElement(TableShow, { rows: table.rows });
|
|
11184
11184
|
},
|
|
11185
11185
|
media: function media(_ref6) {
|
|
11186
11186
|
var node = _ref6.node;
|