Skip to content

Commit f931513

Browse files
authored
Merge branch 'main' into fix/tooltip-hidden-under-toolbar
2 parents 39a4f7e + bd34bef commit f931513

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [14.10.3](https://github.com/gravity-ui/markdown-editor/compare/v14.10.2...v14.10.3) (2025-01-14)
4+
5+
6+
### Bug Fixes
7+
8+
* fixed serialization of empty nodes ([#545](https://github.com/gravity-ui/markdown-editor/issues/545)) ([26a4b6b](https://github.com/gravity-ui/markdown-editor/commit/26a4b6b37139ba76aa98ca48183ff227f9ba8419))
9+
* **toolbars:** added math to ListName ([#547](https://github.com/gravity-ui/markdown-editor/issues/547)) ([c8bfa70](https://github.com/gravity-ui/markdown-editor/commit/c8bfa702aebe53bdf87d6c6fb6fb1a7634c5d83a))
10+
311
## [14.10.2](https://github.com/gravity-ui/markdown-editor/compare/v14.10.1...v14.10.2) (2024-12-25)
412

513

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gravity-ui/markdown-editor",
3-
"version": "14.10.2",
3+
"version": "14.10.3",
44
"description": "Markdown wysiwyg and markup editor",
55
"license": "MIT",
66
"repository": {

src/modules/toolbars/constants.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
export enum ListName {
2+
code = 'code',
23
heading = 'heading',
34
lists = 'lists',
4-
code = 'code',
5+
math = 'math',
56
}
67

78
export enum ToolbarName {

0 commit comments

Comments
 (0)