@tarojs/taro 4.1.12-beta.20 → 4.1.12-beta.22
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/taro",
|
|
3
|
-
"version": "4.1.12-beta.
|
|
3
|
+
"version": "4.1.12-beta.22",
|
|
4
4
|
"description": "Taro framework",
|
|
5
5
|
"author": "O2Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@types/postcss-url": "^10.0.4",
|
|
27
|
-
"@tarojs/api": "4.1.12-beta.
|
|
28
|
-
"@tarojs/runtime": "4.1.12-beta.
|
|
27
|
+
"@tarojs/api": "4.1.12-beta.22",
|
|
28
|
+
"@tarojs/runtime": "4.1.12-beta.22"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"html-webpack-plugin": "^5.6.0",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"webpack-chain": "^6.5.1",
|
|
34
34
|
"webpack-dev-server": "^4.15.2",
|
|
35
35
|
"rollup": "^3.29.4",
|
|
36
|
-
"@tarojs/components": "4.1.12-beta.
|
|
37
|
-
"@tarojs/
|
|
38
|
-
"@tarojs/
|
|
36
|
+
"@tarojs/components": "4.1.12-beta.22",
|
|
37
|
+
"@tarojs/shared": "4.1.12-beta.22",
|
|
38
|
+
"@tarojs/helper": "4.1.12-beta.22"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@types/react": "^18",
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"webpack": "^5",
|
|
47
47
|
"webpack-chain": "^6",
|
|
48
48
|
"webpack-dev-server": "^4",
|
|
49
|
-
"@tarojs/
|
|
50
|
-
"@tarojs/
|
|
51
|
-
"@tarojs/
|
|
49
|
+
"@tarojs/components": "4.1.12-beta.22",
|
|
50
|
+
"@tarojs/helper": "4.1.12-beta.22",
|
|
51
|
+
"@tarojs/shared": "4.1.12-beta.22"
|
|
52
52
|
},
|
|
53
53
|
"peerDependenciesMeta": {
|
|
54
54
|
"@types/react": {
|
|
@@ -11,6 +11,11 @@ declare module '../../index' {
|
|
|
11
11
|
interface Option {
|
|
12
12
|
/** 剪贴板的内容 */
|
|
13
13
|
data: string
|
|
14
|
+
/** 其他配置项 */
|
|
15
|
+
options?: {
|
|
16
|
+
/** 隐藏默认的 “内容已复制” message */
|
|
17
|
+
hideDefaultMessage: boolean
|
|
18
|
+
}
|
|
14
19
|
/** 接口调用结束的回调函数(调用成功、失败都会执行) */
|
|
15
20
|
complete?: (res: TaroGeneral.CallbackResult) => void
|
|
16
21
|
/** 接口调用失败的回调函数 */
|