@node-projects/web-component-designer 0.1.1 → 0.1.2

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.
@@ -171,7 +171,7 @@ export class DesignerTabControl extends BaseCustomWebComponentLazyAppend {
171
171
  }
172
172
  }
173
173
  get selectedIndex() {
174
- return this._selectedIndex;
174
+ return this._firstConnect ? -1 : this._selectedIndex;
175
175
  }
176
176
  set selectedIndex(value) {
177
177
  let old = this._selectedIndex;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "description": "A UI designer for Polymer apps",
3
3
  "name": "@node-projects/web-component-designer",
4
- "version": "0.1.1",
4
+ "version": "0.1.2",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "author": "jochen.kuehner@gmx.de",