Files
klz-cables.com/.pnpm-store/v10/files/62/2412cccf643b9a71486ccd12ac9a398e0fdc65965cee4270275a80ea2e5dfcd13e728ddd137ff7ec5bd11439ca2db0e9965188dd168ea172f220208660408e
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

17 lines
534 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.listStyleImage = void 0;
var image_1 = require("../types/image");
exports.listStyleImage = {
name: 'list-style-image',
initialValue: 'none',
type: 0 /* VALUE */,
prefix: false,
parse: function (context, token) {
if (token.type === 20 /* IDENT_TOKEN */ && token.value === 'none') {
return null;
}
return image_1.image.parse(context, token);
}
};
//# sourceMappingURL=list-style-image.js.map