@aiao/code-editor-vue 0.0.10 → 0.0.11
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/dist/index.js +2 -2
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as P, ref as B, onMounted as q, onUnmounted as A, watch as i,
|
|
1
|
+
import { defineComponent as P, ref as B, onMounted as q, onUnmounted as A, watch as i, openBlock as D, createElementBlock as G } from "vue";
|
|
2
2
|
import { SUPPORT_LANGUAGES as N } from "@aiao/code-editor";
|
|
3
3
|
import { indentWithTab as O } from "@codemirror/commands";
|
|
4
4
|
import { indentUnit as H, LanguageDescription as I } from "@codemirror/language";
|
|
@@ -118,7 +118,7 @@ const ne = /* @__PURE__ */ P({
|
|
|
118
118
|
effects: v.reconfigure(t.highlightWhitespace ? z() : [])
|
|
119
119
|
});
|
|
120
120
|
}
|
|
121
|
-
return (e, n) => (
|
|
121
|
+
return (e, n) => (D(), G("div", {
|
|
122
122
|
ref_key: "editorRef",
|
|
123
123
|
ref: r,
|
|
124
124
|
class: "h-full w-full overflow-hidden text-sm"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiao/code-editor-vue",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
"vue": ">=3.5.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@codemirror/commands": "^6.10.
|
|
34
|
+
"@codemirror/commands": "^6.10.2",
|
|
35
35
|
"@codemirror/language": "^6.12.0",
|
|
36
36
|
"@codemirror/state": "^6.5.4",
|
|
37
37
|
"@codemirror/theme-one-dark": "^6.1.3",
|
|
38
|
-
"@codemirror/view": "^6.39.
|
|
38
|
+
"@codemirror/view": "^6.39.12",
|
|
39
39
|
"codemirror": "^6.0.1",
|
|
40
|
-
"@aiao/code-editor": "0.0.
|
|
40
|
+
"@aiao/code-editor": "0.0.11"
|
|
41
41
|
}
|
|
42
42
|
}
|