Skip to content

Commit

Permalink
Release v11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimio committed Jun 21, 2023
1 parent 2bfc074 commit 707de57
Show file tree
Hide file tree
Showing 16 changed files with 177 additions and 48 deletions.
14 changes: 14 additions & 0 deletions projects/ngx-ui-tour-console/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
<a name="11.0.0"></a>

# [11.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-06-21)

### Features
- Support for Angular 16
- "Disabling page scrolling" feature now uses `scrollContainer` config to determine affected container. Before
`scrollContainer` was only used by "smooth scrolling" feature.

### Breaking Changes
- Angular 15 is no longer supported
- `overflow: hidden` is now used instead of `position: fixed` to disable page scrolling.
- `centerAnchorOnScroll`, `disablePageScrolling` and `smoothScroll` options are now enabled by default.

<a name="10.6.0"></a>

# [10.6.0](https://github.com/hakimio/ngx-ui-tour) (2023-03-28)
Expand Down
9 changes: 4 additions & 5 deletions projects/ngx-ui-tour-console/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-ui-tour-console",
"version": "10.6.0",
"version": "11.0.0",
"repository": "https://github.com/hakimio/ngx-ui-tour.git",
"author": "Isaac Mann <[email protected]>",
"license": "MIT",
Expand All @@ -15,12 +15,11 @@
"onboarding-tour"
],
"peerDependencies": {
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0",
"typescript": ">=3.8.0"
"@angular/common": "^16.0.0",
"@angular/core": "^16.0.0"
},
"dependencies": {
"tslib": "^2.0.0",
"ngx-ui-tour-core": "10.6.0"
"ngx-ui-tour-core": "11.0.0"
}
}
14 changes: 14 additions & 0 deletions projects/ngx-ui-tour-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
<a name="11.0.0"></a>

# [11.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-06-21)

### Features
- Support for Angular 16
- "Disabling page scrolling" feature now uses `scrollContainer` config to determine affected container. Before
`scrollContainer` was only used by "smooth scrolling" feature.

### Breaking Changes
- Angular 15 is no longer supported
- `overflow: hidden` is now used instead of `position: fixed` to disable page scrolling.
- `centerAnchorOnScroll`, `disablePageScrolling` and `smoothScroll` options are now enabled by default.

<a name="10.6.0"></a>

# [10.6.0](https://github.com/hakimio/ngx-ui-tour) (2023-03-28)
Expand Down
11 changes: 5 additions & 6 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": "10.6.0",
"version": "11.0.0",
"description": "UI tour library for Angular 12+",
"keywords": [
"angular",
Expand All @@ -15,11 +15,10 @@
"author": "Isaac Mann <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/router": "^15.0.0",
"rxjs": "^7.4.0",
"typescript": ">=3.8.0"
"@angular/common": "^16.0.0",
"@angular/core": "^16.0.0",
"@angular/router": "^16.0.0",
"rxjs": "^7.4.0"
},
"dependencies": {
"tslib": "^2.0.0"
Expand Down
18 changes: 18 additions & 0 deletions projects/ngx-ui-tour-ionic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
<a name="2.0.0"></a>

# [2.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-06-21)

### Features
- Support for Angular 16
- "Disabling page scrolling" feature now uses `scrollContainer` config to determine affected container. Before
`scrollContainer` was only used by "smooth scrolling" feature.
- New `popoverClass` config

### Fixes
- Fix smooth scroll in Ionic apps using tabs based layout

### Breaking Changes
- Angular 15 is no longer supported
- `overflow: hidden` is now used instead of `position: fixed` to disable page scrolling.
- `centerAnchorOnScroll`, `disablePageScrolling` and `smoothScroll` options are now enabled by default.

<a name="1.7.0"></a>

# [1.7.0](https://github.com/hakimio/ngx-ui-tour) (2023-04-24)
Expand Down
11 changes: 5 additions & 6 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": "1.7.0",
"version": "2.0.0",
"description": "UI tour library for Angular 15+",
"keywords": [
"angular",
Expand All @@ -18,13 +18,12 @@
"author": "Tomas Rimkus <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0",
"@ionic/angular": "^6.0.0 || ^7.0.0",
"typescript": ">=3.8.0"
"@angular/common": "^16.0.0",
"@angular/core": "^16.0.0",
"@ionic/angular": "^6.0.0 || ^7.0.0"
},
"dependencies": {
"tslib": "^2.3.0",
"ngx-ui-tour-core": "10.6.0"
"ngx-ui-tour-core": "11.0.0"
}
}
20 changes: 20 additions & 0 deletions projects/ngx-ui-tour-md-menu/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
<a name="11.0.0"></a>

