ToolJet/frontend/src/Editor/editorConstants.js
2024-05-10 17:04:46 +05:30

13 lines
325 B
JavaScript

export const ItemTypes = {
BOX: 'box',
COMMENT: 'comment',
NEW_COMMENT: 'new_comment',
};
export const EditorConstants = Object.freeze({
deviceWindowWidth: 450,
leftSideBarWidth: 48,
rightSideBarWidth: 300,
});
export const decimalToHex = (alpha) => (alpha === 0 ? '00' : Math.round(255 * alpha).toString(16));