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

27 lines
1.0 KiB
Plaintext

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
import { LexicalEditor } from 'lexical';
/**
* Register a transform to ensure that all TableCellNode have a colSpan and rowSpan of 1.
* This should only be registered when you do not want to support merged cells.
*
* @param editor The editor
* @returns An unregister callback
*/
export declare function registerTableCellUnmergeTransform(editor: LexicalEditor): () => void;
export declare function registerTableSelectionObserver(editor: LexicalEditor, hasTabHandler?: boolean): () => void;
/**
* Register the INSERT_TABLE_COMMAND listener and the table integrity transforms. The
* table selection observer should be registered separately after this with
* {@link registerTableSelectionObserver}.
*
* @param editor The editor
* @returns An unregister callback
*/
export declare function registerTablePlugin(editor: LexicalEditor): () => void;