@acorex/platform 21.0.0-next.83 → 21.0.0-next.85

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.
@@ -22195,7 +22195,7 @@ class AXPImageWidgetColumnComponent extends AXPColumnWidgetComponent {
22195
22195
  }, ...(ngDevMode ? [{ debugName: "objectFit" }] : /* istanbul ignore next */ []));
22196
22196
  this.imageUrl = signal(null, ...(ngDevMode ? [{ debugName: "imageUrl" }] : /* istanbul ignore next */ []));
22197
22197
  effect(() => {
22198
- const value = this.options?.src;
22198
+ const value = this.rawValue;
22199
22199
  const currentUrl = this.imageUrl();
22200
22200
  if (currentUrl && currentUrl.startsWith('blob:')) {
22201
22201
  URL.revokeObjectURL(currentUrl);
@@ -22256,7 +22256,7 @@ class AXPImageWidgetColumnComponent extends AXPColumnWidgetComponent {
22256
22256
  }
22257
22257
  }
22258
22258
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AXPImageWidgetColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
22259
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: AXPImageWidgetColumnComponent, isStandalone: true, selector: "axp-image-widget-column", usesInheritance: true, ngImport: i0, template: `
22259
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: AXPImageWidgetColumnComponent, isStandalone: true, selector: "axp-image-widget-column", inputs: { rawValue: "rawValue", rowData: "rowData" }, usesInheritance: true, ngImport: i0, template: `
22260
22260
  <div class="ax-flex ax-items-center ax-gap-2">
22261
22261
  @if (imageUrl()) {
22262
22262
  <span> Image </span>
@@ -22291,6 +22291,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
22291
22291
  </div>
22292
22292
  `,
22293
22293
  changeDetection: ChangeDetectionStrategy.OnPush,
22294
+ inputs: ['rawValue', 'rowData']
22294
22295
  }]
22295
22296
  }], ctorParameters: () => [] });
22296
22297