@streamoid/ui 0.2.3 → 0.2.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 CHANGED
@@ -567,7 +567,7 @@ interface IScWorkspaceCardProps extends React.HTMLAttributes<HTMLDivElement> {
567
567
  }
568
568
  declare const ScWorkspaceCard: ({ workspaceName, role, userCount, ownerEmail, buttonText, className, ...props }: IScWorkspaceCardProps) => JSX.Element;
569
569
 
570
- interface NscWorkspaceSwitchProps {
570
+ interface ScWorkspaceSwitchCardProps {
571
571
  wsName?: string;
572
572
  role?: string;
573
573
  plan?: string;
@@ -579,8 +579,232 @@ interface NscWorkspaceSwitchProps {
579
579
  className?: string;
580
580
  onSwitch?: () => void;
581
581
  onSettings?: () => void;
582
+ onLeave?: () => void;
582
583
  }
583
- declare function NscWorkspaceSwitch({ wsName, role, plan, ownerId, initials, imageUrl, type, hover, className, onSwitch, onSettings, }: NscWorkspaceSwitchProps): react_jsx_runtime.JSX.Element;
584
- declare const ScWorkspaceSwitchCard: typeof NscWorkspaceSwitch;
584
+ declare function ScWorkspaceSwitchCard({ wsName, role, plan, ownerId, initials, imageUrl, type, hover, className, onSwitch, onSettings, onLeave, }: ScWorkspaceSwitchCardProps): react_jsx_runtime.JSX.Element;
585
+ /** @deprecated Use ScWorkspaceSwitchCard directly */
586
+ declare const NscWorkspaceSwitch: typeof ScWorkspaceSwitchCard;
585
587
 
586
- 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, NscWorkspaceSwitch, type NscWorkspaceSwitchProps, type PlanFeatureSection, ScAccess, ScAppCard, ScAppField, ScAppListingCard, ScArtifaxInvite, ScBadges, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScDp, type ScDpProps, 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, ScWorkspaceCard, ScWorkspaceSwitchCard, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem };
588
+ interface IScRoleMobileProps {
589
+ /** Role variant */
590
+ role?: "admin" | "member";
591
+ /** Additional class name */
592
+ className?: string;
593
+ }
594
+ declare const ScRoleMobile: ({ role, className, ...props }: IScRoleMobileProps & React.HTMLAttributes<HTMLDivElement>) => JSX.Element;
595
+
596
+ interface IScProfileV2MobileProps {
597
+ /** User display name */
598
+ name?: string;
599
+ /** User email or subtitle */
600
+ email?: string;
601
+ /** Profile image URL */
602
+ imageUrl?: string;
603
+ /** Position of the profile image */
604
+ dpPosition?: "left" | "right";
605
+ /** Additional class name */
606
+ className?: string;
607
+ }
608
+ declare const ScProfileV2Mobile: ({ name, email, imageUrl, dpPosition, className, ...props }: IScProfileV2MobileProps & React.HTMLAttributes<HTMLDivElement>) => JSX.Element;
609
+
610
+ interface IScTableListMobileProps {
611
+ /** User display name */
612
+ name?: string;
613
+ /** User email */
614
+ email?: string;
615
+ /** Profile image URL */
616
+ imageUrl?: string;
617
+ /** User role */
618
+ role?: string;
619
+ /** Access icons - first group */
620
+ accessIcons?: JSX.Element[];
621
+ /** Access icons - second group */
622
+ permissionIcons?: JSX.Element[];
623
+ /** Callback on row click */
624
+ onRowClick?: (e: React$1.MouseEvent) => void;
625
+ /** Additional class name */
626
+ className?: string;
627
+ }
628
+ declare const ScTableListMobile: ({ name, email, imageUrl, role, accessIcons, permissionIcons, onRowClick, className, ...props }: IScTableListMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
629
+
630
+ interface IScWorkspaceSwitchMobileProps {
631
+ /** Workspace name */
632
+ storeName?: string;
633
+ /** Workspace initials */
634
+ initials?: string;
635
+ /** Role label */
636
+ role?: string;
637
+ /** Owner email or ID */
638
+ ownerId?: string;
639
+ /** Whether this is the current workspace */
640
+ currentWs?: boolean;
641
+ /** Icon element for the owner row */
642
+ ownerIcon?: JSX.Element;
643
+ /** Additional class name */
644
+ className?: string;
645
+ /** Click handler */
646
+ onClick?: (e: React$1.MouseEvent) => void;
647
+ }
648
+ declare const ScWorkspaceSwitchMobile: ({ storeName, initials, role, ownerId, currentWs, ownerIcon, className, onClick, ...props }: IScWorkspaceSwitchMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
649
+
650
+ interface IScWorkspaceSettingsMobileProps {
651
+ /** Workspace name */
652
+ storeName?: string;
653
+ /** Workspace initials */
654
+ initials?: string;
655
+ /** Role label */
656
+ role?: string;
657
+ /** Owner email or ID */
658
+ ownerId?: string;
659
+ /** Team count text */
660
+ teamCount?: string;
661
+ /** Whether this is the current workspace */
662
+ currentWs?: boolean;
663
+ /** Icon for owner row */
664
+ ownerIcon?: JSX.Element;
665
+ /** Icon for team row */
666
+ teamIcon?: JSX.Element;
667
+ /** Additional class name */
668
+ className?: string;
669
+ /** Click handler */
670
+ onClick?: (e: React$1.MouseEvent) => void;
671
+ }
672
+ declare const ScWorkspaceSettingsMobile: ({ storeName, initials, role, ownerId, teamCount, currentWs, ownerIcon, teamIcon, className, onClick, ...props }: IScWorkspaceSettingsMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
673
+
674
+ interface IScMobileTopNavProps {
675
+ /** Navigation type */
676
+ type?: "home" | "chat" | "inApp";
677
+ /** Show search icon (only for inApp) */
678
+ searchIcon?: boolean;
679
+ /** Show search input (only for inApp with searchIcon) */
680
+ search?: boolean;
681
+ /** Heading text (for inApp type) */
682
+ heading?: string;
683
+ /** Chat title (for chat type) */
684
+ chatTitle?: string;
685
+ /** Search placeholder */
686
+ searchPlaceholder?: string;
687
+ /** Search value */
688
+ searchValue?: string;
689
+ /** Menu icon element */
690
+ menuIcon?: JSX.Element;
691
+ /** Search icon element */
692
+ searchIconElement?: JSX.Element;
693
+ /** Close icon element */
694
+ closeIcon?: JSX.Element;
695
+ /** More icon element */
696
+ moreIcon?: JSX.Element;
697
+ /** Callback on menu click */
698
+ onMenuClick?: (e: React$1.MouseEvent) => void;
699
+ /** Callback on search icon click */
700
+ onSearchClick?: (e: React$1.MouseEvent) => void;
701
+ /** Callback on close click */
702
+ onCloseClick?: (e: React$1.MouseEvent) => void;
703
+ /** Callback on more click */
704
+ onMoreClick?: (e: React$1.MouseEvent) => void;
705
+ /** Callback on search input change */
706
+ onSearchChange?: (value: string) => void;
707
+ /** Additional class name */
708
+ className?: string;
709
+ }
710
+ declare const ScMobileTopNav: ({ type, searchIcon, search, heading, chatTitle, searchPlaceholder, searchValue, menuIcon, searchIconElement, closeIcon, moreIcon, onMenuClick, onSearchClick, onCloseClick, onMoreClick, onSearchChange, className, ...props }: IScMobileTopNavProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
711
+
712
+ interface IScMobileBottomActionProps {
713
+ /** Button text */
714
+ text?: string;
715
+ /** Whether button is disabled */
716
+ disabled?: boolean;
717
+ /** Click handler */
718
+ onClick?: (e: React$1.MouseEvent) => void;
719
+ /** Additional class name */
720
+ className?: string;
721
+ }
722
+ declare const ScMobileBottomAction: ({ text, disabled, onClick, className, ...props }: IScMobileBottomActionProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
723
+
724
+ interface IScPopUpMenuProps {
725
+ /** Menu label text */
726
+ menu?: string;
727
+ /** Menu state */
728
+ state?: "default" | "clicked";
729
+ /** Icon element */
730
+ icon?: JSX.Element;
731
+ /** Click handler */
732
+ onClick?: (e: React$1.MouseEvent) => void;
733
+ /** Additional class name */
734
+ className?: string;
735
+ }
736
+ declare const ScPopUpMenu: ({ menu, state, icon, onClick, className, ...props }: IScPopUpMenuProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
737
+
738
+ interface IScReferralCardMobileProps {
739
+ /** User name */
740
+ name?: string;
741
+ /** User email */
742
+ email?: string;
743
+ /** Profile image URL */
744
+ imageUrl?: string;
745
+ /** Badge text */
746
+ badge?: string;
747
+ /** Date string */
748
+ date?: string;
749
+ /** Credit amount */
750
+ credits?: string;
751
+ /** Click handler */
752
+ onClick?: (e: React$1.MouseEvent) => void;
753
+ /** Additional class name */
754
+ className?: string;
755
+ }
756
+ declare const ScReferralCardMobile: ({ name, email, imageUrl, badge, date, credits, onClick, className, ...props }: IScReferralCardMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
757
+
758
+ interface IScInvoiceHistoryMobileProps {
759
+ /** Invoice number */
760
+ invoiceNumber?: string;
761
+ /** Date string */
762
+ date?: string;
763
+ /** Amount string */
764
+ amount?: string;
765
+ /** Click handler */
766
+ onClick?: (e: React$1.MouseEvent) => void;
767
+ /** Additional class name */
768
+ className?: string;
769
+ }
770
+ declare const ScInvoiceHistoryMobile: ({ invoiceNumber, date, amount, onClick, className, ...props }: IScInvoiceHistoryMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
771
+
772
+ interface IScUsageHistoryMobileProps {
773
+ /** Usage title */
774
+ title?: string;
775
+ /** Usage count/amount (shown in red) */
776
+ usageCount?: string;
777
+ /** User name */
778
+ userName?: string;
779
+ /** Date string */
780
+ date?: string;
781
+ /** Total/remaining count */
782
+ totalCount?: string;
783
+ /** Click handler */
784
+ onClick?: (e: React$1.MouseEvent) => void;
785
+ /** Additional class name */
786
+ className?: string;
787
+ }
788
+ declare const ScUsageHistoryMobile: ({ title, usageCount, userName, date, totalCount, onClick, className, ...props }: IScUsageHistoryMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
789
+
790
+ interface IScWorkspaceSwitchMobileV2Props {
791
+ /** Workspace name */
792
+ wsName?: string;
793
+ /** Workspace initials */
794
+ initials?: string;
795
+ /** Role label */
796
+ role?: string;
797
+ /** Plan name */
798
+ plan?: string;
799
+ /** Owner email */
800
+ ownerId?: string;
801
+ /** Card type */
802
+ type?: "currentWS" | "otherWS";
803
+ /** Click handler */
804
+ onClick?: (e: React$1.MouseEvent) => void;
805
+ /** Additional class name */
806
+ className?: string;
807
+ }
808
+ declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
809
+
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 IScIntialProfileCoverProps, type IScInvoiceHistoryMobileProps, type IScLogoUnitProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, 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 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 IScUsageHistoryMobileProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceSettingsMobileProps, type IScWorkspaceSwitchMobileProps, type IScWorkspaceSwitchMobileV2Props, NscWorkspaceSwitch, type PlanFeatureSection, ScAccess, ScAppCard, ScAppField, ScAppListingCard, ScArtifaxInvite, ScBadges, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScDp, type ScDpProps, ScFieldButton, ScGoogleSignIn, ScHDivider, ScHeader, ScIntialProfileCover, ScInvoiceHistoryMobile, ScLogoUnit, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScOnlyField, ScOnlyIcon, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanDetailsCard, ScPopUpMenu, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSettingsNav, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSlider, ScStrLogo, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTextField, ScToggleSwitch, ScUsageHistoryMobile, 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, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem };
package/dist/index.d.ts CHANGED
@@ -567,7 +567,7 @@ interface IScWorkspaceCardProps extends React.HTMLAttributes<HTMLDivElement> {
567
567
  }
568
568
  declare const ScWorkspaceCard: ({ workspaceName, role, userCount, ownerEmail, buttonText, className, ...props }: IScWorkspaceCardProps) => JSX.Element;
569
569
 
570
- interface NscWorkspaceSwitchProps {
570
+ interface ScWorkspaceSwitchCardProps {
571
571
  wsName?: string;
572
572
  role?: string;
573
573
  plan?: string;
@@ -579,8 +579,232 @@ interface NscWorkspaceSwitchProps {
579
579
  className?: string;
580
580
  onSwitch?: () => void;
581
581
  onSettings?: () => void;
582
+ onLeave?: () => void;
582
583
  }
583
- declare function NscWorkspaceSwitch({ wsName, role, plan, ownerId, initials, imageUrl, type, hover, className, onSwitch, onSettings, }: NscWorkspaceSwitchProps): react_jsx_runtime.JSX.Element;
584
- declare const ScWorkspaceSwitchCard: typeof NscWorkspaceSwitch;
584
+ declare function ScWorkspaceSwitchCard({ wsName, role, plan, ownerId, initials, imageUrl, type, hover, className, onSwitch, onSettings, onLeave, }: ScWorkspaceSwitchCardProps): react_jsx_runtime.JSX.Element;
585
+ /** @deprecated Use ScWorkspaceSwitchCard directly */
586
+ declare const NscWorkspaceSwitch: typeof ScWorkspaceSwitchCard;
585
587
 
586
- 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, NscWorkspaceSwitch, type NscWorkspaceSwitchProps, type PlanFeatureSection, ScAccess, ScAppCard, ScAppField, ScAppListingCard, ScArtifaxInvite, ScBadges, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScDp, type ScDpProps, 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, ScWorkspaceCard, ScWorkspaceSwitchCard, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem };
588
+ interface IScRoleMobileProps {
589
+ /** Role variant */
590
+ role?: "admin" | "member";
591
+ /** Additional class name */
592
+ className?: string;
593
+ }
594
+ declare const ScRoleMobile: ({ role, className, ...props }: IScRoleMobileProps & React.HTMLAttributes<HTMLDivElement>) => JSX.Element;
595
+
596
+ interface IScProfileV2MobileProps {
597
+ /** User display name */
598
+ name?: string;
599
+ /** User email or subtitle */
600
+ email?: string;
601
+ /** Profile image URL */
602
+ imageUrl?: string;
603
+ /** Position of the profile image */
604
+ dpPosition?: "left" | "right";
605
+ /** Additional class name */
606
+ className?: string;
607
+ }
608
+ declare const ScProfileV2Mobile: ({ name, email, imageUrl, dpPosition, className, ...props }: IScProfileV2MobileProps & React.HTMLAttributes<HTMLDivElement>) => JSX.Element;
609
+
610
+ interface IScTableListMobileProps {
611
+ /** User display name */
612
+ name?: string;
613
+ /** User email */
614
+ email?: string;
615
+ /** Profile image URL */
616
+ imageUrl?: string;
617
+ /** User role */
618
+ role?: string;
619
+ /** Access icons - first group */
620
+ accessIcons?: JSX.Element[];
621
+ /** Access icons - second group */
622
+ permissionIcons?: JSX.Element[];
623
+ /** Callback on row click */
624
+ onRowClick?: (e: React$1.MouseEvent) => void;
625
+ /** Additional class name */
626
+ className?: string;
627
+ }
628
+ declare const ScTableListMobile: ({ name, email, imageUrl, role, accessIcons, permissionIcons, onRowClick, className, ...props }: IScTableListMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
629
+
630
+ interface IScWorkspaceSwitchMobileProps {
631
+ /** Workspace name */
632
+ storeName?: string;
633
+ /** Workspace initials */
634
+ initials?: string;
635
+ /** Role label */
636
+ role?: string;
637
+ /** Owner email or ID */
638
+ ownerId?: string;
639
+ /** Whether this is the current workspace */
640
+ currentWs?: boolean;
641
+ /** Icon element for the owner row */
642
+ ownerIcon?: JSX.Element;
643
+ /** Additional class name */
644
+ className?: string;
645
+ /** Click handler */
646
+ onClick?: (e: React$1.MouseEvent) => void;
647
+ }
648
+ declare const ScWorkspaceSwitchMobile: ({ storeName, initials, role, ownerId, currentWs, ownerIcon, className, onClick, ...props }: IScWorkspaceSwitchMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
649
+
650
+ interface IScWorkspaceSettingsMobileProps {
651
+ /** Workspace name */
652
+ storeName?: string;
653
+ /** Workspace initials */
654
+ initials?: string;
655
+ /** Role label */
656
+ role?: string;
657
+ /** Owner email or ID */
658
+ ownerId?: string;
659
+ /** Team count text */
660
+ teamCount?: string;
661
+ /** Whether this is the current workspace */
662
+ currentWs?: boolean;
663
+ /** Icon for owner row */
664
+ ownerIcon?: JSX.Element;
665
+ /** Icon for team row */
666
+ teamIcon?: JSX.Element;
667
+ /** Additional class name */
668
+ className?: string;
669
+ /** Click handler */
670
+ onClick?: (e: React$1.MouseEvent) => void;
671
+ }
672
+ declare const ScWorkspaceSettingsMobile: ({ storeName, initials, role, ownerId, teamCount, currentWs, ownerIcon, teamIcon, className, onClick, ...props }: IScWorkspaceSettingsMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
673
+
674
+ interface IScMobileTopNavProps {
675
+ /** Navigation type */
676
+ type?: "home" | "chat" | "inApp";
677
+ /** Show search icon (only for inApp) */
678
+ searchIcon?: boolean;
679
+ /** Show search input (only for inApp with searchIcon) */
680
+ search?: boolean;
681
+ /** Heading text (for inApp type) */
682
+ heading?: string;
683
+ /** Chat title (for chat type) */
684
+ chatTitle?: string;
685
+ /** Search placeholder */
686
+ searchPlaceholder?: string;
687
+ /** Search value */
688
+ searchValue?: string;
689
+ /** Menu icon element */
690
+ menuIcon?: JSX.Element;
691
+ /** Search icon element */
692
+ searchIconElement?: JSX.Element;
693
+ /** Close icon element */
694
+ closeIcon?: JSX.Element;
695
+ /** More icon element */
696
+ moreIcon?: JSX.Element;
697
+ /** Callback on menu click */
698
+ onMenuClick?: (e: React$1.MouseEvent) => void;
699
+ /** Callback on search icon click */
700
+ onSearchClick?: (e: React$1.MouseEvent) => void;
701
+ /** Callback on close click */
702
+ onCloseClick?: (e: React$1.MouseEvent) => void;
703
+ /** Callback on more click */
704
+ onMoreClick?: (e: React$1.MouseEvent) => void;
705
+ /** Callback on search input change */
706
+ onSearchChange?: (value: string) => void;
707
+ /** Additional class name */
708
+ className?: string;
709
+ }
710
+ declare const ScMobileTopNav: ({ type, searchIcon, search, heading, chatTitle, searchPlaceholder, searchValue, menuIcon, searchIconElement, closeIcon, moreIcon, onMenuClick, onSearchClick, onCloseClick, onMoreClick, onSearchChange, className, ...props }: IScMobileTopNavProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
711
+
712
+ interface IScMobileBottomActionProps {
713
+ /** Button text */
714
+ text?: string;
715
+ /** Whether button is disabled */
716
+ disabled?: boolean;
717
+ /** Click handler */
718
+ onClick?: (e: React$1.MouseEvent) => void;
719
+ /** Additional class name */
720
+ className?: string;
721
+ }
722
+ declare const ScMobileBottomAction: ({ text, disabled, onClick, className, ...props }: IScMobileBottomActionProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
723
+
724
+ interface IScPopUpMenuProps {
725
+ /** Menu label text */
726
+ menu?: string;
727
+ /** Menu state */
728
+ state?: "default" | "clicked";
729
+ /** Icon element */
730
+ icon?: JSX.Element;
731
+ /** Click handler */
732
+ onClick?: (e: React$1.MouseEvent) => void;
733
+ /** Additional class name */
734
+ className?: string;
735
+ }
736
+ declare const ScPopUpMenu: ({ menu, state, icon, onClick, className, ...props }: IScPopUpMenuProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
737
+
738
+ interface IScReferralCardMobileProps {
739
+ /** User name */
740
+ name?: string;
741
+ /** User email */
742
+ email?: string;
743
+ /** Profile image URL */
744
+ imageUrl?: string;
745
+ /** Badge text */
746
+ badge?: string;
747
+ /** Date string */
748
+ date?: string;
749
+ /** Credit amount */
750
+ credits?: string;
751
+ /** Click handler */
752
+ onClick?: (e: React$1.MouseEvent) => void;
753
+ /** Additional class name */
754
+ className?: string;
755
+ }
756
+ declare const ScReferralCardMobile: ({ name, email, imageUrl, badge, date, credits, onClick, className, ...props }: IScReferralCardMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
757
+
758
+ interface IScInvoiceHistoryMobileProps {
759
+ /** Invoice number */
760
+ invoiceNumber?: string;
761
+ /** Date string */
762
+ date?: string;
763
+ /** Amount string */
764
+ amount?: string;
765
+ /** Click handler */
766
+ onClick?: (e: React$1.MouseEvent) => void;
767
+ /** Additional class name */
768
+ className?: string;
769
+ }
770
+ declare const ScInvoiceHistoryMobile: ({ invoiceNumber, date, amount, onClick, className, ...props }: IScInvoiceHistoryMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
771
+
772
+ interface IScUsageHistoryMobileProps {
773
+ /** Usage title */
774
+ title?: string;
775
+ /** Usage count/amount (shown in red) */
776
+ usageCount?: string;
777
+ /** User name */
778
+ userName?: string;
779
+ /** Date string */
780
+ date?: string;
781
+ /** Total/remaining count */
782
+ totalCount?: string;
783
+ /** Click handler */
784
+ onClick?: (e: React$1.MouseEvent) => void;
785
+ /** Additional class name */
786
+ className?: string;
787
+ }
788
+ declare const ScUsageHistoryMobile: ({ title, usageCount, userName, date, totalCount, onClick, className, ...props }: IScUsageHistoryMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
789
+
790
+ interface IScWorkspaceSwitchMobileV2Props {
791
+ /** Workspace name */
792
+ wsName?: string;
793
+ /** Workspace initials */
794
+ initials?: string;
795
+ /** Role label */
796
+ role?: string;
797
+ /** Plan name */
798
+ plan?: string;
799
+ /** Owner email */
800
+ ownerId?: string;
801
+ /** Card type */
802
+ type?: "currentWS" | "otherWS";
803
+ /** Click handler */
804
+ onClick?: (e: React$1.MouseEvent) => void;
805
+ /** Additional class name */
806
+ className?: string;
807
+ }
808
+ declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
809
+
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 IScIntialProfileCoverProps, type IScInvoiceHistoryMobileProps, type IScLogoUnitProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, 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 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 IScUsageHistoryMobileProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceSettingsMobileProps, type IScWorkspaceSwitchMobileProps, type IScWorkspaceSwitchMobileV2Props, NscWorkspaceSwitch, type PlanFeatureSection, ScAccess, ScAppCard, ScAppField, ScAppListingCard, ScArtifaxInvite, ScBadges, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScDp, type ScDpProps, ScFieldButton, ScGoogleSignIn, ScHDivider, ScHeader, ScIntialProfileCover, ScInvoiceHistoryMobile, ScLogoUnit, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScOnlyField, ScOnlyIcon, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanDetailsCard, ScPopUpMenu, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSettingsNav, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSlider, ScStrLogo, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTextField, ScToggleSwitch, ScUsageHistoryMobile, 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, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem };