@flogeez/angular-tiptap-editor 0.5.2 → 0.5.3
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 +11 -1
- package/README.md +1 -0
- package/fesm2022/flogeez-angular-tiptap-editor.mjs +284 -89
- package/fesm2022/flogeez-angular-tiptap-editor.mjs.map +1 -1
- package/index.d.ts +9 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,11 +5,21 @@ All notable changes to `@flogeez/angular-tiptap-editor` will be documented in th
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.5.3] - 2026-01-08
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Unified Color Picker**: Refactored text and highlight color pickers into a single, generic `TiptapColorPickerComponent` for better maintainability (DRY).
|
|
12
|
+
- **Advanced Highlight Picker**: The highlight button now displays the selected color as its background, with automatic icon contrast (black/white) for perfect visibility.
|
|
13
|
+
- **Improved Text Color Picker**: Added an adaptive contrast background to the text color button when a very light color is selected, ensuring the icon remains visible.
|
|
14
|
+
- **Highlight Toggle vs Picker**: Separated the quick "Yellow Highlight" toggle (binary) from the advanced "Color Picker" (precision), allowing both to be configured independently.
|
|
15
|
+
- **New Default Configuration**: The editor now enables the advanced Color Picker and Text Color picker by default in both the toolbar and bubble menu.
|
|
16
|
+
|
|
8
17
|
## [0.5.2] - 2026-01-07
|
|
9
18
|
|
|
10
19
|
### Added
|
|
11
20
|
- **Word Count Toggle**: Added `showWordCount` input to independently control the visibility of the word counter.
|
|
12
|
-
- **
|
|
21
|
+
- **Character Limit**: Added `maxCharacters` support with visual feedback and dynamic blocking.
|
|
22
|
+
- **Footer Configuration Section**: New section in the demo to manage counters and limits with a design consistent with other panels.
|
|
13
23
|
|
|
14
24
|
## [0.5.1] - 2026-01-07
|
|
15
25
|
|