Skip to content

Commit c6fd9ac

Browse files
committed
refactor: make tilde prefixed
1 parent 9825116 commit c6fd9ac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/core/src/editor/BlockNoteEditor.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ export class BlockNoteEditor<
373373
*
374374
* @internal
375375
*/
376-
public readonly _internal: {
376+
public readonly "~internal": {
377377
/**
378378
* Stores positions of elements in the editor.
379379
*/
@@ -698,7 +698,7 @@ export class BlockNoteEditor<
698698
this.pmSchema = getSchema(tiptapOptions.extensions!);
699699
}
700700

701-
this._internal = {
701+
this["~internal"] = {
702702
positionStorage: new PositionStorage<BSchema, ISchema, SSchema>(this, {
703703
shouldMount: !this.headless,
704704
}),

packages/core/src/extensions/SuggestionMenu/SuggestionPlugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export class SuggestionMenuProseMirrorPlugin<
218218
suggestionPluginTransactionMeta !== null &&
219219
prev === undefined
220220
) {
221-
const trackedPosition = editor._internal.positionStorage.track(
221+
const trackedPosition = editor["~internal"].positionStorage.track(
222222
newState.selection.from -
223223
// Need to account for the trigger char that was inserted, so we offset the position by the length of the trigger character.
224224
suggestionPluginTransactionMeta.triggerCharacter.length

0 commit comments

Comments
 (0)