ywana-core8 0.0.224 → 0.0.225
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/dist/index.cjs +8 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +8 -6
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +8 -6
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage.js +1 -1
package/dist/index.modern.js
CHANGED
@@ -4311,6 +4311,11 @@ var TablePage = function TablePage(props) {
|
|
4311
4311
|
schema = props.schema,
|
4312
4312
|
url = props.url,
|
4313
4313
|
field = props.field,
|
4314
|
+
_props$autosave = props.autosave,
|
4315
|
+
autosave = _props$autosave === void 0 ? true : _props$autosave,
|
4316
|
+
_props$delay = props.delay,
|
4317
|
+
delay = _props$delay === void 0 ? 1000 : _props$delay,
|
4318
|
+
editable = props.editable,
|
4314
4319
|
_props$actions = props.actions,
|
4315
4320
|
actions = _props$actions === void 0 ? [] : _props$actions,
|
4316
4321
|
_props$dev = props.dev,
|
@@ -4318,7 +4323,6 @@ var TablePage = function TablePage(props) {
|
|
4318
4323
|
tableActions = props.tableActions,
|
4319
4324
|
_props$selectionActio = props.selectionActions,
|
4320
4325
|
selectionActions = _props$selectionActio === void 0 ? [] : _props$selectionActio,
|
4321
|
-
editable = props.editable,
|
4322
4326
|
_props$canFilter = props.canFilter,
|
4323
4327
|
canFilter = _props$canFilter === void 0 ? false : _props$canFilter,
|
4324
4328
|
_props$canQuery = props.canQuery,
|
@@ -4327,10 +4331,8 @@ var TablePage = function TablePage(props) {
|
|
4327
4331
|
canAdd = _props$canAdd === void 0 ? true : _props$canAdd,
|
4328
4332
|
_props$canDelete = props.canDelete,
|
4329
4333
|
canDelete = _props$canDelete === void 0 ? true : _props$canDelete,
|
4330
|
-
_props$
|
4331
|
-
|
4332
|
-
_props$delay = props.delay,
|
4333
|
-
delay = _props$delay === void 0 ? 1000 : _props$delay,
|
4334
|
+
_props$canEdit = props.canEdit,
|
4335
|
+
canEdit = _props$canEdit === void 0 ? true : _props$canEdit,
|
4334
4336
|
groupBy = props.groupBy,
|
4335
4337
|
validator = props.validator,
|
4336
4338
|
scenario = props.scenario,
|
@@ -4418,7 +4420,7 @@ var TablePage = function TablePage(props) {
|
|
4418
4420
|
filter: editorFilter,
|
4419
4421
|
onChange: change,
|
4420
4422
|
onClose: closeAside,
|
4421
|
-
editable:
|
4423
|
+
editable: canEdit
|
4422
4424
|
}) : null, rowChecked ? /*#__PURE__*/React.createElement(TableSelector, {
|
4423
4425
|
schema: schema,
|
4424
4426
|
actions: selectionActions
|