Files
klz-cables.com/.pnpm-store/v10/files/99/7a84db97d544674586312fda6c7b4ec624a68111a91cc798a5e8c4b8f377d66efa9a3c76e565130ceed61bfd6cd8591691a5e026381ccaacba7ef0c634729e
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

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';