UNPKG

tia

Version:

Time is All (logs driven test engine with ExtJs support)

34 lines 1.47 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.errPrefix = 'TIAERR: '; class CommonConstantsContent { } CommonConstantsContent.colSep = ' | '; // column texts separator CommonConstantsContent.rowSep = '= = = = = = ='; CommonConstantsContent.rowSep1 = '-------------------'; CommonConstantsContent.contentStart = ' /~~~~~~~~\\\n'; CommonConstantsContent.contentFinish = '\n \\________/\n'; CommonConstantsContent.indent = ' | '; CommonConstantsContent.title = 'Title: '; CommonConstantsContent.header = 'Header: '; CommonConstantsContent.visible = '(Visible)'; CommonConstantsContent.notVisible = '(Not visible)'; CommonConstantsContent.rowBody = ' Row body: '; CommonConstantsContent.defEmptyCellText = ' '; CommonConstantsContent.qTipAttr = 'data-qtip'; CommonConstantsContent.getVisibility = function getVisibility(cond) { return cond ? CommonConstantsContent.visible : CommonConstantsContent.notVisible; }; CommonConstantsContent.wrap = function wrap(str) { return CommonConstantsContent.contentStart + str + CommonConstantsContent.contentFinish; }; CommonConstantsContent.wrapEx = function wrapEx(indent, str) { return (indent + CommonConstantsContent.contentStart + str + indent + CommonConstantsContent.contentFinish); }; exports.CommonConstantsContent = CommonConstantsContent; exports.content = CommonConstantsContent; //# sourceMappingURL=common-constants.js.map