@scalar/use-codemirror 0.12.43 → 0.12.45
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 +16 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -2
- package/dist/index.js.map +2 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @scalar/use-codemirror
|
|
2
2
|
|
|
3
|
+
## 0.12.45
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#7226](https://github.com/scalar/scalar/pull/7226) [`bffef40`](https://github.com/scalar/scalar/commit/bffef4092e40d12052f8538267af71bc99b7172f) Thanks [@amritk](https://github.com/amritk)! - feat: added overview page for client v2
|
|
8
|
+
|
|
9
|
+
- Updated dependencies []:
|
|
10
|
+
- @scalar/components@0.16.1
|
|
11
|
+
|
|
12
|
+
## 0.12.44
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`348f8f6`](https://github.com/scalar/scalar/commit/348f8f6292ef41844fda1fdd3089a55d97adbc0e), [`c22fc4e`](https://github.com/scalar/scalar/commit/c22fc4e5acb49d648014a6100c724a5b33c59cde), [`6ec8c29`](https://github.com/scalar/scalar/commit/6ec8c299d912111b029e8058979d00968b70691a), [`8a5a6a0`](https://github.com/scalar/scalar/commit/8a5a6a052cc05b0902b05052c80cc429ebc5a730), [`704fa30`](https://github.com/scalar/scalar/commit/704fa302b2cdbb17b19ca2d742537ca163d58c1c), [`a26ced6`](https://github.com/scalar/scalar/commit/a26ced6f2897074f0c102d5ccbff55c6fd520e12), [`6a090a2`](https://github.com/scalar/scalar/commit/6a090a2e07ef961c56041c85ee9786180437593a), [`592533f`](https://github.com/scalar/scalar/commit/592533faf60b6a5ba27909a4ca0847ca9f04a96d), [`eba18d0`](https://github.com/scalar/scalar/commit/eba18d06267a163a8f91396a66f817100ee59461), [`c72a2c5`](https://github.com/scalar/scalar/commit/c72a2c59eb80e1f5e216c687229ff90bea88f554), [`0d9c945`](https://github.com/scalar/scalar/commit/0d9c945a696ea8b826d86f7b48ec6de4d85e64f0)]:
|
|
17
|
+
- @scalar/components@0.16.0
|
|
18
|
+
|
|
3
19
|
## 0.12.43
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { type Extension, RangeSetBuilder, StateEffect } from '@codemirror/state';
|
|
2
|
-
export { colorPicker } from '@replit/codemirror-css-color-picker';
|
|
1
|
+
export { EditorState, type Extension, RangeSetBuilder, StateEffect, } from '@codemirror/state';
|
|
3
2
|
export { Decoration, type DecorationSet, EditorView, ViewPlugin, type ViewUpdate, WidgetType, } from '@codemirror/view';
|
|
3
|
+
export { colorPicker } from '@replit/codemirror-css-color-picker';
|
|
4
4
|
export * from './hooks/index.js';
|
|
5
5
|
export * from './types.js';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,KAAK,SAAS,EACd,eAAe,EACf,WAAW,GACZ,MAAM,mBAAmB,CAAA;AAC1B,OAAO,EACL,UAAU,EACV,KAAK,aAAa,EAClB,UAAU,EACV,UAAU,EACV,KAAK,UAAU,EACf,UAAU,GACX,MAAM,kBAAkB,CAAA;AACzB,OAAO,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAA;AAEjE,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
EditorState,
|
|
3
|
+
RangeSetBuilder,
|
|
4
|
+
StateEffect
|
|
5
|
+
} from "@codemirror/state";
|
|
3
6
|
import {
|
|
4
7
|
Decoration,
|
|
5
8
|
EditorView,
|
|
6
9
|
ViewPlugin,
|
|
7
10
|
WidgetType
|
|
8
11
|
} from "@codemirror/view";
|
|
12
|
+
import { colorPicker } from "@replit/codemirror-css-color-picker";
|
|
9
13
|
export * from "./hooks/index.js";
|
|
10
14
|
export * from "./types.js";
|
|
11
15
|
export {
|
|
12
16
|
Decoration,
|
|
17
|
+
EditorState,
|
|
13
18
|
EditorView,
|
|
14
19
|
RangeSetBuilder,
|
|
15
20
|
StateEffect,
|
package/dist/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/index.ts"],
|
|
4
|
-
"sourcesContent": ["export {
|
|
5
|
-
"mappings": "AAAA,
|
|
4
|
+
"sourcesContent": ["export {\n EditorState,\n type Extension,\n RangeSetBuilder,\n StateEffect,\n} from '@codemirror/state'\nexport {\n Decoration,\n type DecorationSet,\n EditorView,\n ViewPlugin,\n type ViewUpdate,\n WidgetType,\n} from '@codemirror/view'\nexport { colorPicker } from '@replit/codemirror-css-color-picker'\n\nexport * from './hooks'\nexport * from './types'\n"],
|
|
5
|
+
"mappings": "AAAA;AAAA,EACE;AAAA,EAEA;AAAA,EACA;AAAA,OACK;AACP;AAAA,EACE;AAAA,EAEA;AAAA,EACA;AAAA,EAEA;AAAA,OACK;AACP,SAAS,mBAAmB;AAE5B,cAAc;AACd,cAAc;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"vue",
|
|
17
17
|
"vue3"
|
|
18
18
|
],
|
|
19
|
-
"version": "0.12.
|
|
19
|
+
"version": "0.12.45",
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=20"
|
|
22
22
|
},
|
|
@@ -60,16 +60,16 @@
|
|
|
60
60
|
"@lezer/highlight": "^1.2.1",
|
|
61
61
|
"@replit/codemirror-css-color-picker": "^6.3.0",
|
|
62
62
|
"codemirror": "^6.0.0",
|
|
63
|
-
"vue": "^3.5.
|
|
64
|
-
"@scalar/components": "0.
|
|
63
|
+
"vue": "^3.5.21",
|
|
64
|
+
"@scalar/components": "0.16.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@vitejs/plugin-vue": "6.0.1",
|
|
68
|
-
"vite": "7.1.
|
|
68
|
+
"vite": "7.1.11",
|
|
69
69
|
"vitest": "3.2.4",
|
|
70
|
-
"vue": "^3.5.
|
|
71
|
-
"@scalar/
|
|
72
|
-
"@scalar/
|
|
70
|
+
"vue": "^3.5.21",
|
|
71
|
+
"@scalar/themes": "0.13.23",
|
|
72
|
+
"@scalar/build-tooling": "0.2.8"
|
|
73
73
|
},
|
|
74
74
|
"scripts": {
|
|
75
75
|
"build": "scalar-build-esbuild",
|