From fa6ad4028beee6c4827c073d6d3540c1eec0f8d6 Mon Sep 17 00:00:00 2001 From: Tomas Rimkus Date: Thu, 30 Nov 2023 14:12:40 +0100 Subject: [PATCH] Release v12.0.0 --- projects/ngx-ui-tour-core/CHANGELOG.md | 11 +++++++++++ projects/ngx-ui-tour-core/package.json | 8 ++++---- projects/ngx-ui-tour-ionic/CHANGELOG.md | 14 ++++++++++++++ projects/ngx-ui-tour-ionic/package.json | 8 ++++---- projects/ngx-ui-tour-md-menu/CHANGELOG.md | 16 ++++++++++++++++ projects/ngx-ui-tour-md-menu/package.json | 12 ++++++------ projects/ngx-ui-tour-ng-bootstrap/CHANGELOG.md | 12 ++++++++++++ projects/ngx-ui-tour-ng-bootstrap/package.json | 10 +++++----- projects/ngx-ui-tour-ngx-bootstrap/CHANGELOG.md | 12 ++++++++++++ projects/ngx-ui-tour-ngx-bootstrap/package.json | 10 +++++----- projects/ngx-ui-tour-tui-dropdown/CHANGELOG.md | 12 ++++++++++++ projects/ngx-ui-tour-tui-dropdown/package.json | 8 ++++---- projects/ngx-ui-tour-tui-hint/CHANGELOG.md | 12 ++++++++++++ projects/ngx-ui-tour-tui-hint/package.json | 8 ++++---- 14 files changed, 121 insertions(+), 32 deletions(-) diff --git a/projects/ngx-ui-tour-core/CHANGELOG.md b/projects/ngx-ui-tour-core/CHANGELOG.md index db163f69..688899bc 100644 --- a/projects/ngx-ui-tour-core/CHANGELOG.md +++ b/projects/ngx-ui-tour-core/CHANGELOG.md @@ -1,3 +1,14 @@ + + +# [12.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30) + +### Features +- Support for Angular 17 +- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified. + +### Breaking Changes +- Angular 16 is no longer supported + # [11.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25) diff --git a/projects/ngx-ui-tour-core/package.json b/projects/ngx-ui-tour-core/package.json index 0c41b2d8..cd5330cd 100644 --- a/projects/ngx-ui-tour-core/package.json +++ b/projects/ngx-ui-tour-core/package.json @@ -1,6 +1,6 @@ { "name": "ngx-ui-tour-core", - "version": "11.0.6", + "version": "12.0.0", "description": "UI tour library for Angular 12+", "keywords": [ "angular", @@ -15,9 +15,9 @@ "author": "Isaac Mann ", "license": "MIT", "peerDependencies": { - "@angular/common": "^16.0.0", - "@angular/core": "^16.0.0", - "@angular/router": "^16.0.0", + "@angular/common": "^17.0.0", + "@angular/core": "^17.0.0", + "@angular/router": "^17.0.0", "rxjs": "^7.4.0" }, "dependencies": { diff --git a/projects/ngx-ui-tour-ionic/CHANGELOG.md b/projects/ngx-ui-tour-ionic/CHANGELOG.md index 052b45bc..c1055c23 100644 --- a/projects/ngx-ui-tour-ionic/CHANGELOG.md +++ b/projects/ngx-ui-tour-ionic/CHANGELOG.md @@ -1,3 +1,17 @@ + + +# [3.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30) + +### Features +- Support for Angular 17. +- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified. +- Ionic standalone components are now used instead of Ionic module. +- Default step template now contains tour progress indicator. Can be disabled using `showProgress` config. + +### Breaking Changes +- Angular 16 is no longer supported. +- Due to migration to Ionic standalone components, `@ionic/angular` version requirement has been set to `^7.5.6`. + # [2.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25) diff --git a/projects/ngx-ui-tour-ionic/package.json b/projects/ngx-ui-tour-ionic/package.json index 9841e4a7..ead1b745 100644 --- a/projects/ngx-ui-tour-ionic/package.json +++ b/projects/ngx-ui-tour-ionic/package.json @@ -1,6 +1,6 @@ { "name": "ngx-ui-tour-ionic", - "version": "2.0.6", + "version": "3.0.0", "description": "UI tour library for Angular 15+", "keywords": [ "angular", @@ -18,13 +18,13 @@ "author": "Tomas Rimkus ", "license": "MIT", "peerDependencies": { - "@angular/common": "^16.0.0", - "@angular/core": "^16.0.0", + "@angular/common": "^17.0.0", + "@angular/core": "^17.0.0", "@ionic/angular": "^7.5.6", "ionicons": "^7.2.1" }, "dependencies": { "tslib": "^2.3.0", - "ngx-ui-tour-core": "11.0.6" + "ngx-ui-tour-core": "12.0.0" } } diff --git a/projects/ngx-ui-tour-md-menu/CHANGELOG.md b/projects/ngx-ui-tour-md-menu/CHANGELOG.md index c6d6b655..8c99fa45 100644 --- a/projects/ngx-ui-tour-md-menu/CHANGELOG.md +++ b/projects/ngx-ui-tour-md-menu/CHANGELOG.md @@ -1,3 +1,19 @@ + + +# [12.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30) + +### Features +- Support for Angular 17 +- Tour steps now show an arrow pointing at the anchor element. Can be disabled using `showArrow` config. +- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified. +- Default step template now contains tour progress indicator. Can be disabled using `showProgress` config. + +### Breaking Changes +- Angular 16 is no longer supported +- Tour step arrow is now enabled by default and in some cases, for example when a small anchor element is positioned +at the edge of the screen, tour step arrow might not align correctly with the tour anchor. In that case `placement` +config can be used to adjust tour step position and fix the alignment or the arrow can be hidden using `showArrow` config. + # [11.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25) diff --git a/projects/ngx-ui-tour-md-menu/package.json b/projects/ngx-ui-tour-md-menu/package.json index 028a03bc..83884b75 100644 --- a/projects/ngx-ui-tour-md-menu/package.json +++ b/projects/ngx-ui-tour-md-menu/package.json @@ -1,6 +1,6 @@ { "name": "ngx-ui-tour-md-menu", - "version": "11.0.6", + "version": "12.0.0", "description": "UI tour library for Angular 12+", "keywords": [ "angular", @@ -19,12 +19,12 @@ "license": "MIT", "dependencies": { "tslib": "^2.0.0", - "ngx-ui-tour-core": "11.0.6" + "ngx-ui-tour-core": "12.0.0" }, "peerDependencies": { - "@angular/common": "^16.0.0", - "@angular/core": "^16.0.0", - "@angular/cdk": "^16.0.0", - "@angular/material": "^16.0.0" + "@angular/common": "^17.0.0", + "@angular/core": "^17.0.0", + "@angular/cdk": "^17.0.0", + "@angular/material": "^17.0.0" } } diff --git a/projects/ngx-ui-tour-ng-bootstrap/CHANGELOG.md b/projects/ngx-ui-tour-ng-bootstrap/CHANGELOG.md index 5753a55a..03188740 100644 --- a/projects/ngx-ui-tour-ng-bootstrap/CHANGELOG.md +++ b/projects/ngx-ui-tour-ng-bootstrap/CHANGELOG.md @@ -1,3 +1,15 @@ + + +# [14.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30) + +### Features +- Support for Angular 17 +- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified. +- Default step template now contains tour progress indicator. Can be disabled using `showProgress` config. + +### Breaking Changes +- Angular 16 is no longer supported + # [13.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25) diff --git a/projects/ngx-ui-tour-ng-bootstrap/package.json b/projects/ngx-ui-tour-ng-bootstrap/package.json index c7640ea2..04694121 100644 --- a/projects/ngx-ui-tour-ng-bootstrap/package.json +++ b/projects/ngx-ui-tour-ng-bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "ngx-ui-tour-ng-bootstrap", - "version": "13.0.6", + "version": "14.0.0", "description": "UI tour library for Angular 12+", "keywords": [ "angular", @@ -17,12 +17,12 @@ "author": "Isaac Mann ", "license": "MIT", "peerDependencies": { - "@angular/common": "^16.0.0", - "@angular/core": "^16.0.0", - "@ng-bootstrap/ng-bootstrap": "^15.0.0" + "@angular/common": "^17.0.0", + "@angular/core": "^17.0.0", + "@ng-bootstrap/ng-bootstrap": "^16.0.0" }, "dependencies": { "tslib": "^2.0.0", - "ngx-ui-tour-core": "11.0.6" + "ngx-ui-tour-core": "12.0.0" } } diff --git a/projects/ngx-ui-tour-ngx-bootstrap/CHANGELOG.md b/projects/ngx-ui-tour-ngx-bootstrap/CHANGELOG.md index 9a782436..d2c9f213 100644 --- a/projects/ngx-ui-tour-ngx-bootstrap/CHANGELOG.md +++ b/projects/ngx-ui-tour-ngx-bootstrap/CHANGELOG.md @@ -1,3 +1,15 @@ + + +# [12.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30) + +### Features +- Support for Angular 17 +- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified. +- Default step template now contains tour progress indicator. Can be disabled using `showProgress` config. + +### Breaking Changes +- Angular 16 is no longer supported + # [11.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25) diff --git a/projects/ngx-ui-tour-ngx-bootstrap/package.json b/projects/ngx-ui-tour-ngx-bootstrap/package.json index d4bc5880..f9f746d3 100644 --- a/projects/ngx-ui-tour-ngx-bootstrap/package.json +++ b/projects/ngx-ui-tour-ngx-bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "ngx-ui-tour-ngx-bootstrap", - "version": "11.0.6", + "version": "12.0.0", "description": "UI tour library for Angular 12+", "keywords": [ "angular", @@ -17,12 +17,12 @@ "author": "Isaac Mann ", "license": "MIT", "peerDependencies": { - "@angular/common": "^16.0.0", - "@angular/core": "^16.0.0", - "ngx-bootstrap": "^11.0.0" + "@angular/common": "^17.0.0", + "@angular/core": "^17.0.0", + "ngx-bootstrap": "^12.0.0" }, "dependencies": { "tslib": "^2.0.0", - "ngx-ui-tour-core": "11.0.6" + "ngx-ui-tour-core": "12.0.0" } } diff --git a/projects/ngx-ui-tour-tui-dropdown/CHANGELOG.md b/projects/ngx-ui-tour-tui-dropdown/CHANGELOG.md index 0fe77236..6797b2ff 100644 --- a/projects/ngx-ui-tour-tui-dropdown/CHANGELOG.md +++ b/projects/ngx-ui-tour-tui-dropdown/CHANGELOG.md @@ -1,3 +1,15 @@ + + +# [6.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30) + +### Features +- Support for Angular 17 +- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified. +- Default step template now contains tour progress indicator. Can be disabled using `showProgress` config. + +### Breaking Changes +- Angular 16 is no longer supported + # [5.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25) diff --git a/projects/ngx-ui-tour-tui-dropdown/package.json b/projects/ngx-ui-tour-tui-dropdown/package.json index e3008a7b..3b8fa386 100644 --- a/projects/ngx-ui-tour-tui-dropdown/package.json +++ b/projects/ngx-ui-tour-tui-dropdown/package.json @@ -14,15 +14,15 @@ "repository": "https://github.com/hakimio/ngx-ui-tour.git", "author": "Tomas Rimkus ", "license": "MIT", - "version": "5.0.6", + "version": "6.0.0", "peerDependencies": { - "@angular/common": "^16.0.0", - "@angular/core": "^16.0.0", + "@angular/common": "^17.0.0", + "@angular/core": "^17.0.0", "@taiga-ui/core": "^3.24.0", "@taiga-ui/icons": "^3.24.0" }, "dependencies": { "tslib": "^2.3.0", - "ngx-ui-tour-core": "11.0.6" + "ngx-ui-tour-core": "12.0.0" } } diff --git a/projects/ngx-ui-tour-tui-hint/CHANGELOG.md b/projects/ngx-ui-tour-tui-hint/CHANGELOG.md index e0a9357d..f037f626 100644 --- a/projects/ngx-ui-tour-tui-hint/CHANGELOG.md +++ b/projects/ngx-ui-tour-tui-hint/CHANGELOG.md @@ -1,3 +1,15 @@ + + +# [6.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30) + +### Features +- Support for Angular 17 +- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified. +- Default step template now contains tour progress indicator. Can be disabled using `showProgress` config. + +### Breaking Changes +- Angular 16 is no longer supported + # [5.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25) diff --git a/projects/ngx-ui-tour-tui-hint/package.json b/projects/ngx-ui-tour-tui-hint/package.json index de20e68f..0f68120b 100644 --- a/projects/ngx-ui-tour-tui-hint/package.json +++ b/projects/ngx-ui-tour-tui-hint/package.json @@ -14,15 +14,15 @@ "repository": "https://github.com/hakimio/ngx-ui-tour.git", "author": "Tomas Rimkus ", "license": "MIT", - "version": "5.0.6", + "version": "6.0.0", "peerDependencies": { - "@angular/common": "^16.0.0", - "@angular/core": "^16.0.0", + "@angular/common": "^17.0.0", + "@angular/core": "^17.0.0", "@taiga-ui/core": "^3.24.0", "@taiga-ui/icons": "^3.24.0" }, "dependencies": { "tslib": "^2.3.0", - "ngx-ui-tour-core": "11.0.6" + "ngx-ui-tour-core": "12.0.0" } }