Skip to content

Commit 5fde958

Browse files
committed
7.4.0 release
1 parent 38fdd15 commit 5fde958

File tree

5 files changed

+25
-10
lines changed

5 files changed

+25
-10
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
11
# Changelog
22

3+
# [7.4.0](https://github.com/nolimits4web/Swiper/compare/v7.3.4...v7.4.0) (2021-12-24)
4+
5+
### Bug Fixes
6+
7+
- **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)
8+
- **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)
9+
10+
### Features
11+
12+
- **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)
13+
314
# [7.3.4](https://github.com/nolimits4web/Swiper/compare/v7.3.3...v7.3.4) (2021-12-22)
415

516
### Bug Fixes
617

718
- **angular:** `setElement` checks ([#5305](https://github.com/nolimits4web/Swiper/issues/5305)) ([51c4a49](https://github.com/nolimits4web/Swiper/commit/51c4a4926c6303e3e0d03332354a90c221663c40))
8-
- **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)
19+
- **angular:** fix `nativeElement` check ([d48fb1b](https://github.com/nolimits4web/Swiper/commit/d48fb1b848c61d79e05f075676b8567952f0d280))
920

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

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "swiper-src",
3-
"version": "7.3.4",
3+
"version": "7.4.0",
44
"description": "Most modern mobile touch slider and framework with hardware accelerated transitions",
55
"scripts": {
66
"build": "node scripts/build",

playground/core/index.html

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
<body>
1111
<section class="swiper">
12+
<div class="swiper-pagination"></div>
1213
<div class="swiper-slide">Slide 1</div>
1314
<div class="swiper-slide">Slide 2</div>
1415
<div class="swiper-slide">Slide 3</div>
@@ -52,14 +53,17 @@
5253
// eslint-disable-next-line
5354
window.swiper = new Swiper({
5455
el: '.swiper',
55-
slideToClickedSlide: true,
56-
grabCursor: true,
57-
scrollbar: true,
5856
createElements: true,
5957
speed: 300,
60-
pagination: true,
58+
cssMode: true,
59+
rewind: true,
60+
slidesPerView: 1,
6161
navigation: true,
62-
spaceBetween: 20,
62+
pagination: {
63+
el: '.swiper-pagination',
64+
dynamicBullets: true,
65+
// dynamicMainBullets: 3,
66+
},
6367
});
6468

6569
</script>

src/copy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "swiper",
3-
"version": "7.3.4",
3+
"version": "7.4.0",
44
"description": "Most modern mobile touch slider and framework with hardware accelerated transitions",
55
"typings": "swiper.d.ts",
66
"type": "module",

0 commit comments

Comments
 (0)