@tarojs/plugin-platform-alipay 3.6.0-beta.2 → 3.6.0-beta.4

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": "@tarojs/plugin-platform-alipay",
3
- "version": "3.6.0-beta.2",
3
+ "version": "3.6.0-beta.4",
4
4
  "description": "支付宝小程序平台插件",
5
5
  "author": "Chen-jj",
6
6
  "homepage": "https://github.com/nervjs/taro/tree/master/packages/taro-alipay#readme",
@@ -23,9 +23,9 @@
23
23
  "url": "https://github.com/NervJS/taro/issues"
24
24
  },
25
25
  "dependencies": {
26
- "@tarojs/components": "3.6.0-beta.2",
27
- "@tarojs/service": "3.6.0-beta.2",
28
- "@tarojs/shared": "3.6.0-beta.2"
26
+ "@tarojs/components": "3.6.0-beta.4",
27
+ "@tarojs/service": "3.6.0-beta.4",
28
+ "@tarojs/shared": "3.6.0-beta.4"
29
29
  },
30
30
  "scripts": {
31
31
  "build": "rollup -c",
@@ -0,0 +1,33 @@
1
+ import '@tarojs/components/types/Input'
2
+ import '@tarojs/components/types/Textarea'
3
+ import '@tarojs/components/types/Video'
4
+
5
+ declare module '@tarojs/components/types/input' {
6
+ interface InputProps {
7
+ /** 使用原生键盘
8
+ * @default true
9
+ * @supported alipay
10
+ */
11
+ enableNative?: boolean
12
+ }
13
+ }
14
+
15
+ declare module '@tarojs/components/types/textarea' {
16
+ interface TextareaProps {
17
+ /** 使用原生键盘
18
+ * @default false
19
+ * @supported alipay
20
+ */
21
+ enableNative?: boolean
22
+ }
23
+ }
24
+
25
+ declare module '@tarojs/components/types/video' {
26
+ interface VideoProps {
27
+ /** 使用原生
28
+ * @default true
29
+ * @supported alipay
30
+ */
31
+ enableNative?: boolean
32
+ }
33
+ }