Files
klz-cables.com/.pnpm-store/v10/files/b6/310acdc201d67e1b82627d3d062a9d5266a96fae0247e9dd7b663dd07d5c2302c8221c86eb024d03b490c56c72fa0b2a27492033884a89826c4e643806816c
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

21 lines
628 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.textTransform = void 0;
exports.textTransform = {
name: 'text-transform',
initialValue: 'none',
prefix: false,
type: 2 /* IDENT_VALUE */,
parse: function (_context, textTransform) {
switch (textTransform) {
case 'uppercase':
return 2 /* UPPERCASE */;
case 'lowercase':
return 1 /* LOWERCASE */;
case 'capitalize':
return 3 /* CAPITALIZE */;
}
return 0 /* NONE */;
}
};
//# sourceMappingURL=text-transform.js.map