@streamoid/ui 0.2.5 → 0.2.7
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/README.md +4 -3
- package/dist/index.css +424 -107
- package/dist/index.d.mts +130 -39
- package/dist/index.d.ts +130 -39
- package/dist/index.js +581 -181
- package/dist/index.mjs +830 -430
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -161,9 +161,11 @@ interface IScPairtextProps {
|
|
|
161
161
|
icon?: JSX.Element;
|
|
162
162
|
iconPosition?: "left" | "right";
|
|
163
163
|
type?: "icon" | "radio" | "checkbox";
|
|
164
|
+
checked?: boolean;
|
|
165
|
+
onChange?: (checked: boolean) => void;
|
|
164
166
|
className?: string;
|
|
165
167
|
}
|
|
166
|
-
declare const ScPairtext: ({ content, icon, iconPosition, type, className, ...props }: IScPairtextProps) => JSX.Element;
|
|
168
|
+
declare const ScPairtext: ({ content, icon, iconPosition, type, checked, onChange, className, ...props }: IScPairtextProps) => JSX.Element;
|
|
167
169
|
|
|
168
170
|
interface PlanFeatureSection {
|
|
169
171
|
section: string;
|
|
@@ -209,9 +211,17 @@ interface IScProfileProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
209
211
|
declare const ScProfile: ({ name, subText, collapsed, profileImage, className, ...props }: IScProfileProps) => JSX.Element;
|
|
210
212
|
|
|
211
213
|
interface IScProfileImageUpdateProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
214
|
+
/** Image URL or blob preview to display */
|
|
215
|
+
imageUrl?: string;
|
|
216
|
+
/** Initials fallback when no image */
|
|
217
|
+
initials?: string;
|
|
218
|
+
/** Called when user selects a file for upload */
|
|
219
|
+
onUpload?: (file: File) => void;
|
|
220
|
+
/** Called when user clicks delete */
|
|
221
|
+
onDelete?: () => void;
|
|
212
222
|
className?: string;
|
|
213
223
|
}
|
|
214
|
-
declare const ScProfileImageUpdate: ({ className, ...props }: IScProfileImageUpdateProps) => JSX.Element;
|
|
224
|
+
declare const ScProfileImageUpdate: ({ imageUrl, initials, onUpload, onDelete, className, ...props }: IScProfileImageUpdateProps) => JSX.Element;
|
|
215
225
|
|
|
216
226
|
interface IScProfileOptionsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
217
227
|
className?: string;
|
|
@@ -286,10 +296,11 @@ interface StreamoidSidebarProps {
|
|
|
286
296
|
profile?: SidebarProfileConfig;
|
|
287
297
|
versionText?: string;
|
|
288
298
|
toggleIcon?: ReactNode | ((expanded: boolean) => ReactNode);
|
|
299
|
+
hideFooter?: boolean;
|
|
289
300
|
className?: string;
|
|
290
301
|
style?: CSSProperties;
|
|
291
302
|
}
|
|
292
|
-
declare function StreamoidSidebar({ expanded, onToggle, config, iconMap, activeItemId, onItemSelect, expandedLogo, collapsedLogo, profile, versionText, toggleIcon, className, style, }: StreamoidSidebarProps): react_jsx_runtime.JSX.Element;
|
|
303
|
+
declare function StreamoidSidebar({ expanded, onToggle, config, iconMap, activeItemId, onItemSelect, expandedLogo, collapsedLogo, profile, versionText, toggleIcon, hideFooter, className, style, }: StreamoidSidebarProps): react_jsx_runtime.JSX.Element;
|
|
293
304
|
|
|
294
305
|
interface IScSidebarMenuProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
295
306
|
icon?: JSX.Element;
|
|
@@ -362,8 +373,22 @@ declare const ScAppCard: ({ appIcon, appName, appDescription, className, ...prop
|
|
|
362
373
|
interface IScAppFieldProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
363
374
|
appFieldTitle?: string;
|
|
364
375
|
className?: string;
|
|
365
|
-
|
|
366
|
-
|
|
376
|
+
artifaxEnabled?: boolean;
|
|
377
|
+
onArtifaxToggle?: (active: boolean) => void;
|
|
378
|
+
photogenixEnabled?: boolean;
|
|
379
|
+
onPhotogenixToggle?: (active: boolean) => void;
|
|
380
|
+
catalogixEnabled?: boolean;
|
|
381
|
+
onCatalogixToggle?: (active: boolean) => void;
|
|
382
|
+
catalogixStores?: {
|
|
383
|
+
id: string;
|
|
384
|
+
name: string;
|
|
385
|
+
}[];
|
|
386
|
+
catalogixSelectedStores?: string[];
|
|
387
|
+
onCatalogixStoreToggle?: (storeId: string) => void;
|
|
388
|
+
catalogixSearchValue?: string;
|
|
389
|
+
onCatalogixSearchChange?: (query: string) => void;
|
|
390
|
+
}
|
|
391
|
+
declare const ScAppField: ({ appFieldTitle, className, artifaxEnabled, onArtifaxToggle, photogenixEnabled, onPhotogenixToggle, catalogixEnabled, onCatalogixToggle, catalogixStores, catalogixSelectedStores, onCatalogixStoreToggle, catalogixSearchValue, onCatalogixSearchChange, ...props }: IScAppFieldProps) => JSX.Element;
|
|
367
392
|
|
|
368
393
|
interface IScArtifaxInviteProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
369
394
|
active?: "false" | "true";
|
|
@@ -371,8 +396,10 @@ interface IScArtifaxInviteProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
371
396
|
appDescription?: string;
|
|
372
397
|
appIcon?: JSX.Element;
|
|
373
398
|
className?: string;
|
|
399
|
+
enabled?: boolean;
|
|
400
|
+
onToggle?: (active: boolean) => void;
|
|
374
401
|
}
|
|
375
|
-
declare const ScArtifaxInvite: ({ active, appName, appDescription, appIcon, className, ...props }: IScArtifaxInviteProps) => JSX.Element;
|
|
402
|
+
declare const ScArtifaxInvite: ({ active, appName, appDescription, appIcon, className, enabled, onToggle, ...props }: IScArtifaxInviteProps) => JSX.Element;
|
|
376
403
|
|
|
377
404
|
interface IScBillingHistoryHeaderProps {
|
|
378
405
|
className?: string;
|
|
@@ -388,20 +415,39 @@ interface IScCatalogixInviteProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
388
415
|
searchPlaceholder?: string;
|
|
389
416
|
appIcon?: JSX.Element;
|
|
390
417
|
className?: string;
|
|
418
|
+
enabled?: boolean;
|
|
419
|
+
onToggle?: (active: boolean) => void;
|
|
420
|
+
stores?: {
|
|
421
|
+
id: string;
|
|
422
|
+
name: string;
|
|
423
|
+
}[];
|
|
424
|
+
selectedStores?: string[];
|
|
425
|
+
onStoreToggle?: (storeId: string) => void;
|
|
426
|
+
searchValue?: string;
|
|
427
|
+
onSearchChange?: (query: string) => void;
|
|
391
428
|
}
|
|
392
|
-
declare const ScCatalogixInvite: ({ active, appName, appDescription, storeAccessTitle, selectedCount, searchPlaceholder, appIcon, className, ...props }: IScCatalogixInviteProps) => JSX.Element;
|
|
429
|
+
declare const ScCatalogixInvite: ({ active, appName, appDescription, storeAccessTitle, selectedCount, searchPlaceholder, appIcon, className, enabled, onToggle, stores, selectedStores, onStoreToggle, searchValue, onSearchChange, ...props }: IScCatalogixInviteProps) => JSX.Element;
|
|
393
430
|
|
|
394
431
|
interface IScCheckFieldProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
395
432
|
label?: string;
|
|
396
433
|
className?: string;
|
|
434
|
+
checkboxes?: {
|
|
435
|
+
label: string;
|
|
436
|
+
checked: boolean;
|
|
437
|
+
onChange: (checked: boolean) => void;
|
|
438
|
+
}[];
|
|
397
439
|
}
|
|
398
|
-
declare const ScCheckField: ({ label, className, ...props }: IScCheckFieldProps) => JSX.Element;
|
|
440
|
+
declare const ScCheckField: ({ label, className, checkboxes, ...props }: IScCheckFieldProps) => JSX.Element;
|
|
399
441
|
|
|
400
|
-
interface IScCheckboxProps
|
|
442
|
+
interface IScCheckboxProps {
|
|
401
443
|
state?: "default" | "partial" | "selected";
|
|
444
|
+
checked?: boolean;
|
|
445
|
+
onChange?: (checked: boolean) => void;
|
|
402
446
|
className?: string;
|
|
447
|
+
style?: React.CSSProperties;
|
|
448
|
+
onClick?: React.MouseEventHandler<HTMLDivElement>;
|
|
403
449
|
}
|
|
404
|
-
declare const ScCheckbox: ({ state, className, ...props }: IScCheckboxProps) => JSX.Element;
|
|
450
|
+
declare const ScCheckbox: ({ state, checked, onChange, className, ...props }: IScCheckboxProps & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">) => JSX.Element;
|
|
405
451
|
|
|
406
452
|
interface IScFieldButtonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
407
453
|
icon?: JSX.Element;
|
|
@@ -420,8 +466,11 @@ interface IScOnlyFieldProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
420
466
|
labelGroup?: "none" | "label" | "text" | "icon";
|
|
421
467
|
className?: string;
|
|
422
468
|
placeholderFilled?: string;
|
|
469
|
+
value?: string;
|
|
470
|
+
onInputChange?: (value: string) => void;
|
|
471
|
+
inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
423
472
|
}
|
|
424
|
-
declare const ScOnlyField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGroup, className, placeholderFilled, ...props }: IScOnlyFieldProps) => JSX.Element;
|
|
473
|
+
declare const ScOnlyField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGroup, className, placeholderFilled, value, onInputChange, inputProps, ...props }: IScOnlyFieldProps) => JSX.Element;
|
|
425
474
|
|
|
426
475
|
interface IScPendingActionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
427
476
|
className?: string;
|
|
@@ -434,8 +483,10 @@ interface IScPhtogenixInviteProps {
|
|
|
434
483
|
scAppCardappName?: string;
|
|
435
484
|
scAppCardappIcon?: JSX.Element;
|
|
436
485
|
className?: string;
|
|
486
|
+
enabled?: boolean;
|
|
487
|
+
onToggle?: (active: boolean) => void;
|
|
437
488
|
}
|
|
438
|
-
declare const ScPhtogenixInvite: ({ active, scAppCardappDescription, scAppCardappName, scAppCardappIcon, className, ...props }: IScPhtogenixInviteProps) => JSX.Element;
|
|
489
|
+
declare const ScPhtogenixInvite: ({ active, scAppCardappDescription, scAppCardappName, scAppCardappIcon, className, enabled, onToggle, ...props }: IScPhtogenixInviteProps) => JSX.Element;
|
|
439
490
|
|
|
440
491
|
interface IScQuickPromptProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
441
492
|
appName?: string;
|
|
@@ -496,8 +547,14 @@ declare const ScTabComp: ({ icon, active, type, className, text, ...props }: ISc
|
|
|
496
547
|
interface IScTabFieldProps {
|
|
497
548
|
label?: string;
|
|
498
549
|
className?: string;
|
|
550
|
+
tabs?: {
|
|
551
|
+
label: string;
|
|
552
|
+
value: string;
|
|
553
|
+
}[];
|
|
554
|
+
activeTab?: string;
|
|
555
|
+
onTabChange?: (value: string) => void;
|
|
499
556
|
}
|
|
500
|
-
declare const ScTabField: ({ label, className, ...props }: IScTabFieldProps) => JSX.Element;
|
|
557
|
+
declare const ScTabField: ({ label, className, tabs, activeTab, onTabChange, ...props }: IScTabFieldProps) => JSX.Element;
|
|
501
558
|
|
|
502
559
|
interface IScTabSwitcherProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
503
560
|
tabCount?: "2" | "3" | "4" | "5";
|
|
@@ -544,9 +601,11 @@ declare const ScTextField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGrou
|
|
|
544
601
|
|
|
545
602
|
interface IScToggleSwitchProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
546
603
|
active?: "true" | "false";
|
|
604
|
+
checked?: boolean;
|
|
605
|
+
onToggle?: (active: boolean) => void;
|
|
547
606
|
className?: string;
|
|
548
607
|
}
|
|
549
|
-
declare const ScToggleSwitch: ({ active, className, ...props }: IScToggleSwitchProps) => JSX.Element;
|
|
608
|
+
declare const ScToggleSwitch: ({ active, checked, onToggle, className, ...props }: IScToggleSwitchProps) => JSX.Element;
|
|
550
609
|
|
|
551
610
|
interface IScVersionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
552
611
|
state?: "expanded" | "collapsed";
|
|
@@ -755,43 +814,31 @@ interface IScReferralCardMobileProps {
|
|
|
755
814
|
}
|
|
756
815
|
declare const ScReferralCardMobile: ({ name, email, imageUrl, badge, date, credits, onClick, className, ...props }: IScReferralCardMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
757
816
|
|
|
758
|
-
interface
|
|
759
|
-
|
|
760
|
-
invoiceNumber?: string;
|
|
761
|
-
/** Date string */
|
|
817
|
+
interface IInvoiceHistoryMobileProps {
|
|
818
|
+
invoiceId?: string;
|
|
762
819
|
date?: string;
|
|
763
|
-
/** Amount string */
|
|
764
820
|
amount?: string;
|
|
765
|
-
/** Click handler */
|
|
766
|
-
onClick?: (e: React$1.MouseEvent) => void;
|
|
767
|
-
/** Additional class name */
|
|
768
821
|
className?: string;
|
|
769
822
|
}
|
|
770
|
-
declare const
|
|
823
|
+
declare const InvoiceHistoryMobile: ({ invoiceId, date, amount, className, }: IInvoiceHistoryMobileProps) => JSX.Element;
|
|
771
824
|
|
|
772
|
-
interface
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
/** Usage count/amount (shown in red) */
|
|
776
|
-
usageCount?: string;
|
|
777
|
-
/** User name */
|
|
825
|
+
interface IUsageHistoryMobileProps {
|
|
826
|
+
serviceName?: string;
|
|
827
|
+
credits?: string;
|
|
778
828
|
userName?: string;
|
|
779
|
-
/** Date string */
|
|
780
829
|
date?: string;
|
|
781
|
-
|
|
782
|
-
totalCount?: string;
|
|
783
|
-
/** Click handler */
|
|
784
|
-
onClick?: (e: React$1.MouseEvent) => void;
|
|
785
|
-
/** Additional class name */
|
|
830
|
+
balance?: string;
|
|
786
831
|
className?: string;
|
|
787
832
|
}
|
|
788
|
-
declare const
|
|
833
|
+
declare const UsageHistoryMobile: ({ serviceName, credits, userName, date, balance, className, }: IUsageHistoryMobileProps) => JSX.Element;
|
|
789
834
|
|
|
790
835
|
interface IScWorkspaceSwitchMobileV2Props {
|
|
791
836
|
/** Workspace name */
|
|
792
837
|
wsName?: string;
|
|
793
838
|
/** Workspace initials */
|
|
794
839
|
initials?: string;
|
|
840
|
+
/** Workspace profile image URL */
|
|
841
|
+
imageUrl?: string;
|
|
795
842
|
/** Role label */
|
|
796
843
|
role?: string;
|
|
797
844
|
/** Plan name */
|
|
@@ -799,12 +846,56 @@ interface IScWorkspaceSwitchMobileV2Props {
|
|
|
799
846
|
/** Owner email */
|
|
800
847
|
ownerId?: string;
|
|
801
848
|
/** Card type */
|
|
802
|
-
type?: "currentWS" | "otherWS";
|
|
849
|
+
type?: "currentWS" | "otherWS" | "display";
|
|
803
850
|
/** Click handler */
|
|
804
851
|
onClick?: (e: React$1.MouseEvent) => void;
|
|
805
852
|
/** Additional class name */
|
|
806
853
|
className?: string;
|
|
807
854
|
}
|
|
808
|
-
declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
855
|
+
declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, imageUrl, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
856
|
+
|
|
857
|
+
interface IScImageFieldProps {
|
|
858
|
+
label?: string;
|
|
859
|
+
/** Preview URL (local blob or remote URL) */
|
|
860
|
+
imagePreview?: string | null;
|
|
861
|
+
/** File name to display when image is uploaded */
|
|
862
|
+
imageName?: string | null;
|
|
863
|
+
/** Called when user selects a file */
|
|
864
|
+
onFileSelect?: (file: File) => void;
|
|
865
|
+
/** Called when user removes the image */
|
|
866
|
+
onRemove?: () => void;
|
|
867
|
+
className?: string;
|
|
868
|
+
}
|
|
869
|
+
declare const ScImageField: ({ label, imagePreview, imageName, onFileSelect, onRemove, className, }: IScImageFieldProps) => JSX.Element;
|
|
870
|
+
|
|
871
|
+
interface IScSettingsTabCompProps {
|
|
872
|
+
tabName?: string;
|
|
873
|
+
active?: boolean;
|
|
874
|
+
onClick?: () => void;
|
|
875
|
+
className?: string;
|
|
876
|
+
}
|
|
877
|
+
declare const ScSettingsTabComp: ({ tabName, active, onClick, className, }: IScSettingsTabCompProps) => JSX.Element;
|
|
878
|
+
|
|
879
|
+
interface IScCreditsUsageCardMobileProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
880
|
+
usageLabel?: string;
|
|
881
|
+
usageText?: string;
|
|
882
|
+
remainingText?: string;
|
|
883
|
+
buyButtonText?: string;
|
|
884
|
+
onBuyClick?: () => void;
|
|
885
|
+
className?: string;
|
|
886
|
+
}
|
|
887
|
+
declare const ScCreditsUsageCardMobile: ({ usageLabel, usageText, remainingText, buyButtonText, onBuyClick, className, ...props }: IScCreditsUsageCardMobileProps) => JSX.Element;
|
|
888
|
+
|
|
889
|
+
interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
890
|
+
planName?: string;
|
|
891
|
+
planCredits?: string;
|
|
892
|
+
planPrice?: string;
|
|
893
|
+
badgeText?: string;
|
|
894
|
+
currentPlanLabel?: string;
|
|
895
|
+
upgradeButtonText?: string;
|
|
896
|
+
onUpgrade?: () => void;
|
|
897
|
+
className?: string;
|
|
898
|
+
}
|
|
899
|
+
declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, currentPlanLabel, upgradeButtonText, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
|
|
809
900
|
|
|
810
|
-
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
|
|
901
|
+
export { type IInvoiceHistoryMobileProps, 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 IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScFieldButtonProps, type IScGoogleSignInProps, type IScHDividerProps, type IScHeaderProps, type IScImageFieldProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanDetailsCardMobileProps, type IScPlanDetailsCardProps, type IScPopUpMenuProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfileProps, type IScProfileSettingsCompProps, type IScProfileV2MobileProps, type IScProgressBarProps, type IScQuickPromptProps, type IScRadioProps, type IScReferralCardMobileProps, type IScReferralTableHeaderProps, type IScReferralTableListProps, type IScRoleMobileProps, type IScRoleProps, type IScSettingsNavProps, type IScSettingsTabCompProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSliderProps, type IScStrLogoProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListMobileProps, type IScTableListProps, type IScTextFieldProps, type IScToggleSwitchProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceSettingsMobileProps, type IScWorkspaceSwitchMobileProps, type IScWorkspaceSwitchMobileV2Props, type IUsageHistoryMobileProps, InvoiceHistoryMobile, NscWorkspaceSwitch, type PlanFeatureSection, ScAccess, ScAppCard, ScAppField, ScAppListingCard, ScArtifaxInvite, ScBadges, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScDp, type ScDpProps, ScFieldButton, ScGoogleSignIn, ScHDivider, ScHeader, ScImageField, ScIntialProfileCover, ScLogoUnit, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScOnlyField, ScOnlyIcon, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSettingsNav, ScSettingsTabComp, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSlider, ScStrLogo, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTextField, ScToggleSwitch, ScVDivider, ScVersion, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem };
|
package/dist/index.d.ts
CHANGED
|
@@ -161,9 +161,11 @@ interface IScPairtextProps {
|
|
|
161
161
|
icon?: JSX.Element;
|
|
162
162
|
iconPosition?: "left" | "right";
|
|
163
163
|
type?: "icon" | "radio" | "checkbox";
|
|
164
|
+
checked?: boolean;
|
|
165
|
+
onChange?: (checked: boolean) => void;
|
|
164
166
|
className?: string;
|
|
165
167
|
}
|
|
166
|
-
declare const ScPairtext: ({ content, icon, iconPosition, type, className, ...props }: IScPairtextProps) => JSX.Element;
|
|
168
|
+
declare const ScPairtext: ({ content, icon, iconPosition, type, checked, onChange, className, ...props }: IScPairtextProps) => JSX.Element;
|
|
167
169
|
|
|
168
170
|
interface PlanFeatureSection {
|
|
169
171
|
section: string;
|
|
@@ -209,9 +211,17 @@ interface IScProfileProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
209
211
|
declare const ScProfile: ({ name, subText, collapsed, profileImage, className, ...props }: IScProfileProps) => JSX.Element;
|
|
210
212
|
|
|
211
213
|
interface IScProfileImageUpdateProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
214
|
+
/** Image URL or blob preview to display */
|
|
215
|
+
imageUrl?: string;
|
|
216
|
+
/** Initials fallback when no image */
|
|
217
|
+
initials?: string;
|
|
218
|
+
/** Called when user selects a file for upload */
|
|
219
|
+
onUpload?: (file: File) => void;
|
|
220
|
+
/** Called when user clicks delete */
|
|
221
|
+
onDelete?: () => void;
|
|
212
222
|
className?: string;
|
|
213
223
|
}
|
|
214
|
-
declare const ScProfileImageUpdate: ({ className, ...props }: IScProfileImageUpdateProps) => JSX.Element;
|
|
224
|
+
declare const ScProfileImageUpdate: ({ imageUrl, initials, onUpload, onDelete, className, ...props }: IScProfileImageUpdateProps) => JSX.Element;
|
|
215
225
|
|
|
216
226
|
interface IScProfileOptionsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
217
227
|
className?: string;
|
|
@@ -286,10 +296,11 @@ interface StreamoidSidebarProps {
|
|
|
286
296
|
profile?: SidebarProfileConfig;
|
|
287
297
|
versionText?: string;
|
|
288
298
|
toggleIcon?: ReactNode | ((expanded: boolean) => ReactNode);
|
|
299
|
+
hideFooter?: boolean;
|
|
289
300
|
className?: string;
|
|
290
301
|
style?: CSSProperties;
|
|
291
302
|
}
|
|
292
|
-
declare function StreamoidSidebar({ expanded, onToggle, config, iconMap, activeItemId, onItemSelect, expandedLogo, collapsedLogo, profile, versionText, toggleIcon, className, style, }: StreamoidSidebarProps): react_jsx_runtime.JSX.Element;
|
|
303
|
+
declare function StreamoidSidebar({ expanded, onToggle, config, iconMap, activeItemId, onItemSelect, expandedLogo, collapsedLogo, profile, versionText, toggleIcon, hideFooter, className, style, }: StreamoidSidebarProps): react_jsx_runtime.JSX.Element;
|
|
293
304
|
|
|
294
305
|
interface IScSidebarMenuProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
295
306
|
icon?: JSX.Element;
|
|
@@ -362,8 +373,22 @@ declare const ScAppCard: ({ appIcon, appName, appDescription, className, ...prop
|
|
|
362
373
|
interface IScAppFieldProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
363
374
|
appFieldTitle?: string;
|
|
364
375
|
className?: string;
|
|
365
|
-
|
|
366
|
-
|
|
376
|
+
artifaxEnabled?: boolean;
|
|
377
|
+
onArtifaxToggle?: (active: boolean) => void;
|
|
378
|
+
photogenixEnabled?: boolean;
|
|
379
|
+
onPhotogenixToggle?: (active: boolean) => void;
|
|
380
|
+
catalogixEnabled?: boolean;
|
|
381
|
+
onCatalogixToggle?: (active: boolean) => void;
|
|
382
|
+
catalogixStores?: {
|
|
383
|
+
id: string;
|
|
384
|
+
name: string;
|
|
385
|
+
}[];
|
|
386
|
+
catalogixSelectedStores?: string[];
|
|
387
|
+
onCatalogixStoreToggle?: (storeId: string) => void;
|
|
388
|
+
catalogixSearchValue?: string;
|
|
389
|
+
onCatalogixSearchChange?: (query: string) => void;
|
|
390
|
+
}
|
|
391
|
+
declare const ScAppField: ({ appFieldTitle, className, artifaxEnabled, onArtifaxToggle, photogenixEnabled, onPhotogenixToggle, catalogixEnabled, onCatalogixToggle, catalogixStores, catalogixSelectedStores, onCatalogixStoreToggle, catalogixSearchValue, onCatalogixSearchChange, ...props }: IScAppFieldProps) => JSX.Element;
|
|
367
392
|
|
|
368
393
|
interface IScArtifaxInviteProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
369
394
|
active?: "false" | "true";
|
|
@@ -371,8 +396,10 @@ interface IScArtifaxInviteProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
371
396
|
appDescription?: string;
|
|
372
397
|
appIcon?: JSX.Element;
|
|
373
398
|
className?: string;
|
|
399
|
+
enabled?: boolean;
|
|
400
|
+
onToggle?: (active: boolean) => void;
|
|
374
401
|
}
|
|
375
|
-
declare const ScArtifaxInvite: ({ active, appName, appDescription, appIcon, className, ...props }: IScArtifaxInviteProps) => JSX.Element;
|
|
402
|
+
declare const ScArtifaxInvite: ({ active, appName, appDescription, appIcon, className, enabled, onToggle, ...props }: IScArtifaxInviteProps) => JSX.Element;
|
|
376
403
|
|
|
377
404
|
interface IScBillingHistoryHeaderProps {
|
|
378
405
|
className?: string;
|
|
@@ -388,20 +415,39 @@ interface IScCatalogixInviteProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
388
415
|
searchPlaceholder?: string;
|
|
389
416
|
appIcon?: JSX.Element;
|
|
390
417
|
className?: string;
|
|
418
|
+
enabled?: boolean;
|
|
419
|
+
onToggle?: (active: boolean) => void;
|
|
420
|
+
stores?: {
|
|
421
|
+
id: string;
|
|
422
|
+
name: string;
|
|
423
|
+
}[];
|
|
424
|
+
selectedStores?: string[];
|
|
425
|
+
onStoreToggle?: (storeId: string) => void;
|
|
426
|
+
searchValue?: string;
|
|
427
|
+
onSearchChange?: (query: string) => void;
|
|
391
428
|
}
|
|
392
|
-
declare const ScCatalogixInvite: ({ active, appName, appDescription, storeAccessTitle, selectedCount, searchPlaceholder, appIcon, className, ...props }: IScCatalogixInviteProps) => JSX.Element;
|
|
429
|
+
declare const ScCatalogixInvite: ({ active, appName, appDescription, storeAccessTitle, selectedCount, searchPlaceholder, appIcon, className, enabled, onToggle, stores, selectedStores, onStoreToggle, searchValue, onSearchChange, ...props }: IScCatalogixInviteProps) => JSX.Element;
|
|
393
430
|
|
|
394
431
|
interface IScCheckFieldProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
395
432
|
label?: string;
|
|
396
433
|
className?: string;
|
|
434
|
+
checkboxes?: {
|
|
435
|
+
label: string;
|
|
436
|
+
checked: boolean;
|
|
437
|
+
onChange: (checked: boolean) => void;
|
|
438
|
+
}[];
|
|
397
439
|
}
|
|
398
|
-
declare const ScCheckField: ({ label, className, ...props }: IScCheckFieldProps) => JSX.Element;
|
|
440
|
+
declare const ScCheckField: ({ label, className, checkboxes, ...props }: IScCheckFieldProps) => JSX.Element;
|
|
399
441
|
|
|
400
|
-
interface IScCheckboxProps
|
|
442
|
+
interface IScCheckboxProps {
|
|
401
443
|
state?: "default" | "partial" | "selected";
|
|
444
|
+
checked?: boolean;
|
|
445
|
+
onChange?: (checked: boolean) => void;
|
|
402
446
|
className?: string;
|
|
447
|
+
style?: React.CSSProperties;
|
|
448
|
+
onClick?: React.MouseEventHandler<HTMLDivElement>;
|
|
403
449
|
}
|
|
404
|
-
declare const ScCheckbox: ({ state, className, ...props }: IScCheckboxProps) => JSX.Element;
|
|
450
|
+
declare const ScCheckbox: ({ state, checked, onChange, className, ...props }: IScCheckboxProps & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">) => JSX.Element;
|
|
405
451
|
|
|
406
452
|
interface IScFieldButtonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
407
453
|
icon?: JSX.Element;
|
|
@@ -420,8 +466,11 @@ interface IScOnlyFieldProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
420
466
|
labelGroup?: "none" | "label" | "text" | "icon";
|
|
421
467
|
className?: string;
|
|
422
468
|
placeholderFilled?: string;
|
|
469
|
+
value?: string;
|
|
470
|
+
onInputChange?: (value: string) => void;
|
|
471
|
+
inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
423
472
|
}
|
|
424
|
-
declare const ScOnlyField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGroup, className, placeholderFilled, ...props }: IScOnlyFieldProps) => JSX.Element;
|
|
473
|
+
declare const ScOnlyField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGroup, className, placeholderFilled, value, onInputChange, inputProps, ...props }: IScOnlyFieldProps) => JSX.Element;
|
|
425
474
|
|
|
426
475
|
interface IScPendingActionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
427
476
|
className?: string;
|
|
@@ -434,8 +483,10 @@ interface IScPhtogenixInviteProps {
|
|
|
434
483
|
scAppCardappName?: string;
|
|
435
484
|
scAppCardappIcon?: JSX.Element;
|
|
436
485
|
className?: string;
|
|
486
|
+
enabled?: boolean;
|
|
487
|
+
onToggle?: (active: boolean) => void;
|
|
437
488
|
}
|
|
438
|
-
declare const ScPhtogenixInvite: ({ active, scAppCardappDescription, scAppCardappName, scAppCardappIcon, className, ...props }: IScPhtogenixInviteProps) => JSX.Element;
|
|
489
|
+
declare const ScPhtogenixInvite: ({ active, scAppCardappDescription, scAppCardappName, scAppCardappIcon, className, enabled, onToggle, ...props }: IScPhtogenixInviteProps) => JSX.Element;
|
|
439
490
|
|
|
440
491
|
interface IScQuickPromptProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
441
492
|
appName?: string;
|
|
@@ -496,8 +547,14 @@ declare const ScTabComp: ({ icon, active, type, className, text, ...props }: ISc
|
|
|
496
547
|
interface IScTabFieldProps {
|
|
497
548
|
label?: string;
|
|
498
549
|
className?: string;
|
|
550
|
+
tabs?: {
|
|
551
|
+
label: string;
|
|
552
|
+
value: string;
|
|
553
|
+
}[];
|
|
554
|
+
activeTab?: string;
|
|
555
|
+
onTabChange?: (value: string) => void;
|
|
499
556
|
}
|
|
500
|
-
declare const ScTabField: ({ label, className, ...props }: IScTabFieldProps) => JSX.Element;
|
|
557
|
+
declare const ScTabField: ({ label, className, tabs, activeTab, onTabChange, ...props }: IScTabFieldProps) => JSX.Element;
|
|
501
558
|
|
|
502
559
|
interface IScTabSwitcherProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
503
560
|
tabCount?: "2" | "3" | "4" | "5";
|
|
@@ -544,9 +601,11 @@ declare const ScTextField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGrou
|
|
|
544
601
|
|
|
545
602
|
interface IScToggleSwitchProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
546
603
|
active?: "true" | "false";
|
|
604
|
+
checked?: boolean;
|
|
605
|
+
onToggle?: (active: boolean) => void;
|
|
547
606
|
className?: string;
|
|
548
607
|
}
|
|
549
|
-
declare const ScToggleSwitch: ({ active, className, ...props }: IScToggleSwitchProps) => JSX.Element;
|
|
608
|
+
declare const ScToggleSwitch: ({ active, checked, onToggle, className, ...props }: IScToggleSwitchProps) => JSX.Element;
|
|
550
609
|
|
|
551
610
|
interface IScVersionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
552
611
|
state?: "expanded" | "collapsed";
|
|
@@ -755,43 +814,31 @@ interface IScReferralCardMobileProps {
|
|
|
755
814
|
}
|
|
756
815
|
declare const ScReferralCardMobile: ({ name, email, imageUrl, badge, date, credits, onClick, className, ...props }: IScReferralCardMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
757
816
|
|
|
758
|
-
interface
|
|
759
|
-
|
|
760
|
-
invoiceNumber?: string;
|
|
761
|
-
/** Date string */
|
|
817
|
+
interface IInvoiceHistoryMobileProps {
|
|
818
|
+
invoiceId?: string;
|
|
762
819
|
date?: string;
|
|
763
|
-
/** Amount string */
|
|
764
820
|
amount?: string;
|
|
765
|
-
/** Click handler */
|
|
766
|
-
onClick?: (e: React$1.MouseEvent) => void;
|
|
767
|
-
/** Additional class name */
|
|
768
821
|
className?: string;
|
|
769
822
|
}
|
|
770
|
-
declare const
|
|
823
|
+
declare const InvoiceHistoryMobile: ({ invoiceId, date, amount, className, }: IInvoiceHistoryMobileProps) => JSX.Element;
|
|
771
824
|
|
|
772
|
-
interface
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
/** Usage count/amount (shown in red) */
|
|
776
|
-
usageCount?: string;
|
|
777
|
-
/** User name */
|
|
825
|
+
interface IUsageHistoryMobileProps {
|
|
826
|
+
serviceName?: string;
|
|
827
|
+
credits?: string;
|
|
778
828
|
userName?: string;
|
|
779
|
-
/** Date string */
|
|
780
829
|
date?: string;
|
|
781
|
-
|
|
782
|
-
totalCount?: string;
|
|
783
|
-
/** Click handler */
|
|
784
|
-
onClick?: (e: React$1.MouseEvent) => void;
|
|
785
|
-
/** Additional class name */
|
|
830
|
+
balance?: string;
|
|
786
831
|
className?: string;
|
|
787
832
|
}
|
|
788
|
-
declare const
|
|
833
|
+
declare const UsageHistoryMobile: ({ serviceName, credits, userName, date, balance, className, }: IUsageHistoryMobileProps) => JSX.Element;
|
|
789
834
|
|
|
790
835
|
interface IScWorkspaceSwitchMobileV2Props {
|
|
791
836
|
/** Workspace name */
|
|
792
837
|
wsName?: string;
|
|
793
838
|
/** Workspace initials */
|
|
794
839
|
initials?: string;
|
|
840
|
+
/** Workspace profile image URL */
|
|
841
|
+
imageUrl?: string;
|
|
795
842
|
/** Role label */
|
|
796
843
|
role?: string;
|
|
797
844
|
/** Plan name */
|
|
@@ -799,12 +846,56 @@ interface IScWorkspaceSwitchMobileV2Props {
|
|
|
799
846
|
/** Owner email */
|
|
800
847
|
ownerId?: string;
|
|
801
848
|
/** Card type */
|
|
802
|
-
type?: "currentWS" | "otherWS";
|
|
849
|
+
type?: "currentWS" | "otherWS" | "display";
|
|
803
850
|
/** Click handler */
|
|
804
851
|
onClick?: (e: React$1.MouseEvent) => void;
|
|
805
852
|
/** Additional class name */
|
|
806
853
|
className?: string;
|
|
807
854
|
}
|
|
808
|
-
declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
855
|
+
declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, imageUrl, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
856
|
+
|
|
857
|
+
interface IScImageFieldProps {
|
|
858
|
+
label?: string;
|
|
859
|
+
/** Preview URL (local blob or remote URL) */
|
|
860
|
+
imagePreview?: string | null;
|
|
861
|
+
/** File name to display when image is uploaded */
|
|
862
|
+
imageName?: string | null;
|
|
863
|
+
/** Called when user selects a file */
|
|
864
|
+
onFileSelect?: (file: File) => void;
|
|
865
|
+
/** Called when user removes the image */
|
|
866
|
+
onRemove?: () => void;
|
|
867
|
+
className?: string;
|
|
868
|
+
}
|
|
869
|
+
declare const ScImageField: ({ label, imagePreview, imageName, onFileSelect, onRemove, className, }: IScImageFieldProps) => JSX.Element;
|
|
870
|
+
|
|
871
|
+
interface IScSettingsTabCompProps {
|
|
872
|
+
tabName?: string;
|
|
873
|
+
active?: boolean;
|
|
874
|
+
onClick?: () => void;
|
|
875
|
+
className?: string;
|
|
876
|
+
}
|
|
877
|
+
declare const ScSettingsTabComp: ({ tabName, active, onClick, className, }: IScSettingsTabCompProps) => JSX.Element;
|
|
878
|
+
|
|
879
|
+
interface IScCreditsUsageCardMobileProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
880
|
+
usageLabel?: string;
|
|
881
|
+
usageText?: string;
|
|
882
|
+
remainingText?: string;
|
|
883
|
+
buyButtonText?: string;
|
|
884
|
+
onBuyClick?: () => void;
|
|
885
|
+
className?: string;
|
|
886
|
+
}
|
|
887
|
+
declare const ScCreditsUsageCardMobile: ({ usageLabel, usageText, remainingText, buyButtonText, onBuyClick, className, ...props }: IScCreditsUsageCardMobileProps) => JSX.Element;
|
|
888
|
+
|
|
889
|
+
interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
890
|
+
planName?: string;
|
|
891
|
+
planCredits?: string;
|
|
892
|
+
planPrice?: string;
|
|
893
|
+
badgeText?: string;
|
|
894
|
+
currentPlanLabel?: string;
|
|
895
|
+
upgradeButtonText?: string;
|
|
896
|
+
onUpgrade?: () => void;
|
|
897
|
+
className?: string;
|
|
898
|
+
}
|
|
899
|
+
declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, currentPlanLabel, upgradeButtonText, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
|
|
809
900
|
|
|
810
|
-
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
|
|
901
|
+
export { type IInvoiceHistoryMobileProps, 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 IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScFieldButtonProps, type IScGoogleSignInProps, type IScHDividerProps, type IScHeaderProps, type IScImageFieldProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanDetailsCardMobileProps, type IScPlanDetailsCardProps, type IScPopUpMenuProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfileProps, type IScProfileSettingsCompProps, type IScProfileV2MobileProps, type IScProgressBarProps, type IScQuickPromptProps, type IScRadioProps, type IScReferralCardMobileProps, type IScReferralTableHeaderProps, type IScReferralTableListProps, type IScRoleMobileProps, type IScRoleProps, type IScSettingsNavProps, type IScSettingsTabCompProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSliderProps, type IScStrLogoProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListMobileProps, type IScTableListProps, type IScTextFieldProps, type IScToggleSwitchProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceSettingsMobileProps, type IScWorkspaceSwitchMobileProps, type IScWorkspaceSwitchMobileV2Props, type IUsageHistoryMobileProps, InvoiceHistoryMobile, NscWorkspaceSwitch, type PlanFeatureSection, ScAccess, ScAppCard, ScAppField, ScAppListingCard, ScArtifaxInvite, ScBadges, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScDp, type ScDpProps, ScFieldButton, ScGoogleSignIn, ScHDivider, ScHeader, ScImageField, ScIntialProfileCover, ScLogoUnit, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScOnlyField, ScOnlyIcon, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSettingsNav, ScSettingsTabComp, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSlider, ScStrLogo, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTextField, ScToggleSwitch, ScVDivider, ScVersion, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem };
|