@tef-novum/webview-bridge
Advanced tools
Comparing version 2.7.0 to 2.7.1
# CHANGELOG | ||
## v.2.7.1 - 2020-01-29 | ||
- Update nativeConfirm and nativeAlert arguments type. | ||
## v.2.7.0 - 2019-12-16 | ||
@@ -4,0 +8,0 @@ |
export declare const nativeConfirm: ({ message, title, acceptText, cancelText, }: { | ||
message: string; | ||
title?: string | undefined; | ||
acceptText?: string | undefined; | ||
cancelText?: string | undefined; | ||
acceptText: string; | ||
cancelText: string; | ||
}) => Promise<boolean>; | ||
@@ -10,3 +10,3 @@ export declare const nativeAlert: ({ message, title, buttonText, }: { | ||
title?: string | undefined; | ||
buttonText?: string | undefined; | ||
buttonText: string; | ||
}) => Promise<void>; | ||
@@ -13,0 +13,0 @@ export declare const nativeMessage: ({ message, duration, buttonText, type, }: { |
{ | ||
"name": "@tef-novum/webview-bridge", | ||
"version": "2.7.0", | ||
"version": "2.7.1", | ||
"description": "JavaScript library to access to native functionality. Requires a webview with a postMessage bridge.", | ||
@@ -5,0 +5,0 @@ "main": "./dist/webview-bridge-cjs.js", |
@@ -307,4 +307,4 @@ <p align="center"> | ||
title?: string; | ||
acceptText?: string; | ||
cancelText?: string; | ||
acceptText: string; | ||
cancelText: string; | ||
}) => Promise<boolean>; | ||
@@ -343,3 +343,3 @@ ``` | ||
title?: string; | ||
buttonText?: string; | ||
buttonText: string; | ||
}) => Promise<void>; | ||
@@ -346,0 +346,0 @@ ``` |
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
2404350
37
10923
5