@flogeez/angular-tiptap-editor 2.1.3 → 2.2.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 +24 -1
- package/fesm2022/flogeez-angular-tiptap-editor.mjs +493 -477
- package/fesm2022/flogeez-angular-tiptap-editor.mjs.map +1 -1
- package/index.d.ts +154 -119
- package/package.json +1 -1
- package/src/lib/styles/{bubble-menu.global.css → ate-bubble-menu.global.css} +1 -1
- package/src/lib/styles/index.css +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,30 @@
|
|
|
3
3
|
All notable changes to `@flogeez/angular-tiptap-editor` will be documented in this file.
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), with the exception that the major version is specifically aligned with the major version of [Tiptap](https://tiptap.dev).
|
|
7
|
+
|
|
8
|
+
## [2.2.0] - 2026-01-21
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Internal Ecosystem Prefixing**: Systemic renaming of all internal classes, services, models, and constants to use the `Ate` or `ATE_` prefix (e.g., `AteI18nService`, `AteEditorCommandsService`, `ATE_INITIAL_EDITOR_STATE`). This provides better library identification and avoids collisions with third-party extensions.
|
|
13
|
+
- **UI Branding Refactoring**: Refactored internal component selectors and CSS classes to use the new `ate-` prefix (e.g., `ate-button`, `ate-toolbar`). The main editor selector remains `angular-tiptap-editor`.
|
|
14
|
+
- **Project Standards**: Enforced Unix-style line endings (**LF**) across the entire repository via `.gitattributes` to ensure cross-platform consistency.
|
|
15
|
+
|
|
16
|
+
### Breaking Changes
|
|
17
|
+
|
|
18
|
+
- **Renamed Public Exports**: Systemal renaming of internal library exports to use the `Ate` prefix. **Backward compatibility is maintained** via deprecated aliases for all renamed items, which will be removed in v3.0.0.
|
|
19
|
+
- `EditorCommandsService` -> `AteEditorCommandsService`
|
|
20
|
+
- `TiptapI18nService` -> `AteI18nService`
|
|
21
|
+
- `EditorStateSnapshot` -> `AteEditorStateSnapshot`
|
|
22
|
+
- `INITIAL_EDITOR_STATE` -> `ATE_INITIAL_EDITOR_STATE`
|
|
23
|
+
- `ToolbarConfig` -> `AteToolbarConfig`, etc.
|
|
24
|
+
- All TipTap extensions (e.g., `AteResizableImage`, `AteTiptapStateExtension`).
|
|
25
|
+
- **Internal Component Selectors**: If you were using internal library components directly in your templates (outside of the main editor), they now use the `ate-` prefix:
|
|
26
|
+
- `tiptap-toolbar` -> `ate-toolbar`
|
|
27
|
+
- `tiptap-button` -> `ate-button`
|
|
28
|
+
- `tiptap-bubble-menu` -> `ate-bubble-menu`
|
|
29
|
+
- **Main Editor Selector**: Unchanged (`angular-tiptap-editor`), preserving the existing facade.
|
|
7
30
|
|
|
8
31
|
## [2.1.3] - 2026-01-21
|
|
9
32
|
|