@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260704091052 → 0.8.1-dev.20260706114046

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.
Files changed (43) hide show
  1. package/dist/CopyButton-UPJPMJUB.mjs +57 -0
  2. package/dist/DateTimeViewClient-R3M6ISVK.mjs +16 -0
  3. package/dist/DateViewClient-VLTRN47D.mjs +9 -0
  4. package/dist/{chunk-SDNYBQSI.mjs → HlsPlayer-57543DTW.mjs} +3 -2
  5. package/dist/HlsPlayer-5AWFZ2P6.mjs +601 -0
  6. package/dist/IframeClient-RGJFZ5P2.mjs +98 -0
  7. package/dist/InputControlClient-NJV6B65M.mjs +604 -0
  8. package/dist/InputControlClient-OQDLYA4S.mjs +604 -0
  9. package/dist/InputControlClient-TW664WIJ.mjs +602 -0
  10. package/dist/{LinkNodeButton-WDDPNYWI.mjs → LinkNodeButton-FUL3J5HR.mjs} +6 -5
  11. package/dist/LinkNodeButton-IGJOGOKI.mjs +362 -0
  12. package/dist/LinkNodeButton-ZONM74OO.mjs +174 -0
  13. package/dist/Pagination-6OFACRMQ.mjs +229 -0
  14. package/dist/Pagination-FSYLYKUA.mjs +181 -0
  15. package/dist/Pagination-YCD5CU2L.mjs +183 -0
  16. package/dist/Slider-554BKC7N.mjs +322 -0
  17. package/dist/Slider-PEIVH6A5.mjs +320 -0
  18. package/dist/chunk-2GSYECIS.mjs +109 -0
  19. package/dist/chunk-3GWLDT7C.mjs +204 -0
  20. package/dist/chunk-3R4VVVNK.mjs +903 -0
  21. package/dist/chunk-47HD7QP7.mjs +199 -0
  22. package/dist/chunk-56HSDML5.mjs +22 -0
  23. package/dist/chunk-67IG5NBU.mjs +200 -0
  24. package/dist/chunk-7ZFZLN56.mjs +903 -0
  25. package/dist/chunk-CM7LUGCH.mjs +107 -0
  26. package/dist/chunk-IKIXEQPV.mjs +198 -0
  27. package/dist/chunk-IMNQO57B.mjs +25 -0
  28. package/dist/chunk-R2HV35IB.mjs +201 -0
  29. package/dist/chunk-SPRVN5IM.mjs +118 -0
  30. package/dist/chunk-TVL6KVD5.mjs +229 -0
  31. package/dist/chunk-WEV5U33G.mjs +207 -0
  32. package/dist/chunk-YG6FKKQJ.mjs +900 -0
  33. package/dist/index.d.mts +56 -169
  34. package/dist/index.d.ts +56 -169
  35. package/dist/index.js +3940 -3807
  36. package/dist/index.mjs +591 -2923
  37. package/dist/server.d.mts +72 -0
  38. package/dist/server.d.ts +72 -0
  39. package/dist/server.js +5126 -0
  40. package/dist/server.mjs +2698 -0
  41. package/package.json +18 -4
  42. package/dist/HlsPlayer-DZNDKG2P.mjs +0 -7
  43. package/dist/chunk-DOKQUUH3.mjs +0 -414
