Skip to content

Commit

Permalink
Merge tag 'v0.3.3' into develop
Browse files Browse the repository at this point in the history
v0.3.3
  • Loading branch information
ismail9k committed Apr 2, 2024
2 parents db913c1 + 255481b commit d7bb1e6
Show file tree
Hide file tree
Showing 5 changed files with 1,591 additions and 1,090 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [0.3.2](https://github.com/ismail9k/vue3-carousel/releases/tag/v0.3.2) - 2023-12-11

- fix: Remove padding from carousel__pagination (#317) @ricardoboss
- enhance: Slide Performance improvements and slot props support (#324) @craigrileyuk
- enhance: Pagination apply hover classes only on supported devices (#341) @hhofner
- fix: update slides data on window resize (#354) @RickRosendaal

## [0.3.1](https://github.com/ismail9k/vue3-carousel/releases/tag/v0.3.1) - 2023-04-29

- Add MIT License (#305)
Expand Down
20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "vue3-carousel",
"version": "0.3.1",
"version": "0.3.3",
"type": "module",
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw & npm run docs:dev",
Expand Down Expand Up @@ -36,16 +37,17 @@
"eslint-plugin-vue": "^8.3.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rollup": "^2.56.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup": "^4.13.2",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-typescript-paths": "^1.4.0",
"rollup-plugin-typescript2": "^0.30.0",
"stylus": "^0.59.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript-paths": "^1.5.0",
"rollup-plugin-typescript2": "^0.36.0",
"stylus": "^0.63.0",
"ts-jest": "^27.0.3",
"typescript": "^4.5.4",
"vitepress": "^1.0.0-alpha.29",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"vitepress": "^1.0.2",
"vue": "^3.2.0",
"vue-jest": "^3.0.7"
},
Expand Down
4 changes: 2 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import css from 'rollup-plugin-css-only'
import typescript from 'rollup-plugin-typescript2'
import del from 'rollup-plugin-delete'
import dts from 'rollup-plugin-dts'
import { typescriptPaths } from 'rollup-plugin-typescript-paths'
import typescript from 'rollup-plugin-typescript2'

import pkg from './package.json'
import pkg from './package.json' assert { type: 'json' }

const banner = `/**
* Vue 3 Carousel ${pkg.version}
Expand Down
1 change: 0 additions & 1 deletion src/components/Carousel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ export default defineComponent({
// Prevent clicking if there is clicked slides
if (draggedSlides && !isTouch) {
const captureClick = (e: MouseEvent) => {
e.stopPropagation()
window.removeEventListener('click', captureClick, true)
}
window.addEventListener('click', captureClick, true)
Expand Down
Loading

0 comments on commit d7bb1e6

Please sign in to comment.