Skip to content

Commit

Permalink
release: ngx-editor v17.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sibiraj-s committed Mar 5, 2024
1 parent 3280608 commit 463fc5c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
25 changes: 23 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@ All notable changes to this project will be documented in this file.
> - Documentation
> - Internal
## v17.0.0 (2024-03-05)

#### Dependency Updates

- update prosemirror dependencies ([ea7656c](https://github.com/sibiraj-s/ngx-editor/commit/ea7656c))
- update floating-ui dependencies ([ea7656c](https://github.com/sibiraj-s/ngx-editor/commit/ea7656c))

#### Breaking Changes

- requires angular v17 or greater ([9bc0ff9](https://github.com/sibiraj-s/ngx-editor/commit/9bc0ff9))

## v16.0.1 (2023-08-18)

#### Bug Fixes
Expand Down Expand Up @@ -641,7 +652,12 @@ Refer docs for migration https://sibiraj-s.github.io/ngx-editor
- expose commands ([dc5c8d1](https://github.com/sibiraj-s/ngx-editor/commit/dc5c8d1))

```ts
this.editor.commands.textColor('red').insertText('Hello world!').focus().scrollIntoView().exec();
this.editor.commands
.textColor('red')
.insertText('Hello world!')
.focus()
.scrollIntoView()
.exec();
```

## v6.0.3 (2021-01-08)
Expand Down Expand Up @@ -720,7 +736,12 @@ export class AppComponent implements OnInit, OnDestroy {
HTML

```html
<ngx-editor-menu [editor]="editor" [toolbar]="toolbar" [colorPresets]="colorPresets"> </ngx-editor-menu>
<ngx-editor-menu
[editor]="editor"
[toolbar]="toolbar"
[colorPresets]="colorPresets"
>
</ngx-editor-menu>
```

### CustomMenu
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-editor",
"version": "16.0.1",
"version": "17.0.0",
"description": "The Rich Text Editor for Angular, Built on ProseMirror",
"license": "MIT",
"repository": "https://github.com/sibiraj-s/ngx-editor.git",
Expand Down

0 comments on commit 463fc5c

Please sign in to comment.