@node-projects/web-component-designer 0.0.143 → 0.0.144

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.
@@ -3,7 +3,7 @@ import { AbstractPropertiesService } from "./AbstractPropertiesService";
3
3
  import { PropertyType } from '../PropertyType';
4
4
  export class AbstractPolymerLikePropertiesService extends AbstractPropertiesService {
5
5
  listNeedsRefresh(designItem) {
6
- return false;
6
+ return true;
7
7
  }
8
8
  getProperties(designItem) {
9
9
  if (!this.isHandledElement(designItem))
@@ -2,7 +2,7 @@ import { PropertyType } from "../PropertyType";
2
2
  import { AbstractPropertiesService } from "./AbstractPropertiesService";
3
3
  export class CommonPropertiesService extends AbstractPropertiesService {
4
4
  listNeedsRefresh(designItem) {
5
- return true;
5
+ return false;
6
6
  }
7
7
  //@ts-ignore
8
8
  commonProperties = [
@@ -2,7 +2,7 @@ import { AbstractPropertiesService } from './AbstractPropertiesService';
2
2
  import { PropertyType } from '../PropertyType';
3
3
  export class ListPropertiesService extends AbstractPropertiesService {
4
4
  listNeedsRefresh(designItem) {
5
- return false;
5
+ return true;
6
6
  }
7
7
  name = "list";
8
8
  _propertys = new Map();
@@ -3,7 +3,7 @@ import { PropertyType } from "../PropertyType.js";
3
3
  import { AbstractPropertiesService } from "./AbstractPropertiesService.js";
4
4
  export class WebcomponentManifestPropertiesService extends AbstractPropertiesService {
5
5
  listNeedsRefresh(designItem) {
6
- return false;
6
+ return true;
7
7
  }
8
8
  _name;
9
9
  get name() { return this._name; }
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.0.143",
4
+ "version": "0.0.144",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "author": "",