UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

12 lines (11 loc) 443 B
import UIHelper from '../../UIHelper'; export const getStatusItemStyle = (systemStatusMessageInfo) => { const background = UIHelper.getColorByMessageType(systemStatusMessageInfo?.statusType ?? 'Success'); const color = systemStatusMessageInfo ? UIHelper.getButtonTextColourForMessageType(systemStatusMessageInfo.statusType) : 'var(--ab-color-text-on-primary)'; return { background, color, }; };