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

27 lines
998 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.borderLeftStyle = exports.borderBottomStyle = exports.borderRightStyle = exports.borderTopStyle = void 0;
var borderStyleForSide = function (side) { return ({
name: "border-" + side + "-style",
initialValue: 'solid',
prefix: false,
type: 2 /* IDENT_VALUE */,
parse: function (_context, style) {
switch (style) {
case 'none':
return 0 /* NONE */;
case 'dashed':
return 2 /* DASHED */;
case 'dotted':
return 3 /* DOTTED */;
case 'double':
return 4 /* DOUBLE */;
}
return 1 /* SOLID */;
}
}); };
exports.borderTopStyle = borderStyleForSide('top');
exports.borderRightStyle = borderStyleForSide('right');
exports.borderBottomStyle = borderStyleForSide('bottom');
exports.borderLeftStyle = borderStyleForSide('left');
//# sourceMappingURL=border-style.js.map