@node-projects/web-component-designer 0.1.32 → 0.1.33

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.
@@ -168,7 +168,7 @@ export class DesignItem {
168
168
  for (const e of this._childArray) {
169
169
  yield e;
170
170
  if (recursive) {
171
- for (const c of e.children()) {
171
+ for (const c of e.children(recursive)) {
172
172
  yield c;
173
173
  }
174
174
  }
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.32",
4
+ "version": "0.1.33",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "author": "jochen.kuehner@gmx.de",