@scalar/use-codemirror 0.11.100 → 0.11.102
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/CHANGELOG.md +14 -0
- package/dist/hooks/index.js +3 -2
- package/dist/hooks/index.js.map +7 -0
- package/dist/hooks/useCodeMirror.d.ts +1 -1
- package/dist/hooks/useCodeMirror.js +346 -312
- package/dist/hooks/useCodeMirror.js.map +7 -0
- package/dist/hooks/useCodeMirror.test.js +69 -0
- package/dist/hooks/useCodeMirror.test.js.map +7 -0
- package/dist/hooks/useDropdown.js +55 -62
- package/dist/hooks/useDropdown.js.map +7 -0
- package/dist/hooks/variables.js +25 -16
- package/dist/hooks/variables.js.map +7 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +20 -5
- package/dist/index.js.map +7 -0
- package/dist/themes/createCodeMirrorTheme.js +73 -82
- package/dist/themes/createCodeMirrorTheme.js.map +7 -0
- package/dist/themes/createCodeMirrorTheme.test.js +18 -0
- package/dist/themes/createCodeMirrorTheme.test.js.map +7 -0
- package/dist/themes/index.js +89 -88
- package/dist/themes/index.js.map +7 -0
- package/dist/types.js +1 -0
- package/dist/types.js.map +7 -0
- package/package.json +5 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @scalar/use-codemirror
|
|
2
2
|
|
|
3
|
+
## 0.11.102
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8c7bad8: chore: move build tooling to esbuild
|
|
8
|
+
- Updated dependencies [8c7bad8]
|
|
9
|
+
- @scalar/components@0.13.57
|
|
10
|
+
|
|
11
|
+
## 0.11.101
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- @scalar/components@0.13.56
|
|
16
|
+
|
|
3
17
|
## 0.11.100
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export * from "./useCodeMirror.js";
|
|
2
|
+
export * from "./useDropdown.js";
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type Extension } from '@codemirror/state';
|
|
2
2
|
import { EditorView } from '@codemirror/view';
|
|
3
3
|
import { type MaybeRefOrGetter, type Ref } from 'vue';
|
|
4
|
-
import type { CodeMirrorLanguage } from '../types';
|
|
4
|
+
import type { CodeMirrorLanguage } from '../types.js';
|
|
5
5
|
type BaseParameters = {
|
|
6
6
|
/** Element Ref to mount codemirror to */
|
|
7
7
|
codeMirrorRef: Ref<HTMLDivElement | null>;
|