Files
klz-cables.com/.pnpm-store/v10/files/7a/d763f2d171d72ead5144647dfb4b1cf41aa521a8be3c1e4118e9da2037ac7eab992de4d0ca7b643800f18d34b2932b21ae5c19d823ce250712de6f5c5cc78a
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
445 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.opacity = void 0;
var parser_1 = require("../syntax/parser");
exports.opacity = {
name: 'opacity',
initialValue: '1',
type: 0 /* VALUE */,
prefix: false,
parse: function (_context, token) {
if (parser_1.isNumberToken(token)) {
return token.number;
}
return 1;
}
};
//# sourceMappingURL=opacity.js.map