diff --git a/CHANGELOG.md b/CHANGELOG.md index 23c84be6..2e1f10e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [2.0.5] - 12-02-22 +### Resolves + +- WYSIWYG save is not working. (#516) + +## [2.0.4] - 11-15-22 +### Resolves + +- Remove the "upgrade" button from the tinymce editor. (#512) +- Locked the node version to 16. (#515) + +## [2.0.3] - 10-12-22 +### Resolves + +- Fix bad error handling and reporting wvr-button. (#504) +- Footer Becoming Sticky when it should not. (#503) +- Remove ng-inline-svg as it is no longer maintained. (#502) +- Redesign dependency list, reducing dependencies where possible. (#507) +- Fixed tabs to no longer need a wrapping div to display content. (#505) + ## [2.0.2] - 09-19-22 ### Resolves diff --git a/package.json b/package.json index ea3cf25b..11f5acf0 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "type": "git", "url": "git+https://github.com/TAMULib/weaver-components.git" }, - "version": "2.0.4", + "version": "2.0.5-rc.1", "private": false, "license": "MIT", "engines": { @@ -63,6 +63,8 @@ "dependencies": { "@angular/animations": "12.2.16", "@angular/elements": "12.2.16", + "@angular/forms": "12.2.16", + "@angular/localize": "12.2.16", "@angular/platform-browser-dynamic": "12.2.16", "@ng-bootstrap/ng-bootstrap": "10.0.0", "@ngrx/effects": "12.5.1", @@ -76,7 +78,7 @@ "tinymce": "6.2.0" }, "devDependencies": { - "@angular-devkit/build-angular": "12.2.18", + "@angular-devkit/build-angular": "12.2.16", "@angular-eslint/eslint-plugin": "14.1.2", "@angular-eslint/eslint-plugin-template": "14.1.2", "@angular/cli": "12.2.16", @@ -124,6 +126,7 @@ "zone.js": "0.11.8" }, "overrides": { + "@angular/compiler": "12.2.16", "@angular/core": "12.2.16", "@types/eslint": "6.8.1", "chokidar": "3.5.3", diff --git a/projects/wvr-elements/package.json b/projects/wvr-elements/package.json index 31ca09f4..25ab7e2b 100644 --- a/projects/wvr-elements/package.json +++ b/projects/wvr-elements/package.json @@ -1,6 +1,6 @@ { "name": "@wvr/elements", - "version": "2.0.4", + "version": "2.0.5-rc.1", "description": "Collection of angular components for Weaver's Custom Web Component UI", "author": "Texas A&M University Libraries", "private": false, diff --git a/projects/wvr-elements/src/lib/wvr-wysiwyg/wvr-wysiwyg.component.ts b/projects/wvr-elements/src/lib/wvr-wysiwyg/wvr-wysiwyg.component.ts index 047645a0..15c11a16 100644 --- a/projects/wvr-elements/src/lib/wvr-wysiwyg/wvr-wysiwyg.component.ts +++ b/projects/wvr-elements/src/lib/wvr-wysiwyg/wvr-wysiwyg.component.ts @@ -49,15 +49,15 @@ export class WvrWysiwygComponent extends WvrBaseComponent implements OnInit, OnD base_url: 'tinymce', skin: 'oxide', plugins: [ - 'advlist autolink lists link image charmap print', - 'preview anchor searchreplace visualblocks code', - 'fullscreen insertdatetime media table paste', - 'help wordcount print preview save' + "advlist", "autolink", "lists", "link", "image", "charmap", "print", + "preview", "anchor", "searchreplace", "visualblocks", "code", + "fullscreen", "insertdatetime", "media", "table", "paste", + "help", "wordcount", "print", "preview", "save" ], - toolbar: 'undo redo | formatselect | bold italic forecolor backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | table pagebreak | charmap codesample image | removeformat | help | cancel save', + toolbar: 'undo redo | print formatselect | bold italic forecolor backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | table pagebreak | charmap codesample image | removeformat | help | cancel save', menu: (wvrEditor as any).default, height: '300', - /* TODO: Issue #316. */ + save_oncancelcallback: $event => { this.onReset($event); },