Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pstadler committed Aug 7, 2023
1 parent 6da8d70 commit 18323f0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ interface LightboxProps {
onLoaded?: () => void;
onOpened?: () => void;
onCancelled?: () => void;
onError?: () => void;
onError?: (error: {
message: string;
detail: string;
}) => void;
}
declare const Lightbox: {
(props: LightboxProps): null;
Expand Down Expand Up @@ -35,7 +38,10 @@ declare const Lightbox: {
*/
interface DatatransLightboxConfig {
closed?: () => void;
error?: () => void;
error?: (error: {
message: string;
detail: string;
}) => void;
form?: unknown;
loaded?: () => void;
opened?: () => void;
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/index.mjs.map

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
@@ -1,6 +1,6 @@
{
"name": "react-datatrans-light-box",
"version": "4.0.0",
"version": "4.0.1",
"description": "Datatrans Lightbox component for React apps",
"main": "lib/index.js",
"module": "lib/index.mjs",
Expand Down

0 comments on commit 18323f0

Please sign in to comment.