@tarojs/plugin-platform-harmony-ets 4.0.0-beta.35 → 4.0.0-beta.37
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/dist/apis/index.ts +2 -1
- package/dist/components-harmony-ets/button.ets +30 -32
- package/dist/components-harmony-ets/checkbox.ets +52 -56
- package/dist/components-harmony-ets/form.ets +25 -27
- package/dist/components-harmony-ets/icon.ets +17 -19
- package/dist/components-harmony-ets/image.ets +10 -12
- package/dist/components-harmony-ets/input.ets +36 -38
- package/dist/components-harmony-ets/label.ets +36 -38
- package/dist/components-harmony-ets/movableArea.ets +55 -57
- package/dist/components-harmony-ets/movableView.ets +44 -46
- package/dist/components-harmony-ets/picker.ets +15 -17
- package/dist/components-harmony-ets/progress.ets +22 -24
- package/dist/components-harmony-ets/radio.ets +54 -58
- package/dist/components-harmony-ets/richText.ets +7 -9
- package/dist/components-harmony-ets/scrollView.ets +47 -49
- package/dist/components-harmony-ets/slider.ets +8 -10
- package/dist/components-harmony-ets/style.ets +103 -4
- package/dist/components-harmony-ets/swiper.ets +17 -19
- package/dist/components-harmony-ets/switch.ets +24 -26
- package/dist/components-harmony-ets/text.ets +80 -43
- package/dist/components-harmony-ets/textArea.ets +28 -30
- package/dist/components-harmony-ets/video.ets +19 -21
- package/dist/components-harmony-ets/view.ets +31 -33
- package/dist/components-harmony-ets/webView.ets +30 -32
- package/dist/runtime-ets/dom/document.ts +2 -0
- package/dist/runtime-ets/dom/element/element.ts +45 -1
- package/dist/runtime-ets/dom/element/index.ts +5 -2
- package/dist/runtime-ets/dom/element/normal.ts +4 -0
- package/dist/runtime-ets/dom/node.ts +11 -7
- package/dist/runtime-ets/dom/stylesheet/type.ts +1 -0
- package/dist/runtime-utils.js +5 -46
- package/dist/runtime-utils.js.map +1 -1
- package/dist/runtime.js +5 -46
- package/dist/runtime.js.map +1 -1
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/plugin-platform-harmony-ets",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.37",
|
|
4
4
|
"description": "OpenHarmony & 鸿蒙系统插件",
|
|
5
5
|
"author": "O2Team",
|
|
6
6
|
"homepage": "https://gitee.com/openharmony-sig/taro",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"webpack-sources": "^3.2.3",
|
|
28
|
-
"@tarojs/
|
|
29
|
-
"@tarojs/runner-utils": "4.0.0-beta.
|
|
30
|
-
"@tarojs/
|
|
31
|
-
"@tarojs/
|
|
32
|
-
"@tarojs/
|
|
33
|
-
"@tarojs/
|
|
34
|
-
"@tarojs/
|
|
28
|
+
"@tarojs/helper": "4.0.0-beta.37",
|
|
29
|
+
"@tarojs/runner-utils": "4.0.0-beta.37",
|
|
30
|
+
"@tarojs/service": "4.0.0-beta.37",
|
|
31
|
+
"@tarojs/components": "4.0.0-beta.37",
|
|
32
|
+
"@tarojs/shared": "4.0.0-beta.37",
|
|
33
|
+
"@tarojs/taro": "4.0.0-beta.37",
|
|
34
|
+
"@tarojs/runtime": "4.0.0-beta.37"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"solid-js": "^1.8.16",
|
|
45
45
|
"tslib": "^2.4.0",
|
|
46
46
|
"typescript": "^4.8.2",
|
|
47
|
-
"rollup-plugin-copy": "4.0.0-beta.
|
|
47
|
+
"rollup-plugin-copy": "4.0.0-beta.37"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"prebuild": "rimraf ./dist",
|