@veloceapps/sdk 4.0.15 → 4.0.17
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/bundles/veloce-sdk-cms.umd.js +2 -2
- package/bundles/veloce-sdk-cms.umd.js.map +1 -1
- package/bundles/veloce-sdk.umd.js +155 -158
- package/bundles/veloce-sdk.umd.js.map +1 -1
- package/cms/types/configuration.types.d.ts +1 -1
- package/esm2015/cms/plugins/configuration.plugin.js +3 -3
- package/esm2015/cms/types/configuration.types.js +1 -1
- package/esm2015/src/pages/debug/debug.component.js +12 -16
- package/esm2015/src/utils/flow.utils.js +4 -2
- package/fesm2015/veloce-sdk-cms.js +2 -2
- package/fesm2015/veloce-sdk-cms.js.map +1 -1
- package/fesm2015/veloce-sdk.js +62 -65
- package/fesm2015/veloce-sdk.js.map +1 -1
- package/package.json +1 -1
- package/src/pages/debug/debug.component.d.ts +2 -4
- package/src/utils/flow.utils.d.ts +1 -1
@@ -1333,8 +1333,8 @@
|
|
1333
1333
|
ConfigurationPlugin.prototype.registerPort = function (name) {
|
1334
1334
|
var _this = this;
|
1335
1335
|
var model$ = this.host.model$;
|
1336
|
-
var portItems$ = model$.pipe(rxjs.map(function (model) { return model.lineItems.filter(function (li) { return li.port === _this.host.boundName; }); }));
|
1337
|
-
var portDomain$ = model$.pipe(rxjs.map(function (model) { return model.portDomains[_this.host.boundName]; }));
|
1336
|
+
var portItems$ = model$.pipe(rxjs.map(function (model) { var _a; return (_a = model === null || model === void 0 ? void 0 : model.lineItems.filter(function (li) { return li.port === _this.host.boundName; })) !== null && _a !== void 0 ? _a : []; }));
|
1337
|
+
var portDomain$ = model$.pipe(rxjs.map(function (model) { return model === null || model === void 0 ? void 0 : model.portDomains[_this.host.boundName]; }));
|
1338
1338
|
var add = function (type, attributes) {
|
1339
1339
|
if (attributes === void 0) { attributes = []; }
|
1340
1340
|
if (!_this.modelSnapshot) {
|