Skip to content

Commit fa6ad40

Browse files
committed
Release v12.0.0
1 parent 22e20b5 commit fa6ad40

File tree

14 files changed

+121
-32
lines changed

14 files changed

+121
-32
lines changed

projects/ngx-ui-tour-core/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
<a name="12.0.0"></a>
2+
3+
# [12.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30)
4+
5+
### Features
6+
- Support for Angular 17
7+
- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified.
8+
9+
### Breaking Changes
10+
- Angular 16 is no longer supported
11+
112
<a name="11.0.6"></a>
213

314
# [11.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)

projects/ngx-ui-tour-core/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-ui-tour-core",
3-
"version": "11.0.6",
3+
"version": "12.0.0",
44
"description": "UI tour library for Angular 12+",
55
"keywords": [
66
"angular",
@@ -15,9 +15,9 @@
1515
"author": "Isaac Mann <[email protected]>",
1616
"license": "MIT",
1717
"peerDependencies": {
18-
"@angular/common": "^16.0.0",
19-
"@angular/core": "^16.0.0",
20-
"@angular/router": "^16.0.0",
18+
"@angular/common": "^17.0.0",
19+
"@angular/core": "^17.0.0",
20+
"@angular/router": "^17.0.0",
2121
"rxjs": "^7.4.0"
2222
},
2323
"dependencies": {

projects/ngx-ui-tour-ionic/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
<a name="3.0.0"></a>
2+
3+
# [3.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30)
4+
5+
### Features
6+
- Support for Angular 17.
7+
- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified.
8+
- Ionic standalone components are now used instead of Ionic module.
9+
- Default step template now contains tour progress indicator. Can be disabled using `showProgress` config.
10+
11+
### Breaking Changes
12+
- Angular 16 is no longer supported.
13+
- Due to migration to Ionic standalone components, `@ionic/angular` version requirement has been set to `^7.5.6`.
14+
115
<a name="2.0.6"></a>
216

317
# [2.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)

projects/ngx-ui-tour-ionic/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-ui-tour-ionic",
3-
"version": "2.0.6",
3+
"version": "3.0.0",
44
"description": "UI tour library for Angular 15+",
55
"keywords": [
66
"angular",
@@ -18,13 +18,13 @@
1818
"author": "Tomas Rimkus <[email protected]>",
1919
"license": "MIT",
2020
"peerDependencies": {
21-
"@angular/common": "^16.0.0",
22-
"@angular/core": "^16.0.0",
21+
"@angular/common": "^17.0.0",
22+
"@angular/core": "^17.0.0",
2323
"@ionic/angular": "^7.5.6",
2424
"ionicons": "^7.2.1"
2525
},
2626
"dependencies": {
2727
"tslib": "^2.3.0",
28-
"ngx-ui-tour-core": "11.0.6"
28+
"ngx-ui-tour-core": "12.0.0"
2929
}
3030
}

projects/ngx-ui-tour-md-menu/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
<a name="12.0.0"></a>
2+
3+
# [12.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30)
4+
5+
### Features
6+
- Support for Angular 17
7+
- Tour steps now show an arrow pointing at the anchor element. Can be disabled using `showArrow` config.
8+
- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified.
9+
- Default step template now contains tour progress indicator. Can be disabled using `showProgress` config.
10+
11+
### Breaking Changes
12+
- Angular 16 is no longer supported
13+
- Tour step arrow is now enabled by default and in some cases, for example when a small anchor element is positioned
14+
at the edge of the screen, tour step arrow might not align correctly with the tour anchor. In that case `placement`
15+
config can be used to adjust tour step position and fix the alignment or the arrow can be hidden using `showArrow` config.
16+
117
<a name="11.0.6"></a>
218

319
# [11.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)

projects/ngx-ui-tour-md-menu/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-ui-tour-md-menu",
3-
"version": "11.0.6",
3+
"version": "12.0.0",
44
"description": "UI tour library for Angular 12+",
55
"keywords": [
66
"angular",
@@ -19,12 +19,12 @@
1919
"license": "MIT",
2020
"dependencies": {
2121
"tslib": "^2.0.0",
22-
"ngx-ui-tour-core": "11.0.6"
22+
"ngx-ui-tour-core": "12.0.0"
2323
},
2424
"peerDependencies": {
25-
"@angular/common": "^16.0.0",
26-
"@angular/core": "^16.0.0",
27-
"@angular/cdk": "^16.0.0",
28-
"@angular/material": "^16.0.0"
25+
"@angular/common": "^17.0.0",
26+
"@angular/core": "^17.0.0",
27+
"@angular/cdk": "^17.0.0",
28+
"@angular/material": "^17.0.0"
2929
}
3030
}

projects/ngx-ui-tour-ng-bootstrap/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
<a name="14.0.0"></a>
2+
3+
# [14.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30)
4+
5+
### Features
6+
- Support for Angular 17
7+
- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified.
8+
- Default step template now contains tour progress indicator. Can be disabled using `showProgress` config.
9+
10+
### Breaking Changes
11+
- Angular 16 is no longer supported
12+
113
<a name="13.0.6"></a>
214

315
# [13.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)

projects/ngx-ui-tour-ng-bootstrap/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-ui-tour-ng-bootstrap",
3-
"version": "13.0.6",
3+
"version": "14.0.0",
44
"description": "UI tour library for Angular 12+",
55
"keywords": [
66
"angular",
@@ -17,12 +17,12 @@
1717
"author": "Isaac Mann <[email protected]>",
1818
"license": "MIT",
1919
"peerDependencies": {
20-
"@angular/common": "^16.0.0",
21-
"@angular/core": "^16.0.0",
22-
"@ng-bootstrap/ng-bootstrap": "^15.0.0"
20+
"@angular/common": "^17.0.0",
21+
"@angular/core": "^17.0.0",
22+
"@ng-bootstrap/ng-bootstrap": "^16.0.0"
2323
},
2424
"dependencies": {
2525
"tslib": "^2.0.0",
26-
"ngx-ui-tour-core": "11.0.6"
26+
"ngx-ui-tour-core": "12.0.0"
2727
}
2828
}

projects/ngx-ui-tour-ngx-bootstrap/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
<a name="12.0.0"></a>
2+
3+
# [12.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30)
4+
5+
### Features
6+
- Support for Angular 17
7+
- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified.
8+
- Default step template now contains tour progress indicator. Can be disabled using `showProgress` config.
9+
10+
### Breaking Changes
11+
- Angular 16 is no longer supported
12+
113
<a name="11.0.6"></a>
214

315
# [11.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)

projects/ngx-ui-tour-ngx-bootstrap/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-ui-tour-ngx-bootstrap",
3-
"version": "11.0.6",
3+
"version": "12.0.0",
44
"description": "UI tour library for Angular 12+",
55
"keywords": [
66
"angular",
@@ -17,12 +17,12 @@
1717
"author": "Isaac Mann <[email protected]>",
1818
"license": "MIT",
1919
"peerDependencies": {
20-
"@angular/common": "^16.0.0",
21-
"@angular/core": "^16.0.0",
22-
"ngx-bootstrap": "^11.0.0"
20+
"@angular/common": "^17.0.0",
21+
"@angular/core": "^17.0.0",
22+
"ngx-bootstrap": "^12.0.0"
2323
},
2424
"dependencies": {
2525
"tslib": "^2.0.0",
26-
"ngx-ui-tour-core": "11.0.6"
26+
"ngx-ui-tour-core": "12.0.0"
2727
}
2828
}

projects/ngx-ui-tour-tui-dropdown/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
<a name="6.0.0"></a>
2+
3+
# [6.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30)
4+
5+
### Features
6+
- Support for Angular 17
7+
- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified.
8+
- Default step template now contains tour progress indicator. Can be disabled using `showProgress` config.
9+
10+
### Breaking Changes
11+
- Angular 16 is no longer supported
12+
113
<a name="5.0.6"></a>
214

315
# [5.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)

projects/ngx-ui-tour-tui-dropdown/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
"repository": "https://github.com/hakimio/ngx-ui-tour.git",
1515
"author": "Tomas Rimkus <[email protected]>",
1616
"license": "MIT",
17-
"version": "5.0.6",
17+
"version": "6.0.0",
1818
"peerDependencies": {
19-
"@angular/common": "^16.0.0",
20-
"@angular/core": "^16.0.0",
19+
"@angular/common": "^17.0.0",
20+
"@angular/core": "^17.0.0",
2121
"@taiga-ui/core": "^3.24.0",
2222
"@taiga-ui/icons": "^3.24.0"
2323
},
2424
"dependencies": {
2525
"tslib": "^2.3.0",
26-
"ngx-ui-tour-core": "11.0.6"
26+
"ngx-ui-tour-core": "12.0.0"
2727
}
2828
}

projects/ngx-ui-tour-tui-hint/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
<a name="6.0.0"></a>
2+
3+
# [6.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-11-30)
4+
5+
### Features
6+
- Support for Angular 17
7+
- New `asyncStepTimeout` config. It's now possible to have optional async steps if `asyncStepTimeout` is specified.
8+
- Default step template now contains tour progress indicator. Can be disabled using `showProgress` config.
9+
10+
### Breaking Changes
11+
- Angular 16 is no longer supported
12+
113
<a name="5.0.6"></a>
214

315
# [5.0.6](https://github.com/hakimio/ngx-ui-tour) (2023-10-25)

projects/ngx-ui-tour-tui-hint/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
"repository": "https://github.com/hakimio/ngx-ui-tour.git",
1515
"author": "Tomas Rimkus <[email protected]>",
1616
"license": "MIT",
17-
"version": "5.0.6",
17+
"version": "6.0.0",
1818
"peerDependencies": {
19-
"@angular/common": "^16.0.0",
20-
"@angular/core": "^16.0.0",
19+
"@angular/common": "^17.0.0",
20+
"@angular/core": "^17.0.0",
2121
"@taiga-ui/core": "^3.24.0",
2222
"@taiga-ui/icons": "^3.24.0"
2323
},
2424
"dependencies": {
2525
"tslib": "^2.3.0",
26-
"ngx-ui-tour-core": "11.0.6"
26+
"ngx-ui-tour-core": "12.0.0"
2727
}
2828
}

0 commit comments

Comments
 (0)