UNPKG

@atlaskit/editor-plugin-table

Version:

Table plugin for the @atlaskit/editor

17 lines (16 loc) 435 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.wrapTableInExpand = void 0; var _collapse = require("../utils/collapse"); var wrapTableInExpand = exports.wrapTableInExpand = function wrapTableInExpand(state, dispatch) { var collapseTr = (0, _collapse.collapseSelectedTable)(state.tr); if (!collapseTr) { return false; } if (dispatch) { dispatch(collapseTr); } return true; };