Files
klz-cables.com/.pnpm-store/v10/files/49/5934ffc003f376170f6cd5fec60abc5f717deaecb68a88baa88d3255b991b7e89622d85fc782baecb38a1e22eb08fc6710e1058b11173db3f3d9d4869f2490
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
516 B
Plaintext

import { alpha } from '../../../value/types/numbers/index.mjs';
import { px } from '../../../value/types/numbers/units.mjs';
import { browserNumberValueTypes } from './number-browser.mjs';
import { transformValueTypes } from './transform.mjs';
import { int } from './type-int.mjs';
const numberValueTypes = {
...browserNumberValueTypes,
...transformValueTypes,
zIndex: int,
size: px,
// SVG
fillOpacity: alpha,
strokeOpacity: alpha,
numOctaves: int,
};
export { numberValueTypes };