Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
56 lines
1.6 KiB
Plaintext
56 lines
1.6 KiB
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.DEFAULT_HEADER_ALIGNMENT = exports.DEFAULT_ROW_ALIGNMENT = exports.DEFAULT_HEADER_FONT_COLOR = exports.DEFAULT_ROW_FONT_COLOR = exports.COLORS = exports.ALIGNMENTS = exports.DEFAULT_TABLE_STYLE = exports.DEFAULT_ROW_SEPARATOR = exports.DEFAULT_COLUMN_LEN = void 0;
|
|
exports.DEFAULT_COLUMN_LEN = 20;
|
|
exports.DEFAULT_ROW_SEPARATOR = false;
|
|
exports.DEFAULT_TABLE_STYLE = {
|
|
/*
|
|
Default Style
|
|
┌────────────┬─────┬──────┐
|
|
│ foo │ bar │ baz │
|
|
│ frobnicate │ bar │ quuz │
|
|
└────────────┴─────┴──────┘
|
|
*/
|
|
headerTop: {
|
|
left: '┌',
|
|
mid: '┬',
|
|
right: '┐',
|
|
other: '─',
|
|
},
|
|
headerBottom: {
|
|
left: '├',
|
|
mid: '┼',
|
|
right: '┤',
|
|
other: '─',
|
|
},
|
|
tableBottom: {
|
|
left: '└',
|
|
mid: '┴',
|
|
right: '┘',
|
|
other: '─',
|
|
},
|
|
vertical: '│',
|
|
rowSeparator: {
|
|
left: '├',
|
|
mid: '┼',
|
|
right: '┤',
|
|
other: '─',
|
|
},
|
|
};
|
|
exports.ALIGNMENTS = ['right', 'left', 'center'];
|
|
exports.COLORS = [
|
|
'red',
|
|
'green',
|
|
'yellow',
|
|
'white',
|
|
'blue',
|
|
'magenta',
|
|
'cyan',
|
|
'white_bold',
|
|
'reset',
|
|
];
|
|
exports.DEFAULT_ROW_FONT_COLOR = 'white';
|
|
exports.DEFAULT_HEADER_FONT_COLOR = 'white_bold';
|
|
exports.DEFAULT_ROW_ALIGNMENT = 'right';
|
|
exports.DEFAULT_HEADER_ALIGNMENT = 'center';
|