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

28 lines
640 B
Plaintext

import { entityKind } from "../../entity.js";
import { GelColumn, GelColumnBuilder } from "./common.js";
class GelTextBuilder extends GelColumnBuilder {
static [entityKind] = "GelTextBuilder";
constructor(name) {
super(name, "string", "GelText");
}
/** @internal */
build(table) {
return new GelText(table, this.config);
}
}
class GelText extends GelColumn {
static [entityKind] = "GelText";
enumValues = this.config.enumValues;
getSQLType() {
return "text";
}
}
function text(name) {
return new GelTextBuilder(name ?? "");
}
export {
GelText,
GelTextBuilder,
text
};
//# sourceMappingURL=text.js.map