@mtna/web-form-angular 1.0.5-SNAPSHOT.1 → 1.0.6-SNAPSHOT.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.
@@ -1353,15 +1353,11 @@
1353
1353
  function getText(properties, key, i18n, languageId, fallback) {
1354
1354
  if (fallback === void 0) { fallback = ''; }
1355
1355
  var _a;
1356
- console.warn('getText', { properties: properties, key: key, i18n: i18n, languageId: languageId, fallback: fallback });
1357
1356
  if (coreTs.isPresent(properties[key]) && properties[key] !== '') {
1358
- console.warn('present');
1359
1357
  if (i18n) {
1360
- console.warn('i18n');
1361
1358
  return (_a = i2.getI18nString(properties[key], languageId, true)) !== null && _a !== void 0 ? _a : '';
1362
1359
  }
1363
1360
  else {
1364
- console.warn('not i18n');
1365
1361
  return properties[key];
1366
1362
  }
1367
1363
  }
@@ -11658,11 +11654,9 @@
11658
11654
  this.typeLoaded$ = this.store.select(templateDesignTypeLoaded);
11659
11655
  }
11660
11656
  TemplateFormFacade.prototype.getTemplateInstance = function (template) {
11661
- console.warn({ template: template });
11662
11657
  this.store.dispatch(getTemplateInstance({ template: template }));
11663
11658
  };
11664
11659
  TemplateFormFacade.prototype.getTemplateItemInstance = function (templateItem) {
11665
- console.warn({ templateItem: templateItem });
11666
11660
  this.store.dispatch(getTemplateItemInstance({ templateItem: templateItem }));
11667
11661
  };
11668
11662
  return TemplateFormFacade;
@@ -11948,7 +11942,7 @@
11948
11942
  this.templateFormFacade = templateFormFacade;
11949
11943
  this.contextSelected$ = this.designFacade.contextSelected$;
11950
11944
  this.focusedDesignId$ = this.designFacade.focusedDesignId$;
11951
- this.modifiedModel$ = this.designFacade.modifiedModel$.pipe(operators.tap(function (modifiedModel) { return console.warn('here'); }));
11945
+ this.modifiedModel$ = this.designFacade.modifiedModel$;
11952
11946
  this.previewLanguage$ = this.designFacade.previewLanguage$;
11953
11947
  this.loading$ = this.templateFormFacade.loading$;
11954
11948
  this.templateForm$ = this.templateFormFacade.templateForm$;