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

19 lines
495 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.direction = void 0;
exports.direction = {
name: 'direction',
initialValue: 'ltr',
prefix: false,
type: 2 /* IDENT_VALUE */,
parse: function (_context, direction) {
switch (direction) {
case 'rtl':
return 1 /* RTL */;
case 'ltr':
default:
return 0 /* LTR */;
}
}
};
//# sourceMappingURL=direction.js.map