Browse Source

6.0.5

main v6.0.5
Jānis Skarnelis 1 week ago
parent
commit
bebfe8704e
  1. 6
      CHANGELOG.md
  2. 2
      dist/carousel/carousel.html.css
  3. 2
      dist/carousel/carousel.js
  4. 2
      dist/carousel/carousel.umd.js
  5. 2
      dist/carousel/carousel.video.js
  6. 2
      dist/carousel/carousel.video.umd.js
  7. 2
      dist/carousel/carousel.zoomable.umd.js
  8. 2
      dist/fancybox/fancybox.css
  9. 5
      dist/fancybox/fancybox.d.ts
  10. 2
      dist/fancybox/fancybox.js
  11. 6
      dist/fancybox/fancybox.umd.js
  12. 6
      dist/index.umd.js
  13. 2
      dist/panzoom/panzoom.js
  14. 2
      dist/panzoom/panzoom.umd.js
  15. 2
      package.json

6
CHANGELOG.md

@ -1,3 +1,9 @@
# 6.0.5 (2025-06-20)
### Bug Fixes
- **Carousel** Update video dimensions when container dimensions change
# 6.0.4 (2025-06-19)
### Bug Fixes

2
dist/carousel/carousel.html.css

@ -1 +1 @@
.f-carousel__slide.has-html{overflow:auto}.f-html{position:relative;margin:var(--f-html-margin, 0);padding:var(--f-html-padding, 2rem);color:var(--f-html-color, currentColor);background:var(--f-html-bg)}.f-html.is-error{text-align:center}.has-iframe .f-html,.has-pdf .f-html,.has-gmap .f-html{min-height:1px;overflow:visible;width:100%;height:100%}.has-pdf .f-html,.has-gmap .f-html{padding:0}.f-iframe{display:block;margin:0;border:0;height:100%;width:100%}.f-caption{align-self:center;flex-shrink:0;max-width:100%;max-height:calc(80vh - 100px);overflow:auto;margin:var(--f-caption-margin);padding:var(--f-caption-padding, 16px 4px);overflow-wrap:anywhere;line-height:var(--f-caption-line-height);color:var(--f-caption-color);background:var(--f-caption-bg);font:var(--f-caption-font)}
.f-carousel__slide.has-html{overflow:auto}.f-html{position:relative;margin:var(--f-html-margin, 0);padding:var(--f-html-padding, 2rem);color:var(--f-html-color, currentColor);background:var(--f-html-bg)}.f-html.is-error{text-align:center}.has-iframe .f-html,.has-pdf .f-html,.has-gmap .f-html{box-sizing:border-box;min-height:1px;overflow:visible;width:100%;height:100%}.has-pdf .f-html,.has-gmap .f-html{padding:0}.f-iframe{display:block;margin:0;border:0;height:100%;width:100%}.f-caption{align-self:center;flex-shrink:0;max-width:100%;max-height:calc(80vh - 100px);overflow:auto;margin:var(--f-caption-margin);padding:var(--f-caption-padding, 16px 4px);overflow-wrap:anywhere;line-height:var(--f-caption-line-height);color:var(--f-caption-color);background:var(--f-caption-bg);font:var(--f-caption-font)}

2
dist/carousel/carousel.js

File diff suppressed because one or more lines are too long

2
dist/carousel/carousel.umd.js

File diff suppressed because one or more lines are too long

2
dist/carousel/carousel.video.js

File diff suppressed because one or more lines are too long

2
dist/carousel/carousel.video.umd.js

File diff suppressed because one or more lines are too long

2
dist/carousel/carousel.zoomable.umd.js

File diff suppressed because one or more lines are too long

2
dist/fancybox/fancybox.css

File diff suppressed because one or more lines are too long

5
dist/fancybox/fancybox.d.ts

@ -45,7 +45,6 @@ type FancyboxKeyboardType = {
};
type PrefixedCarouselEventArgs = {
[K in keyof CarouselEventArgs as `Carousel.${K}`]: [
any,
CarouselInstance,
...CarouselEventArgs[K]
];
@ -279,11 +278,11 @@ declare const CreateInstance: () => {
/**
* Unsubscribe from specific event
*/
off: <Event extends keyof FancyboxEventArgs>(event: Event, callback: (...args: FancyboxEventArgs[Event]) => void) => FancyboxInstance;
off: <FancyboxEvent extends keyof FancyboxEventArgs>(event: FancyboxEvent, callback: (api: any, ...args: FancyboxEventArgs[FancyboxEvent]) => void) => FancyboxInstance;
/**
* Subscribe to specific event
*/
on: <Event extends keyof FancyboxEventArgs>(event: Event, callback: (...args: FancyboxEventArgs[Event]) => void) => FancyboxInstance;
on: <FancyboxEvent extends keyof FancyboxEventArgs>(event: FancyboxEvent, callback: (...args: [any, ...FancyboxEventArgs[FancyboxEvent]]) => void) => FancyboxInstance;
/**
* Toggle idle state
*/

2
dist/fancybox/fancybox.js

File diff suppressed because one or more lines are too long

6
dist/fancybox/fancybox.umd.js

File diff suppressed because one or more lines are too long

6
dist/index.umd.js

File diff suppressed because one or more lines are too long

2
dist/panzoom/panzoom.js

File diff suppressed because one or more lines are too long

2
dist/panzoom/panzoom.umd.js

File diff suppressed because one or more lines are too long

2
package.json

@ -1,6 +1,6 @@
{
"name": "@fancyapps/ui",
"version": "6.0.4",
"version": "6.0.5",
"description": "Robust JavaScript UI Component Library",
"files": [
"dist",

Loading…
Cancel
Save