Skip to content

Commit

Permalink
chore(release): ship v5.3.14
Browse files Browse the repository at this point in the history
  • Loading branch information
xidedix committed Feb 7, 2025
1 parent e43518a commit dbfa3f5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

---

#### `5.3.13`
#### `5.3.14`

- fix(carousel): when paused (interval=0) and manually changed slide, it does not restart when interval>0
- refactor(carousel-item): add attribute role = "group"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "coreui-angular-dev",
"version": "5.3.13",
"version": "5.3.14",
"description": "CoreUI Components Library for Angular",
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion projects/coreui-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coreui/angular",
"version": "5.3.13",
"version": "5.3.14",
"description": "CoreUI Components Library for Angular",
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ export class CarouselComponent implements OnInit, OnDestroy, AfterContentInit {
}
this.activeItemInterval =
typeof nextItem.interval === 'number' && nextItem.interval > -1 ? nextItem.interval : this.interval();
console.log('activeItemInterval', nextItem.interval, this.activeItemInterval);
const direction = this.direction();
const isLastItem =
(nextItem.active === nextItem.lastItemIndex && direction === 'next') ||
Expand Down

0 comments on commit dbfa3f5

Please sign in to comment.