@atlaskit/editor-plugin-table
Version:
Table plugin for the @atlaskit/editor
12 lines (11 loc) • 447 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isContentModeSupported = void 0;
var isContentModeSupported = exports.isContentModeSupported = function isContentModeSupported(_ref) {
var allowColumnResizing = _ref.allowColumnResizing,
allowTableResizing = _ref.allowTableResizing,
isFullPageEditor = _ref.isFullPageEditor;
return allowColumnResizing && allowTableResizing && isFullPageEditor;
};