@hpcc-js/codemirror 2.66.1 → 2.66.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.
- package/LICENSE +43 -43
- package/README.md +60 -60
- package/dist/index.es6.js +24 -24
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +24 -24
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +4 -4
- package/src/CSSEditor.ts +22 -22
- package/src/DOTEditor.ts +20 -20
- package/src/ECLEditor.css +12 -12
- package/src/ECLEditor.ts +24 -24
- package/src/Editor.css +24 -24
- package/src/Editor.ts +232 -232
- package/src/HTMLEditor.ts +22 -22
- package/src/JSEditor.ts +22 -22
- package/src/JSONEditor.ts +22 -22
- package/src/SQLEditor.ts +22 -22
- package/src/XMLEditor.ts +22 -22
- package/src/YAMLEditor.ts +22 -22
- package/src/__package__.ts +3 -3
package/dist/index.js
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
function requireCodemirror () {
|
|
71
71
|
if (hasRequiredCodemirror) return codemirror$1.exports;
|
|
72
72
|
hasRequiredCodemirror = 1;
|
|
73
|
-
(function (module, exports) {
|
|
73
|
+
(function (module, exports$1) {
|
|
74
74
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
75
75
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
76
76
|
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
function copyObj(obj, target, overwrite) {
|
|
237
237
|
if (!target) { target = {}; }
|
|
238
238
|
for (var prop in obj)
|
|
239
|
-
{ if (
|
|
239
|
+
{ if (Object.prototype.hasOwnProperty.call(obj, prop) && (overwrite !== false || !Object.prototype.hasOwnProperty.call(target, prop)))
|
|
240
240
|
{ target[prop] = obj[prop]; } }
|
|
241
241
|
return target
|
|
242
242
|
}
|
|
@@ -9947,7 +9947,7 @@
|
|
|
9947
9947
|
|
|
9948
9948
|
addLegacyProps(CodeMirror);
|
|
9949
9949
|
|
|
9950
|
-
CodeMirror.version = "5.65.
|
|
9950
|
+
CodeMirror.version = "5.65.21";
|
|
9951
9951
|
|
|
9952
9952
|
return CodeMirror;
|
|
9953
9953
|
|
|
@@ -9961,7 +9961,7 @@
|
|
|
9961
9961
|
function requireCss () {
|
|
9962
9962
|
if (hasRequiredCss) return css.exports;
|
|
9963
9963
|
hasRequiredCss = 1;
|
|
9964
|
-
(function (module, exports) {
|
|
9964
|
+
(function (module, exports$1) {
|
|
9965
9965
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
9966
9966
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
9967
9967
|
|
|
@@ -10831,7 +10831,7 @@
|
|
|
10831
10831
|
function requireEcl () {
|
|
10832
10832
|
if (hasRequiredEcl) return ecl.exports;
|
|
10833
10833
|
hasRequiredEcl = 1;
|
|
10834
|
-
(function (module, exports) {
|
|
10834
|
+
(function (module, exports$1) {
|
|
10835
10835
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
10836
10836
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
10837
10837
|
|
|
@@ -11049,7 +11049,7 @@
|
|
|
11049
11049
|
function requireXml () {
|
|
11050
11050
|
if (hasRequiredXml) return xml.exports;
|
|
11051
11051
|
hasRequiredXml = 1;
|
|
11052
|
-
(function (module, exports) {
|
|
11052
|
+
(function (module, exports$1) {
|
|
11053
11053
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
11054
11054
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
11055
11055
|
|
|
@@ -11472,7 +11472,7 @@
|
|
|
11472
11472
|
function requireMeta () {
|
|
11473
11473
|
if (hasRequiredMeta) return meta.exports;
|
|
11474
11474
|
hasRequiredMeta = 1;
|
|
11475
|
-
(function (module, exports) {
|
|
11475
|
+
(function (module, exports$1) {
|
|
11476
11476
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
11477
11477
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
11478
11478
|
|
|
@@ -11697,7 +11697,7 @@
|
|
|
11697
11697
|
function requireMarkdown () {
|
|
11698
11698
|
if (hasRequiredMarkdown) return markdown.exports;
|
|
11699
11699
|
hasRequiredMarkdown = 1;
|
|
11700
|
-
(function (module, exports) {
|
|
11700
|
+
(function (module, exports$1) {
|
|
11701
11701
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
11702
11702
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
11703
11703
|
|
|
@@ -12589,7 +12589,7 @@
|
|
|
12589
12589
|
function requireOverlay () {
|
|
12590
12590
|
if (hasRequiredOverlay) return overlay.exports;
|
|
12591
12591
|
hasRequiredOverlay = 1;
|
|
12592
|
-
(function (module, exports) {
|
|
12592
|
+
(function (module, exports$1) {
|
|
12593
12593
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
12594
12594
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
12595
12595
|
|
|
@@ -12683,7 +12683,7 @@
|
|
|
12683
12683
|
function requireGfm () {
|
|
12684
12684
|
if (hasRequiredGfm) return gfm.exports;
|
|
12685
12685
|
hasRequiredGfm = 1;
|
|
12686
|
-
(function (module, exports) {
|
|
12686
|
+
(function (module, exports$1) {
|
|
12687
12687
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
12688
12688
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
12689
12689
|
|
|
@@ -12822,7 +12822,7 @@
|
|
|
12822
12822
|
function requireJavascript () {
|
|
12823
12823
|
if (hasRequiredJavascript) return javascript.exports;
|
|
12824
12824
|
hasRequiredJavascript = 1;
|
|
12825
|
-
(function (module, exports) {
|
|
12825
|
+
(function (module, exports$1) {
|
|
12826
12826
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
12827
12827
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
12828
12828
|
|
|
@@ -13785,7 +13785,7 @@
|
|
|
13785
13785
|
function requireHtmlmixed () {
|
|
13786
13786
|
if (hasRequiredHtmlmixed) return htmlmixed.exports;
|
|
13787
13787
|
hasRequiredHtmlmixed = 1;
|
|
13788
|
-
(function (module, exports) {
|
|
13788
|
+
(function (module, exports$1) {
|
|
13789
13789
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
13790
13790
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
13791
13791
|
|
|
@@ -13949,7 +13949,7 @@
|
|
|
13949
13949
|
function requireSql () {
|
|
13950
13950
|
if (hasRequiredSql) return sql.exports;
|
|
13951
13951
|
hasRequiredSql = 1;
|
|
13952
|
-
(function (module, exports) {
|
|
13952
|
+
(function (module, exports$1) {
|
|
13953
13953
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
13954
13954
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
13955
13955
|
|
|
@@ -15474,7 +15474,7 @@
|
|
|
15474
15474
|
function requireBraceFold () {
|
|
15475
15475
|
if (hasRequiredBraceFold) return braceFold.exports;
|
|
15476
15476
|
hasRequiredBraceFold = 1;
|
|
15477
|
-
(function (module, exports) {
|
|
15477
|
+
(function (module, exports$1) {
|
|
15478
15478
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
15479
15479
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
15480
15480
|
|
|
@@ -15601,7 +15601,7 @@
|
|
|
15601
15601
|
function requireCommentFold () {
|
|
15602
15602
|
if (hasRequiredCommentFold) return commentFold.exports;
|
|
15603
15603
|
hasRequiredCommentFold = 1;
|
|
15604
|
-
(function (module, exports) {
|
|
15604
|
+
(function (module, exports$1) {
|
|
15605
15605
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
15606
15606
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
15607
15607
|
|
|
@@ -15668,7 +15668,7 @@
|
|
|
15668
15668
|
function requireFoldcode () {
|
|
15669
15669
|
if (hasRequiredFoldcode) return foldcode.exports;
|
|
15670
15670
|
hasRequiredFoldcode = 1;
|
|
15671
|
-
(function (module, exports) {
|
|
15671
|
+
(function (module, exports$1) {
|
|
15672
15672
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
15673
15673
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
15674
15674
|
|
|
@@ -15835,7 +15835,7 @@
|
|
|
15835
15835
|
function requireFoldgutter () {
|
|
15836
15836
|
if (hasRequiredFoldgutter) return foldgutter.exports;
|
|
15837
15837
|
hasRequiredFoldgutter = 1;
|
|
15838
|
-
(function (module, exports) {
|
|
15838
|
+
(function (module, exports$1) {
|
|
15839
15839
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
15840
15840
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
15841
15841
|
|
|
@@ -16012,7 +16012,7 @@
|
|
|
16012
16012
|
function requireIndentFold () {
|
|
16013
16013
|
if (hasRequiredIndentFold) return indentFold.exports;
|
|
16014
16014
|
hasRequiredIndentFold = 1;
|
|
16015
|
-
(function (module, exports) {
|
|
16015
|
+
(function (module, exports$1) {
|
|
16016
16016
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
16017
16017
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
16018
16018
|
|
|
@@ -16067,7 +16067,7 @@
|
|
|
16067
16067
|
function requireXmlFold () {
|
|
16068
16068
|
if (hasRequiredXmlFold) return xmlFold.exports;
|
|
16069
16069
|
hasRequiredXmlFold = 1;
|
|
16070
|
-
(function (module, exports) {
|
|
16070
|
+
(function (module, exports$1) {
|
|
16071
16071
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
16072
16072
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
16073
16073
|
|
|
@@ -16262,7 +16262,7 @@
|
|
|
16262
16262
|
function requireDialog () {
|
|
16263
16263
|
if (hasRequiredDialog) return dialog.exports;
|
|
16264
16264
|
hasRequiredDialog = 1;
|
|
16265
|
-
(function (module, exports) {
|
|
16265
|
+
(function (module, exports$1) {
|
|
16266
16266
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
16267
16267
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
16268
16268
|
|
|
@@ -16437,7 +16437,7 @@
|
|
|
16437
16437
|
function requireJumpToLine () {
|
|
16438
16438
|
if (hasRequiredJumpToLine) return jumpToLine.exports;
|
|
16439
16439
|
hasRequiredJumpToLine = 1;
|
|
16440
|
-
(function (module, exports) {
|
|
16440
|
+
(function (module, exports$1) {
|
|
16441
16441
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
16442
16442
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
16443
16443
|
|
|
@@ -16500,7 +16500,7 @@
|
|
|
16500
16500
|
function requireSearchcursor () {
|
|
16501
16501
|
if (hasRequiredSearchcursor) return searchcursor.exports;
|
|
16502
16502
|
hasRequiredSearchcursor = 1;
|
|
16503
|
-
(function (module, exports) {
|
|
16503
|
+
(function (module, exports$1) {
|
|
16504
16504
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
16505
16505
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
16506
16506
|
|
|
@@ -16809,7 +16809,7 @@
|
|
|
16809
16809
|
function requireSearch () {
|
|
16810
16810
|
if (hasRequiredSearch) return search.exports;
|
|
16811
16811
|
hasRequiredSearch = 1;
|
|
16812
|
-
(function (module, exports) {
|
|
16812
|
+
(function (module, exports$1) {
|
|
16813
16813
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
16814
16814
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
16815
16815
|
|
|
@@ -17114,7 +17114,7 @@
|
|
|
17114
17114
|
function requireShowHint () {
|
|
17115
17115
|
if (hasRequiredShowHint) return showHint.exports;
|
|
17116
17116
|
hasRequiredShowHint = 1;
|
|
17117
|
-
(function (module, exports) {
|
|
17117
|
+
(function (module, exports$1) {
|
|
17118
17118
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
17119
17119
|
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
|
|
17120
17120
|
|