barsa-sap-ui 1.0.346 → 1.0.347

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.
@@ -6855,7 +6855,7 @@ class BarsaTinyemceComponent extends BaseComponent {
6855
6855
  input.click();
6856
6856
  }
6857
6857
  InsertBase64(base64, doReturn) {
6858
- this.editor.execCommand('mceInsertRawHTML', false, '<img src=data:image/png;base64,' + base64 + ' />');
6858
+ this.editor.execCommand('mceInsertContent', false, '<img src=data:image/png;base64,' + base64 + ' />');
6859
6859
  doReturn();
6860
6860
  }
6861
6861
  getValue() {
@@ -11140,7 +11140,12 @@ class UiRadioGroupComponent extends DeviceInfoFieldBaseComponent {
11140
11140
  ngOnInit() {
11141
11141
  super.ngOnInit();
11142
11142
  const parameters = this.parameters;
11143
- this.value = this.items.find((c) => c.inputValue === this.value);
11143
+ if (typeof this.value == 'object') {
11144
+ this.value = this.items.find((c) => c.inputValue === this.value.inputValue);
11145
+ }
11146
+ else {
11147
+ this.value = this.items.find((c) => c.inputValue === this.value);
11148
+ }
11144
11149
  this.onlyInMobileVertically = parameters?.OnlyInMobileVertically;
11145
11150
  this.isVertically = parameters?.IsVertically;
11146
11151
  }