From 07aced00d51a0506745431c44615770fdac77196 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Mon, 28 Apr 2025 17:17:41 +0200 Subject: [PATCH] tracker: clearup old deprecated changes --- tracker/tracker/CHANGELOG.md | 18 ++++++++++++++++++ tracker/tracker/package.json | 2 +- tracker/tracker/src/main/app/index.ts | 17 ----------------- 3 files changed, 19 insertions(+), 18 deletions(-) diff --git a/tracker/tracker/CHANGELOG.md b/tracker/tracker/CHANGELOG.md index 434eb35e6..19585a062 100644 --- a/tracker/tracker/CHANGELOG.md +++ b/tracker/tracker/CHANGELOG.md @@ -1,3 +1,21 @@ +## 16.2.1 + +- easier inliner options: +``` +inlineCss: InlineCssMode + +enum InlineCssMode { + /** default behavior -- will parse and cache the css file on backend */ + Disabled = 0, + /** will attempt to record the linked css file as AdoptedStyleSheet object */ + Inline = 1, + /** will fetch the file, then simulated AdoptedStyleSheets behavior programmaticaly for the replay */ + InlineFetched = 2, + /** will fetch the file, then save it as plain css inside