@neo4j-cypher/react-codemirror 1.0.0-next.14 → 1.0.0-next.16
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/es/CypherEditor.js +6 -2
- package/lib/CypherEditor.js +6 -2
- package/package.json +2 -2
package/es/CypherEditor.js
CHANGED
|
@@ -121,7 +121,9 @@ class CypherEditor extends Component {
|
|
|
121
121
|
tooltipAbsolute,
|
|
122
122
|
parseOnSetValue,
|
|
123
123
|
value,
|
|
124
|
-
onEditorCreated
|
|
124
|
+
onEditorCreated,
|
|
125
|
+
preExtensions,
|
|
126
|
+
postExtensions
|
|
125
127
|
} = this.props;
|
|
126
128
|
this.value = value;
|
|
127
129
|
const {
|
|
@@ -156,7 +158,9 @@ class CypherEditor extends Component {
|
|
|
156
158
|
theme,
|
|
157
159
|
tooltipAbsolute,
|
|
158
160
|
parseOnSetValue,
|
|
159
|
-
value
|
|
161
|
+
value,
|
|
162
|
+
preExtensions,
|
|
163
|
+
postExtensions
|
|
160
164
|
});
|
|
161
165
|
this.cypherEditor = editor;
|
|
162
166
|
this.cypherEditor.onValueChanged(this.valueChanged);
|
package/lib/CypherEditor.js
CHANGED
|
@@ -130,7 +130,9 @@ class CypherEditor extends _react.Component {
|
|
|
130
130
|
tooltipAbsolute,
|
|
131
131
|
parseOnSetValue,
|
|
132
132
|
value,
|
|
133
|
-
onEditorCreated
|
|
133
|
+
onEditorCreated,
|
|
134
|
+
preExtensions,
|
|
135
|
+
postExtensions
|
|
134
136
|
} = this.props;
|
|
135
137
|
this.value = value;
|
|
136
138
|
const {
|
|
@@ -165,7 +167,9 @@ class CypherEditor extends _react.Component {
|
|
|
165
167
|
theme,
|
|
166
168
|
tooltipAbsolute,
|
|
167
169
|
parseOnSetValue,
|
|
168
|
-
value
|
|
170
|
+
value,
|
|
171
|
+
preExtensions,
|
|
172
|
+
postExtensions
|
|
169
173
|
});
|
|
170
174
|
this.cypherEditor = editor;
|
|
171
175
|
this.cypherEditor.onValueChanged(this.valueChanged);
|
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.16",
|
|
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.15",
|
|
42
42
|
"codemirror": "^6.0.1"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|