@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260423093014 → 0.8.1-dev.20260423095249
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 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +267 -261
- package/dist/index.mjs +213 -207
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -288,11 +288,12 @@ interface DataListRendererProps {
|
|
|
288
288
|
apiBaseUrl: string;
|
|
289
289
|
session: any;
|
|
290
290
|
params: Record<string, any>;
|
|
291
|
+
tabs: any;
|
|
291
292
|
query: Record<string, any>;
|
|
292
293
|
path: string;
|
|
293
294
|
widgetProps?: any;
|
|
294
295
|
}
|
|
295
|
-
declare const DataListRenderer: ({ formDefinition, apiBaseUrl, session, params, query, path, widgetProps, }: DataListRendererProps) => react_jsx_runtime.JSX.Element;
|
|
296
|
+
declare const DataListRenderer: ({ formDefinition, apiBaseUrl, session, params, tabs, query, path, widgetProps, }: DataListRendererProps) => react_jsx_runtime.JSX.Element;
|
|
296
297
|
|
|
297
298
|
interface Session {
|
|
298
299
|
cid: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -288,11 +288,12 @@ interface DataListRendererProps {
|
|
|
288
288
|
apiBaseUrl: string;
|
|
289
289
|
session: any;
|
|
290
290
|
params: Record<string, any>;
|
|
291
|
+
tabs: any;
|
|
291
292
|
query: Record<string, any>;
|
|
292
293
|
path: string;
|
|
293
294
|
widgetProps?: any;
|
|
294
295
|
}
|
|
295
|
-
declare const DataListRenderer: ({ formDefinition, apiBaseUrl, session, params, query, path, widgetProps, }: DataListRendererProps) => react_jsx_runtime.JSX.Element;
|
|
296
|
+
declare const DataListRenderer: ({ formDefinition, apiBaseUrl, session, params, tabs, query, path, widgetProps, }: DataListRendererProps) => react_jsx_runtime.JSX.Element;
|
|
296
297
|
|
|
297
298
|
interface Session {
|
|
298
299
|
cid: string;
|