@streamoid/ui 0.1.0

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.
@@ -0,0 +1,401 @@
1
+ interface IScAccessProps {
2
+ component?: JSX.Element;
3
+ component2?: JSX.Element;
4
+ component3?: JSX.Element;
5
+ visibleSiconCatalogix?: boolean;
6
+ className?: string;
7
+ }
8
+ declare const ScAccess: ({ component, component2, component3, visibleSiconCatalogix, className, }: IScAccessProps) => JSX.Element;
9
+
10
+ interface IScBadgesProps {
11
+ text?: string;
12
+ variant?: "default" | "success" | "warning" | "error" | "info";
13
+ styleVariant?: "solid" | "opaque";
14
+ className?: string;
15
+ }
16
+ declare const ScBadges: ({ text, variant, styleVariant, className, ...props }: IScBadgesProps) => JSX.Element;
17
+
18
+ interface IScBillingLogsTableHeaderProps {
19
+ className?: string;
20
+ }
21
+ declare const ScBillingLogsTableHeader: ({ className, ...props }: IScBillingLogsTableHeaderProps) => JSX.Element;
22
+
23
+ interface IScBillingLogsTableListProps {
24
+ className?: string;
25
+ }
26
+ declare const ScBillingLogsTableList: ({ className, ...props }: IScBillingLogsTableListProps) => JSX.Element;
27
+
28
+ interface IScBillingHistoryTableListProps {
29
+ className?: string;
30
+ }
31
+ declare const ScBillingHistoryTableList: ({ className, ...props }: IScBillingHistoryTableListProps) => JSX.Element;
32
+
33
+ interface IScButtonProps {
34
+ text?: string;
35
+ icon?: JSX.Element;
36
+ styleVariant?: "default" | "icon-right" | "icon-left" | "icon-only";
37
+ state?: "default" | "hover" | "disabled";
38
+ variant?: "primary" | "secondary" | "tertiary" | "outline" | "error";
39
+ type?: "primary" | "secondary" | "tertiary";
40
+ size?: "lg" | "md" | "sm";
41
+ className?: string;
42
+ }
43
+ declare const ScButton: ({ text, icon, styleVariant, state, variant, type, size, className, ...props }: IScButtonProps) => JSX.Element;
44
+
45
+ interface IScCalendarProps {
46
+ className?: string;
47
+ }
48
+ declare const ScCalendar: ({ className, ...props }: IScCalendarProps) => JSX.Element;
49
+
50
+ interface IScCalendarDateCompsProps {
51
+ date?: string;
52
+ state?: "default" | "hover" | "today" | "range-start" | "range-end" | "range" | "empty";
53
+ className?: string;
54
+ }
55
+ declare const ScCalendarDateComps: ({ date, state, className, ...props }: IScCalendarDateCompsProps) => JSX.Element;
56
+
57
+ interface IScCreditsUsageCardProps {
58
+ className?: string;
59
+ }
60
+ declare const ScCreditsUsageCard: ({ className, ...props }: IScCreditsUsageCardProps) => JSX.Element;
61
+
62
+ interface IScGoogleSignInProps {
63
+ hover?: "false" | "true";
64
+ className?: string;
65
+ }
66
+ declare const ScGoogleSignIn: ({ hover, className, ...props }: IScGoogleSignInProps) => JSX.Element;
67
+
68
+ interface IScHDividerProps {
69
+ className?: string;
70
+ }
71
+ declare const ScHDivider: ({ className, ...props }: IScHDividerProps) => JSX.Element;
72
+
73
+ interface IScHeaderProps {
74
+ text?: string;
75
+ state?: "up" | "down" | "none";
76
+ className?: string;
77
+ }
78
+ declare const ScHeader: ({ text, state, className, ...props }: IScHeaderProps) => JSX.Element;
79
+
80
+ interface IScIntialProfileCoverProps {
81
+ intial?: string;
82
+ className?: string;
83
+ }
84
+ declare const ScIntialProfileCover: ({ intial, className, ...props }: IScIntialProfileCoverProps) => JSX.Element;
85
+
86
+ interface IScLogoUnitProps {
87
+ state?: "expanded" | "collapsed";
88
+ className?: string;
89
+ }
90
+ declare const ScLogoUnit: ({ state, className, ...props }: IScLogoUnitProps) => JSX.Element;
91
+
92
+ interface IScMenuOptionsProps {
93
+ icon?: JSX.Element;
94
+ version?: string;
95
+ hover?: "true" | "false";
96
+ variant?: "default" | "with-v" | "error";
97
+ className?: string;
98
+ text?: string;
99
+ }
100
+ declare const ScMenuOptions: ({ icon, version, hover, variant, className, text, ...props }: IScMenuOptionsProps) => JSX.Element;
101
+
102
+ interface IScOnlyIconProps {
103
+ className?: string;
104
+ variant?: "default";
105
+ }
106
+ declare const ScOnlyIcon: ({ variant, className, }: IScOnlyIconProps) => JSX.Element;
107
+
108
+ interface IScPairtextProps {
109
+ content?: string;
110
+ icon?: JSX.Element;
111
+ iconPosition?: "left" | "right";
112
+ type?: "icon" | "radio" | "checkbox";
113
+ className?: string;
114
+ }
115
+ declare const ScPairtext: ({ content, icon, iconPosition, type, className, ...props }: IScPairtextProps) => JSX.Element;
116
+
117
+ interface IScPlanCardProps {
118
+ planName?: string;
119
+ price?: string;
120
+ credits?: string;
121
+ type?: "default" | "popular";
122
+ className?: string;
123
+ }
124
+ declare const ScPlanCard: ({ planName, price, credits, type, className, ...props }: IScPlanCardProps) => JSX.Element;
125
+
126
+ interface IScPlanDetailsCardProps {
127
+ className?: string;
128
+ }
129
+ declare const ScPlanDetailsCard: ({ className, ...props }: IScPlanDetailsCardProps) => JSX.Element;
130
+
131
+ interface IScProfileProps {
132
+ name?: string;
133
+ subText?: string;
134
+ collapsed?: "false" | "true";
135
+ className?: string;
136
+ }
137
+ declare const ScProfile: ({ name, subText, collapsed, className, ...props }: IScProfileProps) => JSX.Element;
138
+
139
+ interface IScProfileImageUpdateProps {
140
+ className?: string;
141
+ }
142
+ declare const ScProfileImageUpdate: ({ className, }: IScProfileImageUpdateProps) => JSX.Element;
143
+
144
+ interface IScProfileOptionsProps {
145
+ className?: string;
146
+ }
147
+ declare const ScProfileOptions: ({ className, ...props }: IScProfileOptionsProps) => JSX.Element;
148
+
149
+ interface IScProfileSettingsCompProps {
150
+ className?: string;
151
+ }
152
+ declare const ScProfileSettingsComp: ({ className, }: IScProfileSettingsCompProps) => JSX.Element;
153
+
154
+ interface IScProgressBarProps {
155
+ className?: string;
156
+ }
157
+ declare const ScProgressBar: ({ className, ...props }: IScProgressBarProps) => JSX.Element;
158
+
159
+ interface IScRoleProps {
160
+ type?: "admin" | "member";
161
+ className?: string;
162
+ }
163
+ declare const ScRole: ({ type, className, ...props }: IScRoleProps) => JSX.Element;
164
+
165
+ interface IScSidebarProps {
166
+ state?: "expanded" | "collapsed";
167
+ className?: string;
168
+ }
169
+ declare const ScSidebar: ({ state, className, ...props }: IScSidebarProps) => JSX.Element;
170
+
171
+ interface IScSidebarMenuProps {
172
+ icon?: JSX.Element;
173
+ state?: "default" | "active";
174
+ variant?: "explanded" | "collapsed";
175
+ className?: string;
176
+ text?: string;
177
+ }
178
+ declare const ScSidebarMenu: ({ icon, state, variant, className, text, ...props }: IScSidebarMenuProps) => JSX.Element;
179
+
180
+ interface IScSidebarProfileProps {
181
+ state?: "default" | "hover";
182
+ variant?: "expanded" | "collapsed";
183
+ className?: string;
184
+ }
185
+ declare const ScSidebarProfile: ({ state, variant, className, ...props }: IScSidebarProfileProps) => JSX.Element;
186
+
187
+ interface IScSliderProps {
188
+ className?: string;
189
+ }
190
+ declare const ScSlider: ({ className, ...props }: IScSliderProps) => JSX.Element;
191
+
192
+ interface IScVDividerProps {
193
+ className?: string;
194
+ }
195
+ declare const ScVDivider: ({ className, ...props }: IScVDividerProps) => JSX.Element;
196
+
197
+ interface IScWorkspaceProps {
198
+ collapsed?: "false" | "true";
199
+ className?: string;
200
+ }
201
+ declare const ScWorkspace: ({ collapsed, className, ...props }: IScWorkspaceProps) => JSX.Element;
202
+
203
+ interface IScAppListingCardProps {
204
+ icon?: JSX.Element;
205
+ title?: string;
206
+ descrp?: string;
207
+ className?: string;
208
+ }
209
+ declare const ScAppListingCard: ({ icon, title, descrp, className, ...props }: IScAppListingCardProps) => JSX.Element;
210
+
211
+ interface IScAppCardProps {
212
+ appIcon?: JSX.Element;
213
+ appName?: string;
214
+ appDescription?: string;
215
+ className?: string;
216
+ }
217
+ declare const ScAppCard: ({ appIcon, appName, appDescription, className, ...props }: IScAppCardProps) => JSX.Element;
218
+
219
+ interface IScAppFieldProps {
220
+ className?: string;
221
+ }
222
+ declare const ScAppField: ({ className, ...props }: IScAppFieldProps) => JSX.Element;
223
+
224
+ interface IScArtifaxInviteProps {
225
+ active?: "false" | "true";
226
+ className?: string;
227
+ }
228
+ declare const ScArtifaxInvite: ({ active, className, ...props }: IScArtifaxInviteProps) => JSX.Element;
229
+
230
+ interface IScBillingHistoryHeaderProps {
231
+ className?: string;
232
+ }
233
+ declare const ScBillingHistoryHeader: ({ className, ...props }: IScBillingHistoryHeaderProps) => JSX.Element;
234
+
235
+ interface IScCatalogixInviteProps {
236
+ active?: "false" | "true";
237
+ className?: string;
238
+ }
239
+ declare const ScCatalogixInvite: ({ active, className, ...props }: IScCatalogixInviteProps) => JSX.Element;
240
+
241
+ interface IScCheckFieldProps {
242
+ label?: string;
243
+ className?: string;
244
+ }
245
+ declare const ScCheckField: ({ label, className, ...props }: IScCheckFieldProps) => JSX.Element;
246
+
247
+ interface IScCheckboxProps {
248
+ state?: "default" | "partial" | "selected";
249
+ className?: string;
250
+ }
251
+ declare const ScCheckbox: ({ state, className, ...props }: IScCheckboxProps) => JSX.Element;
252
+
253
+ interface IScFieldButtonProps {
254
+ icon?: JSX.Element;
255
+ type?: "default" | "icon-right" | "icon-left" | "only-icon";
256
+ state?: "default";
257
+ className?: string;
258
+ text?: string;
259
+ }
260
+ declare const ScFieldButton: ({ icon, type, state, className, text, ...props }: IScFieldButtonProps) => JSX.Element;
261
+
262
+ interface IScOnlyFieldProps {
263
+ tfRightIcon?: JSX.Element;
264
+ tfLeftIcon?: JSX.Element;
265
+ state?: "default" | "active" | "error" | "disabled" | "filled";
266
+ tfGroup?: "icon-right" | "icon-left" | "icon-left-right" | "none";
267
+ labelGroup?: "none" | "label" | "text" | "icon";
268
+ className?: string;
269
+ placeholderFilled?: string;
270
+ }
271
+ declare const ScOnlyField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGroup, className, placeholderFilled, ...props }: IScOnlyFieldProps) => JSX.Element;
272
+
273
+ interface IScPendingActionProps {
274
+ className?: string;
275
+ }
276
+ declare const ScPendingAction: ({ className, ...props }: IScPendingActionProps) => JSX.Element;
277
+
278
+ interface IScPhtogenixInviteProps {
279
+ active?: "false" | "true";
280
+ scAppCardappDescription?: string;
281
+ scAppCardappName?: string;
282
+ scAppCardappIcon?: JSX.Element;
283
+ className?: string;
284
+ }
285
+ declare const ScPhtogenixInvite: ({ active, scAppCardappDescription, scAppCardappName, scAppCardappIcon, className, ...props }: IScPhtogenixInviteProps) => JSX.Element;
286
+
287
+ interface IScQuickPromptProps {
288
+ className?: string;
289
+ }
290
+ declare const ScQuickPrompt: ({ className, }: IScQuickPromptProps) => JSX.Element;
291
+
292
+ interface IScRadioProps {
293
+ state?: "default" | "selected";
294
+ className?: string;
295
+ }
296
+ declare const ScRadio: ({ state, className, ...props }: IScRadioProps) => JSX.Element;
297
+
298
+ interface IScReferralTableHeaderProps {
299
+ className?: string;
300
+ }
301
+ declare const ScReferralTableHeader: ({ className, ...props }: IScReferralTableHeaderProps) => JSX.Element;
302
+
303
+ interface IScReferralTableListProps {
304
+ className?: string;
305
+ }
306
+ declare const ScReferralTableList: ({ className, ...props }: IScReferralTableListProps) => JSX.Element;
307
+
308
+ interface IScSettingsNavProps {
309
+ className?: string;
310
+ }
311
+ declare const ScSettingsNav: ({ className, ...props }: IScSettingsNavProps) => JSX.Element;
312
+
313
+ interface IScSidebarIconsProps {
314
+ instance?: JSX.Element;
315
+ state?: "default" | "hover";
316
+ className?: string;
317
+ }
318
+ declare const ScSidebarIcons: ({ instance, state, className, ...props }: IScSidebarIconsProps) => JSX.Element;
319
+
320
+ interface IScStrLogoProps {
321
+ type?: "default" | "logo-only";
322
+ className?: string;
323
+ }
324
+ declare const ScStrLogo: ({ type, className, ...props }: IScStrLogoProps) => JSX.Element;
325
+
326
+ interface IScTabCompProps {
327
+ icon?: JSX.Element;
328
+ active?: "true" | "false";
329
+ type?: "text-only" | "icon-only";
330
+ className?: string;
331
+ text?: string;
332
+ }
333
+ declare const ScTabComp: ({ icon, active, type, className, text, ...props }: IScTabCompProps) => JSX.Element;
334
+
335
+ interface IScTabFieldProps {
336
+ label?: string;
337
+ className?: string;
338
+ }
339
+ declare const ScTabField: ({ label, className, ...props }: IScTabFieldProps) => JSX.Element;
340
+
341
+ interface IScTabSwitcherProps {
342
+ tabCount?: "2" | "3" | "4" | "5";
343
+ component?: JSX.Element;
344
+ component2?: JSX.Element;
345
+ component3?: JSX.Element;
346
+ component4?: JSX.Element;
347
+ component5?: JSX.Element;
348
+ scTabCompicon?: JSX.Element;
349
+ scTabCompactive?: string;
350
+ scTabComptype?: string;
351
+ className?: string;
352
+ }
353
+ declare const ScTabSwitcher: ({ tabCount, component, component2, component3, component4, component5, className, ...props }: IScTabSwitcherProps) => JSX.Element;
354
+
355
+ interface IScTableHeaderProps {
356
+ type?: "default" | "pending";
357
+ className?: string;
358
+ }
359
+ declare const ScTableHeader: ({ type, className, ...props }: IScTableHeaderProps) => JSX.Element;
360
+
361
+ interface IScTableListProps {
362
+ invitedBy?: string;
363
+ signedOn?: string;
364
+ hover?: "false" | "true";
365
+ variant?: "active" | "pending";
366
+ className?: string;
367
+ }
368
+ declare const ScTableList: ({ invitedBy, signedOn, hover, variant, className, ...props }: IScTableListProps) => JSX.Element;
369
+
370
+ interface IScTextFieldProps {
371
+ tfRightIcon?: JSX.Element;
372
+ tfLeftIcon?: JSX.Element;
373
+ state?: "default" | "active" | "error" | "disabled" | "filled";
374
+ tfGroup?: "icon-right" | "icon-left" | "icon-left-right" | "none";
375
+ labelGroup?: "none" | "label" | "text" | "icon";
376
+ className?: string;
377
+ placeholderFilled?: string;
378
+ label?: string;
379
+ }
380
+ declare const ScTextField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGroup, className, placeholderFilled, label, ...props }: IScTextFieldProps) => JSX.Element;
381
+
382
+ interface IScToggleSwitchProps {
383
+ active?: "true" | "false";
384
+ className?: string;
385
+ }
386
+ declare const ScToggleSwitch: ({ active, className, ...props }: IScToggleSwitchProps) => JSX.Element;
387
+
388
+ interface IScVersionProps {
389
+ state?: "expanded" | "collapsed";
390
+ scSidebarIconsinstance?: JSX.Element;
391
+ component?: JSX.Element;
392
+ className?: string;
393
+ }
394
+ declare const ScVersion: ({ state, scSidebarIconsinstance, component, className, ...props }: IScVersionProps) => JSX.Element;
395
+
396
+ interface IScWorkspaceCardProps {
397
+ className?: string;
398
+ }
399
+ declare const ScWorkspaceCard: ({ className, }: IScWorkspaceCardProps) => JSX.Element;
400
+
401
+ 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 };