Files
klz-cables.com/.pnpm-store/v10/files/6f/110d8316794dd8a637b430b7c859f16d22062e89537afca539c103fd6ac5348096dc62bcf7be2ff8c7552281c06e86dba8619b49ab4224f2eabc14d727a94e
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

13 lines
677 B
Plaintext

import type { DraggableSyntheticListeners } from '@dnd-kit/core';
import type { Column } from 'payload';
import type { HTMLAttributes, Ref } from 'react';
export type Props = {
readonly cellMap: Record<string, number>;
readonly columns: Column[];
readonly dragAttributes?: HTMLAttributes<unknown>;
readonly dragListeners?: DraggableSyntheticListeners;
readonly ref?: Ref<HTMLTableRowElement>;
readonly rowId: number | string;
} & HTMLAttributes<HTMLTableRowElement>;
export declare const OrderableRow: ({ cellMap, columns, dragAttributes, dragListeners, rowId, ...rest }: Props) => import("react").JSX.Element;
//# sourceMappingURL=OrderableRow.d.ts.map