@node-projects/web-component-designer 0.1.33 → 0.1.34
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.
|
@@ -21,6 +21,10 @@ export class AbstractPropertiesService {
|
|
|
21
21
|
setValue(designItems, property, value) {
|
|
22
22
|
const cg = designItems[0].openGroup("property changed: " + property.name + " to " + value);
|
|
23
23
|
for (let d of designItems) {
|
|
24
|
+
if (!this.isHandledElement(d))
|
|
25
|
+
continue;
|
|
26
|
+
if (!this.getProperty(d, property.name))
|
|
27
|
+
continue;
|
|
24
28
|
if (property.propertyType == PropertyType.cssValue) {
|
|
25
29
|
d.updateStyleInSheetOrLocal(property.name, value);
|
|
26
30
|
//unkown css property names do not trigger the mutation observer of property grid,
|