@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260324093446 → 0.8.1-dev.20260324095329
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 -5
- package/dist/index.d.ts +3 -5
- package/dist/index.js +0 -1
- package/dist/index.mjs +0 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
|
|
3
3
|
interface ViewControlProps {
|
|
4
4
|
value?: unknown;
|
|
@@ -205,10 +205,8 @@ interface PageBodyRendererProps {
|
|
|
205
205
|
donotApplyContainerLargeClass?: boolean;
|
|
206
206
|
serviceClient?: ServiceClientInterface;
|
|
207
207
|
assetBaseUrl?: string;
|
|
208
|
-
widgetRegistry?: Record<string, React.ComponentType<
|
|
208
|
+
widgetRegistry?: Record<string, React.ComponentType<any>>;
|
|
209
209
|
}
|
|
210
210
|
declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
|
|
211
211
|
|
|
212
|
-
type
|
|
213
|
-
|
|
214
|
-
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes, type WidgetRegistryType };
|
|
212
|
+
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
|
|
3
3
|
interface ViewControlProps {
|
|
4
4
|
value?: unknown;
|
|
@@ -205,10 +205,8 @@ interface PageBodyRendererProps {
|
|
|
205
205
|
donotApplyContainerLargeClass?: boolean;
|
|
206
206
|
serviceClient?: ServiceClientInterface;
|
|
207
207
|
assetBaseUrl?: string;
|
|
208
|
-
widgetRegistry?: Record<string, React.ComponentType<
|
|
208
|
+
widgetRegistry?: Record<string, React.ComponentType<any>>;
|
|
209
209
|
}
|
|
210
210
|
declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
|
|
211
211
|
|
|
212
|
-
type
|
|
213
|
-
|
|
214
|
-
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes, type WidgetRegistryType };
|
|
212
|
+
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes };
|
package/dist/index.js
CHANGED
|
@@ -3155,7 +3155,6 @@ var WidgetNode = (props) => {
|
|
|
3155
3155
|
] });
|
|
3156
3156
|
}
|
|
3157
3157
|
return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_react43.Suspense, { fallback: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "container mt-2", children: "..." }), children: import_react43.default.createElement(SelectedWidget, {
|
|
3158
|
-
// @ts-expect-error custom code
|
|
3159
3158
|
params: getWidgetParameters(),
|
|
3160
3159
|
query: props.query,
|
|
3161
3160
|
session: props.session,
|
package/dist/index.mjs
CHANGED
|
@@ -3123,7 +3123,6 @@ var WidgetNode = (props) => {
|
|
|
3123
3123
|
] });
|
|
3124
3124
|
}
|
|
3125
3125
|
return /* @__PURE__ */ jsx56(Suspense, { fallback: /* @__PURE__ */ jsx56("div", { className: "container mt-2", children: "..." }), children: React42.createElement(SelectedWidget, {
|
|
3126
|
-
// @ts-expect-error custom code
|
|
3127
3126
|
params: getWidgetParameters(),
|
|
3128
3127
|
query: props.query,
|
|
3129
3128
|
session: props.session,
|
package/package.json
CHANGED