@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.
- package/dist/elements/services/propertiesService/services/AbstractPolymerLikePropertiesService.js +1 -1
- package/dist/elements/services/propertiesService/services/CommonPropertiesService.js +1 -1
- package/dist/elements/services/propertiesService/services/ListPropertiesService.js +1 -1
- package/dist/elements/services/propertiesService/services/WebcomponentManifestPropertiesService.js +1 -1
- package/package.json +1 -1
package/dist/elements/services/propertiesService/services/AbstractPolymerLikePropertiesService.js
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
5
|
+
return true;
|
|
6
6
|
}
|
|
7
7
|
name = "list";
|
|
8
8
|
_propertys = new Map();
|
package/dist/elements/services/propertiesService/services/WebcomponentManifestPropertiesService.js
CHANGED
|
@@ -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
|
|
6
|
+
return true;
|
|
7
7
|
}
|
|
8
8
|
_name;
|
|
9
9
|
get name() { return this._name; }
|