Skip to content

Commit

Permalink
8.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Jan 30, 2023
1 parent 3bc0b3d commit d68a71b
Show file tree
Hide file tree
Showing 7 changed files with 103 additions and 86 deletions.
87 changes: 46 additions & 41 deletions BACKERS.md

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

# [8.4.7](https://github.com/nolimits4web/Swiper/compare/v8.4.6...v8.4.7) (2023-01-30)

### Bug Fixes

- **svelte:** autoplay options typescript problem ([#6294](https://github.com/nolimits4web/Swiper/issues/6294)) ([3317f5e](https://github.com/nolimits4web/Swiper/commit/3317f5e63a7b3d9f23809c00807b6584c390139c))

# [8.4.6](https://github.com/nolimits4web/Swiper/compare/v8.4.5...v8.4.6) (2023-01-17)

### Features
Expand Down
84 changes: 44 additions & 40 deletions README.md

Large diffs are not rendered by default.

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": "8.4.6",
"version": "8.4.7",
"description": "Most modern mobile touch slider and framework with hardware accelerated transitions",
"type": "module",
"scripts": {
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": "8.4.6",
"version": "8.4.7",
"description": "Most modern mobile touch slider and framework with hardware accelerated transitions",
"typings": "swiper.d.ts",
"type": "module",
Expand Down
4 changes: 3 additions & 1 deletion src/svelte/swiper-svelte.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import { SvelteComponentTyped } from 'svelte';
import { SwiperOptions, Swiper as SwiperClass } from '../types/';

// @ts-ignore
interface SwiperProps extends SwiperOptions, svelte.JSX.HTMLAttributes<HTMLElementTagNameMap['div']> {}
interface SwiperProps
extends SwiperOptions,
svelte.JSX.HTMLAttributes<HTMLElementTagNameMap['div']> {}

// @ts-ignore
interface SwiperSlideProps extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap['div']> {
Expand Down

0 comments on commit d68a71b

Please sign in to comment.