|
@@ -37,17 +37,29 @@ export const Component = createUIComp({
|
|
|
item1Comp.layout.position = "absolute";
|
|
|
}
|
|
|
|
|
|
- const item2Comp = store.compMap[children.item1]
|
|
|
+ const item2Comp = store.compMap[children.item2]
|
|
|
if ( !item2Comp.layout.transformMatrix) {
|
|
|
item2Comp.layout.transformMatrix = "matrix(1, 0, 0, 1, 153, 136)",
|
|
|
item2Comp.layout.position = "absolute";
|
|
|
}
|
|
|
|
|
|
- const item3Comp = store.compMap[children.item1]
|
|
|
+ const item3Comp = store.compMap[children.item3]
|
|
|
if ( !item3Comp.layout.transformMatrix) {
|
|
|
item3Comp.layout.transformMatrix = "matrix(1, 0, 0, 1, 269, 100)",
|
|
|
item3Comp.layout.position = "absolute";
|
|
|
}
|
|
|
+
|
|
|
+ const text1Comp = store.compMap[children.text1]
|
|
|
+ if ( !text1Comp.layout.transformMatrix) {
|
|
|
+ text1Comp.layout.transformMatrix = "matrix(1,0,0,1,0, 50)",
|
|
|
+ text1Comp.layout.position = "absolute";
|
|
|
+ }
|
|
|
+
|
|
|
+ const text2Comp = store.compMap[children.text2]
|
|
|
+ if ( !text2Comp.layout.transformMatrix) {
|
|
|
+ text2Comp.layout.transformMatrix = "matrix(1,0,0,1, 0, 248)",
|
|
|
+ text2Comp.layout.position = "absolute";
|
|
|
+ }
|
|
|
}
|
|
|
upgrade();
|
|
|
|