@fw-components/formula-editor 2.3.2-formula-editor-regex-fix.1 → 2.3.2
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.
|
@@ -124,6 +124,10 @@ let FormulaEditor = class FormulaEditor extends LitElement {
|
|
|
124
124
|
const direction = event.code === "ArrowDown" ? "down" : "up";
|
|
125
125
|
this.suggestionMenu.navigate(direction);
|
|
126
126
|
}
|
|
127
|
+
else if (event.code === "Enter") {
|
|
128
|
+
event.preventDefault();
|
|
129
|
+
this.suggestionMenu.handleRecommendationSelect();
|
|
130
|
+
}
|
|
127
131
|
}
|
|
128
132
|
render() {
|
|
129
133
|
return html `
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fw-components/formula-editor",
|
|
3
|
-
"version": "2.3.2
|
|
3
|
+
"version": "2.3.2",
|
|
4
4
|
"description": "A WYSIWYG type formula editor",
|
|
5
5
|
"main": "dist/formula-editor/src/formula-editor.js",
|
|
6
6
|
"exports": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"prepublishOnly": "npm run build"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@fw-components/styles": "^2.3.2
|
|
22
|
+
"@fw-components/styles": "^2.3.2",
|
|
23
23
|
"big.js": "^6.2.1",
|
|
24
24
|
"lit": "^2.1.2",
|
|
25
25
|
"match-sorter": "^8.0.0",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"@types/big.js": "^6.1.6",
|
|
32
32
|
"es-dev-server": "^2.1.0"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "13b0b83d6af01597462c7964ee20e3d96f407667"
|
|
35
35
|
}
|