@mpxjs/api-proxy 2.10.3 → 2.10.4-beta.1

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/@types/index.d.ts CHANGED
@@ -83,6 +83,9 @@ export const switchTab: WechatMiniprogram.Wx['switchTab']
83
83
  export const scanCode: WechatMiniprogram.Wx['scanCode']
84
84
  export const setScreenBrightness: WechatMiniprogram.Wx['setScreenBrightness']
85
85
  export const getScreenBrightness: WechatMiniprogram.Wx['getScreenBrightness']
86
+ export const setVisualEffectOnCapture: WechatMiniprogram.Wx['setVisualEffectOnCapture']
87
+ export const onUserCaptureScreen: WechatMiniprogram.Wx['onUserCaptureScreen']
88
+ export const offUserCaptureScreen: WechatMiniprogram.Wx['offUserCaptureScreen']
86
89
  export const setNavigationBarTitle: WechatMiniprogram.Wx['setNavigationBarTitle']
87
90
  export const setNavigationBarColor: WechatMiniprogram.Wx['setNavigationBarColor']
88
91
  export const connectSocket: WechatMiniprogram.Wx['connectSocket']
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mpxjs/api-proxy",
3
- "version": "2.10.3",
3
+ "version": "2.10.4-beta.1",
4
4
  "description": "convert miniprogram API at each end",
5
5
  "module": "src/index.js",
6
6
  "types": "@types/index.d.ts",
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "homepage": "https://github.com/didi/mpx#readme",
39
39
  "dependencies": {
40
- "@mpxjs/utils": "^2.10.2",
40
+ "@mpxjs/utils": "^2.10.4",
41
41
  "axios": "^1.7.3"
42
42
  },
43
43
  "peerDependencies": {
@@ -67,6 +67,5 @@
67
67
  "react-native-haptic-feedback": {
68
68
  "optional": true
69
69
  }
70
- },
71
- "gitHead": "043c9bc770ce9cc11f865bab67f46849ff573728"
70
+ }
72
71
  }
@@ -76,7 +76,7 @@ const styles = StyleSheet.create({
76
76
  }
77
77
  })
78
78
 
