@abi-software/scaffoldvuer 0.3.0 → 0.3.1

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.
@@ -44,6 +44,9 @@
44
44
  @change="setColour(data, $event)"
45
45
  />
46
46
  <span>{{ node.label }}</span>
47
+ <span v-if="data.isTextureSlides" class="node-options">
48
+ (Texture)
49
+ </span>
47
50
  </span>
48
51
  </el-tree>
49
52
  </div>
@@ -205,6 +208,7 @@ export default {
205
208
  id: region.uuid + "/" + zincObject.uuid,
206
209
  isPrimitives: true,
207
210
  regionPath: zincObject.region.getFullPath(),
211
+ isTextureSlides: zincObject.isTextureSlides ? true : false,
208
212
  };
209
213
  this.addTreeItem(regionData.children, child);
210
214
  }
@@ -682,6 +686,10 @@ export default {
682
686
  }
683
687
  }
684
688
 
689
+ .node-options {
690
+ text-align: right;
691
+ }
692
+
685
693
  .drawer-button.open i {
686
694
  transform: rotate(0deg) scaleY(2.5);
687
695
  }
@@ -144,9 +144,9 @@ RendererModule.prototype.objectsToZincObjects = function(objects) {
144
144
  let glyphset = zincObject;
145
145
  if (zincObject.isGlyph)
146
146
  glyphset = zincObject.getGlyphset();
147
- zincObjects. push(glyphset);
147
+ zincObjects.push(glyphset);
148
148
  } else {
149
- zincObjects. push(zincObject);
149
+ zincObjects.push(zincObject);
150
150
  }
151
151
  }
152
152
  }