@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260323045408 → 0.8.1-dev.20260323060538

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/dist/index.d.mts CHANGED
@@ -204,6 +204,8 @@ interface PageBodyRendererProps {
204
204
  donotApplyContainerClass?: boolean;
205
205
  donotApplyContainerLargeClass?: boolean;
206
206
  widgetRegistry?: Record<string, React.ComponentType<any>>;
207
+ serviceClient?: ServiceClientInterface;
208
+ resolveAssetUrl?: (assetUrl: string) => string | undefined;
207
209
  }
208
210
  declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
209
211
 
package/dist/index.d.ts CHANGED
@@ -204,6 +204,8 @@ interface PageBodyRendererProps {
204
204
  donotApplyContainerClass?: boolean;
205
205
  donotApplyContainerLargeClass?: boolean;
206
206
  widgetRegistry?: Record<string, React.ComponentType<any>>;
207
+ serviceClient?: ServiceClientInterface;
208
+ resolveAssetUrl?: (assetUrl: string) => string | undefined;
207
209
  }
208
210
  declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
209
211