uni-auth 1.0.8 → 1.0.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uni-auth",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "main": "src/index.js",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -24,7 +24,12 @@ onMounted(() => {
24
24
  })
25
25
  const safeH = computed(() => {
26
26
  const { statusBarHeight, menuButtonHeight } = safeHeight()
27
+ // #ifndef APP-PLUS
27
28
  return statusBarHeight + menuButtonHeight + 20 + 'px'
29
+ // #endif
30
+ // #ifdef APP-PLUS
31
+ return statusBarHeight + menuButtonHeight + 'px'
32
+ // #endif
28
33
  })
29
34
  onUnmounted(() => {
30
35
  permissionListener.value.stop()