Skip to content

Commit dbfa3f5

Browse files
committed
chore(release): ship v5.3.14
1 parent e43518a commit dbfa3f5

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
---
55

6-
#### `5.3.13`
6+
#### `5.3.14`
77

88
- fix(carousel): when paused (interval=0) and manually changed slide, it does not restart when interval>0
99
- refactor(carousel-item): add attribute role = "group"

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coreui-angular-dev",
3-
"version": "5.3.13",
3+
"version": "5.3.14",
44
"description": "CoreUI Components Library for Angular",
55
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
66
"license": "MIT",

projects/coreui-angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/angular",
3-
"version": "5.3.13",
3+
"version": "5.3.14",
44
"description": "CoreUI Components Library for Angular",
55
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
66
"license": "MIT",

projects/coreui-angular/src/lib/carousel/carousel/carousel.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,6 @@ export class CarouselComponent implements OnInit, OnDestroy, AfterContentInit {
217217
}
218218
this.activeItemInterval =
219219
typeof nextItem.interval === 'number' && nextItem.interval > -1 ? nextItem.interval : this.interval();
220-
console.log('activeItemInterval', nextItem.interval, this.activeItemInterval);
221220
const direction = this.direction();
222221
const isLastItem =
223222
(nextItem.active === nextItem.lastItemIndex && direction === 'next') ||

0 commit comments

Comments
 (0)