Skip to content

Commit

Permalink
7.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Dec 24, 2021
1 parent 38fdd15 commit 5fde958
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 10 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
# Changelog

# [7.4.0](https://github.com/nolimits4web/Swiper/compare/v7.3.4...v7.4.0) (2021-12-24)

### Bug Fixes

- **core:** autoHeight shouldn't ignore zero height slides ([b3697f1](https://github.com/nolimits4web/Swiper/commit/b3697f16aaa0408062540298698b4c706538e3de)), closes [#5281](https://github.com/nolimits4web/Swiper/issues/5281)
- **pagination:** fix dynamic bullets position with `loop` enabled ([3d377c2](https://github.com/nolimits4web/Swiper/commit/3d377c2a23e6267f6e106ca58ca7f3b09ed62fc9)), closes [#5304](https://github.com/nolimits4web/Swiper/issues/5304)

### Features

- **core:** add `rewind` functionality ([38fdd15](https://github.com/nolimits4web/Swiper/commit/38fdd151e9c75a016f0d7547b03fe0966e328779)), closes [#5003](https://github.com/nolimits4web/Swiper/issues/5003) [#5270](https://github.com/nolimits4web/Swiper/issues/5270)

# [7.3.4](https://github.com/nolimits4web/Swiper/compare/v7.3.3...v7.3.4) (2021-12-22)

### Bug Fixes

- **angular:** `setElement` checks ([#5305](https://github.com/nolimits4web/Swiper/issues/5305)) ([51c4a49](https://github.com/nolimits4web/Swiper/commit/51c4a4926c6303e3e0d03332354a90c221663c40))
- **angular:** fix `nativeElement` check ([d48fb1b](https://github.com/nolimits4web/Swiper/commit/d48fb1b848c61d79e05f075676b8567952f0d280)), closes [/github.com/nolimits4web/swiper/pull/5296#pullrequestreview-836214645](https://github.com//github.com/nolimits4web/swiper/pull/5296/issues/pullrequestreview-836214645)
- **angular:** fix `nativeElement` check ([d48fb1b](https://github.com/nolimits4web/Swiper/commit/d48fb1b848c61d79e05f075676b8567952f0d280))

# [7.3.3](https://github.com/nolimits4web/Swiper/compare/v7.3.2...v7.3.3) (2021-12-16)

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": "swiper-src",
"version": "7.3.4",
"version": "7.4.0",
"description": "Most modern mobile touch slider and framework with hardware accelerated transitions",
"scripts": {
"build": "node scripts/build",
Expand Down
14 changes: 9 additions & 5 deletions playground/core/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

<body>
<section class="swiper">
<div class="swiper-pagination"></div>
<div class="swiper-slide">Slide 1</div>
<div class="swiper-slide">Slide 2</div>
<div class="swiper-slide">Slide 3</div>
Expand Down Expand Up @@ -52,14 +53,17 @@
// eslint-disable-next-line
window.swiper = new Swiper({
el: '.swiper',
slideToClickedSlide: true,
grabCursor: true,
scrollbar: true,
createElements: true,
speed: 300,
pagination: true,
cssMode: true,
rewind: true,
slidesPerView: 1,
navigation: true,
spaceBetween: 20,
pagination: {
el: '.swiper-pagination',
dynamicBullets: true,
// dynamicMainBullets: 3,
},
});

</script>
Expand Down
2 changes: 1 addition & 1 deletion src/copy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "swiper",
"version": "7.3.4",
"version": "7.4.0",
"description": "Most modern mobile touch slider and framework with hardware accelerated transitions",
"typings": "swiper.d.ts",
"type": "module",
Expand Down

0 comments on commit 5fde958

Please sign in to comment.