@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260323130039 → 0.8.1-dev.20260324072940

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
@@ -1,12 +1,12 @@
1
1
  import React from 'react';
2
2
 
3
3
  interface ViewControlProps {
4
- value?: any;
5
- controlType: string;
4
+ value?: unknown;
5
+ controlType?: string;
6
6
  format?: string;
7
7
  width?: string;
8
8
  apiBaseUrl?: string;
9
- customProps?: Record<string, any>;
9
+ customProps?: Record<string, unknown>;
10
10
  }
11
11
 
12
12
  declare const ViewControl: React.ForwardRefExoticComponent<ViewControlProps & React.RefAttributes<HTMLDivElement>>;
@@ -191,7 +191,7 @@ interface Session {
191
191
  interface PageBodyRendererProps {
192
192
  rawBody?: string;
193
193
  routeParameters?: {
194
- [key: string]: any;
194
+ [key: string]: unknown;
195
195
  };
196
196
  query?: {
197
197
  [key: string]: string;
@@ -203,10 +203,8 @@ interface PageBodyRendererProps {
203
203
  breadcrumb?: string;
204
204
  donotApplyContainerClass?: boolean;
205
205
  donotApplyContainerLargeClass?: boolean;
206
- widgetRegistry?: Record<string, React.ComponentType<any>>;
207
206
  serviceClient?: ServiceClientInterface;
208
207
  assetBaseUrl?: string;
209
- dataMap?: Record<string, any>;
210
208
  }
211
209
  declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
212
210
 
package/dist/index.d.ts CHANGED
@@ -1,12 +1,12 @@
1
1
  import React from 'react';
2
2
 
3
3
  interface ViewControlProps {
4
- value?: any;
5
- controlType: string;
4
+ value?: unknown;
5
+ controlType?: string;
6
6
  format?: string;
7
7
  width?: string;
8
8
  apiBaseUrl?: string;
9
- customProps?: Record<string, any>;
9
+ customProps?: Record<string, unknown>;
10
10
  }
11
11
 
12
12
  declare const ViewControl: React.ForwardRefExoticComponent<ViewControlProps & React.RefAttributes<HTMLDivElement>>;
@@ -191,7 +191,7 @@ interface Session {
191
191
  interface PageBodyRendererProps {
192
192
  rawBody?: string;
193
193
  routeParameters?: {
194
- [key: string]: any;
194
+ [key: string]: unknown;
195
195
  };
196
196
  query?: {
197
197
  [key: string]: string;
@@ -203,10 +203,8 @@ interface PageBodyRendererProps {
203
203
  breadcrumb?: string;
204
204
  donotApplyContainerClass?: boolean;
205
205
  donotApplyContainerLargeClass?: boolean;
206
- widgetRegistry?: Record<string, React.ComponentType<any>>;
207
206
  serviceClient?: ServiceClientInterface;
208
207
  assetBaseUrl?: string;
209
- dataMap?: Record<string, any>;
210
208
  }
211
209
  declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
212
210