@rcarls/rc-textarea-adapters 0.4.2 → 0.6.0
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 +15 -0
- package/README.md +4 -4
- package/dist/types/index.d.ts +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @rcarls/rc-textarea-adapters
|
|
2
2
|
|
|
3
|
+
## 0.6.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [985067e]
|
|
8
|
+
- Updated dependencies [57370e4]
|
|
9
|
+
- @rcarls/rc-textarea@0.6.0
|
|
10
|
+
|
|
11
|
+
## 0.5.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [689340c]
|
|
16
|
+
- @rcarls/rc-textarea@0.5.0
|
|
17
|
+
|
|
3
18
|
## 0.4.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -16,10 +16,10 @@ Full API, usage examples, and keyboard/accessibility notes are on the
|
|
|
16
16
|
All adapters are optional. Install only the peer(s) you use:
|
|
17
17
|
|
|
18
18
|
| Adapter | Peer dependency |
|
|
19
|
-
|
|
|
20
|
-
| Lezer
|
|
21
|
-
| Unified | `unified`
|
|
22
|
-
| Shiki
|
|
19
|
+
| ------- | --------------- |
|
|
20
|
+
| Lezer | `@lezer/common` |
|
|
21
|
+
| Unified | `unified` |
|
|
22
|
+
| Shiki | `shiki` |
|
|
23
23
|
|
|
24
24
|
## License
|
|
25
25
|
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { createLezerPlugin } from './lezer.
|
|
2
|
-
export { createUnifiedPlugin } from './unified.
|
|
3
|
-
export { createShikiPlugin } from './shiki.
|
|
1
|
+
export { createLezerPlugin } from './lezer.js';
|
|
2
|
+
export { createUnifiedPlugin } from './unified.js';
|
|
3
|
+
export { createShikiPlugin } from './shiki.js';
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.6.0",
|
|
7
7
|
"description": "Adapter factories that connect Lezer, unified, and Shiki tokenizers to rc-textarea.",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"build": "tsc && vite build"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@rcarls/rc-textarea": "0.
|
|
34
|
+
"@rcarls/rc-textarea": "0.6.0"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@lezer/common": ">=1.0.0",
|