@adaptabletools/adaptable-cjs
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
29 lines (28 loc) • 1.14 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.THEME_DEFAULT_CURRENT_THEME = exports.SYSTEM_THEMES = exports.QUICK_SEARCH_DEFAULT_FORE_COLOR = exports.QUICK_SEARCH_DEFAULT_BACK_COLOR = exports.CELL_SUMMARY_DEFAULT_OPERATION = void 0;
const Enums_1 = require("../../AdaptableState/Common/Enums");
const UIHelper_1 = require("../../View/UIHelper");
const GeneralConstants_1 = require("./GeneralConstants");
// Cells Summary
exports.CELL_SUMMARY_DEFAULT_OPERATION = Enums_1.SummaryOperation.Sum;
// Quick Search
exports.QUICK_SEARCH_DEFAULT_BACK_COLOR = (0, UIHelper_1.getHexForName)(UIHelper_1.LIGHT_YELLOW);
exports.QUICK_SEARCH_DEFAULT_FORE_COLOR = (0, UIHelper_1.getHexForName)(UIHelper_1.BLACK);
// theme
// consts for Themes
exports.SYSTEM_THEMES = [
{
Name: GeneralConstants_1.LIGHT_THEME,
Description: 'Light Theme',
},
{
Name: GeneralConstants_1.DARK_THEME,
Description: 'Dark Theme',
},
{
Name: GeneralConstants_1.OS_THEME,
Description: 'OS Theme',
},
];
exports.THEME_DEFAULT_CURRENT_THEME = GeneralConstants_1.LIGHT_THEME;