@tarojs/plugin-platform-harmony-ets 4.0.0-beta.93 → 4.0.0-beta.95

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 (40) hide show
  1. package/dist/components-harmony-ets/button.ets +3 -3
  2. package/dist/components-harmony-ets/checkbox.ets +5 -5
  3. package/dist/components-harmony-ets/form.ets +4 -4
  4. package/dist/components-harmony-ets/icon.ets +1 -1
  5. package/dist/components-harmony-ets/image.ets +1 -1
  6. package/dist/components-harmony-ets/input.ets +1 -1
  7. package/dist/components-harmony-ets/label.ets +4 -4
  8. package/dist/components-harmony-ets/listView.ets +2 -2
  9. package/dist/components-harmony-ets/movableArea.ets +4 -4
  10. package/dist/components-harmony-ets/movableView.ets +4 -4
  11. package/dist/components-harmony-ets/navigationBar.ets +2 -2
  12. package/dist/components-harmony-ets/pageMeta.ets +2 -2
  13. package/dist/components-harmony-ets/picker.ets +3 -3
  14. package/dist/components-harmony-ets/progress.ets +1 -1
  15. package/dist/components-harmony-ets/pseudo.ets +2 -2
  16. package/dist/components-harmony-ets/radio.ets +5 -5
  17. package/dist/components-harmony-ets/richText.ets +1 -1
  18. package/dist/components-harmony-ets/scrollList.ets +11 -2
  19. package/dist/components-harmony-ets/scrollView.ets +3 -3
  20. package/dist/components-harmony-ets/slider.ets +1 -1
  21. package/dist/components-harmony-ets/stickySection.ets +3 -3
  22. package/dist/components-harmony-ets/swiper.ets +2 -2
  23. package/dist/components-harmony-ets/switch.ets +1 -1
  24. package/dist/components-harmony-ets/text.ets +1 -1
  25. package/dist/components-harmony-ets/textArea.ets +1 -1
  26. package/dist/components-harmony-ets/video.ets +1 -1
  27. package/dist/components-harmony-ets/view.ets +4 -4
  28. package/dist/components-harmony-ets/webView.ets +1 -1
  29. package/dist/index.d.ts +1 -1
  30. package/dist/index.js +14 -15
  31. package/dist/index.js.map +1 -1
  32. package/dist/runtime-ets/dom/element/element.ts +2 -2
  33. package/dist/runtime-ets/dom/element/index.ts +2 -2
  34. package/dist/runtime-framework/solid/app.ts +1 -1
  35. package/dist/runtime-utils.js +4 -4
  36. package/dist/runtime-utils.js.map +1 -1
  37. package/dist/runtime.js +4 -4
  38. package/dist/runtime.js.map +1 -1
  39. package/package.json +13 -14
  40. package/types/runtime.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/plugin-platform-harmony-ets",
3
- "version": "4.0.0-beta.93",
3
+ "version": "4.0.0-beta.95",
4
4
  "description": "OpenHarmony & 鸿蒙系统插件",
5
5
  "author": "O2Team",
6
6
  "homepage": "https://gitee.com/openharmony-sig/taro",
@@ -25,28 +25,27 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "webpack-sources": "^3.2.3",
28
- "@tarojs/components": "4.0.0-beta.93",
29
- "@tarojs/runtime": "4.0.0-beta.93",
30
- "@tarojs/service": "4.0.0-beta.93",
31
- "@tarojs/helper": "4.0.0-beta.93",
32
- "@tarojs/shared": "4.0.0-beta.93",
33
- "@tarojs/runner-utils": "4.0.0-beta.93",
34
- "@tarojs/taro": "4.0.0-beta.93"
28
+ "@babel/preset-react": "^7.24.1",
29
+ "webpack": "5.91.0",
30
+ "@tarojs/helper": "4.0.0-beta.95",
31
+ "@tarojs/components": "4.0.0-beta.95",
32
+ "@tarojs/runner-utils": "4.0.0-beta.95",
33
+ "@tarojs/service": "4.0.0-beta.95",
34
+ "@tarojs/runtime": "4.0.0-beta.95",
35
+ "@tarojs/shared": "4.0.0-beta.95",
36
+ "@tarojs/taro": "4.0.0-beta.95"
35
37
  },
36
38
  "devDependencies": {
37
- "@rollup/plugin-commonjs": "^25.0.7",
38
- "@rollup/plugin-node-resolve": "^15.2.3",
39
- "@rollup/plugin-typescript": "^11.1.0",
40
39
  "fast-glob": "^3.3.1",
41
- "rollup": "^3.8.1",
40
+ "rollup": "^3.29.4",
42
41
  "rollup-plugin-node-externals": "^5.0.0",
43
42
  "rollup-plugin-ts": "^3.0.2",
44
43
  "solid-js": "^1.8.16",
45
44
  "tslib": "^2.4.0",
46
- "typescript": "^4.8.2",
47
- "rollup-plugin-copy": "4.0.0-beta.93"
45
+ "rollup-plugin-copy": "4.0.0-beta.95"
48
46
  },
49
47
  "scripts": {
48
+ "prod": "pnpm run build",
50
49
  "prebuild": "rimraf ./dist",
51
50
  "build": "pnpm run rollup",
52
51
  "dev": "pnpm run rollup -w",
@@ -1,5 +1,5 @@
1
1
  declare module '@tarojs/runtime' {
2
- export * from '@tarojs/runtime/dist/runtime.esm'
2
+ export * from '@tarojs/runtime/dist/index'
3
3
 
4
4
  export function convertNumber2VP(value: number): string
5
5