@clyrex-digital/clyrex-controls-dev 0.8.1-dev.20260722101954
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/CopyButton-UPJPMJUB.mjs +57 -0
- package/dist/CopyButton-XONTQQW7.mjs +55 -0
- package/dist/DateTimeViewClient-22GW4AD7.mjs +14 -0
- package/dist/DateTimeViewClient-K5FE5VSN.mjs +14 -0
- package/dist/DateTimeViewClient-M7V35KUW.mjs +16 -0
- package/dist/DateTimeViewClient-R3M6ISVK.mjs +16 -0
- package/dist/DateViewClient-4CTEMOMJ.mjs +7 -0
- package/dist/DateViewClient-ELEHLGWS.mjs +7 -0
- package/dist/DateViewClient-JBS5UXMD.mjs +9 -0
- package/dist/DateViewClient-VLTRN47D.mjs +9 -0
- package/dist/EnterAnimationClient-4OKXLKSA.mjs +45 -0
- package/dist/EnterAnimationClient-ZN3NLFNO.mjs +47 -0
- package/dist/HlsPlayer-57543DTW.mjs +599 -0
- package/dist/HlsPlayer-5AWFZ2P6.mjs +601 -0
- package/dist/IframeClient-J22NMEVY.mjs +96 -0
- package/dist/IframeClient-RGJFZ5P2.mjs +98 -0
- package/dist/InputControlClient-7NS4QUWO.mjs +677 -0
- package/dist/InputControlClient-AZRPSTUZ.mjs +677 -0
- package/dist/InputControlClient-BUOYZNWQ.mjs +675 -0
- package/dist/InputControlClient-HIZOJLKW.mjs +677 -0
- package/dist/LinkNodeButton-AOEDCCL7.mjs +227 -0
- package/dist/LinkNodeButton-BIZA2NPE.mjs +225 -0
- package/dist/LinkNodeButton-LX3KKGZY.mjs +173 -0
- package/dist/LinkNodeButton-U7T2NP22.mjs +374 -0
- package/dist/Pagination-6OFACRMQ.mjs +229 -0
- package/dist/Pagination-NCJCOYHF.mjs +181 -0
- package/dist/Pagination-OQT7Q2XO.mjs +183 -0
- package/dist/Pagination-T7YN2OMV.mjs +183 -0
- package/dist/Slider-554BKC7N.mjs +322 -0
- package/dist/Slider-PEIVH6A5.mjs +320 -0
- package/dist/chunk-23WJE3YB.mjs +253 -0
- package/dist/chunk-3GWLDT7C.mjs +204 -0
- package/dist/chunk-3R4VVVNK.mjs +903 -0
- package/dist/chunk-56HSDML5.mjs +22 -0
- package/dist/chunk-5GHPW7SJ.mjs +111 -0
- package/dist/chunk-7ZFZLN56.mjs +903 -0
- package/dist/chunk-DBHUCH4B.mjs +109 -0
- package/dist/chunk-DKW4DXCU.mjs +120 -0
- package/dist/chunk-FI2KJBK2.mjs +110 -0
- package/dist/chunk-IMNQO57B.mjs +25 -0
- package/dist/chunk-JKP4XOZB.mjs +214 -0
- package/dist/chunk-OGGIS4AN.mjs +201 -0
- package/dist/chunk-RHVNJMS4.mjs +251 -0
- package/dist/chunk-SPRVN5IM.mjs +118 -0
- package/dist/chunk-TVL6KVD5.mjs +229 -0
- package/dist/chunk-UFKPTMM7.mjs +199 -0
- package/dist/chunk-WEV5U33G.mjs +207 -0
- package/dist/chunk-X3YSXTD2.mjs +201 -0
- package/dist/chunk-XG6SXZWP.mjs +115 -0
- package/dist/chunk-YBNWT4TV.mjs +123 -0
- package/dist/chunk-YG6FKKQJ.mjs +900 -0
- package/dist/index.d.mts +456 -0
- package/dist/index.d.ts +456 -0
- package/dist/index.js +8566 -0
- package/dist/index.mjs +4285 -0
- package/dist/server.d.mts +113 -0
- package/dist/server.d.ts +113 -0
- package/dist/server.js +5179 -0
- package/dist/server.mjs +2736 -0
- package/package.json +95 -0
|
@@ -0,0 +1,113 @@
|
|
|
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
|
+
interface ViewControlProps {
|
|
73
|
+
value?: any;
|
|
74
|
+
controlType?: string;
|
|
75
|
+
format?: string;
|
|
76
|
+
unit?: string;
|
|
77
|
+
width?: string;
|
|
78
|
+
apiBaseUrl?: string;
|
|
79
|
+
assetBaseUrl?: string;
|
|
80
|
+
customProps?: Record<string, unknown>;
|
|
81
|
+
session?: any;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
declare const ViewControl: (props: ViewControlProps) => React.JSX.Element;
|
|
85
|
+
|
|
86
|
+
declare const ViewControlTypes: {
|
|
87
|
+
lineText: string;
|
|
88
|
+
emailText: string;
|
|
89
|
+
asset: string;
|
|
90
|
+
video: string;
|
|
91
|
+
multilineTextBullets: string;
|
|
92
|
+
boolean: string;
|
|
93
|
+
checkboxInput: string;
|
|
94
|
+
money: string;
|
|
95
|
+
date: string;
|
|
96
|
+
time: string;
|
|
97
|
+
datetime: string;
|
|
98
|
+
number: string;
|
|
99
|
+
multilineText: string;
|
|
100
|
+
multilinetext: string;
|
|
101
|
+
moneyText: string;
|
|
102
|
+
percentage: string;
|
|
103
|
+
status: string;
|
|
104
|
+
statusBg: string;
|
|
105
|
+
progressIndicator: string;
|
|
106
|
+
timeUntilStarts: string;
|
|
107
|
+
timeUntilStartsStyled: string;
|
|
108
|
+
aiGeneratedSummary: string;
|
|
109
|
+
booleanView: string;
|
|
110
|
+
text: string;
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
export { PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes };
|
package/dist/server.d.ts
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
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
|
+
interface ViewControlProps {
|
|
73
|
+
value?: any;
|
|
74
|
+
controlType?: string;
|
|
75
|
+
format?: string;
|
|
76
|
+
unit?: string;
|
|
77
|
+
width?: string;
|
|
78
|
+
apiBaseUrl?: string;
|
|
79
|
+
assetBaseUrl?: string;
|
|
80
|
+
customProps?: Record<string, unknown>;
|
|
81
|
+
session?: any;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
declare const ViewControl: (props: ViewControlProps) => React.JSX.Element;
|
|
85
|
+
|
|
86
|
+
declare const ViewControlTypes: {
|
|
87
|
+
lineText: string;
|
|
88
|
+
emailText: string;
|
|
89
|
+
asset: string;
|
|
90
|
+
video: string;
|
|
91
|
+
multilineTextBullets: string;
|
|
92
|
+
boolean: string;
|
|
93
|
+
checkboxInput: string;
|
|
94
|
+
money: string;
|
|
95
|
+
date: string;
|
|
96
|
+
time: string;
|
|
97
|
+
datetime: string;
|
|
98
|
+
number: string;
|
|
99
|
+
multilineText: string;
|
|
100
|
+
multilinetext: string;
|
|
101
|
+
moneyText: string;
|
|
102
|
+
percentage: string;
|
|
103
|
+
status: string;
|
|
104
|
+
statusBg: string;
|
|
105
|
+
progressIndicator: string;
|
|
106
|
+
timeUntilStarts: string;
|
|
107
|
+
timeUntilStartsStyled: string;
|
|
108
|
+
aiGeneratedSummary: string;
|
|
109
|
+
booleanView: string;
|
|
110
|
+
text: string;
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
export { PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes };
|