yet-another-react-lightbox 3.11.1 → 3.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/plugins/captions/index.d.ts +1 -1
- package/dist/plugins/download/index.d.ts +1 -1
- package/dist/plugins/fullscreen/index.d.ts +1 -1
- package/dist/plugins/share/index.d.ts +1 -1
- package/dist/plugins/slideshow/index.d.ts +1 -1
- package/dist/plugins/thumbnails/index.d.ts +1 -1
- package/dist/plugins/video/index.d.ts +1 -1
- package/dist/plugins/zoom/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { PluginProps, PLUGIN_CAPTIONS } from '../../types.js';
|
|
2
|
+
import { PluginProps, PLUGIN_CAPTIONS, Callback, RenderFunction } from '../../types.js';
|
|
3
3
|
|
|
4
4
|
/** Captions plugin */
|
|
5
5
|
declare function Captions({ augment, addModule }: PluginProps): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { PluginProps, PLUGIN_FULLSCREEN } from '../../types.js';
|
|
2
|
+
import { PluginProps, PLUGIN_FULLSCREEN, Callback, RenderFunction } from '../../types.js';
|
|
3
3
|
|
|
4
4
|
/** Fullscreen plugin */
|
|
5
5
|
declare function Fullscreen({ augment, contains, addParent }: PluginProps): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { PluginProps, PLUGIN_SLIDESHOW } from '../../types.js';
|
|
2
|
+
import { PluginProps, PLUGIN_SLIDESHOW, Callback, RenderFunction } from '../../types.js';
|
|
3
3
|
|
|
4
4
|
/** Slideshow plugin */
|
|
5
5
|
declare function Slideshow({ augment, addModule }: PluginProps): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { PluginProps, PLUGIN_THUMBNAILS } from '../../types.js';
|
|
2
|
+
import { PluginProps, PLUGIN_THUMBNAILS, Callback, ContainerRect, ImageFit, RenderFunction, Slide } from '../../types.js';
|
|
3
3
|
|
|
4
4
|
/** Thumbnails plugin */
|
|
5
5
|
declare function Thumbnails({ augment, contains, append, addParent }: PluginProps): void;
|