Files
klz-cables.com/.pnpm-store/v10/files/e9/3dcab9a329a5bbf5410c538e6a153bb792b6e722030117d8cac5e54c873808a10af1a732ba38236e633a957a3953834dfea69e132e6adcc7566ec2a0ef1ebb
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

18 lines
754 B
Plaintext

import React from 'react';
import './index.scss';
type Props = {
readonly columns: React.ReactNode[];
readonly disabled?: boolean;
readonly dragData?: Record<string, unknown>;
readonly id: number | string;
readonly isDroppable?: boolean;
readonly isFocused?: boolean;
readonly isSelected?: boolean;
readonly isSelecting?: boolean;
readonly itemKey: string;
readonly onClick?: (e: React.MouseEvent) => void;
readonly onKeyDown?: (e: React.KeyboardEvent) => void;
};
export declare function DraggableTableRow({ id, columns, disabled, dragData, isDroppable: _isDroppable, isFocused, isSelected, isSelecting, itemKey, onClick, onKeyDown, }: Props): React.JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map