Skip to content

Commit f125464

Browse files
committed
6.1.5
1 parent a3dee54 commit f125464

22 files changed

+35
-27
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1+
# 6.1.5 (2025-11-08)
2+
3+
### Bug Fixes
4+
5+
- **Carousel** Fix issue with a horizontally scrollable element in a horizontally oriented carousel ([817](https://github.com/fancyapps/ui/issues/817))
6+
- **Gestures** Check if the target should be ignored inside shadow DOM and also outside it
7+
18
# 6.1.4 (2025-11-05)
29

310
### Bug Fixes
411

5-
- **Fancybox** Fix issue with the close button above images when the toolbar is disabled ([805](https://github.com/fancyapps/ui/issues/815))
12+
- **Fancybox** Fix issue with the close button above images when the toolbar is disabled ([815](https://github.com/fancyapps/ui/issues/815))
613

714
# 6.1.3 (2025-11-04)
815

dist/carousel/carousel.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/carousel/carousel.umd.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/carousel/carousel.zoomable.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/carousel/carousel.zoomable.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ declare module "./carousel" {
77
"panzoom:init": [CarouselSlide];
88
"panzoom:initPlugins": [CarouselSlide];
99
"panzoom:initLayout": [CarouselSlide];
10+
"panzoom:ready": [CarouselSlide];
1011
"panzoom:touchStart": [CarouselSlide, GesturesEventObject];
1112
"panzoom:touchEnd": [CarouselSlide, GesturesEventObject];
1213
"panzoom:click": [CarouselSlide, GesturesEventObject];

dist/carousel/carousel.zoomable.umd.js

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

dist/fancybox/fancybox.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/fancybox/fancybox.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export interface FancyboxOptions {
133133
/**
134134
* Enable drag-to-close gesture - drag content up/down to close instance
135135
*/
136-
dragToClose: boolean;
136+
dragToClose: boolean | ((instance: FancyboxInstance) => boolean);
137137
/**
138138
* Enable fade animation for interface elements when opening/closing
139139
*/
@@ -330,7 +330,7 @@ declare function unbind(item_selector: string): void;
330330
/**
331331
* Remove the click handler that launches Fancybox after clicking on items that match the given `item_selector` and are in the given container
332332
*/
333-
declare function unbind(container: HTMLElement | null, selector: string): void;
333+
declare function unbind(container: HTMLElement | null, selector?: string): void;
334334
/**
335335
* Remove the click handler that launches Fancybox after clicking on items matching the given `item_selector` and located in a container matching the `group_selector`
336336
*/

dist/fancybox/fancybox.hash.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/fancybox/fancybox.hash.umd.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)