@udecode/plate-combobox
Advanced tools
Comparing version
@@ -42,3 +42,3 @@ "use strict"; | ||
transforms: { | ||
insertText(text) { | ||
insertText(text, options) { | ||
const { | ||
@@ -49,4 +49,4 @@ createComboboxInput, | ||
} = getOptions(); | ||
if (!editor.selection || !matchesTrigger(text) || triggerQuery && !triggerQuery(editor)) { | ||
return insertText(text); | ||
if (options?.at || !editor.selection || !matchesTrigger(text) || triggerQuery && !triggerQuery(editor)) { | ||
return insertText(text, options); | ||
} | ||
@@ -59,5 +59,5 @@ const previousChar = editor.api.string( | ||
const inputNode = createComboboxInput ? createComboboxInput(text) : { children: [{ text: "" }], type }; | ||
return editor.tf.insertNodes(inputNode); | ||
return editor.tf.insertNodes(inputNode, options); | ||
} | ||
return insertText(text); | ||
return insertText(text, options); | ||
} | ||
@@ -64,0 +64,0 @@ } |
{ | ||
"name": "@udecode/plate-combobox", | ||
"version": "42.0.0", | ||
"version": "42.2.4", | ||
"description": "Combobox for Plate", | ||
@@ -56,3 +56,3 @@ "keywords": [ | ||
"peerDependencies": { | ||
"@udecode/plate": ">=42.0.0", | ||
"@udecode/plate": ">=42.2.2", | ||
"react": ">=18.0.0", | ||
@@ -59,0 +59,0 @@ "react-dom": ">=18.0.0" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
50290
0.58%