Skip to content

Commit

Permalink
Release v12.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimio committed Nov 30, 2023
1 parent 22e20b5 commit fa6ad40
Show file tree
Hide file tree
Showing 14 changed files with 121 additions and 32 deletions.
11 changes: 11 additions & 0 deletions projects/ngx-ui-tour-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<a name="12.0.0"></a>

# [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

<a name="11.0.6"></a>

# [11.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)
Expand Down
8 changes: 4 additions & 4 deletions projects/ngx-ui-tour-core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -15,9 +15,9 @@
"author": "Isaac Mann <isaacplmann@gmail.com>",
"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": {
Expand Down
14 changes: 14 additions & 0 deletions projects/ngx-ui-tour-ionic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
<a name="3.0.0"></a>

# [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`.

<a name="2.0.6"></a>

# [2.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)
Expand Down
8 changes: 4 additions & 4 deletions projects/ngx-ui-tour-ionic/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -18,13 +18,13 @@
"author": "Tomas Rimkus <tomas.r@programmer.net>",
"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"
}
}
16 changes: 16 additions & 0 deletions projects/ngx-ui-tour-md-menu/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
<a name="12.0.0"></a>

# [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.

<a name="11.0.6"></a>

# [11.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)
Expand Down
12 changes: 6 additions & 6 deletions projects/ngx-ui-tour-md-menu/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
12 changes: 12 additions & 0 deletions projects/ngx-ui-tour-ng-bootstrap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
<a name="14.0.0"></a>

# [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

<a name="13.0.6"></a>

# [13.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)
Expand Down
10 changes: 5 additions & 5 deletions projects/ngx-ui-tour-ng-bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -17,12 +17,12 @@
"author": "Isaac Mann <isaacplmann@gmail.com>",
"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"
}
}
12 changes: 12 additions & 0 deletions projects/ngx-ui-tour-ngx-bootstrap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
<a name="12.0.0"></a>

# [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

<a name="11.0.6"></a>

# [11.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)
Expand Down
10 changes: 5 additions & 5 deletions projects/ngx-ui-tour-ngx-bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -17,12 +17,12 @@
"author": "Isaac Mann <isaacplmann@gmail.com>",
"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"
}
}
12 changes: 12 additions & 0 deletions projects/ngx-ui-tour-tui-dropdown/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
<a name="6.0.0"></a>

# [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

<a name="5.0.6"></a>

# [5.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)
Expand Down
8 changes: 4 additions & 4 deletions projects/ngx-ui-tour-tui-dropdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
"repository": "https://github.com/hakimio/ngx-ui-tour.git",
"author": "Tomas Rimkus <tomas.r@programmer.net>",
"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"
}
}
12 changes: 12 additions & 0 deletions projects/ngx-ui-tour-tui-hint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
<a name="6.0.0"></a>

# [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

<a name="5.0.6"></a>

# [5.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)
Expand Down
8 changes: 4 additions & 4 deletions projects/ngx-ui-tour-tui-hint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
"repository": "https://github.com/hakimio/ngx-ui-tour.git",
"author": "Tomas Rimkus <tomas.r@programmer.net>",
"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"
}
}

0 comments on commit fa6ad40

Please sign in to comment.