@fastkit/vui 0.16.3 → 0.16.5
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/vui.mjs +4 -0
- package/dist/vui.mjs.map +1 -1
- package/package.json +2 -2
- package/src/service.tsx +4 -0
package/dist/vui.mjs
CHANGED
|
@@ -4699,8 +4699,10 @@ var VuiService = class {
|
|
|
4699
4699
|
if (!actions.length) {
|
|
4700
4700
|
actions.push(this.stackAction("ok"));
|
|
4701
4701
|
}
|
|
4702
|
+
const backdrop = props11?.backdrop == null ? true : props11?.backdrop;
|
|
4702
4703
|
return {
|
|
4703
4704
|
...props11,
|
|
4705
|
+
backdrop,
|
|
4704
4706
|
actions
|
|
4705
4707
|
};
|
|
4706
4708
|
});
|
|
@@ -4709,8 +4711,10 @@ var VuiService = class {
|
|
|
4709
4711
|
if (!actions.length) {
|
|
4710
4712
|
actions.push(this.stackAction("cancel"), this.stackAction("ok"));
|
|
4711
4713
|
}
|
|
4714
|
+
const backdrop = props11?.backdrop == null ? true : props11?.backdrop;
|
|
4712
4715
|
return {
|
|
4713
4716
|
...props11,
|
|
4717
|
+
backdrop,
|
|
4714
4718
|
actions
|
|
4715
4719
|
};
|
|
4716
4720
|
});
|