From 35a182b923e8b5f1266a4fb9c7586dc94cb26442 Mon Sep 17 00:00:00 2001 From: Ben Tran Date: Mon, 19 Jan 2026 10:33:56 +1030 Subject: [PATCH 1/2] INT-3378: Update the zoneless section --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4f15ff0d..3c31957d 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ This package is a thin wrapper around [TinyMCE](https://github.com/tinymce/tinym |<= 8 |3.x | |< 5 | Not supported | -### Not yet Zoneless ( >=Angular v20.2 ) -* This integration still requires `zone.js` to ensure backward compatibility to older Angular versions. Therefore, your application will need to include `provideZoneDetection()` its providers like below: +### Not yet Zoneless ( >=Angular v21 ) +* This wrapper still requires `zone.js` to ensure backward compatibility to older Angular versions. Therefore, if your application uses Angular v21, it needs to include `provideZoneDetection()` in its providers. ```jsx import { NgModule, provideZoneChangeDetection } from '@angular/core'; From d69ded447b22628a65897d1c598ee752b7cc7acb Mon Sep 17 00:00:00 2001 From: tiny-ben-tran Date: Tue, 20 Jan 2026 08:50:37 +1030 Subject: [PATCH 2/2] Update README.md Co-authored-by: Kim <45845989+kimwoodfield@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c31957d..e0881664 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ This package is a thin wrapper around [TinyMCE](https://github.com/tinymce/tinym |< 5 | Not supported | ### Not yet Zoneless ( >=Angular v21 ) -* This wrapper still requires `zone.js` to ensure backward compatibility to older Angular versions. Therefore, if your application uses Angular v21, it needs to include `provideZoneDetection()` in its providers. +* This wrapper still requires `zone.js` to ensure backward compatibility to older Angular versions. Therefore, if your application uses Angular v21 or higher, it needs to include `provideZoneDetection()` in its providers. ```jsx import { NgModule, provideZoneChangeDetection } from '@angular/core';