@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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastkit/vui",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.5",
|
|
4
4
|
"description": "A simple, extensible UI kit for Vue applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fastkit",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@fastkit/vue-media-match": "0.13.6",
|
|
67
67
|
"@fastkit/vue-resize": "0.1.2",
|
|
68
68
|
"@fastkit/vue-scroller": "0.14.0",
|
|
69
|
-
"@fastkit/vue-stack": "0.15.
|
|
69
|
+
"@fastkit/vue-stack": "0.15.4",
|
|
70
70
|
"@fastkit/vue-transitions": "0.1.2",
|
|
71
71
|
"@fastkit/vue-utils": "0.14.0"
|
|
72
72
|
},
|
package/src/service.tsx
CHANGED
|
@@ -260,8 +260,10 @@ export class VuiService {
|
|
|
260
260
|
if (!actions.length) {
|
|
261
261
|
actions.push(this.stackAction('ok'));
|
|
262
262
|
}
|
|
263
|
+
const backdrop = props?.backdrop == null ? true : props?.backdrop;
|
|
263
264
|
return {
|
|
264
265
|
...props,
|
|
266
|
+
backdrop,
|
|
265
267
|
actions,
|
|
266
268
|
};
|
|
267
269
|
});
|
|
@@ -271,8 +273,10 @@ export class VuiService {
|
|
|
271
273
|
if (!actions.length) {
|
|
272
274
|
actions.push(this.stackAction('cancel'), this.stackAction('ok'));
|
|
273
275
|
}
|
|
276
|
+
const backdrop = props?.backdrop == null ? true : props?.backdrop;
|
|
274
277
|
return {
|
|
275
278
|
...props,
|
|
279
|
+
backdrop,
|
|
276
280
|
actions,
|
|
277
281
|
};
|
|
278
282
|
});
|