@supersoniks/concorde 1.1.15 → 1.1.16

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.
@@ -20,7 +20,7 @@ let SonicSubscriber = class SonicSubscriber extends Subscriber(LitElement) {
20
20
  super.connectedCallback();
21
21
  }
22
22
  render() {
23
- return html ` <slot></slot> `;
23
+ return html `<slot></slot> `;
24
24
  }
25
25
  };
26
26
  SonicSubscriber = __decorate([
@@ -93,7 +93,6 @@ let Select = class Select extends FormElement(Subscriber(LitElement)) {
93
93
  this.requestUpdate();
94
94
  }
95
95
  render() {
96
- console.log('plop');
97
96
  const slotClasses = {
98
97
  "has-prefix": this.hasPrefix,
99
98
  "has-suffix": this.hasSuffix,
@@ -20,6 +20,7 @@ import "./menu/menu";
20
20
  import "./modal/modal";
21
21
  import "./alert/alert";
22
22
  import "./toast/toast";
23
+ import "./toast/message-subscriber";
23
24
  import "./tooltip/tooltip";
24
25
  import "./pop/pop";
25
26
  import "./divider/divider";
@@ -29,6 +29,7 @@ import "./menu/menu";
29
29
  import "./modal/modal";
30
30
  import "./alert/alert";
31
31
  import "./toast/toast";
32
+ import "./toast/message-subscriber";
32
33
  import "./tooltip/tooltip";
33
34
  import "./pop/pop";
34
35
  import "./divider/divider";
@@ -338,11 +338,11 @@ const Subscriber = (superClass) => {
338
338
  let dataPath = this.getAttribute("subDataProvider");
339
339
  this.dataProvider = publisherId + "/" + dataPath;
340
340
  pub = Objects.traverse(pub, dataPath.split("."));
341
+ mng.set(this.dataProvider, pub);
341
342
  this.publisher = pub;
342
343
  }
343
344
  this.publisher = pub;
344
345
  }
345
- // this.publisher = this.bindPublisher();
346
346
  if (this.publisher) {
347
347
  this.onAssign = () => {
348
348
  this.requestUpdate();
@@ -359,6 +359,9 @@ const Subscriber = (superClass) => {
359
359
  }
360
360
  }
361
361
  SubscriberElement.instanceCounter = 0;
362
+ __decorate([
363
+ property({ type: Boolean })
364
+ ], SubscriberElement.prototype, "noAutoFill", void 0);
362
365
  __decorate([
363
366
  property({ type: Object })
364
367
  ], SubscriberElement.prototype, "propertyMap", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supersoniks/concorde",
3
- "version": "1.1.15",
3
+ "version": "1.1.16",
4
4
  "customElements": "custom-elements.json",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -205,6 +205,7 @@
205
205
  "./utils/PublisherProxy.mjs": "./core/utils/PublisherProxy",
206
206
  "./core/utils/api": "./core/utils/api",
207
207
  "./utils/api": "./core/utils/api",
208
+ "./index-core": "./index-core",
208
209
  "./index-shared": "./index-shared",
209
210
  "./index": "./index"
210
211
  },