File tree Expand file tree Collapse file tree 5 files changed +13
-3
lines changed
permissions/webview/autogenerated Expand file tree Collapse file tree 5 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @tauri-apps/api " : patch:bug
3+ " tauri " : patch:bug
4+ ---
5+
6+ Do not use JS optional chaining to prevent script errors on older webviews such as macOS 10.14.
Original file line number Diff line number Diff line change 2020| ` deny-set-webview-zoom ` | Denies the set_webview_zoom command without any pre-configured scope.|
2121| ` allow-webview-close ` | Enables the webview_close command without any pre-configured scope.|
2222| ` deny-webview-close ` | Denies the webview_close command without any pre-configured scope.|
23+ | ` allow-webview-hide ` | Enables the webview_hide command without any pre-configured scope.|
24+ | ` deny-webview-hide ` | Denies the webview_hide command without any pre-configured scope.|
2325| ` allow-webview-position ` | Enables the webview_position command without any pre-configured scope.|
2426| ` deny-webview-position ` | Denies the webview_position command without any pre-configured scope.|
27+ | ` allow-webview-show ` | Enables the webview_show command without any pre-configured scope.|
28+ | ` deny-webview-show ` | Denies the webview_show command without any pre-configured scope.|
2529| ` allow-webview-size ` | Enables the webview_size command without any pre-configured scope.|
2630| ` deny-webview-size ` | Denies the webview_size command without any pre-configured scope.|
2731| ` default ` | Default permissions for the plugin.|
Original file line number Diff line number Diff line change 2929 'Content-Type' : contentType ,
3030 'Tauri-Callback' : callback ,
3131 'Tauri-Error' : error ,
32- ...options ? .headers
32+ ...( ( options && options . headers ) || { } )
3333 }
3434 } )
3535 . then ( ( response ) => {
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
3- "target" : " es2021 " ,
3+ "target" : " es2019 " ,
44 "module" : " esnext" ,
55 "moduleResolution" : " bundler" ,
66 "skipLibCheck" : true ,
You can’t perform that action at this time.
0 commit comments