@flogeez/angular-tiptap-editor 3.0.3 → 3.1.1

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 CHANGED
@@ -5,6 +5,26 @@ 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), with the exception that the major version is specifically aligned with the major version of [Tiptap](https://tiptap.dev).
7
7
 
8
+ ## [3.1.1] - 2026-02-13
9
+
10
+ ### Fixed
11
+
12
+ - **Image Resizing**: Resolved a bug where multiple selected images were resized simultaneously. The update now precisely targets the intended node.
13
+
14
+ ## [3.1.0] - 2026-02-13
15
+
16
+ ### Added
17
+
18
+ - **Block Controls (Plus + Drag)**: Introduced new Notion-like block controls accessible via the `blockControls` property in `AteEditorConfig`.
19
+ - **Modes**: Supports `inside` (fixed space reserved inside the editor) and `outside` (floating outside the editor for a full-width look).
20
+ - **Customization**: Introduced `--ate-content-gutter` CSS variable (defaults to `54px` in `inside` mode) to allow precise control over the reserved width.
21
+ - **Drag Handle**: A 6-dots handle for native ProseMirror drag-and-drop block reordering.
22
+ - **Quick Add**: A plus button that instantly triggers the slash commands menu at the current block position.
23
+
24
+ ### Changed
25
+
26
+ - **Padding Logic**: Refactored `--ate-content-padding` into `--ate-content-padding-block` (vertical) and `--ate-content-padding-inline` (horizontal). This avoids calculation errors when using multi-value shorthands and allows more granular theme customization.
27
+
8
28
  ## [3.0.3] - 2026-02-09
9
29
 
10
30
  ### Added