@@ -0,0 +1,72 @@
1
+ import React from 'react';
2
+
3
+ interface Session {
4
+ cid: string;
5
+ contactId?: number;
6
+ fullName?: string;
7
+ truncatedPhone?: string;
8
+ userCurrencyCode?: string;
9
+ marketCode?: string;
10
+ oAuthToken?: string;
11
+ refreshToken?: string;
12
+ }
13
+
14
+ interface ActionResponse<T> {
15
+ isSuccessful?: boolean;
16
+ message?: string;
17
+ errorNumber?: string;
18
+ result?: T;
19
+ }
20
+
21
+ interface QueryResponse<T> {
22
+ isSuccessful?: boolean;
23
+ message?: string;
24
+ errorNumber?: string;
25
+ result?: T[];
26
+ parent?: T;
27
+ count?: number;
28
+ data?: T[];
29
+ }
30
+
31
+ interface SingleResponse<T> {
32
+ isSuccessful?: boolean;
33
+ message?: string;
34
+ errorNumber?: string;
35
+ result?: T;
36
+ }
37
+
38
+ interface ServiceClientInterface {
39
+ baseUrl: string;
40
+ session: any;
41
+ post(path: string, data: any): Promise<ActionResponse<any>>;
42
+ get(path: string, params?: {
43
+ [key: string]: any;
44
+ }): Promise<QueryResponse<any>>;
45
+ getSingle<T>(path: string, params?: {
46
+ [key: string]: any;
47
+ }): Promise<SingleResponse<T>>;
48
+ }
49
+
50
+ interface PageBodyRendererProps {
51
+ rawBody?: string;
52
+ routeParameters?: {
53
+ [key: string]: unknown;
54
+ };
55
+ query?: {
56
+ [key: string]: string;
57
+ };
58
+ session: Session;
59
+ host: string;
60
+ path: string;
61
+ apiBaseUrl: string;
62
+ breadcrumb?: string;
63
+ donotApplyContainerClass?: boolean;
64
+ donotApplyContainerLargeClass?: boolean;
65
+ serviceClient?: ServiceClientInterface;
66
+ assetBaseUrl?: string;
67
+ device?: string;
68
+ widgetRenderer?: any;
69
+ }
70
+ declare const PageBodyRenderer: (props: PageBodyRendererProps) => React.JSX.Element;
71
+
72
+ export { PageBodyRenderer };
@@ -0,0 +1,72 @@
1
+ import React from 'react';
2
+
3
+ interface Session {
4
+ cid: string;
5
+ contactId?: number;
6
+ fullName?: string;
7
+ truncatedPhone?: string;
8
+ userCurrencyCode?: string;
9
+ marketCode?: string;
10
+ oAuthToken?: string;
11
+ refreshToken?: string;
12
+ }
13
+
14
+ interface ActionResponse<T> {
15
+ isSuccessful?: boolean;
16
+ message?: string;
17
+ errorNumber?: string;
18
+ result?: T;
19
+ }
20
+
21
+ interface QueryResponse<T> {
22
+ isSuccessful?: boolean;
23
+ message?: string;
24
+ errorNumber?: string;
25
+ result?: T[];
26
+ parent?: T;
27
+ count?: number;
28
+ data?: T[];
29
+ }
30
+
31
+ interface SingleResponse<T> {
32
+ isSuccessful?: boolean;
33
+ message?: string;
34
+ errorNumber?: string;
35
+ result?: T;
36
+ }
37
+
38
+ interface ServiceClientInterface {
39
+ baseUrl: string;
40
+ session: any;
41
+ post(path: string, data: any): Promise<ActionResponse<any>>;
42
+ get(path: string, params?: {
43
+ [key: string]: any;
44
+ }): Promise<QueryResponse<any>>;
45
+ getSingle<T>(path: string, params?: {
46
+ [key: string]: any;
47
+ }): Promise<SingleResponse<T>>;
48
+ }
49
+
50
+ interface PageBodyRendererProps {
51
+ rawBody?: string;
52
+ routeParameters?: {
53
+ [key: string]: unknown;
54
+ };
55
+ query?: {
56
+ [key: string]: string;
57
+ };
58
+ session: Session;
59
+ host: string;
60
+ path: string;
61
+ apiBaseUrl: string;
62
+ breadcrumb?: string;
63
+ donotApplyContainerClass?: boolean;
64
+ donotApplyContainerLargeClass?: boolean;
65
+ serviceClient?: ServiceClientInterface;
66
+ assetBaseUrl?: string;
67
+ device?: string;
68
+ widgetRenderer?: any;
69
+ }
70
+ declare const PageBodyRenderer: (props: PageBodyRendererProps) => React.JSX.Element;
71
+
72
+ export { PageBodyRenderer };