Files
klz-cables.com/.pnpm-store/v10/files/7e/a1b0f7483e8fa1f5cc45170a804eb51372c8ca3f510819f0519384a8e0b1831f0aa7aa924d9b44ad298626d96c16d67d65ba82f379f4bdf32bb1eb588b6a5f
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

24 lines
720 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.lineBreak = exports.LINE_BREAK = void 0;
var LINE_BREAK;
(function (LINE_BREAK) {
LINE_BREAK["NORMAL"] = "normal";
LINE_BREAK["STRICT"] = "strict";
})(LINE_BREAK = exports.LINE_BREAK || (exports.LINE_BREAK = {}));
exports.lineBreak = {
name: 'line-break',
initialValue: 'normal',
prefix: false,
type: 2 /* IDENT_VALUE */,
parse: function (_context, lineBreak) {
switch (lineBreak) {
case 'strict':
return LINE_BREAK.STRICT;
case 'normal':
default:
return LINE_BREAK.NORMAL;
}
}
};
//# sourceMappingURL=line-break.js.map