New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@udecode/plate-combobox

Package Overview
Dependencies
Maintainers
3
Versions
155
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@udecode/plate-combobox - npm Package Compare versions

Comparing version

to
42.2.4

10

dist/index.js

@@ -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