@flogeez/angular-tiptap-editor 3.0.1 → 3.0.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 +24 -0
- package/fesm2022/flogeez-angular-tiptap-editor.mjs +642 -384
- package/fesm2022/flogeez-angular-tiptap-editor.mjs.map +1 -1
- package/index.d.ts +70 -23
- package/package.json +1 -1
- package/src/lib/styles/ate-bubble-menu.global.css +15 -18
- package/src/lib/styles/ate-tooltip.global.css +47 -0
- package/src/lib/styles/index.css +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,30 @@ 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.0.3] - 2026-02-09
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Multi-line Tooltips**: Added `AteTooltipDirective`, a directive leveraging signals and `tippy.js` for lightweight, high-performance tooltips.
|
|
13
|
+
- **Platform-aware Shortcuts**: Automatic detection of macOS to replace 'Ctrl' with the native '⌘' symbol in tooltips for a premium OS-native experience.
|
|
14
|
+
- **Tooltip Design Tokens**: New CSS variables `--ate-tooltip-bg` and `--ate-tooltip-color` synchronized with code-block colors for a consistent high-contrast floating UI.
|
|
15
|
+
|
|
16
|
+
## [3.0.2] - 2026-02-09
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- **Image Alignment**: Introduced support for block-level image alignment (left, center, right) accessible directly from the image bubble menu.
|
|
21
|
+
- **Alignment Configuration**: New `alignLeft`, `alignCenter`, and `alignRight` options in `AteImageBubbleMenuConfig` to control the availability of alignment buttons.
|
|
22
|
+
- **Image Resize Handles**: Reduced the number of resize handles to 2 (sides only) and changed visibility to appear on hover (even if not selected), providing a minimalist and modern UI. Restricted to editable mode.
|
|
23
|
+
- **Image Download**: Added a new download button to the image bubble menu, allowing users to save images directly from the editor. Supports both editable and read-only modes.
|
|
24
|
+
- **UI Refinement**: Optimized the visual density of the toolbar and bubble menus by reducing gaps (from 4px/6px to 2px) and paddings (from 6px to 4px) for a sharper, more modern appearance.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- **Configuration Centralization**: Optimized the internal configuration system by synchronizing all bubble menus (`Image`, `Table`, `Cell`, `Text`) with a single source of truth in `ate-editor.config.ts`.
|
|
29
|
+
- **Image Upload Defaults**: Centralized default image upload settings (maximum size, dimensions, and quality) into `ATE_DEFAULT_IMAGE_UPLOAD_CONFIG` for better global management.
|
|
30
|
+
- **Improved Design Tokens**: Introduced `--ate-primary-hover` for consistent interaction states across links and interactive UI elements. Introduced also `--ate-menu-gap` and `--ate-toolbar-gap` that now drive the visual density of the entire editor.
|
|
31
|
+
|
|
8
32
|
## [3.0.1] - 2026-02-06
|
|
9
33
|
|
|
10
34
|
### Fixed
|