UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

23 lines 716 B
import * as C from "../../../i18n/constants.mjs"; import { checkSelectionBorders, markSelected } from "../utils.mjs"; /** * @param {CustomBorders} customBordersPlugin The plugin instance. * @returns {object} */ export default function top(customBordersPlugin) { return { key: 'borders:top', name() { let label = this.getTranslatedPhrase(C.CONTEXTMENU_ITEMS_BORDERS_TOP); const hasBorder = checkSelectionBorders(this, 'top'); if (hasBorder) { label = markSelected(label); } return label; }, callback(key, selected) { const hasBorder = checkSelectionBorders(this, 'top'); customBordersPlugin.prepareBorder(selected, 'top', hasBorder); } }; }