Files
klz-cables.com/.pnpm-store/v10/files/06/3dfc5614b88d6ee8765f24f6020567d6310cb27d20cfddd0574be3ecf1fc065eb14f4a2e659dde3f10181f234f91b5dd37fa6ed52bacbe1c2f8b96de82a079
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

20 lines
616 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.zIndex = void 0;
var parser_1 = require("../syntax/parser");
exports.zIndex = {
name: 'z-index',
initialValue: 'auto',
prefix: false,
type: 0 /* VALUE */,
parse: function (_context, token) {
if (token.type === 20 /* IDENT_TOKEN */) {
return { auto: true, order: 0 };
}
if (parser_1.isNumberToken(token)) {
return { auto: false, order: token.number };
}
throw new Error("Invalid z-index number parsed");
}
};
//# sourceMappingURL=z-index.js.map