Files
klz-cables.com/.pnpm-store/v10/files/59/9a7bad7bd17e0f1631f4820417772c0e502bc78e57d58d383613ed9c247bc8a610bdca5e854f3b84bfd88ea57934e88419860c6c47d02c168ecdb27760e917
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
672 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.backgroundPosition = void 0;
var parser_1 = require("../syntax/parser");
var length_percentage_1 = require("../types/length-percentage");
exports.backgroundPosition = {
name: 'background-position',
initialValue: '0% 0%',
type: 1 /* LIST */,
prefix: false,
parse: function (_context, tokens) {
return parser_1.parseFunctionArgs(tokens)
.map(function (values) { return values.filter(length_percentage_1.isLengthPercentage); })
.map(length_percentage_1.parseLengthPercentageTuple);
}
};
//# sourceMappingURL=background-position.js.map