UNPKG

handsontable

Version:

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

16 lines (15 loc) 334 B
import { CONTEXTMENU_ITEMS_NO_ITEMS } from "../../../i18n/constants.mjs"; export const KEY = 'no_items'; /** * @returns {object} */ export default function noItemsItem() { return { key: KEY, name() { return this.getTranslatedPhrase(CONTEXTMENU_ITEMS_NO_ITEMS); }, disabled: true, isCommand: false }; }