79
- function ActionSheet ({itemColor, height, success, fail, complete, alertText, itemList}) {
79
+ function ActionSheet ({ itemColor, height, success, fail, complete, alertText, itemList }) {
80
80
  const slide = useSharedValue(height)
81
81
  const fade = useSharedValue(0)
82
82
  const [selectedIndex, setSelectedIndex] = useState(null)
@@ -131,20 +131,79 @@ function ActionSheet ({itemColor, height, success, fail, complete, alertText, it
131
131
  return (
132
132
  <View style={styles.actionAction}>
133
133
  <Animated.View style={[styles.maskWrap, maskAnimatedStyles]}>
134
- <View activeOpacity={1} style={styles.actionActionMask} onTouchEnd={cancelAction}></View>
134
+ <View
135
+ activeOpacity={1}
136
+ style={styles.actionActionMask}
137
+ onTouchEnd={cancelAction}
138
+ ></View>
135
139
  </Animated.View>
136
- <Animated.View style={[styles.actionSheetContent, actionAnimatedStyles]}>
137
- { alertText ? <View style={ styles.itemStyle }><Text style={[styles.itemTextStyle, { color: '#666666' }]}>{alertText}</Text></View> : null }
138
- { itemList.map((item, index) => <View onTouchStart={() => startHandle(index)} onTouchEnd={() => selectAction(index)} key={index} style={ [styles.itemStyle, itemList.length -1 === index ? {
139
- borderBottomWidth: 6,
140
- borderBottomStyle: 'solid',
141
- borderBottomColor: '#f7f7f7'
142
- } : {}, selectedIndex === index ? {
143
- backgroundColor: '#ececec'
144
- } : {}] }><Text style={[styles.itemTextStyle, { color: itemColor }]}>{item}</Text></View>) }
145
- <View style={[styles.buttonStyle, selectedIndex === -1 ? {
146
- backgroundColor: '#ececec'
147
- } : {}]} onTouchStart={() => startHandle(-1)} onTouchEnd={cancelAction}><Text style={{ color: "#000000", fontSize: 18, lineHeight: 22, height: 22, width: "100%", textAlign: "center" }}>取消</Text></View>
140
+ <Animated.View
141
+ style={[styles.actionSheetContent, actionAnimatedStyles]}
142
+ >
143
+ {alertText
144
+ ? (
145
+ <View style={styles.itemStyle}>
146
+ <Text
147
+ style={[styles.itemTextStyle, { color: '#666666' }]}
148
+ >
149
+ {alertText}
150
+ </Text>
151
+ </View>
152
+ )
153
+ : null}
154
+ {itemList.map((item, index) => (
155
+ <View
156
+ onTouchStart={() => startHandle(index)}
157
+ onTouchEnd={() => selectAction(index)}
158
+ key={index}
159
+ style={[
160
+ styles.itemStyle,
161
+ itemList.length - 1 === index
162
+ ? {
163
+ borderBottomWidth: 6,
164
+ borderBottomStyle: 'solid',
165
+ borderBottomColor: '#f7f7f7'
166
+ }
167
+ : {},
168
+ selectedIndex === index
169
+ ? {
170
+ backgroundColor: '#ececec'
171
+ }
172
+ : {}
173
+ ]}
174
+ >
175
+ <Text
176
+ style={[styles.itemTextStyle, { color: itemColor }]}
177
+ >
178
+ {item}
179
+ </Text>
180
+ </View>
181
+ ))}
182
+ <View
183
+ style={[
184
+ styles.buttonStyle,
185
+ selectedIndex === -1
186
+ ? {
187
+ backgroundColor: '#ececec'
188
+ }
189
+ : {}
190
+ ]}
191
+ onTouchStart={() => startHandle(-1)}
192
+ onTouchEnd={cancelAction}
193
+ >
194
+ <Text
195
+ style={{
196
+ color: '#000000',
197
+ fontSize: 18,
198
+ lineHeight: 22,
199
+ height: 22,
200
+ width: '100%',
201
+ textAlign: 'center'
202
+ }}
203
+ >
204
+ 取消
205
+ </Text>
206
+ </View>
148
207
  </Animated.View>
149
208
  </View>
150
209
  )
@@ -169,11 +228,20 @@ function showActionSheet (options = {}) {
169
228
  return
170
229
  }
171
230
  const height = len * 53 + 46 + bottom + (alertText ? 52 : 0)
172
-
173
- const actionSheetKey = Portal.add(<ActionSheet itemColor={itemColor} height={height} success={success} fail={fail} complete={complete} alertText={alertText} itemList={itemList} />, id)
231
+
232
+ const actionSheetKey = Portal.add(
233
+ <ActionSheet
234
+ itemColor={itemColor}
235
+ height={height}
236
+ success={success}
237
+ fail={fail}
238
+ complete={complete}
239
+ alertText={alertText}
240
+ itemList={itemList}
241
+ />,
242
+ id
243
+ )
174
244
  actionSheetMap.set(id, actionSheetKey)
175
245
  }
176
246
 
177
- export {
178
- showActionSheet
179
- }
247
+ export { showActionSheet }
@@ -1,48 +1,48 @@
1
- import { successHandle, failHandle } from '../../../common/js'
2
- import { type } from '@mpxjs/utils'
3
- import { getStringAsync, setStringAsync } from 'expo-clipboard'
1
+ // import { successHandle, failHandle } from '../../../common/js'
2
+ // import { type } from '@mpxjs/utils'
3
+ // import { getStringAsync, setStringAsync } from 'expo-clipboard'
4
4
 
5
- const setClipboardData = function (options = {}) {
6
- const { data, success, fail, complete } = options
7
- if (!data || type(data) !== 'String') {
8
- const errStr = !data ? 'parameter.data should be String instead of Undefined;' : `parameter.data should be String instead of ${type(data)};`
9
- const result = {
10
- errno: 1001,
11
- errMsg: errStr
12
- }
13
- failHandle(result, fail, complete)
14
- return
15
- }
16
- setStringAsync(data).then(() => {
17
- const result = {
18
- errMsg: 'setClipboardData:ok'
19
- }
20
- successHandle(result, success, complete)
21
- }).catch((e) => {
22
- const result = {
23
- errMsg: `setClipboardData:fail ${e}`
24
- }
25
- failHandle(result, fail, complete)
26
- })
27
- }
5
+ // const setClipboardData = function (options = {}) {
6
+ // const { data, success, fail, complete } = options
7
+ // if (!data || type(data) !== 'String') {
8
+ // const errStr = !data ? 'parameter.data should be String instead of Undefined;' : `parameter.data should be String instead of ${type(data)};`
9
+ // const result = {
10
+ // errno: 1001,
11
+ // errMsg: errStr
12
+ // }
13
+ // failHandle(result, fail, complete)
14
+ // return
15
+ // }
16
+ // setStringAsync(data).then(() => {
17
+ // const result = {
18
+ // errMsg: 'setClipboardData:ok'
19
+ // }
20
+ // successHandle(result, success, complete)
21
+ // }).catch((e) => {
22
+ // const result = {
23
+ // errMsg: `setClipboardData:fail ${e}`
24
+ // }
25
+ // failHandle(result, fail, complete)
26
+ // })
27
+ // }
28
28
 
29
- const getClipboardData = function (options = {}) {
30
- const { success, fail, complete } = options
31
- getStringAsync().then((data) => {
32
- const result = {
33
- data,
34
- errMsg: 'getClipboardData:ok'
35
- }
36
- successHandle(result, success, complete)
37
- }).catch((e) => {
38
- const result = {
39
- errMsg: `getClipboardData:fail ${e}`
40
- }
41
- failHandle(result, fail, complete)
42
- })
43
- }
29
+ // const getClipboardData = function (options = {}) {
30
+ // const { success, fail, complete } = options
31
+ // getStringAsync().then((data) => {
32
+ // const result = {
33
+ // data,
34
+ // errMsg: 'getClipboardData:ok'
35
+ // }
36
+ // successHandle(result, success, complete)
37
+ // }).catch((e) => {
38
+ // const result = {
39
+ // errMsg: `getClipboardData:fail ${e}`
40
+ // }
41
+ // failHandle(result, fail, complete)
42
+ // })
43
+ // }
44
44
 
45
- export {
46
- setClipboardData,
47
- getClipboardData
48
- }
45
+ // export {
46
+ // setClipboardData,
47
+ // getClipboardData
48
+ // }
@@ -105,7 +105,6 @@ class RNIntersectionObserver {
105
105
  right: navigationLayout.width + this.margins.right,
106
106
  bottom: navigationLayout.y + navigationLayout.height + this.margins.bottom
107
107
  }
108
-
109
108
  this.windowRect = windowRect
110
109
  return this.windowRect
111
110
  }
@@ -153,19 +152,16 @@ class RNIntersectionObserver {
153
152
  return Math.min(Math.max(start, value), end)
154
153
  }
155
154
 
156
- _isInsectedFn (intersectionRatio, previousIntersectionRatio, thresholds) {
157
- // console.log('nowintersectionRatio, previousIntersectionRatio', [intersectionRatio, previousIntersectionRatio])
158
- let nowIndex = -1
159
- let previousIndex = -1
155
+ _getRatioIndex (ratio, thresholds = []) {
156
+ if (ratio === 0 && thresholds.includes(0)) return -1
157
+ if (ratio === 1 && thresholds.includes(1)) return thresholds.length
158
+ let returnIndex = -1
160
159
  thresholds.forEach((item, index) => {
161
- if (intersectionRatio >= item) {
162
- nowIndex = index
163
- }
164
- if (previousIntersectionRatio >= item) {
165
- previousIndex = index
160
+ if (ratio >= item) {
161
+ returnIndex = index
166
162
  }
167
163
  })
168
- return !(nowIndex === previousIndex)
164
+ return returnIndex
169
165
  }
170
166
 
171
167
  // 计算相交区域
@@ -180,10 +176,8 @@ class RNIntersectionObserver {
180
176
  const targetArea = (observeRect.bottom - observeRect.top) * (observeRect.right - observeRect.left)
181
177
  const visibleArea = (visibleRect.bottom - visibleRect.top) * (visibleRect.right - visibleRect.left)
182
178
  const intersectionRatio = targetArea ? visibleArea / targetArea : 0
183
-
184
- const isInsected = isInit ? intersectionRatio > this.initialRatio : this._isInsectedFn(intersectionRatio, this.previousIntersectionRatio[observeIndex], this.thresholds)
179
+ const isInsected = isInit ? intersectionRatio > this.initialRatio : !(this._getRatioIndex(intersectionRatio, this.thresholds) === this._getRatioIndex(this.previousIntersectionRatio[observeIndex], this.thresholds))
185
180
  this.previousIntersectionRatio[observeIndex] = intersectionRatio
186
-
187
181
  return {
188
182
  intersectionRatio,
189
183
  intersectionRect: {
@@ -217,7 +211,6 @@ class RNIntersectionObserver {
217
211
  relativeRect,
218
212
  isInit
219
213
  })
220
- // 初次调用的
221
214
  if (isInsected) {
222
215
  this.callback({
223
216
  // index: index,
@@ -88,7 +88,7 @@ const showModal = function (options = {}) {
88
88
  flex: 1,
89
89
  textAlign: 'center',
90
90
  paddingTop: width * 0.04,
91
- paddingBottom: width * 0.04,
91
+ paddingBottom: width * 0.04
92
92
  },
93
93
  modalButton: {
94
94
  width: '100%',
@@ -98,14 +98,13 @@ const showModal = function (options = {}) {
98
98
  cancelStyle: {
99
99
  borderRightWidth: StyleSheet.hairlineWidth,
100
100
  borderRightColor: 'rgba(0,0,0,0.2)',
101
- borderStyle: 'solid',
101
+ borderStyle: 'solid'
102
102
  }
103
103
  })
104
- let ModalView
105
- let modalTitle = []
106
- let modalContent = []
107
- let editableContent = []
108
- let modalButton = [{
104
+ const modalTitle = []
105
+ const modalContent = []
106
+ const editableContent = []
107
+ const modalButton = [{
109
108
  text: confirmText,
110
109
  type: 'confirm',
111
110
  color: confirmColor
@@ -116,7 +115,7 @@ const showModal = function (options = {}) {
116
115
  }
117
116
  const closeModal = function (buttonInfo) {
118
117
  const modalKey = getCurrentModalKey()
119
- if(modalKey) {
118
+ if (modalKey) {
120
119
  Portal.remove(modalKey)
121
120
  }
122
121
  const result = {
@@ -153,7 +152,7 @@ const showModal = function (options = {}) {
153
152
  color: cancelColor
154
153
  })
155
154
  }
156
- ModalView = <View style={styles.modalTask}>
155
+ const ModalView = <View style={styles.modalTask}>
157
156
  <View style={styles.modalContent}>
158
157
  {modalTitle.map((item, index) => <View key={index}><Text style={styles.modalTitleText}>{item}</Text></View>)}
159
158
  {modalContent.map((item, index) => <ScrollView key={index} style={styles.contentBox}><Text style={styles.modalContentText}>{item}</Text></ScrollView>)}
@@ -171,7 +170,7 @@ const showModal = function (options = {}) {
171
170
  paddingRight: 10
172
171
  }} onChangeText={text => onChangeText(text)} defaultValue={content}></TextInput></View>)}
173
172
  <View style={styles.modalBtnBox}>
174
- {modalButton.map((item, index) => <TouchableOpacity key={index} style={[ styles.modalBtn, item.style ]} onPress={() => closeModal(item)}><Text style={[styles.modalButton, { color: item.color }]}>{item.text}</Text></TouchableOpacity>)}
173
+ {modalButton.map((item, index) => <TouchableOpacity key={index} style={[styles.modalBtn, item.style]} onPress={() => closeModal(item)}><Text style={[styles.modalButton, { color: item.color }]}>{item.text}</Text></TouchableOpacity>)}
175
174
  </View>
176
175
  </View>
177
176
  </View>
@@ -1,4 +1,4 @@
1
- import { ENV_OBJ, changeOpts, handleSuccess } from '../../../common/js'
1
+ import { ENV_OBJ, changeOpts, handleSuccess, envError } from '../../../common/js'
2
2
 
3
3
  function setScreenBrightness (options = {}) {
4
4
  const opts = changeOpts(options, {
@@ -16,11 +16,19 @@ function getScreenBrightness (options = {}) {
16
16
  handleSuccess(opts, res => {
17
17
  return changeOpts(res, { brightness: 'value' }, { errMsg: 'getScreenBrightness:ok' })
18
18
  })
19
-
20
19
  return ENV_OBJ.getScreenBrightness(opts)
21
20
  }
22
21
 
22
+ const setVisualEffectOnCapture = ENV_OBJ.setVisualEffectOnCapture || envError('setVisualEffectOnCapture')
23
+
24
+ const onUserCaptureScreen = ENV_OBJ.onUserCaptureScreen || envError('onUserCaptureScreen')
25
+
26
+ const offUserCaptureScreen = ENV_OBJ.offUserCaptureScreen || envError('offUserCaptureScreen')
27
+
23
28
  export {
24
29
  setScreenBrightness,
25
- getScreenBrightness
30
+ getScreenBrightness,
31
+ setVisualEffectOnCapture,
32
+ onUserCaptureScreen,
33
+ offUserCaptureScreen
26
34
  }
@@ -4,7 +4,16 @@ const setScreenBrightness = ENV_OBJ.setScreenBrightness || envError('setScreenBr
4
4
 
5
5
  const getScreenBrightness = ENV_OBJ.getScreenBrightness || envError('getScreenBrightness')
6
6
 
7
+ const setVisualEffectOnCapture = ENV_OBJ.setVisualEffectOnCapture || envError('setVisualEffectOnCapture')
8
+
9
+ const onUserCaptureScreen = ENV_OBJ.onUserCaptureScreen || envError('onUserCaptureScreen')
10
+
11
+ const offUserCaptureScreen = ENV_OBJ.offUserCaptureScreen || envError('offUserCaptureScreen')
12
+
7
13
  export {
8
14
  setScreenBrightness,
9
- getScreenBrightness
15
+ getScreenBrightness,
16
+ setVisualEffectOnCapture,
17
+ onUserCaptureScreen,
18
+ offUserCaptureScreen
10
19
  }
@@ -1,38 +1,47 @@
1
- import * as Brightness from 'expo-brightness'
2
- import { successHandle, failHandle } from '../../../common/js'
1
+ // import * as Brightness from 'expo-brightness'
2
+ // import { successHandle, failHandle, envError } from '../../../common/js'
3
3
 
4
- function getScreenBrightness (options = {}) {
5
- const { success, fail, complete } = options
6
- Brightness.getBrightnessAsync().then(value => {
7
- const result = {
8
- errMsg: 'getScreenBrightness:ok',
9
- value
10
- }
11
- successHandle(result, success, complete)
12
- }).catch(() => {
13
- const result = {
14
- errMsg: 'getScreenBrightness:fail'
15
- }
16
- failHandle(result, fail, complete)
17
- })
18
- }
4
+ // function getScreenBrightness (options = {}) {
5
+ // const { success, fail, complete } = options
6
+ // Brightness.getBrightnessAsync().then(value => {
7
+ // const result = {
8
+ // errMsg: 'getScreenBrightness:ok',
9
+ // value
10
+ // }
11
+ // successHandle(result, success, complete)
12
+ // }).catch(() => {
13
+ // const result = {
14
+ // errMsg: 'getScreenBrightness:fail'
15
+ // }
16
+ // failHandle(result, fail, complete)
17
+ // })
18
+ // }
19
19
 
20
- function setScreenBrightness (options = {}) {
21
- const { value, success, fail, complete } = options
22
- Brightness.setBrightnessAsync(value).then(() => {
23
- const result = {
24
- errMsg: 'setScreenBrightness:ok'
25
- }
26
- successHandle(result, success, complete)
27
- }).catch(() => {
28
- const result = {
29
- errMsg: 'setScreenBrightness:fail'
30
- }
31
- failHandle(result, fail, complete)
32
- })
33
- }
20
+ // function setScreenBrightness (options = {}) {
21
+ // const { value, success, fail, complete } = options
22
+ // Brightness.setBrightnessAsync(value).then(() => {
23
+ // const result = {
24
+ // errMsg: 'setScreenBrightness:ok'
25
+ // }
26
+ // successHandle(result, success, complete)
27
+ // }).catch(() => {
28
+ // const result = {
29
+ // errMsg: 'setScreenBrightness:fail'
30
+ // }
31
+ // failHandle(result, fail, complete)
32
+ // })
33
+ // }
34
34
 
35
- export {
36
- getScreenBrightness,
37
- setScreenBrightness
38
- }
35
+ // const setVisualEffectOnCapture = envError('setVisualEffectOnCapture')
36
+
37
+ // const onUserCaptureScreen = envError('onUserCaptureScreen')
38
+
39
+ // const offUserCaptureScreen = envError('offUserCaptureScreen')
40
+
41
+ // export {
42
+ // getScreenBrightness,
43
+ // setScreenBrightness,
44
+ // setVisualEffectOnCapture,
45
+ // onUserCaptureScreen,
46
+ // offUserCaptureScreen
47
+ // }
@@ -59,7 +59,7 @@ const getSystemInfo = function (options = {}) {
59
59
 
60
60
  const getDeviceInfo = function () {
61
61
  const deviceInfo = {}
62
- if (__mpx_mode__ === 'android') {
62
+ if (__mpx_mode__ !== 'ios') {
63
63
  const deviceAbi = DeviceInfo.supported64BitAbisSync() || []
64
64
  deviceInfo.deviceAbi = deviceAbi[0] || null
65
65
  }
@@ -27,7 +27,7 @@ const styles = StyleSheet.create({
27
27
  top: 0,
28
28
  bottom: 0,
29
29
  zIndex: 10000,
30
- position: "absolute",
30
+ position: 'absolute',
31
31
  display: 'flex',
32
32
  alignItems: 'center'
33
33
  },
@@ -77,14 +77,14 @@ function showToast (options = {}) {
77
77
  const pointerEvents = mask ? 'auto' : 'none'
78
78
  isLoadingShow = isLoading
79
79
  if (image || icon === 'success' || icon === 'error') {
80
- ToastView = <View style={[styles.toastWrap, {pointerEvents}]}>
80
+ ToastView = <View style={[styles.toastWrap, { pointerEvents }]}>
81
81
  <View style={[styles.toastContent, styles.toastHasIcon]}>
82
- <Image style={ styles.toastImg } source={{uri: image || iconImg[icon]}}></Image>
82
+ <Image style={ styles.toastImg } source={{ uri: image || iconImg[icon] }}></Image>
83
83
  { title ? <Text style={styles.toastText}>{title}</Text> : null }
84
84
  </View>
85
85
  </View>
86
86
  } else if (icon === 'loading') {
87
- ToastView = <View style={[styles.toastWrap, {pointerEvents}]}>
87
+ ToastView = <View style={[styles.toastWrap, { pointerEvents }]}>
88
88
  <View style={[styles.toastContent, styles.toastHasIcon]}>
89
89
  <ActivityIndicator
90
90
  animating
@@ -94,13 +94,20 @@ function showToast (options = {}) {
94
94
  { title ? <Text style={styles.toastText}>{title}</Text> : null }
95
95
  </View>
96
96
  </View>
97
- } else {
98
- ToastView = <View style={[styles.toastWrap, {pointerEvents}]}>
97
+ } else {
98
+ ToastView = <View style={[styles.toastWrap, { pointerEvents }]}>
99
99
  <View style={styles.toastContent}>
100
- { title ? <Text numberOfLines={2} style={{ ...styles.toastText, ...(icon === 'none' ? {
101
- height: 'auto',
102
- marginTop: 0
103
- } : {}) }}>{title}</Text> : null }
100
+ { title
101
+ ? <Text numberOfLines={2} style={{
102
+ ...styles.toastText,
103
+ ...(icon === 'none'
104
+ ? {
105
+ height: 'auto',
106
+ marginTop: 0
107
+ }
108
+ : {})
109
+ }}>{title}</Text>
110
+ : null }
104
111
  </View>
105
112
  </View>
106
113
  }
@@ -130,7 +137,7 @@ function showToast (options = {}) {
130
137
  }
131
138
  }
132
139
 
133
- function hideToast(options = {}) {
140
+ function hideToast (options = {}) {
134
141
  const id = getCurrentPageId()
135
142
  const { noConflict = false, success, fail, complete } = options
136
143
 
@@ -9,6 +9,7 @@ const vibrateShort = function (options = {}) {
9
9
  const { type = 'light', success, fail, complete } = options
10
10
  try {
11
11
  ReactNativeHapticFeedback.trigger(getType(type), {
12
+ // harmony RN 属性不变
12
13
  ignoreAndroidSystemSettings: true,
13
14
  enableVibrateFallback: true
14
15
  })
@@ -26,7 +26,7 @@ export * from './api/canvas'
26
26
  export * from './api/check-session'
27
27
 
28
28
  // setClipboardData, getClipboardData
29
- // export * from './api/clipboard-data'
29
+ export * from './api/clipboard-data'
30
30
 
31
31
  // createIntersectionObserver
32
32
  export * from './api/create-intersection-observer'
@@ -77,7 +77,7 @@ export * from './api/route'
77
77
  export * from './api/scan-code'
78
78
 
79
79
  // setScreenBrightness, getScreenBrightness
80
- // export * from './api/screen-brightness'
80
+ export * from './api/screen-brightness'
81
81
 
82
82
  // setNavigationBarTitle, setNavigationBarColor
83
83
  export * from './api/set-navigation-bar'
package/LICENSE DELETED
@@ -1,433 +0,0 @@
1
- Apache License
2
-
3
- Version 2.0, January 2004
4
-
5
- http://www.apache.org/licenses/
6
-
7
-
8
-
9
-
10
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
11
-
12
-
13
-
14
-
15
- 1. Definitions.
16
-
17
-
18
-
19
-
20
- "License" shall mean the terms and conditions for use, reproduction,
21
-
22
- and distribution as defined by Sections 1 through 9 of this document.
23
-
24
-
25
-
26
-
27
- "Licensor" shall mean the copyright owner or entity authorized by
28
-
29
- the copyright owner that is granting the License.
30
-
31
-
32
-
33
-
34
- "Legal Entity" shall mean the union of the acting entity and all
35
-
36
- other entities that control, are controlled by, or are under common
37
-
38
- control with that entity. For the purposes of this definition,
39
-
40
- "control" means (i) the power, direct or indirect, to cause the
41
-
42
- direction or management of such entity, whether by contract or
43
-
44
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
45
-
46
- outstanding shares, or (iii) beneficial ownership of such entity.
47
-
48
-
49
-
50
-
51
- "You" (or "Your") shall mean an individual or Legal Entity
52
-
53
- exercising permissions granted by this License.
54
-
55
-
56
-
57
-
58
- "Source" form shall mean the preferred form for making modifications,
59
-
60
- including but not limited to software source code, documentation
61
-
62
- source, and configuration files.
63
-
64
-
65
-
66
-
67
- "Object" form shall mean any form resulting from mechanical
68
-
69
- transformation or translation of a Source form, including but
70
-
71
- not limited to compiled object code, generated documentation,
72
-
73
- and conversions to other media types.
74
-
75
-
76
-
77
-
78
- "Work" shall mean the work of authorship, whether in Source or
79
-
80
- Object form, made available under the License, as indicated by a
81
-
82
- copyright notice that is included in or attached to the work
83
-
84
- (an example is provided in the Appendix below).
85
-
86
-
87
-
88
-
89
- "Derivative Works" shall mean any work, whether in Source or Object
90
-
91
- form, that is based on (or derived from) the Work and for which the
92
-
93
- editorial revisions, annotations, elaborations, or other modifications
94
-
95
- represent, as a whole, an original work of authorship. For the purposes
96
-
97
- of this License, Derivative Works shall not include works that remain
98
-
99
- separable from, or merely link (or bind by name) to the interfaces of,
100
-
101
- the Work and Derivative Works thereof.
102
-
103
-
104
-
105
-
106
- "Contribution" shall mean any work of authorship, including
107
-
108
- the original version of the Work and any modifications or additions
109
-
110
- to that Work or Derivative Works thereof, that is intentionally
111
-
112
- submitted to Licensor for inclusion in the Work by the copyright owner
113
-
114
- or by an individual or Legal Entity authorized to submit on behalf of
115
-
116
- the copyright owner. For the purposes of this definition, "submitted"
117
-
118
- means any form of electronic, verbal, or written communication sent
119
-
120
- to the Licensor or its representatives, including but not limited to
121
-
122
- communication on electronic mailing lists, source code control systems,
123
-
124
- and issue tracking systems that are managed by, or on behalf of, the
125
-
126
- Licensor for the purpose of discussing and improving the Work, but
127
-
128
- excluding communication that is conspicuously marked or otherwise
129
-
130
- designated in writing by the copyright owner as "Not a Contribution."
131
-
132
-
133
-
134
-
135
- "Contributor" shall mean Licensor and any individual or Legal Entity
136
-
137
- on behalf of whom a Contribution has been received by Licensor and
138
-
139
- subsequently incorporated within the Work.
140
-
141
-
142
-
143
-
144
- 2. Grant of Copyright License. Subject to the terms and conditions of
145
-
146
- this License, each Contributor hereby grants to You a perpetual,
147
-
148
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
149
-
150
- copyright license to reproduce, prepare Derivative Works of,
151
-
152
- publicly display, publicly perform, sublicense, and distribute the
153
-
154
- Work and such Derivative Works in Source or Object form.
155
-
156
-
157
-
158
-
159
- 3. Grant of Patent License. Subject to the terms and conditions of
160
-
161
- this License, each Contributor hereby grants to You a perpetual,
162
-
163
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
164
-
165
- (except as stated in this section) patent license to make, have made,
166
-
167
- use, offer to sell, sell, import, and otherwise transfer the Work,
168
-
169
- where such license applies only to those patent claims licensable
170
-
171
- by such Contributor that are necessarily infringed by their
172
-
173
- Contribution(s) alone or by combination of their Contribution(s)
174
-
175
- with the Work to which such Contribution(s) was submitted. If You
176
-
177
- institute patent litigation against any entity (including a
178
-
179
- cross-claim or counterclaim in a lawsuit) alleging that the Work
180
-
181
- or a Contribution incorporated within the Work constitutes direct
182
-
183
- or contributory patent infringement, then any patent licenses
184
-
185
- granted to You under this License for that Work shall terminate
186
-
187
- as of the date such litigation is filed.
188
-
189
-
190
-
191
-
192
- 4. Redistribution. You may reproduce and distribute copies of the
193
-
194
- Work or Derivative Works thereof in any medium, with or without
195
-
196
- modifications, and in Source or Object form, provided that You
197
-
198
- meet the following conditions:
199
-
200
-
201
-
202
-
203
- (a) You must give any other recipients of the Work or
204
-
205
- Derivative Works a copy of this License; and
206
-
207
-
208
-
209
-
210
- (b) You must cause any modified files to carry prominent notices
211
-
212
- stating that You changed the files; and
213
-
214
-
215
-
216
-
217
- (c) You must retain, in the Source form of any Derivative Works
218
-
219
- that You distribute, all copyright, patent, trademark, and
220
-
221
- attribution notices from the Source form of the Work,
222
-
223
- excluding those notices that do not pertain to any part of
224
-
225
- the Derivative Works; and
226
-
227
-
228
-
229
-
230
- (d) If the Work includes a "NOTICE" text file as part of its
231
-
232
- distribution, then any Derivative Works that You distribute must
233
-
234
- include a readable copy of the attribution notices contained
235
-
236
- within such NOTICE file, excluding those notices that do not
237
-
238
- pertain to any part of the Derivative Works, in at least one
239
-
240
- of the following places: within a NOTICE text file distributed
241
-
242
- as part of the Derivative Works; within the Source form or
243
-
244
- documentation, if provided along with the Derivative Works; or,
245
-
246
- within a display generated by the Derivative Works, if and
247
-
248
- wherever such third-party notices normally appear. The contents
249
-
250
- of the NOTICE file are for informational purposes only and
251
-
252
- do not modify the License. You may add Your own attribution
253
-
254
- notices within Derivative Works that You distribute, alongside
255
-
256
- or as an addendum to the NOTICE text from the Work, provided
257
-
258
- that such additional attribution notices cannot be construed
259
-
260
- as modifying the License.
261
-
262
-
263
-
264
-
265
- You may add Your own copyright statement to Your modifications and
266
-
267
- may provide additional or different license terms and conditions
268
-
269
- for use, reproduction, or distribution of Your modifications, or
270
-
271
- for any such Derivative Works as a whole, provided Your use,
272
-
273
- reproduction, and distribution of the Work otherwise complies with
274
-
275
- the conditions stated in this License.
276
-
277
-
278
-
279
-
280
- 5. Submission of Contributions. Unless You explicitly state otherwise,
281
-
282
- any Contribution intentionally submitted for inclusion in the Work
283
-
284
- by You to the Licensor shall be under the terms and conditions of
285
-
286
- this License, without any additional terms or conditions.
287
-
288
- Notwithstanding the above, nothing herein shall supersede or modify
289
-
290
- the terms of any separate license agreement you may have executed
291
-
292
- with Licensor regarding such Contributions.
293
-
294
-
295
-
296
-
297
- 6. Trademarks. This License does not grant permission to use the trade
298
-
299
- names, trademarks, service marks, or product names of the Licensor,
300
-
301
- except as required for reasonable and customary use in describing the
302
-
303
- origin of the Work and reproducing the content of the NOTICE file.
304
-
305
-
306
-
307
-
308
- 7. Disclaimer of Warranty. Unless required by applicable law or
309
-
310
- agreed to in writing, Licensor provides the Work (and each
311
-
312
- Contributor provides its Contributions) on an "AS IS" BASIS,
313
-
314
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
315
-
316
- implied, including, without limitation, any warranties or conditions
317
-
318
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
319
-
320
- PARTICULAR PURPOSE. You are solely responsible for determining the
321
-
322
- appropriateness of using or redistributing the Work and assume any
323
-
324
- risks associated with Your exercise of permissions under this License.
325
-
326
-
327
-
328
-
329
- 8. Limitation of Liability. In no event and under no legal theory,
330
-
331
- whether in tort (including negligence), contract, or otherwise,
332
-
333
- unless required by applicable law (such as deliberate and grossly
334
-
335
- negligent acts) or agreed to in writing, shall any Contributor be
336
-
337
- liable to You for damages, including any direct, indirect, special,
338
-
339
- incidental, or consequential damages of any character arising as a
340
-
341
- result of this License or out of the use or inability to use the
342
-
343
- Work (including but not limited to damages for loss of goodwill,
344
-
345
- work stoppage, computer failure or malfunction, or any and all
346
-
347
- other commercial damages or losses), even if such Contributor
348
-
349
- has been advised of the possibility of such damages.
350
-
351
-
352
-
353
-
354
- 9. Accepting Warranty or Additional Liability. While redistributing
355
-
356
- the Work or Derivative Works thereof, You may choose to offer,
357
-
358
- and charge a fee for, acceptance of support, warranty, indemnity,
359
-
360
- or other liability obligations and/or rights consistent with this
361
-
362
- License. However, in accepting such obligations, You may act only
363
-
364
- on Your own behalf and on Your sole responsibility, not on behalf
365
-
366
- of any other Contributor, and only if You agree to indemnify,
367
-
368
- defend, and hold each Contributor harmless for any liability
369
-
370
- incurred by, or claims asserted against, such Contributor by reason
371
-
372
- of your accepting any such warranty or additional liability.
373
-
374
-
375
-
376
-
377
- END OF TERMS AND CONDITIONS
378
-
379
-
380
-
381
-
382
- APPENDIX: How to apply the Apache License to your work.
383
-
384
-
385
-
386
-
387
- To apply the Apache License to your work, attach the following
388
-
389
- boilerplate notice, with the fields enclosed by brackets "{}"
390
-
391
- replaced with your own identifying information. (Don't include
392
-
393
- the brackets!) The text should be enclosed in the appropriate
394
-
395
- comment syntax for the file format. We also recommend that a
396
-
397
- file or class name and description of purpose be included on the
398
-
399
- same "printed page" as the copyright notice for easier
400
-
401
- identification within third-party archives.
402
-
403
-
404
-
405
-
406
- Copyright (C) 2017 Beijing Didi Infinity Technology and Development Co.,Ltd. All rights reserved.
407
-
408
-
409
-
410
-
411
- Licensed under the Apache License, Version 2.0 (the "License");
412
-
413
- you may not use this file except in compliance with the License.
414
-
415
- You may obtain a copy of the License at
416
-
417
-
418
-
419
-
420
- http://www.apache.org/licenses/LICENSE-2.0
421
-
422
-
423
-
424
-
425
- Unless required by applicable law or agreed to in writing, software
426
-
427
- distributed under the License is distributed on an "AS IS" BASIS,
428
-
429
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
430
-
431
- See the License for the specific language governing permissions and
432
-
433
- limitations under the License.
@@ -1 +0,0 @@
1
- export * from './rnClipboard'
@@ -1 +0,0 @@
1
- export * from './rnScreenBrightness'