@streamoid/ui 0.3.1 → 0.3.3
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.css +18 -1
- package/dist/index.d.mts +23 -4
- package/dist/index.d.ts +23 -4
- package/dist/index.js +1060 -820
- package/dist/index.mjs +1008 -768
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -3447,10 +3447,20 @@
|
|
|
3447
3447
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
3448
3448
|
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
3449
3449
|
position: relative;
|
|
3450
|
-
|
|
3450
|
+
flex: 1 0 0;
|
|
3451
|
+
min-width: 0;
|
|
3451
3452
|
height: 1.25rem;
|
|
3452
3453
|
text-overflow: ellipsis;
|
|
3453
3454
|
overflow: hidden;
|
|
3455
|
+
white-space: nowrap;
|
|
3456
|
+
}
|
|
3457
|
+
.ScSidebarMenu_moreIconWrapper {
|
|
3458
|
+
display: none;
|
|
3459
|
+
align-items: center;
|
|
3460
|
+
padding: 0.125rem;
|
|
3461
|
+
border-radius: var(--radius-md, 0.5rem);
|
|
3462
|
+
flex-shrink: 0;
|
|
3463
|
+
cursor: pointer;
|
|
3454
3464
|
}
|
|
3455
3465
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-active {
|
|
3456
3466
|
background: var(--alias-fill-neutral-neutralselected, #242424);
|
|
@@ -3458,10 +3468,17 @@
|
|
|
3458
3468
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-active .ScSidebarMenu_content {
|
|
3459
3469
|
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3460
3470
|
}
|
|
3471
|
+
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-default-highlight .ScSidebarMenu_content {
|
|
3472
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3473
|
+
}
|
|
3461
3474
|
.ScSidebarMenu_scSidebarMenu:hover,
|
|
3462
3475
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-hover {
|
|
3463
3476
|
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
3464
3477
|
}
|
|
3478
|
+
.ScSidebarMenu_scSidebarMenu:hover .ScSidebarMenu_moreIconWrapper,
|
|
3479
|
+
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-hover .ScSidebarMenu_moreIconWrapper {
|
|
3480
|
+
display: flex;
|
|
3481
|
+
}
|
|
3465
3482
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_variant-collapsed {
|
|
3466
3483
|
padding: var(--spacing-md, 0.5rem);
|
|
3467
3484
|
align-self: unset;
|
package/dist/index.d.mts
CHANGED
|
@@ -91,6 +91,17 @@ interface IScCreditsUsageCardProps extends React.HTMLAttributes<HTMLDivElement>
|
|
|
91
91
|
}
|
|
92
92
|
declare const ScCreditsUsageCard: ({ usageLabel, usageText, remainingText, buyButtonText, buyButtonState, buyButtonHoverText, onBuyClick, progress, className, ...props }: IScCreditsUsageCardProps) => JSX.Element;
|
|
93
93
|
|
|
94
|
+
type CreditWarningLevel = "warning" | "danger";
|
|
95
|
+
interface CreditWarningBannerProps {
|
|
96
|
+
availableCredits: number;
|
|
97
|
+
remainingPct: number;
|
|
98
|
+
level: CreditWarningLevel;
|
|
99
|
+
onBuyCredits: () => void;
|
|
100
|
+
expanded?: boolean;
|
|
101
|
+
onCollapsedClick?: () => void;
|
|
102
|
+
}
|
|
103
|
+
declare function CreditWarningBanner({ availableCredits, remainingPct, level, onBuyCredits, expanded, onCollapsedClick, }: CreditWarningBannerProps): react_jsx_runtime.JSX.Element | null;
|
|
104
|
+
|
|
94
105
|
interface ScDpProps {
|
|
95
106
|
/** "initial" shows initials text, "image" shows an image. */
|
|
96
107
|
type?: "initial" | "image";
|
|
@@ -290,7 +301,10 @@ interface StreamoidSidebarProps {
|
|
|
290
301
|
config: SidebarConfig;
|
|
291
302
|
iconMap: SidebarIconMap;
|
|
292
303
|
activeItemId?: string;
|
|
304
|
+
highlightedItemIds?: Set<string>;
|
|
293
305
|
onItemSelect?: (item: SidebarMenuItemConfig, sectionId?: string) => void;
|
|
306
|
+
moreIcon?: ReactNode;
|
|
307
|
+
onMoreClick?: (item: SidebarMenuItemConfig, sectionId?: string) => void;
|
|
294
308
|
expandedLogo?: ReactNode;
|
|
295
309
|
collapsedLogo?: ReactNode;
|
|
296
310
|
profile?: SidebarProfileConfig;
|
|
@@ -298,19 +312,24 @@ interface StreamoidSidebarProps {
|
|
|
298
312
|
toggleIcon?: ReactNode | ((expanded: boolean) => ReactNode);
|
|
299
313
|
hideFooter?: boolean;
|
|
300
314
|
preFooterContent?: ReactNode;
|
|
315
|
+
bodyContent?: ReactNode;
|
|
316
|
+
showBody?: boolean;
|
|
317
|
+
isMobile?: boolean;
|
|
301
318
|
className?: string;
|
|
302
319
|
style?: CSSProperties;
|
|
303
320
|
}
|
|
304
|
-
declare function StreamoidSidebar({ expanded, onToggle, config, iconMap, activeItemId, onItemSelect, expandedLogo, collapsedLogo, profile, versionText, toggleIcon, hideFooter, preFooterContent, className, style, }: StreamoidSidebarProps): react_jsx_runtime.JSX.Element;
|
|
321
|
+
declare function StreamoidSidebar({ expanded, onToggle, config, iconMap, activeItemId, highlightedItemIds, onItemSelect, moreIcon, onMoreClick, expandedLogo, collapsedLogo, profile, versionText, toggleIcon, hideFooter, preFooterContent, bodyContent, showBody, isMobile, className, style, }: StreamoidSidebarProps): react_jsx_runtime.JSX.Element;
|
|
305
322
|
|
|
306
323
|
interface IScSidebarMenuProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
307
324
|
icon?: JSX.Element;
|
|
308
|
-
state?: "default" | "active";
|
|
325
|
+
state?: "default" | "active" | "hover" | "default-highlight";
|
|
309
326
|
variant?: "expanded" | "collapsed";
|
|
310
327
|
className?: string;
|
|
311
328
|
text?: string;
|
|
329
|
+
moreIcon?: ReactNode;
|
|
330
|
+
onMoreClick?: (e: React.MouseEvent) => void;
|
|
312
331
|
}
|
|
313
|
-
declare const ScSidebarMenu: ({ icon, state, variant, className, text, ...props }: IScSidebarMenuProps) => JSX.Element;
|
|
332
|
+
declare const ScSidebarMenu: ({ icon, state, variant, className, text, moreIcon, onMoreClick, ...props }: IScSidebarMenuProps) => JSX.Element;
|
|
314
333
|
|
|
315
334
|
interface IScSidebarProfileProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
316
335
|
state?: "default" | "hover";
|
|
@@ -916,4 +935,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
|
|
|
916
935
|
}
|
|
917
936
|
declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, currentPlanLabel, upgradeButtonText, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
|
|
918
937
|
|
|
919
|
-
export { type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAppCardProps, type IScAppCardV3Props, 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, ScAppCardV3, 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 };
|
|
938
|
+
export { CreditWarningBanner, type CreditWarningBannerProps, type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAppCardProps, type IScAppCardV3Props, 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, ScAppCardV3, 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
|
@@ -91,6 +91,17 @@ interface IScCreditsUsageCardProps extends React.HTMLAttributes<HTMLDivElement>
|
|
|
91
91
|
}
|
|
92
92
|
declare const ScCreditsUsageCard: ({ usageLabel, usageText, remainingText, buyButtonText, buyButtonState, buyButtonHoverText, onBuyClick, progress, className, ...props }: IScCreditsUsageCardProps) => JSX.Element;
|
|
93
93
|
|
|
94
|
+
type CreditWarningLevel = "warning" | "danger";
|
|
95
|
+
interface CreditWarningBannerProps {
|
|
96
|
+
availableCredits: number;
|
|
97
|
+
remainingPct: number;
|
|
98
|
+
level: CreditWarningLevel;
|
|
99
|
+
onBuyCredits: () => void;
|
|
100
|
+
expanded?: boolean;
|
|
101
|
+
onCollapsedClick?: () => void;
|
|
102
|
+
}
|
|
103
|
+
declare function CreditWarningBanner({ availableCredits, remainingPct, level, onBuyCredits, expanded, onCollapsedClick, }: CreditWarningBannerProps): react_jsx_runtime.JSX.Element | null;
|
|
104
|
+
|
|
94
105
|
interface ScDpProps {
|
|
95
106
|
/** "initial" shows initials text, "image" shows an image. */
|
|
96
107
|
type?: "initial" | "image";
|
|
@@ -290,7 +301,10 @@ interface StreamoidSidebarProps {
|
|
|
290
301
|
config: SidebarConfig;
|
|
291
302
|
iconMap: SidebarIconMap;
|
|
292
303
|
activeItemId?: string;
|
|
304
|
+
highlightedItemIds?: Set<string>;
|
|
293
305
|
onItemSelect?: (item: SidebarMenuItemConfig, sectionId?: string) => void;
|
|
306
|
+
moreIcon?: ReactNode;
|
|
307
|
+
onMoreClick?: (item: SidebarMenuItemConfig, sectionId?: string) => void;
|
|
294
308
|
expandedLogo?: ReactNode;
|
|
295
309
|
collapsedLogo?: ReactNode;
|
|
296
310
|
profile?: SidebarProfileConfig;
|
|
@@ -298,19 +312,24 @@ interface StreamoidSidebarProps {
|
|
|
298
312
|
toggleIcon?: ReactNode | ((expanded: boolean) => ReactNode);
|
|
299
313
|
hideFooter?: boolean;
|
|
300
314
|
preFooterContent?: ReactNode;
|
|
315
|
+
bodyContent?: ReactNode;
|
|
316
|
+
showBody?: boolean;
|
|
317
|
+
isMobile?: boolean;
|
|
301
318
|
className?: string;
|
|
302
319
|
style?: CSSProperties;
|
|
303
320
|
}
|
|
304
|
-
declare function StreamoidSidebar({ expanded, onToggle, config, iconMap, activeItemId, onItemSelect, expandedLogo, collapsedLogo, profile, versionText, toggleIcon, hideFooter, preFooterContent, className, style, }: StreamoidSidebarProps): react_jsx_runtime.JSX.Element;
|
|
321
|
+
declare function StreamoidSidebar({ expanded, onToggle, config, iconMap, activeItemId, highlightedItemIds, onItemSelect, moreIcon, onMoreClick, expandedLogo, collapsedLogo, profile, versionText, toggleIcon, hideFooter, preFooterContent, bodyContent, showBody, isMobile, className, style, }: StreamoidSidebarProps): react_jsx_runtime.JSX.Element;
|
|
305
322
|
|
|
306
323
|
interface IScSidebarMenuProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
307
324
|
icon?: JSX.Element;
|
|
308
|
-
state?: "default" | "active";
|
|
325
|
+
state?: "default" | "active" | "hover" | "default-highlight";
|
|
309
326
|
variant?: "expanded" | "collapsed";
|
|
310
327
|
className?: string;
|
|
311
328
|
text?: string;
|
|
329
|
+
moreIcon?: ReactNode;
|
|
330
|
+
onMoreClick?: (e: React.MouseEvent) => void;
|
|
312
331
|
}
|
|
313
|
-
declare const ScSidebarMenu: ({ icon, state, variant, className, text, ...props }: IScSidebarMenuProps) => JSX.Element;
|
|
332
|
+
declare const ScSidebarMenu: ({ icon, state, variant, className, text, moreIcon, onMoreClick, ...props }: IScSidebarMenuProps) => JSX.Element;
|
|
314
333
|
|
|
315
334
|
interface IScSidebarProfileProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
316
335
|
state?: "default" | "hover";
|
|
@@ -916,4 +935,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
|
|
|
916
935
|
}
|
|
917
936
|
declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, currentPlanLabel, upgradeButtonText, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
|
|
918
937
|
|
|
919
|
-
export { type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAppCardProps, type IScAppCardV3Props, 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, ScAppCardV3, 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 };
|
|
938
|
+
export { CreditWarningBanner, type CreditWarningBannerProps, type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAppCardProps, type IScAppCardV3Props, 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, ScAppCardV3, 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 };
|