Files
klz-cables.com/.pnpm-store/v10/files/74/06de7e8dd742983915a4d56aea2056d7c5cb5134ce1ef8f455b78ac7a2b8e74f658d7d678582f0a570121f2d3001c4293d4c570b5a007a088536192b011109
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

53 lines
2.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.
*
*/
/**
* Common update tags used in Lexical. These tags can be used with editor.update() or $addUpdateTag()
* to indicate the type/purpose of an update. Multiple tags can be used in a single update.
*/
/**
* Indicates that the update is related to history operations (undo/redo)
*/
export declare const HISTORIC_TAG = "historic";
/**
* Indicates that a new history entry should be pushed to the history stack
*/
export declare const HISTORY_PUSH_TAG = "history-push";
/**
* Indicates that the current update should be merged with the previous history entry
*/
export declare const HISTORY_MERGE_TAG = "history-merge";
/**
* Indicates that the update is related to a paste operation
*/
export declare const PASTE_TAG = "paste";
/**
* Indicates that the update is related to collaborative editing
*/
export declare const COLLABORATION_TAG = "collaboration";
/**
* Indicates that the update should skip collaborative sync
*/
export declare const SKIP_COLLAB_TAG = "skip-collab";
/**
* Indicates that the update should skip scrolling the selection into view
*/
export declare const SKIP_SCROLL_INTO_VIEW_TAG = "skip-scroll-into-view";
/**
* Indicates that the update should skip updating the DOM selection
* This is useful when you want to make updates without changing the selection or focus
*/
export declare const SKIP_DOM_SELECTION_TAG = "skip-dom-selection";
/**
* The update was triggered by editor.focus()
*/
export declare const FOCUS_TAG = "focus";
/**
* The set of known update tags to help with TypeScript suggestions.
*/
export type UpdateTag = typeof COLLABORATION_TAG | typeof FOCUS_TAG | typeof HISTORIC_TAG | typeof HISTORY_MERGE_TAG | typeof HISTORY_PUSH_TAG | typeof PASTE_TAG | typeof SKIP_COLLAB_TAG | typeof SKIP_DOM_SELECTION_TAG | typeof SKIP_SCROLL_INTO_VIEW_TAG | (string & {});