@flogeez/angular-tiptap-editor 0.5.0 → 0.5.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,11 @@ 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.1] - 2026-01-07
9
+
10
+ ### Fixed
11
+ - **Library Dependencies**: Added missing `@tiptap/extension-color` and `@tiptap/extension-text-style` to peerDependencies.
12
+
8
13
  ## [0.5.0] - 2026-01-07
9
14
 
10
15
  ### Added
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  A modern, customizable rich-text editor for Angular applications, built with Tiptap and featuring complete internationalization support.
4
4
 
5
- [![Try it on StackBlitz](https://img.shields.io/badge/Try%20it-StackBlitz-blue?style=for-the-badge&logo=stackblitz)](https://stackblitz.com/edit/angular-tiptap-editor)
5
+ [![Demo](https://img.shields.io/badge/Demo-Live-brightgreen?style=for-the-badge&logo=google-chrome)](https://flogeez.github.io/angular-tiptap-editor/) [![Try it on StackBlitz](https://img.shields.io/badge/Try%20it-StackBlitz-blue?style=for-the-badge&logo=stackblitz)](https://stackblitz.com/edit/angular-tiptap-editor)
6
6
 
7
7
  ## 🚀 Features
8
8
 
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Editor, Extension, Node, Mark, EditorOptions } from '@tiptap/core';
1
+ import { Editor, Node, Extension, Mark, EditorOptions } from '@tiptap/core';
2
2
  import * as _angular_core from '@angular/core';
3
3
  import { AfterViewInit, OnDestroy, ElementRef } from '@angular/core';
4
4
  import { Observable } from 'rxjs';
@@ -735,8 +735,8 @@ declare class AngularTiptapEditorComponent implements AfterViewInit, OnDestroy {
735
735
  slashCommands: _angular_core.InputSignal<SlashCommandsConfig>;
736
736
  customSlashCommands: _angular_core.InputSignal<CustomSlashCommands | undefined>;
737
737
  locale: _angular_core.InputSignal<SupportedLocale | undefined>;
738
- autofocus: _angular_core.InputSignal<number | boolean | "start" | "end" | "all">;
739
- tiptapExtensions: _angular_core.InputSignal<(Extension<any, any> | Node<any, any> | Mark<any, any>)[]>;
738
+ autofocus: _angular_core.InputSignal<number | boolean | "end" | "start" | "all">;
739
+ tiptapExtensions: _angular_core.InputSignal<(Node<any, any> | Extension<any, any> | Mark<any, any>)[]>;
740
740
  tiptapOptions: _angular_core.InputSignal<Partial<EditorOptions>>;
741
741
  showBubbleMenu: _angular_core.InputSignal<boolean>;
742
742
  bubbleMenu: _angular_core.InputSignal<Partial<BubbleMenuConfig>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flogeez/angular-tiptap-editor",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "A modern, customizable rich-text editor for Angular (18+), built with Tiptap and featuring complete internationalization support",
5
5
  "keywords": [
6
6
  "angular",
@@ -43,6 +43,8 @@
43
43
  "@tiptap/extension-table-cell": "^2.0.0",
44
44
  "@tiptap/extension-table-header": "^2.0.0",
45
45
  "@tiptap/extension-table-row": "^2.0.0",
46
+ "@tiptap/extension-color": "^2.0.0",
47
+ "@tiptap/extension-text-style": "^2.0.0",
46
48
  "@intevation/tiptap-extension-office-paste": "^0.1.0",
47
49
  "tippy.js": "^6.3.7"
48
50
  },