stellar-ui-plus 1.24.22 → 1.24.23

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.
@@ -6,6 +6,7 @@ export interface AppUpdateProps {
6
6
  appType: string;
7
7
  btnText: string;
8
8
  appVersion: string;
9
+ zIndex: number;
9
10
  }
10
11
 
11
12
  export default {
@@ -58,5 +59,12 @@ export default {
58
59
  validator: (value: string) => {
59
60
  return typeof value === 'string';
60
61
  }
62
+ },
63
+ zIndex: {
64
+ type: [Number, String],
65
+ default: () => 998,
66
+ validator: (value: any) => {
67
+ return typeof value === 'number' || typeof value === 'string'
68
+ }
61
69
  }
62
70
  } satisfies Record<keyof AppUpdateProps, any>;
@@ -41,6 +41,13 @@
41
41
  "default": "",
42
42
  "version": "1.24.6"
43
43
  },
44
+ {
45
+ "name": "zIndex",
46
+ "description": "弹窗层级",
47
+ "type": "string/number",
48
+ "default": "998",
49
+ "version": "1.24.23"
50
+ },
44
51
  {
45
52
  "name": "[event]cancel",
46
53
  "description": "取消更新",
@@ -345,7 +345,7 @@ defineExpose({
345
345
  </script>
346
346
 
347
347
  <template>
348
- <view class="update-mask flex-center" v-if="open">
348
+ <view class="update-mask flex-center" :style="{ zIndex }" v-if="open">
349
349
  <view class="update-content">
350
350
  <image class="update-image" src="../../static/app_update_img.png"></image>
351
351
 
@@ -408,7 +408,7 @@ defineExpose({
408
408
  right: 0;
409
409
  bottom: 0;
410
410
  background-color: rgba(0, 0, 0, 0.5);
411
- z-index: 9999;
411
+ z-index: 998;
412
412
 
413
413
  .update-content {
414
414
  width: 694rpx;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stellar-ui-plus",
3
- "version": "1.24.22",
3
+ "version": "1.24.23",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "MIT",