@supersoniks/concorde 1.1.0 → 1.1.1

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.
@@ -68,6 +68,9 @@ export class PublisherProxy {
68
68
  }
69
69
  _publishTemplateFilling_(key, value) {
70
70
  this._templateFillListeners_.forEach((handler) => {
71
+ let desc = Object.getOwnPropertyDescriptor(handler, key);
72
+ if (desc && !desc.set)
73
+ return;
71
74
  if (typeof handler[key] != "undefined" && handler[key] !== value) {
72
75
  handler[key] = value;
73
76
  }
@@ -113,6 +116,9 @@ export class PublisherProxy {
113
116
  this._templateFillListeners_.add(handler);
114
117
  for (var z in this._value_) {
115
118
  const value = this._value_[z];
119
+ let desc = Object.getOwnPropertyDescriptor(handler, z);
120
+ if (desc && !desc.set)
121
+ continue;
116
122
  if (typeof handler[z] != "undefined" && handler[z] !== value) {
117
123
  handler[z] = value;
118
124
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supersoniks/concorde",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "customElements": "custom-elements.json",
5
5
  "license": "MIT",
6
6
  "publishConfig": {