Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### 8.15.1 2026-01-27

- feat: Detect and render Math XML. #KB-61551
- fix: CK5 Improve track changes markers styling. #KB-62901
- fix: CK5 Preview track changes. #KB-62983
- fix: CK5 get Data with track changes. #KB-63220

### 8.15.0 2026-01-07

- feat: Add TrackChanges compatibility. #KB-62491
Expand Down Expand Up @@ -272,7 +279,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added ADR 005. Use HTML sanitizer to avoid XSS attacks.

- Solve Parser not working on Generic Integrations (Issue - #450)

- Modify the generic package to use properly the parser functions.
- Modify the demo to initialyze the editor exposing it to the window, so it can have the necessary configurations to use the Parser class.

Expand All @@ -282,13 +288,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Added this tag on the Latex formula generation.

- Fix Angular + Froala (v3 & v4) treting Wiris formulas as images.

- Update Webpack to V5 and remove jQuery, on mathtype-froala3 and its demos.

- Accept non standard ports for host.

- doc: Update Generic integration instructions with a missing step (#KB-19571)

- On `mathtype-generic` and `mathtype-html-integration-devkit` pacakges

- Start sending data to Cypress Dashboard with the published packages (KB-18683)
Expand Down Expand Up @@ -336,7 +340,6 @@ See: https://github.com/wiris/html-integrations/issues/134#issuecomment-90544864
- Package level
- Modify the MathType for Froala 3 plugin to support the latest Froala version (4).
- README level

- Improve MathType Froala packages and demos README.
- Modify project README in order to take into account the new changes on the Froala plugin and demos.
- Created ADR draft 004.
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor4/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"prepack": "yarn && npm run build"
},
"dependencies": {
"@wiris/mathtype-html-integration-devkit": "1.17.13"
"@wiris/mathtype-html-integration-devkit": "1.17.14"
},
"devDependencies": {
"@babel/core": "^7.24.4",
Expand Down
1 change: 1 addition & 0 deletions packages/ckeditor5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Easily include quality math equations in your documents and digital content.
```js
import { ClassicEditor } from 'ckeditor5';
import MathType from '@wiris/mathtype-ckeditor5/dist/index.js';
import "@wiris/mathtype-ckeditor5/dist/index.css";

...

Expand Down
17 changes: 16 additions & 1 deletion packages/ckeditor5/dist/browser/index-editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -544,4 +544,19 @@
color:#000;
text-decoration:none;
cursor:pointer;
}
}
.ck-widget.ck-math-widget.ck-suggestion-marker{
border:none;
}
.ck-widget.ck-math-widget.ck-suggestion-marker.ck-suggestion-marker-insertion .Wirisformula{
border:3px solid var(--ck-color-suggestion-marker-insertion-border);
}
.ck-widget.ck-math-widget.ck-suggestion-marker.ck-suggestion-marker-insertion.ck-suggestion-marker--active .Wirisformula{
border:3px solid var(--ck-color-suggestion-marker-insertion-border-active);
}
.ck-widget.ck-math-widget.ck-suggestion-marker.ck-suggestion-marker-deletion .Wirisformula{
border:3px solid var(--ck-color-suggestion-marker-deletion-border);
}
.ck-widget.ck-math-widget.ck-suggestion-marker.ck-suggestion-marker-deletion.ck-suggestion-marker--active .Wirisformula{
border:3px solid var(--ck-color-suggestion-marker-deletion-border-active);
}
17 changes: 17 additions & 0 deletions packages/ckeditor5/dist/browser/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading