@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260320043430 → 0.8.1-dev.20260320070922
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +656 -257
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +651 -252
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -200,6 +200,9 @@ interface PageBodyRendererProps {
|
|
|
200
200
|
host: string;
|
|
201
201
|
path: string;
|
|
202
202
|
apiBaseUrl: string;
|
|
203
|
+
breadcrumb?: string;
|
|
204
|
+
donotApplyContainerClass?: boolean;
|
|
205
|
+
donotApplyContainerLargeClass?: boolean;
|
|
203
206
|
widgetRegistry?: Record<string, React.ComponentType<any>>;
|
|
204
207
|
}
|
|
205
208
|
declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
|
package/dist/index.d.ts
CHANGED
|
@@ -200,6 +200,9 @@ interface PageBodyRendererProps {
|
|
|
200
200
|
host: string;
|
|
201
201
|
path: string;
|
|
202
202
|
apiBaseUrl: string;
|
|
203
|
+
breadcrumb?: string;
|
|
204
|
+
donotApplyContainerClass?: boolean;
|
|
205
|
+
donotApplyContainerLargeClass?: boolean;
|
|
203
206
|
widgetRegistry?: Record<string, React.ComponentType<any>>;
|
|
204
207
|
}
|
|
205
208
|
declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
|