barsa-sap-ui 2.3.54 → 2.3.56
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.
|
@@ -8548,13 +8548,17 @@ class UiPdfViewerComponent extends DeviceInfoFieldBaseComponent {
|
|
|
8548
8548
|
}
|
|
8549
8549
|
_refreshButtons() {
|
|
8550
8550
|
this._refreshButtonsHelper(false);
|
|
8551
|
-
BarsaApi.Common.Async.Waterfall(
|
|
8552
|
-
|
|
8553
|
-
|
|
8554
|
-
|
|
8555
|
-
|
|
8556
|
-
|
|
8557
|
-
|
|
8551
|
+
// BarsaApi.Common.Async.Waterfall(
|
|
8552
|
+
// 'Common.File.IsAgentActive',
|
|
8553
|
+
// [
|
|
8554
|
+
// // Common.FileAgent.IsAgentActive.bind(Common.FileAgent),
|
|
8555
|
+
// BarsaApi.Common.AgentHelper && BarsaApi.Common.AgentHelper.Init.bind(BarsaApi.Common.AgentHelper)
|
|
8556
|
+
// ],
|
|
8557
|
+
// (_err, result) => {
|
|
8558
|
+
// const agentIsActive = result === 'OK';
|
|
8559
|
+
// this._refreshButtonsHelper(agentIsActive);
|
|
8560
|
+
// }
|
|
8561
|
+
// );
|
|
8558
8562
|
}
|
|
8559
8563
|
_refreshButtonsHelper(isAgentActive) {
|
|
8560
8564
|
this.disableOrReadonly$.subscribe((disableOrReadonly) => {
|
|
@@ -13241,7 +13245,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
13241
13245
|
class UiSimpleComboComponent extends FieldBaseComponent {
|
|
13242
13246
|
constructor() {
|
|
13243
13247
|
super(...arguments);
|
|
13244
|
-
this.displayFn = (obj) => (obj ? (obj.IsEmpty ? '' : obj.txt) : '');
|
|
13248
|
+
this.displayFn = (obj) => (obj ? this._bbbPipe.transform((obj.IsEmpty ? '' : obj.txt)) : '');
|
|
13245
13249
|
}
|
|
13246
13250
|
get MinSize() {
|
|
13247
13251
|
return { width: 0, height: 27 };
|