@tarojs/plugin-platform-harmony-ets 4.0.0-beta.68 → 4.0.0-beta.69

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.
@@ -61,7 +61,7 @@ export default struct TaroText {
61
61
  if (this.node.childNodes.length > 1 || ((this.node.childNodes[0] && this.node.childNodes[0] as TaroElement)?.nodeType === NodeType.ELEMENT_NODE)) {
62
62
  ForEach(this.node.childNodes, (item: TaroElement) => {
63
63
  createTextChildNode(item)
64
- }, (item: TaroElement) => item._nid)
64
+ }, (item: TaroElement) => `${item._nid}${this.node._updateTrigger}`)
65
65
  }
66
66
  }
67
67
  .onClick(shouldBindEvent((e: ClickEvent) => eventHandler(e, 'click', this.node), this.node, ['click']))
@@ -130,28 +130,6 @@ function createTextChildNode (item: TaroElement) {
130
130
  }
131
131
  }
132
132
 
133
- // function getSpanVerticalAlign (verticalAlign?: Alignment) {
134
- // switch (verticalAlign) {
135
- // case Alignment.Start:
136
- // case Alignment.TopStart:
137
- // case Alignment.Top:
138
- // case Alignment.TopEnd: {
139
- // return ImageSpanAlignment.TOP
140
- // }
141
- // case Alignment.End:
142
- // case Alignment.BottomStart:
143
- // case Alignment.Bottom:
144
- // case Alignment.BottomEnd: {
145
- // return ImageSpanAlignment.BOTTOM
146
- // }
147
- // case Alignment.Center: {
148
- // return ImageSpanAlignment.CENTER
149
- // }
150
- // }
151
- // return ImageSpanAlignment.BASELINE
152
- // }
153
-
154
-
155
133
  class SpanStyleModify implements AttributeModifier<SpanAttribute> {
156
134
  node: TaroTextElement | null = null
157
135
  style: HarmonyStyle | null = null
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/plugin-platform-harmony-ets",
3
- "version": "4.0.0-beta.68",
3
+ "version": "4.0.0-beta.69",
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/components": "4.0.0-beta.68",
29
- "@tarojs/runner-utils": "4.0.0-beta.68",
30
- "@tarojs/runtime": "4.0.0-beta.68",
31
- "@tarojs/service": "4.0.0-beta.68",
32
- "@tarojs/shared": "4.0.0-beta.68",
33
- "@tarojs/helper": "4.0.0-beta.68",
34
- "@tarojs/taro": "4.0.0-beta.68"
28
+ "@tarojs/helper": "4.0.0-beta.69",
29
+ "@tarojs/runtime": "4.0.0-beta.69",
30
+ "@tarojs/runner-utils": "4.0.0-beta.69",
31
+ "@tarojs/components": "4.0.0-beta.69",
32
+ "@tarojs/shared": "4.0.0-beta.69",
33
+ "@tarojs/service": "4.0.0-beta.69",
34
+ "@tarojs/taro": "4.0.0-beta.69"
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.68"
47
+ "rollup-plugin-copy": "4.0.0-beta.69"
48
48
  },
49
49
  "scripts": {
50
50
  "prebuild": "rimraf ./dist",