@tarojs/plugin-platform-harmony-ets 4.0.0-beta.17 → 4.0.0-beta.18

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.
Files changed (35) hide show
  1. package/dist/components-harmony-ets/button.ets +32 -29
  2. package/dist/components-harmony-ets/checkbox.ets +2 -2
  3. package/dist/components-harmony-ets/form.ets +28 -25
  4. package/dist/components-harmony-ets/icon.ets +18 -16
  5. package/dist/components-harmony-ets/image.ets +13 -11
  6. package/dist/components-harmony-ets/innerHtml.ets +1 -1
  7. package/dist/components-harmony-ets/input.ets +1 -1
  8. package/dist/components-harmony-ets/label.ets +39 -36
  9. package/dist/components-harmony-ets/movableArea.ets +1 -1
  10. package/dist/components-harmony-ets/movableView.ets +1 -1
  11. package/dist/components-harmony-ets/picker.ets +1 -1
  12. package/dist/components-harmony-ets/progress.ets +1 -1
  13. package/dist/components-harmony-ets/radio.ets +2 -2
  14. package/dist/components-harmony-ets/richText.ets +10 -31
  15. package/dist/components-harmony-ets/scrollView.ets +45 -43
  16. package/dist/components-harmony-ets/slider.ets +1 -1
  17. package/dist/components-harmony-ets/style.ets +30 -5
  18. package/dist/components-harmony-ets/swiper.ets +19 -17
  19. package/dist/components-harmony-ets/switch.ets +1 -1
  20. package/dist/components-harmony-ets/text.ets +11 -9
  21. package/dist/components-harmony-ets/textArea.ets +1 -1
  22. package/dist/components-harmony-ets/utils/index.ts +26 -0
  23. package/dist/components-harmony-ets/video.ets +3 -1
  24. package/dist/components-harmony-ets/view.ets +29 -27
  25. package/dist/components-harmony-ets/webView.ets +34 -33
  26. package/dist/index.d.ts +149 -0
  27. package/dist/index.js +5 -0
  28. package/dist/index.js.map +1 -1
  29. package/dist/runtime-ets/dom/cssNesting.ts +16 -37
  30. package/dist/runtime-ets/dom/stylesheet/type.ts +7 -2
  31. package/dist/runtime-ets/dom/stylesheet/util.ts +17 -10
  32. package/dist/runtime-utils.d.ts +825 -0
  33. package/dist/runtime.d.ts +1 -0
  34. package/index.js +3 -1
  35. package/package.json +8 -8
@@ -0,0 +1 @@
1
+ export {};
package/index.js CHANGED
@@ -1,4 +1,6 @@
1
1
  module.exports = require('./dist/index.js').default
2
2
 
3
3
  module.exports.default = module.exports
4
- module.exports.HarmonyOS = require('./dist/index.js').HarmonyOS
4
+ module.exports.HarmonyOS = require('./dist/index.js').HarmonyOS_ArkTS
5
+ module.exports.HarmonyOS_ArkTS = require('./dist/index.js').HarmonyOS_ArkTS
6
+ module.exports.HarmonyOS_JSUI = require('./dist/index.js').HarmonyOS_JSUI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/plugin-platform-harmony-ets",
3
- "version": "4.0.0-beta.17",
3
+ "version": "4.0.0-beta.18",
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/helper": "4.0.0-beta.17",
29
- "@tarojs/runner-utils": "4.0.0-beta.17",
30
- "@tarojs/components": "4.0.0-beta.17",
31
- "@tarojs/runtime": "4.0.0-beta.17",
32
- "@tarojs/service": "4.0.0-beta.17",
33
- "@tarojs/shared": "4.0.0-beta.17",
34
- "@tarojs/taro": "4.0.0-beta.17"
28
+ "@tarojs/components": "4.0.0-beta.18",
29
+ "@tarojs/runner-utils": "4.0.0-beta.18",
30
+ "@tarojs/runtime": "4.0.0-beta.18",
31
+ "@tarojs/service": "4.0.0-beta.18",
32
+ "@tarojs/taro": "4.0.0-beta.18",
33
+ "@tarojs/helper": "4.0.0-beta.18",
34
+ "@tarojs/shared": "4.0.0-beta.18"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@rollup/plugin-commonjs": "^25.0.7",