Files
klz-cables.com/.pnpm-store/v10/files/a1/675234be24861d2122973f189618b2965a9fbc537d4e01638516dbf191c6479f1e967252a6e00052ae3bf52167e74c6129337b8f118eaea40ff884fa2f99a5
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
971 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.textDecorationLine = void 0;
var parser_1 = require("../syntax/parser");
exports.textDecorationLine = {
name: 'text-decoration-line',
initialValue: 'none',
prefix: false,
type: 1 /* LIST */,
parse: function (_context, tokens) {
return tokens
.filter(parser_1.isIdentToken)
.map(function (token) {
switch (token.value) {
case 'underline':
return 1 /* UNDERLINE */;
case 'overline':
return 2 /* OVERLINE */;
case 'line-through':
return 3 /* LINE_THROUGH */;
case 'none':
return 4 /* BLINK */;
}
return 0 /* NONE */;
})
.filter(function (line) { return line !== 0 /* NONE */; });
}
};
//# sourceMappingURL=text-decoration-line.js.map