@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260326104921 → 0.8.1-dev.20260326110644
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 +17 -32
- package/dist/index.d.ts +17 -32
- package/dist/index.js +1242 -3408
- package/dist/index.mjs +1255 -3109
- package/package.json +1 -7
- package/dist/CopyButton-XONTQQW7.mjs +0 -55
- package/dist/HlsPlayer-FFEIK6FG.mjs +0 -7
- package/dist/IframeClient-J22NMEVY.mjs +0 -96
- package/dist/chunk-CVVLFQ4J.mjs +0 -131
package/dist/index.d.mts
CHANGED
|
@@ -1,37 +1,28 @@
|
|
|
1
|
-
import React
|
|
2
|
-
|
|
3
|
-
type WidgetRegistryType = Record<string, ComponentType<any>>;
|
|
4
|
-
declare function registerWidgets(widgets: WidgetRegistryType): void;
|
|
5
|
-
declare function getWidget(code: string): ComponentType<any> | undefined;
|
|
1
|
+
import React from 'react';
|
|
6
2
|
|
|
7
3
|
interface ViewControlProps {
|
|
8
4
|
value?: any;
|
|
9
|
-
controlType
|
|
5
|
+
controlType: string;
|
|
10
6
|
format?: string;
|
|
11
7
|
width?: string;
|
|
12
8
|
apiBaseUrl?: string;
|
|
13
|
-
customProps?: Record<string,
|
|
9
|
+
customProps?: Record<string, any>;
|
|
14
10
|
}
|
|
15
11
|
|
|
16
|
-
declare const ViewControl: React.
|
|
12
|
+
declare const ViewControl: React.ForwardRefExoticComponent<ViewControlProps & React.RefAttributes<HTMLDivElement>>;
|
|
17
13
|
|
|
18
14
|
declare const ViewControlTypes: {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
statusBg: string;
|
|
31
|
-
progressIndicator: string;
|
|
32
|
-
timeUntilStarts: string;
|
|
33
|
-
timeUntilStartsStyled: string;
|
|
34
|
-
aiGeneratedSummary: string;
|
|
15
|
+
lineTextView: string;
|
|
16
|
+
emailTextView: string;
|
|
17
|
+
multilineTextBulletsView: string;
|
|
18
|
+
moneyView: string;
|
|
19
|
+
numberView: string;
|
|
20
|
+
dateView: string;
|
|
21
|
+
statusView: string;
|
|
22
|
+
statusBgView: string;
|
|
23
|
+
multilinetextView: string;
|
|
24
|
+
booleanView: string;
|
|
25
|
+
text: string;
|
|
35
26
|
};
|
|
36
27
|
|
|
37
28
|
interface InputCallbackValues<T> {
|
|
@@ -200,7 +191,7 @@ interface Session {
|
|
|
200
191
|
interface PageBodyRendererProps {
|
|
201
192
|
rawBody?: string;
|
|
202
193
|
routeParameters?: {
|
|
203
|
-
[key: string]:
|
|
194
|
+
[key: string]: any;
|
|
204
195
|
};
|
|
205
196
|
query?: {
|
|
206
197
|
[key: string]: string;
|
|
@@ -209,13 +200,7 @@ interface PageBodyRendererProps {
|
|
|
209
200
|
host: string;
|
|
210
201
|
path: string;
|
|
211
202
|
apiBaseUrl: string;
|
|
212
|
-
breadcrumb?: string;
|
|
213
|
-
donotApplyContainerClass?: boolean;
|
|
214
|
-
donotApplyContainerLargeClass?: boolean;
|
|
215
|
-
serviceClient?: ServiceClientInterface;
|
|
216
|
-
assetBaseUrl?: string;
|
|
217
|
-
device?: string;
|
|
218
203
|
}
|
|
219
204
|
declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
|
|
220
205
|
|
|
221
|
-
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes
|
|
206
|
+
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,37 +1,28 @@
|
|
|
1
|
-
import React
|
|
2
|
-
|
|
3
|
-
type WidgetRegistryType = Record<string, ComponentType<any>>;
|
|
4
|
-
declare function registerWidgets(widgets: WidgetRegistryType): void;
|
|
5
|
-
declare function getWidget(code: string): ComponentType<any> | undefined;
|
|
1
|
+
import React from 'react';
|
|
6
2
|
|
|
7
3
|
interface ViewControlProps {
|
|
8
4
|
value?: any;
|
|
9
|
-
controlType
|
|
5
|
+
controlType: string;
|
|
10
6
|
format?: string;
|
|
11
7
|
width?: string;
|
|
12
8
|
apiBaseUrl?: string;
|
|
13
|
-
customProps?: Record<string,
|
|
9
|
+
customProps?: Record<string, any>;
|
|
14
10
|
}
|
|
15
11
|
|
|
16
|
-
declare const ViewControl: React.
|
|
12
|
+
declare const ViewControl: React.ForwardRefExoticComponent<ViewControlProps & React.RefAttributes<HTMLDivElement>>;
|
|
17
13
|
|
|
18
14
|
declare const ViewControlTypes: {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
statusBg: string;
|
|
31
|
-
progressIndicator: string;
|
|
32
|
-
timeUntilStarts: string;
|
|
33
|
-
timeUntilStartsStyled: string;
|
|
34
|
-
aiGeneratedSummary: string;
|
|
15
|
+
lineTextView: string;
|
|
16
|
+
emailTextView: string;
|
|
17
|
+
multilineTextBulletsView: string;
|
|
18
|
+
moneyView: string;
|
|
19
|
+
numberView: string;
|
|
20
|
+
dateView: string;
|
|
21
|
+
statusView: string;
|
|
22
|
+
statusBgView: string;
|
|
23
|
+
multilinetextView: string;
|
|
24
|
+
booleanView: string;
|
|
25
|
+
text: string;
|
|
35
26
|
};
|
|
36
27
|
|
|
37
28
|
interface InputCallbackValues<T> {
|
|
@@ -200,7 +191,7 @@ interface Session {
|
|
|
200
191
|
interface PageBodyRendererProps {
|
|
201
192
|
rawBody?: string;
|
|
202
193
|
routeParameters?: {
|
|
203
|
-
[key: string]:
|
|
194
|
+
[key: string]: any;
|
|
204
195
|
};
|
|
205
196
|
query?: {
|
|
206
197
|
[key: string]: string;
|
|
@@ -209,13 +200,7 @@ interface PageBodyRendererProps {
|
|
|
209
200
|
host: string;
|
|
210
201
|
path: string;
|
|
211
202
|
apiBaseUrl: string;
|
|
212
|
-
breadcrumb?: string;
|
|
213
|
-
donotApplyContainerClass?: boolean;
|
|
214
|
-
donotApplyContainerLargeClass?: boolean;
|
|
215
|
-
serviceClient?: ServiceClientInterface;
|
|
216
|
-
assetBaseUrl?: string;
|
|
217
|
-
device?: string;
|
|
218
203
|
}
|
|
219
204
|
declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
|
|
220
205
|
|
|
221
|
-
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes
|
|
206
|
+
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes };
|