@streamoid/ui 0.1.1 → 0.1.5
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 +137 -66
- package/dist/index.d.ts +137 -66
- package/dist/index.js +445 -361
- package/dist/index.mjs +445 -361
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
2
|
+
|
|
1
3
|
interface IScAccessProps {
|
|
2
4
|
component?: JSX.Element;
|
|
3
5
|
component2?: JSX.Element;
|
|
@@ -20,17 +22,27 @@ interface IScBillingLogsTableHeaderProps {
|
|
|
20
22
|
}
|
|
21
23
|
declare const ScBillingLogsTableHeader: ({ className, ...props }: IScBillingLogsTableHeaderProps) => JSX.Element;
|
|
22
24
|
|
|
23
|
-
interface IScBillingLogsTableListProps {
|
|
25
|
+
interface IScBillingLogsTableListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
26
|
+
activity?: string;
|
|
27
|
+
usedBy?: string;
|
|
28
|
+
date?: string;
|
|
29
|
+
creditsUsed?: string;
|
|
30
|
+
balance?: string;
|
|
24
31
|
className?: string;
|
|
25
32
|
}
|
|
26
|
-
declare const ScBillingLogsTableList: ({ className, ...props }: IScBillingLogsTableListProps) => JSX.Element;
|
|
33
|
+
declare const ScBillingLogsTableList: ({ activity, usedBy, date, creditsUsed, balance, className, ...props }: IScBillingLogsTableListProps) => JSX.Element;
|
|
27
34
|
|
|
28
|
-
interface IScBillingHistoryTableListProps {
|
|
35
|
+
interface IScBillingHistoryTableListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
36
|
+
invoiceNumber?: string;
|
|
37
|
+
amount?: string;
|
|
38
|
+
date?: string;
|
|
39
|
+
downloadLabel?: string;
|
|
29
40
|
className?: string;
|
|
41
|
+
onRowClick?: () => void;
|
|
30
42
|
}
|
|
31
|
-
declare const ScBillingHistoryTableList: ({ className, ...props }: IScBillingHistoryTableListProps) => JSX.Element;
|
|
43
|
+
declare const ScBillingHistoryTableList: ({ invoiceNumber, amount, date, downloadLabel, className, onRowClick, ...props }: IScBillingHistoryTableListProps) => JSX.Element;
|
|
32
44
|
|
|
33
|
-
interface IScButtonProps {
|
|
45
|
+
interface IScButtonProps extends HTMLAttributes<HTMLDivElement> {
|
|
34
46
|
text?: string;
|
|
35
47
|
icon?: JSX.Element;
|
|
36
48
|
styleVariant?: "default" | "icon-right" | "icon-left" | "icon-only";
|
|
@@ -42,35 +54,52 @@ interface IScButtonProps {
|
|
|
42
54
|
}
|
|
43
55
|
declare const ScButton: ({ text, icon, styleVariant, state, variant, type, size, className, ...props }: IScButtonProps) => JSX.Element;
|
|
44
56
|
|
|
45
|
-
interface IScCalendarProps {
|
|
57
|
+
interface IScCalendarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
46
58
|
className?: string;
|
|
59
|
+
/** 0-indexed month (0 = January). Defaults to current month. */
|
|
60
|
+
month?: number;
|
|
61
|
+
/** Full year e.g. 2026. Defaults to current year. */
|
|
62
|
+
year?: number;
|
|
63
|
+
/** Selected date — highlighted as range-start/end or today */
|
|
64
|
+
selectedDate?: Date;
|
|
65
|
+
/** Called when user clicks a date */
|
|
66
|
+
onDateSelect?: (date: Date) => void;
|
|
67
|
+
/** Called when user navigates to a different month */
|
|
68
|
+
onMonthChange?: (month: number, year: number) => void;
|
|
47
69
|
}
|
|
48
|
-
declare const ScCalendar: ({ className, ...props }: IScCalendarProps) => JSX.Element;
|
|
70
|
+
declare const ScCalendar: ({ className, month, year, selectedDate, onDateSelect, onMonthChange, ...props }: IScCalendarProps) => JSX.Element;
|
|
49
71
|
|
|
50
|
-
interface IScCalendarDateCompsProps {
|
|
72
|
+
interface IScCalendarDateCompsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
51
73
|
date?: string;
|
|
52
74
|
state?: "default" | "hover" | "today" | "range-start" | "range-end" | "range" | "empty";
|
|
53
75
|
className?: string;
|
|
54
76
|
}
|
|
55
77
|
declare const ScCalendarDateComps: ({ date, state, className, ...props }: IScCalendarDateCompsProps) => JSX.Element;
|
|
56
78
|
|
|
57
|
-
interface IScCreditsUsageCardProps {
|
|
79
|
+
interface IScCreditsUsageCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
80
|
+
usageLabel?: string;
|
|
81
|
+
usageText?: string;
|
|
82
|
+
remainingText?: string;
|
|
83
|
+
buyButtonText?: string;
|
|
84
|
+
progress?: number;
|
|
58
85
|
className?: string;
|
|
59
86
|
}
|
|
60
|
-
declare const ScCreditsUsageCard: ({ className, ...props }: IScCreditsUsageCardProps) => JSX.Element;
|
|
87
|
+
declare const ScCreditsUsageCard: ({ usageLabel, usageText, remainingText, buyButtonText, progress, className, ...props }: IScCreditsUsageCardProps) => JSX.Element;
|
|
61
88
|
|
|
62
|
-
interface IScGoogleSignInProps {
|
|
89
|
+
interface IScGoogleSignInProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
63
90
|
hover?: "false" | "true";
|
|
91
|
+
googleLogoSrc?: string;
|
|
92
|
+
signInText?: string;
|
|
64
93
|
className?: string;
|
|
65
94
|
}
|
|
66
|
-
declare const ScGoogleSignIn: ({ hover, className, ...props }: IScGoogleSignInProps) => JSX.Element;
|
|
95
|
+
declare const ScGoogleSignIn: ({ hover, googleLogoSrc, signInText, className, ...props }: IScGoogleSignInProps) => JSX.Element;
|
|
67
96
|
|
|
68
97
|
interface IScHDividerProps {
|
|
69
98
|
className?: string;
|
|
70
99
|
}
|
|
71
100
|
declare const ScHDivider: ({ className, ...props }: IScHDividerProps) => JSX.Element;
|
|
72
101
|
|
|
73
|
-
interface IScHeaderProps {
|
|
102
|
+
interface IScHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
74
103
|
text?: string;
|
|
75
104
|
state?: "up" | "down" | "none";
|
|
76
105
|
className?: string;
|
|
@@ -89,7 +118,7 @@ interface IScLogoUnitProps {
|
|
|
89
118
|
}
|
|
90
119
|
declare const ScLogoUnit: ({ state, className, ...props }: IScLogoUnitProps) => JSX.Element;
|
|
91
120
|
|
|
92
|
-
interface IScMenuOptionsProps {
|
|
121
|
+
interface IScMenuOptionsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
93
122
|
icon?: JSX.Element;
|
|
94
123
|
version?: string;
|
|
95
124
|
hover?: "true" | "false";
|
|
@@ -99,11 +128,11 @@ interface IScMenuOptionsProps {
|
|
|
99
128
|
}
|
|
100
129
|
declare const ScMenuOptions: ({ icon, version, hover, variant, className, text, ...props }: IScMenuOptionsProps) => JSX.Element;
|
|
101
130
|
|
|
102
|
-
interface IScOnlyIconProps {
|
|
131
|
+
interface IScOnlyIconProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
103
132
|
className?: string;
|
|
104
133
|
variant?: "default";
|
|
105
134
|
}
|
|
106
|
-
declare const ScOnlyIcon: ({ variant, className, }: IScOnlyIconProps) => JSX.Element;
|
|
135
|
+
declare const ScOnlyIcon: ({ variant, className, ...props }: IScOnlyIconProps) => JSX.Element;
|
|
107
136
|
|
|
108
137
|
interface IScPairtextProps {
|
|
109
138
|
content?: string;
|
|
@@ -123,52 +152,64 @@ interface IScPlanCardProps {
|
|
|
123
152
|
}
|
|
124
153
|
declare const ScPlanCard: ({ planName, price, credits, type, className, ...props }: IScPlanCardProps) => JSX.Element;
|
|
125
154
|
|
|
126
|
-
interface IScPlanDetailsCardProps {
|
|
155
|
+
interface IScPlanDetailsCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
156
|
+
planName?: string;
|
|
157
|
+
planPrice?: string;
|
|
158
|
+
badgeText?: string;
|
|
159
|
+
currentPlanLabel?: string;
|
|
160
|
+
upgradeButtonText?: string;
|
|
127
161
|
className?: string;
|
|
128
162
|
}
|
|
129
|
-
declare const ScPlanDetailsCard: ({ className, ...props }: IScPlanDetailsCardProps) => JSX.Element;
|
|
163
|
+
declare const ScPlanDetailsCard: ({ planName, planPrice, badgeText, currentPlanLabel, upgradeButtonText, className, ...props }: IScPlanDetailsCardProps) => JSX.Element;
|
|
130
164
|
|
|
131
|
-
interface IScProfileProps {
|
|
165
|
+
interface IScProfileProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
132
166
|
name?: string;
|
|
133
167
|
subText?: string;
|
|
134
168
|
collapsed?: "false" | "true";
|
|
169
|
+
profileImage?: string;
|
|
135
170
|
className?: string;
|
|
136
171
|
}
|
|
137
|
-
declare const ScProfile: ({ name, subText, collapsed, className, ...props }: IScProfileProps) => JSX.Element;
|
|
172
|
+
declare const ScProfile: ({ name, subText, collapsed, profileImage, className, ...props }: IScProfileProps) => JSX.Element;
|
|
138
173
|
|
|
139
|
-
interface IScProfileImageUpdateProps {
|
|
174
|
+
interface IScProfileImageUpdateProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
140
175
|
className?: string;
|
|
141
176
|
}
|
|
142
|
-
declare const ScProfileImageUpdate: ({ className, }: IScProfileImageUpdateProps) => JSX.Element;
|
|
177
|
+
declare const ScProfileImageUpdate: ({ className, ...props }: IScProfileImageUpdateProps) => JSX.Element;
|
|
143
178
|
|
|
144
|
-
interface IScProfileOptionsProps {
|
|
179
|
+
interface IScProfileOptionsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
145
180
|
className?: string;
|
|
146
181
|
}
|
|
147
182
|
declare const ScProfileOptions: ({ className, ...props }: IScProfileOptionsProps) => JSX.Element;
|
|
148
183
|
|
|
149
|
-
interface IScProfileSettingsCompProps {
|
|
184
|
+
interface IScProfileSettingsCompProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
185
|
+
firstName?: string;
|
|
186
|
+
lastName?: string;
|
|
187
|
+
email?: string;
|
|
150
188
|
className?: string;
|
|
151
189
|
}
|
|
152
|
-
declare const ScProfileSettingsComp: ({ className, }: IScProfileSettingsCompProps) => JSX.Element;
|
|
190
|
+
declare const ScProfileSettingsComp: ({ firstName, lastName, email, className, ...props }: IScProfileSettingsCompProps) => JSX.Element;
|
|
153
191
|
|
|
154
|
-
interface IScProgressBarProps {
|
|
192
|
+
interface IScProgressBarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
193
|
+
progress?: number;
|
|
155
194
|
className?: string;
|
|
156
195
|
}
|
|
157
|
-
declare const ScProgressBar: ({ className, ...props }: IScProgressBarProps) => JSX.Element;
|
|
196
|
+
declare const ScProgressBar: ({ progress, className, ...props }: IScProgressBarProps) => JSX.Element;
|
|
158
197
|
|
|
159
|
-
interface IScRoleProps {
|
|
198
|
+
interface IScRoleProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
160
199
|
type?: "admin" | "member";
|
|
200
|
+
label?: string;
|
|
161
201
|
className?: string;
|
|
162
202
|
}
|
|
163
|
-
declare const ScRole: ({ type, className, ...props }: IScRoleProps) => JSX.Element;
|
|
203
|
+
declare const ScRole: ({ type, label, className, ...props }: IScRoleProps) => JSX.Element;
|
|
164
204
|
|
|
165
|
-
interface IScSidebarProps {
|
|
205
|
+
interface IScSidebarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
166
206
|
state?: "expanded" | "collapsed";
|
|
167
207
|
className?: string;
|
|
208
|
+
onToggle?: (state: "expanded" | "collapsed") => void;
|
|
168
209
|
}
|
|
169
|
-
declare const ScSidebar: ({ state, className, ...props }: IScSidebarProps) => JSX.Element;
|
|
210
|
+
declare const ScSidebar: ({ state, className, onToggle, ...props }: IScSidebarProps) => JSX.Element;
|
|
170
211
|
|
|
171
|
-
interface IScSidebarMenuProps {
|
|
212
|
+
interface IScSidebarMenuProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
172
213
|
icon?: JSX.Element;
|
|
173
214
|
state?: "default" | "active";
|
|
174
215
|
variant?: "explanded" | "collapsed";
|
|
@@ -177,30 +218,34 @@ interface IScSidebarMenuProps {
|
|
|
177
218
|
}
|
|
178
219
|
declare const ScSidebarMenu: ({ icon, state, variant, className, text, ...props }: IScSidebarMenuProps) => JSX.Element;
|
|
179
220
|
|
|
180
|
-
interface IScSidebarProfileProps {
|
|
221
|
+
interface IScSidebarProfileProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
181
222
|
state?: "default" | "hover";
|
|
182
223
|
variant?: "expanded" | "collapsed";
|
|
183
224
|
className?: string;
|
|
184
225
|
}
|
|
185
226
|
declare const ScSidebarProfile: ({ state, variant, className, ...props }: IScSidebarProfileProps) => JSX.Element;
|
|
186
227
|
|
|
187
|
-
interface IScSliderProps {
|
|
228
|
+
interface IScSliderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
188
229
|
className?: string;
|
|
230
|
+
onValueChange?: (value: number) => void;
|
|
189
231
|
}
|
|
190
|
-
declare const ScSlider: ({ className, ...props }: IScSliderProps) => JSX.Element;
|
|
232
|
+
declare const ScSlider: ({ className, onValueChange, ...props }: IScSliderProps) => JSX.Element;
|
|
191
233
|
|
|
192
234
|
interface IScVDividerProps {
|
|
193
235
|
className?: string;
|
|
194
236
|
}
|
|
195
237
|
declare const ScVDivider: ({ className, ...props }: IScVDividerProps) => JSX.Element;
|
|
196
238
|
|
|
197
|
-
interface IScWorkspaceProps {
|
|
239
|
+
interface IScWorkspaceProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
198
240
|
collapsed?: "false" | "true";
|
|
241
|
+
workspaceName?: string;
|
|
242
|
+
userRole?: string;
|
|
243
|
+
profileImage?: string;
|
|
199
244
|
className?: string;
|
|
200
245
|
}
|
|
201
|
-
declare const ScWorkspace: ({ collapsed, className, ...props }: IScWorkspaceProps) => JSX.Element;
|
|
246
|
+
declare const ScWorkspace: ({ collapsed, workspaceName, userRole, profileImage, className, ...props }: IScWorkspaceProps) => JSX.Element;
|
|
202
247
|
|
|
203
|
-
interface IScAppListingCardProps {
|
|
248
|
+
interface IScAppListingCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
204
249
|
icon?: JSX.Element;
|
|
205
250
|
title?: string;
|
|
206
251
|
descrp?: string;
|
|
@@ -208,7 +253,7 @@ interface IScAppListingCardProps {
|
|
|
208
253
|
}
|
|
209
254
|
declare const ScAppListingCard: ({ icon, title, descrp, className, ...props }: IScAppListingCardProps) => JSX.Element;
|
|
210
255
|
|
|
211
|
-
interface IScAppCardProps {
|
|
256
|
+
interface IScAppCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
212
257
|
appIcon?: JSX.Element;
|
|
213
258
|
appName?: string;
|
|
214
259
|
appDescription?: string;
|
|
@@ -216,41 +261,51 @@ interface IScAppCardProps {
|
|
|
216
261
|
}
|
|
217
262
|
declare const ScAppCard: ({ appIcon, appName, appDescription, className, ...props }: IScAppCardProps) => JSX.Element;
|
|
218
263
|
|
|
219
|
-
interface IScAppFieldProps {
|
|
264
|
+
interface IScAppFieldProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
265
|
+
appFieldTitle?: string;
|
|
220
266
|
className?: string;
|
|
221
267
|
}
|
|
222
|
-
declare const ScAppField: ({ className, ...props }: IScAppFieldProps) => JSX.Element;
|
|
268
|
+
declare const ScAppField: ({ appFieldTitle, className, ...props }: IScAppFieldProps) => JSX.Element;
|
|
223
269
|
|
|
224
|
-
interface IScArtifaxInviteProps {
|
|
270
|
+
interface IScArtifaxInviteProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
225
271
|
active?: "false" | "true";
|
|
272
|
+
appName?: string;
|
|
273
|
+
appDescription?: string;
|
|
274
|
+
appIcon?: JSX.Element;
|
|
226
275
|
className?: string;
|
|
227
276
|
}
|
|
228
|
-
declare const ScArtifaxInvite: ({ active, className, ...props }: IScArtifaxInviteProps) => JSX.Element;
|
|
277
|
+
declare const ScArtifaxInvite: ({ active, appName, appDescription, appIcon, className, ...props }: IScArtifaxInviteProps) => JSX.Element;
|
|
229
278
|
|
|
230
279
|
interface IScBillingHistoryHeaderProps {
|
|
231
280
|
className?: string;
|
|
232
281
|
}
|
|
233
282
|
declare const ScBillingHistoryHeader: ({ className, ...props }: IScBillingHistoryHeaderProps) => JSX.Element;
|
|
234
283
|
|
|
235
|
-
interface IScCatalogixInviteProps {
|
|
284
|
+
interface IScCatalogixInviteProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
236
285
|
active?: "false" | "true";
|
|
286
|
+
appName?: string;
|
|
287
|
+
appDescription?: string;
|
|
288
|
+
storeAccessTitle?: string;
|
|
289
|
+
selectedCount?: string;
|
|
290
|
+
searchPlaceholder?: string;
|
|
291
|
+
appIcon?: JSX.Element;
|
|
237
292
|
className?: string;
|
|
238
293
|
}
|
|
239
|
-
declare const ScCatalogixInvite: ({ active, className, ...props }: IScCatalogixInviteProps) => JSX.Element;
|
|
294
|
+
declare const ScCatalogixInvite: ({ active, appName, appDescription, storeAccessTitle, selectedCount, searchPlaceholder, appIcon, className, ...props }: IScCatalogixInviteProps) => JSX.Element;
|
|
240
295
|
|
|
241
|
-
interface IScCheckFieldProps {
|
|
296
|
+
interface IScCheckFieldProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
242
297
|
label?: string;
|
|
243
298
|
className?: string;
|
|
244
299
|
}
|
|
245
300
|
declare const ScCheckField: ({ label, className, ...props }: IScCheckFieldProps) => JSX.Element;
|
|
246
301
|
|
|
247
|
-
interface IScCheckboxProps {
|
|
302
|
+
interface IScCheckboxProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
248
303
|
state?: "default" | "partial" | "selected";
|
|
249
304
|
className?: string;
|
|
250
305
|
}
|
|
251
306
|
declare const ScCheckbox: ({ state, className, ...props }: IScCheckboxProps) => JSX.Element;
|
|
252
307
|
|
|
253
|
-
interface IScFieldButtonProps {
|
|
308
|
+
interface IScFieldButtonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
254
309
|
icon?: JSX.Element;
|
|
255
310
|
type?: "default" | "icon-right" | "icon-left" | "only-icon";
|
|
256
311
|
state?: "default";
|
|
@@ -259,7 +314,7 @@ interface IScFieldButtonProps {
|
|
|
259
314
|
}
|
|
260
315
|
declare const ScFieldButton: ({ icon, type, state, className, text, ...props }: IScFieldButtonProps) => JSX.Element;
|
|
261
316
|
|
|
262
|
-
interface IScOnlyFieldProps {
|
|
317
|
+
interface IScOnlyFieldProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
263
318
|
tfRightIcon?: JSX.Element;
|
|
264
319
|
tfLeftIcon?: JSX.Element;
|
|
265
320
|
state?: "default" | "active" | "error" | "disabled" | "filled";
|
|
@@ -270,7 +325,7 @@ interface IScOnlyFieldProps {
|
|
|
270
325
|
}
|
|
271
326
|
declare const ScOnlyField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGroup, className, placeholderFilled, ...props }: IScOnlyFieldProps) => JSX.Element;
|
|
272
327
|
|
|
273
|
-
interface IScPendingActionProps {
|
|
328
|
+
interface IScPendingActionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
274
329
|
className?: string;
|
|
275
330
|
}
|
|
276
331
|
declare const ScPendingAction: ({ className, ...props }: IScPendingActionProps) => JSX.Element;
|
|
@@ -284,12 +339,15 @@ interface IScPhtogenixInviteProps {
|
|
|
284
339
|
}
|
|
285
340
|
declare const ScPhtogenixInvite: ({ active, scAppCardappDescription, scAppCardappName, scAppCardappIcon, className, ...props }: IScPhtogenixInviteProps) => JSX.Element;
|
|
286
341
|
|
|
287
|
-
interface IScQuickPromptProps {
|
|
342
|
+
interface IScQuickPromptProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
343
|
+
appName?: string;
|
|
344
|
+
heading?: string;
|
|
345
|
+
description?: string;
|
|
288
346
|
className?: string;
|
|
289
347
|
}
|
|
290
|
-
declare const ScQuickPrompt: ({ className, }: IScQuickPromptProps) => JSX.Element;
|
|
348
|
+
declare const ScQuickPrompt: ({ appName, heading, description, className, ...props }: IScQuickPromptProps) => JSX.Element;
|
|
291
349
|
|
|
292
|
-
interface IScRadioProps {
|
|
350
|
+
interface IScRadioProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
293
351
|
state?: "default" | "selected";
|
|
294
352
|
className?: string;
|
|
295
353
|
}
|
|
@@ -300,12 +358,17 @@ interface IScReferralTableHeaderProps {
|
|
|
300
358
|
}
|
|
301
359
|
declare const ScReferralTableHeader: ({ className, ...props }: IScReferralTableHeaderProps) => JSX.Element;
|
|
302
360
|
|
|
303
|
-
interface IScReferralTableListProps {
|
|
361
|
+
interface IScReferralTableListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
362
|
+
userEmail?: string;
|
|
363
|
+
userName?: string;
|
|
364
|
+
date?: string;
|
|
365
|
+
status?: string;
|
|
366
|
+
points?: string;
|
|
304
367
|
className?: string;
|
|
305
368
|
}
|
|
306
|
-
declare const ScReferralTableList: ({ className, ...props }: IScReferralTableListProps) => JSX.Element;
|
|
369
|
+
declare const ScReferralTableList: ({ userEmail, userName, date, status, points, className, ...props }: IScReferralTableListProps) => JSX.Element;
|
|
307
370
|
|
|
308
|
-
interface IScSettingsNavProps {
|
|
371
|
+
interface IScSettingsNavProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
309
372
|
className?: string;
|
|
310
373
|
}
|
|
311
374
|
declare const ScSettingsNav: ({ className, ...props }: IScSettingsNavProps) => JSX.Element;
|
|
@@ -323,7 +386,7 @@ interface IScStrLogoProps {
|
|
|
323
386
|
}
|
|
324
387
|
declare const ScStrLogo: ({ type, className, ...props }: IScStrLogoProps) => JSX.Element;
|
|
325
388
|
|
|
326
|
-
interface IScTabCompProps {
|
|
389
|
+
interface IScTabCompProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
327
390
|
icon?: JSX.Element;
|
|
328
391
|
active?: "true" | "false";
|
|
329
392
|
type?: "text-only" | "icon-only";
|
|
@@ -338,7 +401,7 @@ interface IScTabFieldProps {
|
|
|
338
401
|
}
|
|
339
402
|
declare const ScTabField: ({ label, className, ...props }: IScTabFieldProps) => JSX.Element;
|
|
340
403
|
|
|
341
|
-
interface IScTabSwitcherProps {
|
|
404
|
+
interface IScTabSwitcherProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
342
405
|
tabCount?: "2" | "3" | "4" | "5";
|
|
343
406
|
component?: JSX.Element;
|
|
344
407
|
component2?: JSX.Element;
|
|
@@ -358,16 +421,18 @@ interface IScTableHeaderProps {
|
|
|
358
421
|
}
|
|
359
422
|
declare const ScTableHeader: ({ type, className, ...props }: IScTableHeaderProps) => JSX.Element;
|
|
360
423
|
|
|
361
|
-
interface IScTableListProps {
|
|
424
|
+
interface IScTableListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
362
425
|
invitedBy?: string;
|
|
363
426
|
signedOn?: string;
|
|
427
|
+
userEmail?: string;
|
|
364
428
|
hover?: "false" | "true";
|
|
365
429
|
variant?: "active" | "pending";
|
|
366
430
|
className?: string;
|
|
431
|
+
onRowClick?: (rowId: string, event: React.MouseEvent) => void;
|
|
367
432
|
}
|
|
368
|
-
declare const ScTableList: ({ invitedBy, signedOn, hover, variant, className, ...props }: IScTableListProps) => JSX.Element;
|
|
433
|
+
declare const ScTableList: ({ invitedBy, signedOn, userEmail, hover, variant, className, onRowClick, ...props }: IScTableListProps) => JSX.Element;
|
|
369
434
|
|
|
370
|
-
interface IScTextFieldProps {
|
|
435
|
+
interface IScTextFieldProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
371
436
|
tfRightIcon?: JSX.Element;
|
|
372
437
|
tfLeftIcon?: JSX.Element;
|
|
373
438
|
state?: "default" | "active" | "error" | "disabled" | "filled";
|
|
@@ -379,23 +444,29 @@ interface IScTextFieldProps {
|
|
|
379
444
|
}
|
|
380
445
|
declare const ScTextField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGroup, className, placeholderFilled, label, ...props }: IScTextFieldProps) => JSX.Element;
|
|
381
446
|
|
|
382
|
-
interface IScToggleSwitchProps {
|
|
447
|
+
interface IScToggleSwitchProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
383
448
|
active?: "true" | "false";
|
|
384
449
|
className?: string;
|
|
385
450
|
}
|
|
386
451
|
declare const ScToggleSwitch: ({ active, className, ...props }: IScToggleSwitchProps) => JSX.Element;
|
|
387
452
|
|
|
388
|
-
interface IScVersionProps {
|
|
453
|
+
interface IScVersionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
389
454
|
state?: "expanded" | "collapsed";
|
|
455
|
+
version?: string;
|
|
390
456
|
scSidebarIconsinstance?: JSX.Element;
|
|
391
457
|
component?: JSX.Element;
|
|
392
458
|
className?: string;
|
|
393
459
|
}
|
|
394
|
-
declare const ScVersion: ({ state, scSidebarIconsinstance, component, className, ...props }: IScVersionProps) => JSX.Element;
|
|
460
|
+
declare const ScVersion: ({ state, version, scSidebarIconsinstance, component, className, ...props }: IScVersionProps) => JSX.Element;
|
|
395
461
|
|
|
396
|
-
interface IScWorkspaceCardProps {
|
|
462
|
+
interface IScWorkspaceCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
463
|
+
workspaceName?: string;
|
|
464
|
+
role?: string;
|
|
465
|
+
userCount?: string;
|
|
466
|
+
ownerEmail?: string;
|
|
467
|
+
buttonText?: string;
|
|
397
468
|
className?: string;
|
|
398
469
|
}
|
|
399
|
-
declare const ScWorkspaceCard: ({ className, }: IScWorkspaceCardProps) => JSX.Element;
|
|
470
|
+
declare const ScWorkspaceCard: ({ workspaceName, role, userCount, ownerEmail, buttonText, className, ...props }: IScWorkspaceCardProps) => JSX.Element;
|
|
400
471
|
|
|
401
472
|
export { type IScAccessProps, type IScAppCardProps, type IScAppFieldProps, type IScAppListingCardProps, type IScArtifaxInviteProps, type IScBadgesProps, type IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCreditsUsageCardProps, type IScFieldButtonProps, type IScGoogleSignInProps, type IScHDividerProps, type IScHeaderProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMenuOptionsProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanDetailsCardProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfileProps, type IScProfileSettingsCompProps, type IScProgressBarProps, type IScQuickPromptProps, type IScRadioProps, type IScReferralTableHeaderProps, type IScReferralTableListProps, type IScRoleProps, type IScSettingsNavProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSliderProps, type IScStrLogoProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListProps, type IScTextFieldProps, type IScToggleSwitchProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceProps, ScAccess, ScAppCard, ScAppField, ScAppListingCard, ScArtifaxInvite, ScBadges, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScFieldButton, ScGoogleSignIn, ScHDivider, ScHeader, ScIntialProfileCover, ScLogoUnit, ScMenuOptions, ScOnlyField, ScOnlyIcon, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanDetailsCard, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralTableHeader, ScReferralTableList, ScRole, ScSettingsNav, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSlider, ScStrLogo, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTextField, ScToggleSwitch, ScVDivider, ScVersion, ScWorkspace, ScWorkspaceCard };
|