@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.
- package/concorde-core.bundle.js +121 -0
- package/concorde-core.es.js +121 -0
- package/core/components/functional/subscriber/subscriber.js +1 -1
- package/core/components/ui/form/select/select.js +0 -1
- package/core/components/ui/ui.d.ts +1 -0
- package/core/components/ui/ui.js +1 -0
- package/core/mixins/Subscriber.js +4 -1
- package/package.json +2 -1
package/core/components/ui/ui.js
CHANGED
|
@@ -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.
|
|
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
|
},
|