@mpxjs/core 2.9.41 → 2.9.42

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": "@mpxjs/core",
3
- "version": "2.9.41",
3
+ "version": "2.9.42",
4
4
  "description": "mpx runtime core",
5
5
  "keywords": [
6
6
  "miniprogram",
@@ -81,5 +81,5 @@
81
81
  "url": "https://github.com/didi/mpx/issues"
82
82
  },
83
83
  "sideEffects": false,
84
- "gitHead": "0b3ee5d2c1b6c6e0af6a842eb4e12f4a1173c067"
84
+ "gitHead": "45c7fd96af6723fa8c8ea2d659065417e66c77e2"
85
85
  }
@@ -261,13 +261,12 @@ export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
261
261
  }, [])
262
262
  return createElement(Provider,
263
263
  null,
264
- createElement(ReactNative.ScrollView,
264
+ createElement(ReactNative.View,
265
265
  {
266
266
  style: {
267
267
  ...ReactNative.StyleSheet.absoluteFillObject,
268
268
  backgroundColor: pageConfig.backgroundColor || '#ffffff'
269
- },
270
- showsVerticalScrollIndicator: false
269
+ }
271
270
  },
272
271
  createElement(defaultOptions)
273
272
  )