@tauri-apps/plugin-dialog 2.0.0-beta.4 → 2.0.0-beta.6
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-js/index.cjs +1 -3
- package/dist-js/index.js +1 -3
- package/package.json +2 -2
package/dist-js/index.cjs
CHANGED
|
@@ -57,9 +57,7 @@ var core = require('@tauri-apps/api/core');
|
|
|
57
57
|
*
|
|
58
58
|
* @since 2.0.0
|
|
59
59
|
*/
|
|
60
|
-
async function open(
|
|
61
|
-
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
|
|
62
|
-
options = {}) {
|
|
60
|
+
async function open(options = {}) {
|
|
63
61
|
if (typeof options === "object") {
|
|
64
62
|
Object.freeze(options);
|
|
65
63
|
}
|
package/dist-js/index.js
CHANGED
|
@@ -55,9 +55,7 @@ import { invoke } from '@tauri-apps/api/core';
|
|
|
55
55
|
*
|
|
56
56
|
* @since 2.0.0
|
|
57
57
|
*/
|
|
58
|
-
async function open(
|
|
59
|
-
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
|
|
60
|
-
options = {}) {
|
|
58
|
+
async function open(options = {}) {
|
|
61
59
|
if (typeof options === "object") {
|
|
62
60
|
Object.freeze(options);
|
|
63
61
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/plugin-dialog",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.6",
|
|
4
4
|
"license": "MIT or APACHE-2.0",
|
|
5
5
|
"authors": [
|
|
6
6
|
"Tauri Programme within The Commons Conservancy"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"LICENSE"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@tauri-apps/api": "2.0.0-beta.
|
|
23
|
+
"@tauri-apps/api": "2.0.0-beta.14"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "rollup -c"
|