Skip to content

Commit d1faa5b

Browse files
committed
1 parent a532fb3 commit d1faa5b

5 files changed

Lines changed: 7 additions & 8 deletions

File tree

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": "jodit",
3-
"version": "4.9.11",
3+
"version": "4.9.12",
44
"description": "Jodit is an awesome and useful wysiwyg editor with filebrowser",
55
"main": "build/jodit.min.js",
66
"types": "./types/index.d.ts",

src/core/dom/dom.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1243,7 +1243,7 @@ export class Dom {
12431243

12441244
/**
12451245
* Get temporary list
1246-
* @deprecated
1246+
* @deprecated Just do not use it, it is not needed anymore
12471247
*/
12481248
static temporaryList(root: HTMLElement): HTMLElement[] {
12491249
return toArray(root.querySelectorAll(`[${TEMP_ATTR}]`));

src/core/ui/accessibility.test.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,8 @@ describe('Accessibility', () => {
6969
buttons: ['bold', 'italic']
7070
});
7171

72-
const groups = editor.toolbar.container.querySelectorAll(
73-
'[role="group"]'
74-
);
72+
const groups =
73+
editor.toolbar.container.querySelectorAll('[role="group"]');
7574
expect(groups.length).to.be.above(0);
7675
});
7776
});

src/core/ui/group/group.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ export class UIGroup<T extends IViewBased = IViewBased>
194194
constructor(
195195
jodit: T,
196196
elements?: Array<IUIElement | void | null | false>,
197-
readonly options?: IDictionary
197+
override readonly options?: IDictionary
198198
) {
199199
super(jodit, options);
200200
elements?.forEach(elm => elm && this.append(elm));

0 commit comments

Comments
 (0)