# [11.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-06-21)

### Features
- Support for Angular 16
- "Disabling page scrolling" feature now uses `scrollContainer` config to determine affected container. Before
`scrollContainer` was only used by "smooth scrolling" feature.
- New `placement.horizontal` config
- New `backdropConfig.offset` config

### Fixes
- Allow increasing tour step width above 280px.
- Popover class applied to one tour step should not affect the other tour steps

### Breaking Changes
- Angular 15 is no longer supported
- `overflow: hidden` is now used instead of `position: fixed` to disable page scrolling.
- `centerAnchorOnScroll`, `disablePageScrolling` and `smoothScroll` options are now enabled by default.

<a name="10.7.0"></a>

# [10.7.0](https://github.com/hakimio/ngx-ui-tour) (2023-05-04)
Expand Down
13 changes: 6 additions & 7 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": "10.7.0",
"version": "11.0.0",
"description": "UI tour library for Angular 12+",
"keywords": [
"angular",
Expand All @@ -19,13 +19,12 @@
"license": "MIT",
"dependencies": {
"tslib": "^2.0.0",
"ngx-ui-tour-core": "10.6.0"
"ngx-ui-tour-core": "11.0.0"
},
"peerDependencies": {
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/cdk": "^15.0.0",
"@angular/material": "^15.0.0",
"typescript": ">=3.8.0"
"@angular/common": "^16.0.0",
"@angular/core": "^16.0.0",
"@angular/cdk": "^16.0.0",
"@angular/material": "^16.0.0"
}
}
17 changes: 17 additions & 0 deletions projects/ngx-ui-tour-ng-bootstrap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<a name="13.0.0"></a>

# [13.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-06-21)

### Features
- Support for Angular 16
- "Disabling page scrolling" feature now uses `scrollContainer` config to determine affected container. Before
`scrollContainer` was only used by "smooth scrolling" feature.
- `tour-step` CSS class is now applied to tour popovers
- New tour step template
- New `backdropConfig.offset` config

### Breaking Changes
- Angular 15 is no longer supported
- `overflow: hidden` is now used instead of `position: fixed` to disable page scrolling.
- `centerAnchorOnScroll`, `disablePageScrolling` and `smoothScroll` options are now enabled by default.

<a name="12.6.0"></a>

# [12.6.0](https://github.com/hakimio/ngx-ui-tour) (2023-03-28)
Expand Down
11 changes: 5 additions & 6 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": "12.6.0",
"version": "13.0.0",
"description": "UI tour library for Angular 12+",
"keywords": [
"angular",
Expand All @@ -17,13 +17,12 @@
"author": "Isaac Mann <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0",
"@ng-bootstrap/ng-bootstrap": "^14.0.0",
"typescript": ">=3.8.0"
"@angular/common": "^16.0.0",
"@angular/core": "^16.0.0",
"@ng-bootstrap/ng-bootstrap": "^15.0.0"
},
"dependencies": {
"tslib": "^2.0.0",
"ngx-ui-tour-core": "10.6.0"
"ngx-ui-tour-core": "11.0.0"
}
}
17 changes: 17 additions & 0 deletions projects/ngx-ui-tour-ngx-bootstrap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<a name="11.0.0"></a>

# [11.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-06-21)

### Features
- Support for Angular 16
- "Disabling page scrolling" feature now uses `scrollContainer` config to determine affected container. Before
`scrollContainer` was only used by "smooth scrolling" feature.
- `tour-step` CSS class is now applied to tour popovers
- New tour step template

### Breaking Changes
- Angular 15 is no longer supported
- `overflow: hidden` is now used instead of `position: fixed` to disable page scrolling.
- `centerAnchorOnScroll`, `disablePageScrolling` and `smoothScroll` options are now enabled by default.
- `containerClass` config was renamed to `popoverClass`

