@lexion-rte/angular 0.1.2 → 0.1.4
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 +23 -0
- package/README.md +6 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @lexion-rte/angular
|
|
2
2
|
|
|
3
|
+
## 0.1.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add a shared Lexion framework overview and logo at the top of each package README.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @lexion-rte/core@0.1.4
|
|
10
|
+
- @lexion-rte/web@0.1.4
|
|
11
|
+
|
|
12
|
+
## 0.1.3
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Release `0.1.3` with framework-native adapter samples and documentation alignment.
|
|
17
|
+
|
|
18
|
+
- Add runnable sample apps for each adapter package in `apps/*-sample`.
|
|
19
|
+
- Ensure adapter and extension docs use real framework code style (React JSX, Vue SFC, Vue 2 Options API, Angular component lifecycle, Svelte action/component usage, Solid JSX).
|
|
20
|
+
- Update guides and task tracking to reflect the full adapter sample matrix and framework-accurate examples.
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @lexion-rte/core@0.1.3
|
|
24
|
+
- @lexion-rte/web@0.1.3
|
|
25
|
+
|
|
3
26
|
## 0.1.2
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
This package is part of the Lexion framework-agnostic rich text editor.
|
|
4
|
+
|
|
5
|
+
Lexion is a framework-agnostic, headless rich text editor platform built on ProseMirror, designed to provide a shared core, reusable extensions, and framework-specific adapters.
|
|
6
|
+
|
|
1
7
|
# @lexion-rte/angular
|
|
2
8
|
|
|
3
9
|
Angular integration helpers for Lexion.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lexion-rte/angular",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Angular adapter utilities for the Lexion editor.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"@angular/forms": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@lexion-rte/core": "0.1.
|
|
42
|
-
"@lexion-rte/web": "0.1.
|
|
41
|
+
"@lexion-rte/core": "0.1.4",
|
|
42
|
+
"@lexion-rte/web": "0.1.4"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "tsc -p tsconfig.json",
|