@neo4j-cypher/react-codemirror 1.0.0-next.7 → 1.0.0-next.8
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.
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"codemirror",
|
|
8
8
|
"codemirror 6"
|
|
9
9
|
],
|
|
10
|
-
"version": "1.0.0-next.
|
|
10
|
+
"version": "1.0.0-next.8",
|
|
11
11
|
"author": "Neo4j Inc.",
|
|
12
12
|
"license": "GPL-3.0",
|
|
13
13
|
"main": "./lib/react-codemirror.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@babel/runtime": "^7.20.6",
|
|
41
|
-
"@neo4j-cypher/codemirror": "1.0.0-next.
|
|
41
|
+
"@neo4j-cypher/codemirror": "1.0.0-next.7",
|
|
42
42
|
"codemirror": "^6.0.1"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
package/src/CypherEditor.d.ts
CHANGED
|
@@ -68,10 +68,10 @@ export interface CypherEditorProps {
|
|
|
68
68
|
history?: boolean;
|
|
69
69
|
/**
|
|
70
70
|
* Whether pressing the tab key affects editor indentation
|
|
71
|
-
*
|
|
71
|
+
*
|
|
72
72
|
* @defaultValue true
|
|
73
73
|
*/
|
|
74
|
-
|
|
74
|
+
indentWithTab?: boolean;
|
|
75
75
|
/**
|
|
76
76
|
* The formatter for the line numbers of the editor
|
|
77
77
|
*
|