@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260324074243 → 0.8.1-dev.20260324074915
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -208,8 +208,8 @@ interface PageBodyRendererProps {
|
|
|
208
208
|
}
|
|
209
209
|
declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
|
|
210
210
|
|
|
211
|
-
type WidgetRegistryType = Record<string, ComponentType<
|
|
211
|
+
type WidgetRegistryType = Record<string, ComponentType<unknown>>;
|
|
212
212
|
declare const registerWidgets: (widgets: WidgetRegistryType) => void;
|
|
213
|
-
declare const getWidget: (code: string) => ComponentType<
|
|
213
|
+
declare const getWidget: (code: string) => ComponentType<unknown>;
|
|
214
214
|
|
|
215
215
|
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes, getWidget, registerWidgets };
|
package/dist/index.d.ts
CHANGED
|
@@ -208,8 +208,8 @@ interface PageBodyRendererProps {
|
|
|
208
208
|
}
|
|
209
209
|
declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
|
|
210
210
|
|
|
211
|
-
type WidgetRegistryType = Record<string, ComponentType<
|
|
211
|
+
type WidgetRegistryType = Record<string, ComponentType<unknown>>;
|
|
212
212
|
declare const registerWidgets: (widgets: WidgetRegistryType) => void;
|
|
213
|
-
declare const getWidget: (code: string) => ComponentType<
|
|
213
|
+
declare const getWidget: (code: string) => ComponentType<unknown>;
|
|
214
214
|
|
|
215
215
|
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes, getWidget, registerWidgets };
|
package/package.json
CHANGED