@fileverse-dev/ddoc 3.4.5 → 3.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -42,4 +42,10 @@ export interface SuggestionTrackingOptions {
|
|
|
42
42
|
onSuggestionReady?: ((data: SuggestionReadyData) => void) | null;
|
|
43
43
|
}
|
|
44
44
|
export declare const suggestionTrackingPluginKey: PluginKey<null>;
|
|
45
|
+
/**
|
|
46
|
+
* Meta key set on transactions that toggle a heading's `isCollapsed` attribute.
|
|
47
|
+
* Such transactions are UI-state changes (folding/unfolding sections), not
|
|
48
|
+
* content edits — `filterTransaction` lets them through in suggest mode.
|
|
49
|
+
*/
|
|
50
|
+
export declare const HEADING_COLLAPSE_TOGGLE_META = "heading-collapse-toggle";
|
|
45
51
|
export declare const SuggestionTrackingExtension: Extension<SuggestionTrackingOptions, any>;
|