<a name="10.6.0"></a>

# [10.6.0](https://github.com/hakimio/ngx-ui-tour) (2023-03-28)
Expand Down
11 changes: 5 additions & 6 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": "10.6.0",
"version": "11.0.0",
"description": "UI tour library for Angular 12+",
"keywords": [
"angular",
Expand All @@ -17,13 +17,12 @@
"author": "Isaac Mann <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0",
"ngx-bootstrap": "^10.2.0",
"typescript": ">=3.8.0"
"@angular/common": "^16.0.0",
"@angular/core": "^16.0.0",
"ngx-bootstrap": "^11.0.0"
},
"dependencies": {
"tslib": "^2.0.0",
"ngx-ui-tour-core": "10.6.0"
"ngx-ui-tour-core": "11.0.0"
}
}
19 changes: 19 additions & 0 deletions projects/ngx-ui-tour-tui-dropdown/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
<a name="5.0.0"></a>

# [5.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-06-21)

### Features
- Support for Angular 16
- "Disabling page scrolling" feature now uses `scrollContainer` config to determine affected container. Before
`scrollContainer` was only used by "smooth scrolling" feature.
- New `backdropConfig.offset` config
- New `popoverClass` config

### Fixes
- Fix "Prev"/"Next" button padding

### Breaking Changes
- Angular 15 is no longer supported
- `overflow: hidden` is now used instead of `position: fixed` to disable page scrolling.
- `centerAnchorOnScroll`, `disablePageScrolling` and `smoothScroll` options are now enabled by default.

<a name="4.6.1"></a>

# [4.6.1](https://github.com/hakimio/ngx-ui-tour) (2023-04-24)
Expand Down
11 changes: 5 additions & 6 deletions projects/ngx-ui-tour-tui-dropdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,15 @@
"repository": "https://github.com/hakimio/ngx-ui-tour.git",
"author": "Tomas Rimkus <[email protected]>",
"license": "MIT",
"version": "4.6.1",
"version": "5.0.0",
"peerDependencies": {
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/common": "^16.0.0",
"@angular/core": "^16.0.0",
"@taiga-ui/core": "^3.24.0",
"@taiga-ui/icons": "^3.24.0",
"typescript": ">=3.8.0"
"@taiga-ui/icons": "^3.24.0"
},
"dependencies": {
"tslib": "^2.3.0",
"ngx-ui-tour-core": "10.6.0"
"ngx-ui-tour-core": "11.0.0"
}
}
18 changes: 18 additions & 0 deletions projects/ngx-ui-tour-tui-hint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
<a name="5.0.0"></a>

# [5.0.0](https://github.com/hakimio/ngx-ui-tour) (2023-06-21)

### Features
- Support for Angular 16
- "Disabling page scrolling" feature now uses `scrollContainer` config to determine affected container. Before
`scrollContainer` was only used by "smooth scrolling" feature.
- New `popoverClass` config

### Fixes
- Fix "Prev"/"Next" button padding

### Breaking Changes
- Angular 15 is no longer supported
- `overflow: hidden` is now used instead of `position: fixed` to disable page scrolling.
- `centerAnchorOnScroll`, `disablePageScrolling` and `smoothScroll` options are now enabled by default.

<a name="4.6.1"></a>

# [4.6.1](https://github.com/hakimio/ngx-ui-tour) (2023-04-24)
Expand Down
11 changes: 5 additions & 6 deletions projects/ngx-ui-tour-tui-hint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,15 @@
"repository": "https://github.com/hakimio/ngx-ui-tour.git",
"author": "Tomas Rimkus <[email protected]>",
"license": "MIT",
"version": "4.6.1",
"version": "5.0.0",
"peerDependencies": {
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/common": "^16.0.0",
"@angular/core": "^16.0.0",
"@taiga-ui/core": "^3.24.0",
"@taiga-ui/icons": "^3.24.0",
"typescript": ">=3.8.0"
"@taiga-ui/icons": "^3.24.0"
},
"dependencies": {
"tslib": "^2.3.0",
"ngx-ui-tour-core": "10.6.0"
"ngx-ui-tour-core": "11.0.0"
}
}

0 comments on commit 707de57

Please sign in to comment.