@scalar/use-codemirror 0.11.101 → 0.11.103

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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # @scalar/use-codemirror
2
2
 
3
+ ## 0.11.103
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [af38fa6]
8
+ - @scalar/components@0.13.58
9
+
10
+ ## 0.11.102
11
+
12
+ ### Patch Changes
13
+
14
+ - 8c7bad8: chore: move build tooling to esbuild
15
+ - Updated dependencies [8c7bad8]
16
+ - @scalar/components@0.13.57
17
+
3
18
  ## 0.11.101
4
19
 
5
20
  ### Patch Changes
@@ -1,2 +1,3 @@
1
- export { useCodeMirror } from './useCodeMirror.js';
2
- export { useDropdown } from './useDropdown.js';
1
+ export * from "./useCodeMirror.js";
2
+ export * from "./useDropdown.js";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/hooks/index.ts"],
4
+ "sourcesContent": ["export * from './useCodeMirror'\nexport * from './useDropdown'\n"],
5
+ "mappings": "AAAA,cAAc;AACd,cAAc;",
6
+ "names": []
7
+ }
@@ -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>;