@tarojs/plugin-platform-harmony-ets 4.0.0-beta.55 → 4.0.0-beta.56
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.
|
@@ -32,7 +32,9 @@ export function showToast (options) {
|
|
|
32
32
|
promptAction.showToast({
|
|
33
33
|
message: options.title,
|
|
34
34
|
duration: options.duration,
|
|
35
|
-
bottom: options.bottom
|
|
35
|
+
bottom: options.bottom,
|
|
36
|
+
// @ts-ignore
|
|
37
|
+
showMode: 1 // 设置弹窗显示模式,显示在应用之上。
|
|
36
38
|
})
|
|
37
39
|
callAsyncSuccess(resolve, resCallback('showToast'), options)
|
|
38
40
|
})
|
package/dist/runtime-utils.js
CHANGED
|
@@ -3644,7 +3644,9 @@ function showToast(options) {
|
|
|
3644
3644
|
promptAction.showToast({
|
|
3645
3645
|
message: options.title,
|
|
3646
3646
|
duration: options.duration,
|
|
3647
|
-
bottom: options.bottom
|
|
3647
|
+
bottom: options.bottom,
|
|
3648
|
+
// @ts-ignore
|
|
3649
|
+
showMode: 1 // 设置弹窗显示模式,显示在应用之上。
|
|
3648
3650
|
});
|
|
3649
3651
|
callAsyncSuccess(resolve, resCallback('showToast'), options);
|
|
3650
3652
|
});
|