Files
kintone-helper-extenstion/features/add-field-label/settings.js
2025-10-17 14:39:35 +08:00

39 lines
843 B
JavaScript

// 颜色配置常量
export const COLORS = {
LABEL_TEXT: 'red',
SPACER_BORDER: '1px dotted red',
};
// 间距和尺寸配置常量
export const SPACING = {
GROUP_MARGIN_LEFT: '20px',
REFERENCE_TABLE_SPACER: '30px',
TABLE_COLUMN_PADDING: 8,
FIELD_CONTAINER_WIDTH: '100%',
};
// 样式配置常量
export const STYLES = {
BASIC_LABEL_TOP: 'calc(5px + 1rem)',
SUBTABLE_LABEL_TOP: 'calc(12px + 1rem)',
GROUP_LABEL_TOP: 'calc(20px + 1rem)',
};
// LABEL 基本样式
export const ADMIN_LABEL_STYLE = {
position: 'absolute',
zIndex: '1',
lineHeight: '1',
background: '#ffd9d9',
padding: '2px',
top: STYLES.BASIC_LABEL_TOP,
border: 'dotted red 1px',
fontSize: '0.75rem',
};
export const LABEL_STYLE = {
display: 'inline-block'
}
export let IS_FIELD_TYPE_DISPLAY = false;