Files
klz-cables.com/.pnpm-store/v10/files/6b/e594e002f31f9483c67097a298ccfa544bc0ea98eab8eb430f59eab59c59560b5b01d9c92e78991992d669edd8b29b4d58477597b67a823ce3289db6be4913
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

29 lines
1.4 KiB
Plaintext

import { CharLengthDict, COLOR, Dictionary, Row } from '../models/common';
import { ComputedColumn } from '../models/external-table';
import { Column } from '../models/internal-table';
export declare const cellText: (text: string | number) => string;
export interface RowOptionsRaw {
color?: string;
separator?: boolean;
}
export interface RowOptions {
color: COLOR;
separator: boolean;
}
export declare const convertRawRowOptionsToStandard: (options?: RowOptionsRaw) => RowOptions | undefined;
export declare const createTableHorizontalBorders: ({ left, mid, right, other, }: {
left: string;
mid: string;
right: string;
other: string;
}, column_lengths: number[]) => string;
export declare const createColumFromOnlyName: (name: string) => Column;
export declare const createColumFromComputedColumn: (column: ComputedColumn) => Column;
export declare const createRow: (color: COLOR, text: Dictionary, separator: boolean) => Row;
export declare const findLenOfColumn: (column: Column, rows: Row[], charLength?: CharLengthDict) => number;
export declare const renderTableHorizontalBorders: (style: any, column_lengths: number[]) => string;
export declare const createHeaderAsRow: (createRowFn: any, columns: Column[]) => Row;
export declare const getWidthLimitedColumnsArray: (columns: Column[], row: Row, charLength?: CharLengthDict) => {
[key: string]: string[];
};