handsontable
Version:
Handsontable is a JavaScript Data Grid available for React, Angular and Vue.
9 lines • 312 B
JavaScript
import { PasswordEditor } from "../../editors/passwordEditor/index.mjs";
import { passwordRenderer } from "../../renderers/passwordRenderer/index.mjs";
export const CELL_TYPE = 'password';
export const PasswordCellType = {
CELL_TYPE,
editor: PasswordEditor,
renderer: passwordRenderer,
copyable: false
};