Files
klz-cables.com/.pnpm-store/v10/files/2a/c2210963104de52e207dbb0088a74380b0e67009cf0c3ea683f8ef6da38c01c8bf8c91f7bef56f44e97d25b14e4cc13582cb5f38f19c2633b572f4b65027d6
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

31 lines
870 B
Plaintext

'use client';
import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import { RenderCustomComponent } from '../../elements/RenderCustomComponent/index.js';
import { RowLabelProvider } from './Context/index.js';
const baseClass = 'row-label';
export const RowLabel = props => {
const {
className,
CustomComponent,
label,
path,
rowNumber
} = props;
return /*#__PURE__*/_jsx(RowLabelProvider, {
path: path,
rowNumber: rowNumber,
children: /*#__PURE__*/_jsx(RenderCustomComponent, {
CustomComponent: CustomComponent,
Fallback: typeof label === 'string' ? /*#__PURE__*/_jsx("span", {
className: [baseClass, className].filter(Boolean).join(' '),
style: {
pointerEvents: 'none'
},
children: label
}) : label
})
});
};
//# sourceMappingURL=index.js.map