Skip to content

Commit

Permalink
Bump swiper from 6.8.4 to 11.0.7 (#11968)
Browse files Browse the repository at this point in the history
* Bump swiper from 6.8.4 to 11.0.7

Bumps [swiper](https://github.com/nolimits4web/Swiper) from 6.8.4 to 11.0.7.
- [Release notes](https://github.com/nolimits4web/Swiper/releases)
- [Changelog](https://github.com/nolimits4web/swiper/blob/master/CHANGELOG.md)
- [Commits](nolimits4web/swiper@v6.8.4...v11.0.7)

---
updated-dependencies:
- dependency-name: swiper
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix file path

* fix module loading problems

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mavis Ou <mmmavis@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and mmmavis committed Apr 1, 2024
1 parent eeb2aaa commit 52b07be
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 52 deletions.
51 changes: 8 additions & 43 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
Expand Up @@ -96,7 +96,7 @@
"react-ga": "3.3.1",
"sass": "^1.59.3",
"shx": "^0.3.4",
"swiper": "^6.8.4",
"swiper": "^11.0.7",
"tailwindcss": "^3.4.1",
"uuid": "^9.0.1",
"whatwg-fetch": "^3.6.20"
Expand Down
5 changes: 3 additions & 2 deletions source/js/components/carousel/carousel.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import Swiper, {
import Swiper from "swiper";
import {
A11y,
Autoplay,
Pagination,
Navigation,
Keyboard,
} from "swiper";
} from "swiper/modules";

/**
* Image Carousel on Mozfest Homepage Hero Section.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import Swiper, {
import Swiper from "swiper";
import {
A11y,
Autoplay,
Pagination,
Navigation,
Keyboard,
} from "swiper";
} from "swiper/modules";

/**
* Image Carousel on Mozfest Homepage Hero Section.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import Swiper, {
import Swiper from "swiper";
import {
A11y,
Autoplay,
Pagination,
Navigation,
Keyboard,
EffectFade,
} from "swiper";
} from "swiper/modules";

/**
* Image Carousel on Mozfest Homepage Hero Section.
Expand Down
4 changes: 2 additions & 2 deletions source/sass/mozfest.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
// Mozfest Carousel Modules
@import "../../node_modules/swiper/swiper-vars.scss";
@import "../../node_modules/swiper/swiper.scss";
@import "../../node_modules/swiper/components/pagination/pagination.scss";
@import "../../node_modules/swiper/components/effect-fade/effect-fade.scss";
@import "../../node_modules/swiper/modules/pagination.scss";
@import "../../node_modules/swiper/modules/effect-fade.scss";

body.mozfest {
.tito-widget-button {
Expand Down

0 comments on commit 52b07be

Please sign in to comment.