@streamoid/ui 0.1.9 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +384 -96
- package/dist/index.d.mts +57 -8
- package/dist/index.d.ts +57 -8
- package/dist/index.js +1282 -4319
- package/dist/index.mjs +1214 -4254
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HTMLAttributes, ReactNode, CSSProperties } from 'react';
|
|
1
|
+
import React$1, { HTMLAttributes, ReactNode, CSSProperties } from 'react';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
3
|
|
|
4
4
|
interface IScAccessProps {
|
|
@@ -24,6 +24,7 @@ interface IScBillingLogsTableHeaderProps {
|
|
|
24
24
|
declare const ScBillingLogsTableHeader: ({ className, ...props }: IScBillingLogsTableHeaderProps) => JSX.Element;
|
|
25
25
|
|
|
26
26
|
interface IScBillingLogsTableListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
27
|
+
app?: string;
|
|
27
28
|
activity?: string;
|
|
28
29
|
usedBy?: string;
|
|
29
30
|
date?: string;
|
|
@@ -31,7 +32,7 @@ interface IScBillingLogsTableListProps extends React.HTMLAttributes<HTMLDivEleme
|
|
|
31
32
|
balance?: string;
|
|
32
33
|
className?: string;
|
|
33
34
|
}
|
|
34
|
-
declare const ScBillingLogsTableList: ({ activity, usedBy, date, creditsUsed, balance, className, ...props }: IScBillingLogsTableListProps) => JSX.Element;
|
|
35
|
+
declare const ScBillingLogsTableList: ({ app, activity, usedBy, date, creditsUsed, balance, className, ...props }: IScBillingLogsTableListProps) => JSX.Element;
|
|
35
36
|
|
|
36
37
|
interface IScBillingHistoryTableListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
37
38
|
invoiceNumber?: string;
|
|
@@ -82,10 +83,28 @@ interface IScCreditsUsageCardProps extends React.HTMLAttributes<HTMLDivElement>
|
|
|
82
83
|
usageText?: string;
|
|
83
84
|
remainingText?: string;
|
|
84
85
|
buyButtonText?: string;
|
|
86
|
+
buyButtonState?: "default" | "disabled";
|
|
87
|
+
onBuyClick?: () => void;
|
|
85
88
|
progress?: number;
|
|
86
89
|
className?: string;
|
|
87
90
|
}
|
|
88
|
-
declare const ScCreditsUsageCard: ({ usageLabel, usageText, remainingText, buyButtonText, progress, className, ...props }: IScCreditsUsageCardProps) => JSX.Element;
|
|
91
|
+
declare const ScCreditsUsageCard: ({ usageLabel, usageText, remainingText, buyButtonText, buyButtonState, onBuyClick, progress, className, ...props }: IScCreditsUsageCardProps) => JSX.Element;
|
|
92
|
+
|
|
93
|
+
interface ScDpProps {
|
|
94
|
+
/** Show initials text or an image. Defaults to "initial". */
|
|
95
|
+
type?: "initial" | "image";
|
|
96
|
+
/** Circle for profile, rounded rect for workspace. Defaults to "workspace". */
|
|
97
|
+
variant?: "workspace" | "profile";
|
|
98
|
+
/** Initials text (used when type="initial", or as fallback when image fails). */
|
|
99
|
+
initial?: string;
|
|
100
|
+
/** Image URL (used when type="image"). */
|
|
101
|
+
imageUrl?: string;
|
|
102
|
+
/** Width & height in pixels. Defaults to 60. */
|
|
103
|
+
size?: number;
|
|
104
|
+
className?: string;
|
|
105
|
+
style?: React$1.CSSProperties;
|
|
106
|
+
}
|
|
107
|
+
declare function ScDp({ type, variant, initial, imageUrl, size, className, style, }: ScDpProps): react_jsx_runtime.JSX.Element;
|
|
89
108
|
|
|
90
109
|
interface IScGoogleSignInProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
91
110
|
hover?: "false" | "true";
|
|
@@ -109,9 +128,10 @@ declare const ScHeader: ({ text, state, className, ...props }: IScHeaderProps) =
|
|
|
109
128
|
|
|
110
129
|
interface IScIntialProfileCoverProps {
|
|
111
130
|
intial?: string;
|
|
131
|
+
size?: number;
|
|
112
132
|
className?: string;
|
|
113
133
|
}
|
|
114
|
-
declare const ScIntialProfileCover: ({ intial, className,
|
|
134
|
+
declare const ScIntialProfileCover: ({ intial, size, className, }: IScIntialProfileCoverProps) => JSX.Element;
|
|
115
135
|
|
|
116
136
|
interface IScLogoUnitProps {
|
|
117
137
|
state?: "expanded" | "collapsed";
|
|
@@ -144,24 +164,39 @@ interface IScPairtextProps {
|
|
|
144
164
|
}
|
|
145
165
|
declare const ScPairtext: ({ content, icon, iconPosition, type, className, ...props }: IScPairtextProps) => JSX.Element;
|
|
146
166
|
|
|
167
|
+
interface PlanFeatureSection {
|
|
168
|
+
section: string;
|
|
169
|
+
features: string[];
|
|
170
|
+
icon?: JSX.Element;
|
|
171
|
+
}
|
|
147
172
|
interface IScPlanCardProps {
|
|
148
173
|
planName?: string;
|
|
149
174
|
price?: string;
|
|
150
175
|
credits?: string;
|
|
151
|
-
type?: "
|
|
176
|
+
type?: "free" | "popular" | "custom";
|
|
177
|
+
features?: PlanFeatureSection[];
|
|
178
|
+
description?: ReactNode;
|
|
179
|
+
buttonText?: string;
|
|
180
|
+
buttonState?: "default" | "disabled";
|
|
181
|
+
buttonVariant?: "primary" | "secondary" | "tertiary" | "outline" | "error";
|
|
182
|
+
onUpgrade?: () => void;
|
|
183
|
+
onIncreaseCredits?: () => void;
|
|
184
|
+
creditsDropdown?: ReactNode;
|
|
152
185
|
className?: string;
|
|
153
186
|
}
|
|
154
|
-
declare const ScPlanCard: ({ planName, price, credits, type, className,
|
|
187
|
+
declare const ScPlanCard: ({ planName, price, credits, type, features, description, buttonText, buttonState, buttonVariant, onUpgrade, onIncreaseCredits, creditsDropdown, className, }: IScPlanCardProps) => JSX.Element;
|
|
155
188
|
|
|
156
189
|
interface IScPlanDetailsCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
157
190
|
planName?: string;
|
|
191
|
+
planCredits?: string;
|
|
158
192
|
planPrice?: string;
|
|
159
193
|
badgeText?: string;
|
|
160
194
|
currentPlanLabel?: string;
|
|
161
195
|
upgradeButtonText?: string;
|
|
196
|
+
onUpgrade?: () => void;
|
|
162
197
|
className?: string;
|
|
163
198
|
}
|
|
164
|
-
declare const ScPlanDetailsCard: ({ planName, planPrice, badgeText, currentPlanLabel, upgradeButtonText, className, ...props }: IScPlanDetailsCardProps) => JSX.Element;
|
|
199
|
+
declare const ScPlanDetailsCard: ({ planName, planCredits, planPrice, badgeText, currentPlanLabel, upgradeButtonText, onUpgrade, className, ...props }: IScPlanDetailsCardProps) => JSX.Element;
|
|
165
200
|
|
|
166
201
|
interface IScProfileProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
167
202
|
name?: string;
|
|
@@ -531,4 +566,18 @@ interface IScWorkspaceCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
531
566
|
}
|
|
532
567
|
declare const ScWorkspaceCard: ({ workspaceName, role, userCount, ownerEmail, buttonText, className, ...props }: IScWorkspaceCardProps) => JSX.Element;
|
|
533
568
|
|
|
534
|
-
|
|
569
|
+
interface ScWorkspaceSwitchCardProps {
|
|
570
|
+
name: string;
|
|
571
|
+
initials?: string;
|
|
572
|
+
imageUrl?: string;
|
|
573
|
+
role?: string;
|
|
574
|
+
plan?: string;
|
|
575
|
+
ownerEmail?: string;
|
|
576
|
+
isCurrent?: boolean;
|
|
577
|
+
variant?: "switch" | "settings";
|
|
578
|
+
onSwitch?: () => void;
|
|
579
|
+
onSettings?: () => void;
|
|
580
|
+
}
|
|
581
|
+
declare function ScWorkspaceSwitchCard({ name, initials, imageUrl, role, plan, ownerEmail, isCurrent, variant, onSwitch, onSettings, }: ScWorkspaceSwitchCardProps): react_jsx_runtime.JSX.Element;
|
|
582
|
+
|
|
583
|
+
export { type IScAccessProps, type IScAppCardProps, type IScAppFieldProps, type IScAppListingCardProps, type IScArtifaxInviteProps, type IScBadgesProps, type IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCreditsUsageCardProps, type IScFieldButtonProps, type IScGoogleSignInProps, type IScHDividerProps, type IScHeaderProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMenuOptionsProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanDetailsCardProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfileProps, type IScProfileSettingsCompProps, type IScProgressBarProps, type IScQuickPromptProps, type IScRadioProps, type IScReferralTableHeaderProps, type IScReferralTableListProps, type IScRoleProps, type IScSettingsNavProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSliderProps, type IScStrLogoProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListProps, type IScTextFieldProps, type IScToggleSwitchProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type 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 ScWorkspaceSwitchCardProps, 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HTMLAttributes, ReactNode, CSSProperties } from 'react';
|
|
1
|
+
import React$1, { HTMLAttributes, ReactNode, CSSProperties } from 'react';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
3
|
|
|
4
4
|
interface IScAccessProps {
|
|
@@ -24,6 +24,7 @@ interface IScBillingLogsTableHeaderProps {
|
|
|
24
24
|
declare const ScBillingLogsTableHeader: ({ className, ...props }: IScBillingLogsTableHeaderProps) => JSX.Element;
|
|
25
25
|
|
|
26
26
|
interface IScBillingLogsTableListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
27
|
+
app?: string;
|
|
27
28
|
activity?: string;
|
|
28
29
|
usedBy?: string;
|
|
29
30
|
date?: string;
|
|
@@ -31,7 +32,7 @@ interface IScBillingLogsTableListProps extends React.HTMLAttributes<HTMLDivEleme
|
|
|
31
32
|
balance?: string;
|
|
32
33
|
className?: string;
|
|
33
34
|
}
|
|
34
|
-
declare const ScBillingLogsTableList: ({ activity, usedBy, date, creditsUsed, balance, className, ...props }: IScBillingLogsTableListProps) => JSX.Element;
|
|
35
|
+
declare const ScBillingLogsTableList: ({ app, activity, usedBy, date, creditsUsed, balance, className, ...props }: IScBillingLogsTableListProps) => JSX.Element;
|
|
35
36
|
|
|
36
37
|
interface IScBillingHistoryTableListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
37
38
|
invoiceNumber?: string;
|
|
@@ -82,10 +83,28 @@ interface IScCreditsUsageCardProps extends React.HTMLAttributes<HTMLDivElement>
|
|
|
82
83
|
usageText?: string;
|
|
83
84
|
remainingText?: string;
|
|
84
85
|
buyButtonText?: string;
|
|
86
|
+
buyButtonState?: "default" | "disabled";
|
|
87
|
+
onBuyClick?: () => void;
|
|
85
88
|
progress?: number;
|
|
86
89
|
className?: string;
|
|
87
90
|
}
|
|
88
|
-
declare const ScCreditsUsageCard: ({ usageLabel, usageText, remainingText, buyButtonText, progress, className, ...props }: IScCreditsUsageCardProps) => JSX.Element;
|
|
91
|
+
declare const ScCreditsUsageCard: ({ usageLabel, usageText, remainingText, buyButtonText, buyButtonState, onBuyClick, progress, className, ...props }: IScCreditsUsageCardProps) => JSX.Element;
|
|
92
|
+
|
|
93
|
+
interface ScDpProps {
|
|
94
|
+
/** Show initials text or an image. Defaults to "initial". */
|
|
95
|
+
type?: "initial" | "image";
|
|
96
|
+
/** Circle for profile, rounded rect for workspace. Defaults to "workspace". */
|
|
97
|
+
variant?: "workspace" | "profile";
|
|
98
|
+
/** Initials text (used when type="initial", or as fallback when image fails). */
|
|
99
|
+
initial?: string;
|
|
100
|
+
/** Image URL (used when type="image"). */
|
|
101
|
+
imageUrl?: string;
|
|
102
|
+
/** Width & height in pixels. Defaults to 60. */
|
|
103
|
+
size?: number;
|
|
104
|
+
className?: string;
|
|
105
|
+
style?: React$1.CSSProperties;
|
|
106
|
+
}
|
|
107
|
+
declare function ScDp({ type, variant, initial, imageUrl, size, className, style, }: ScDpProps): react_jsx_runtime.JSX.Element;
|
|
89
108
|
|
|
90
109
|
interface IScGoogleSignInProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
91
110
|
hover?: "false" | "true";
|
|
@@ -109,9 +128,10 @@ declare const ScHeader: ({ text, state, className, ...props }: IScHeaderProps) =
|
|
|
109
128
|
|
|
110
129
|
interface IScIntialProfileCoverProps {
|
|
111
130
|
intial?: string;
|
|
131
|
+
size?: number;
|
|
112
132
|
className?: string;
|
|
113
133
|
}
|
|
114
|
-
declare const ScIntialProfileCover: ({ intial, className,
|
|
134
|
+
declare const ScIntialProfileCover: ({ intial, size, className, }: IScIntialProfileCoverProps) => JSX.Element;
|
|
115
135
|
|
|
116
136
|
interface IScLogoUnitProps {
|
|
117
137
|
state?: "expanded" | "collapsed";
|
|
@@ -144,24 +164,39 @@ interface IScPairtextProps {
|
|
|
144
164
|
}
|
|
145
165
|
declare const ScPairtext: ({ content, icon, iconPosition, type, className, ...props }: IScPairtextProps) => JSX.Element;
|
|
146
166
|
|
|
167
|
+
interface PlanFeatureSection {
|
|
168
|
+
section: string;
|
|
169
|
+
features: string[];
|
|
170
|
+
icon?: JSX.Element;
|
|
171
|
+
}
|
|
147
172
|
interface IScPlanCardProps {
|
|
148
173
|
planName?: string;
|
|
149
174
|
price?: string;
|
|
150
175
|
credits?: string;
|
|
151
|
-
type?: "
|
|
176
|
+
type?: "free" | "popular" | "custom";
|
|
177
|
+
features?: PlanFeatureSection[];
|
|
178
|
+
description?: ReactNode;
|
|
179
|
+
buttonText?: string;
|
|
180
|
+
buttonState?: "default" | "disabled";
|
|
181
|
+
buttonVariant?: "primary" | "secondary" | "tertiary" | "outline" | "error";
|
|
182
|
+
onUpgrade?: () => void;
|
|
183
|
+
onIncreaseCredits?: () => void;
|
|
184
|
+
creditsDropdown?: ReactNode;
|
|
152
185
|
className?: string;
|
|
153
186
|
}
|
|
154
|
-
declare const ScPlanCard: ({ planName, price, credits, type, className,
|
|
187
|
+
declare const ScPlanCard: ({ planName, price, credits, type, features, description, buttonText, buttonState, buttonVariant, onUpgrade, onIncreaseCredits, creditsDropdown, className, }: IScPlanCardProps) => JSX.Element;
|
|
155
188
|
|
|
156
189
|
interface IScPlanDetailsCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
157
190
|
planName?: string;
|
|
191
|
+
planCredits?: string;
|
|
158
192
|
planPrice?: string;
|
|
159
193
|
badgeText?: string;
|
|
160
194
|
currentPlanLabel?: string;
|
|
161
195
|
upgradeButtonText?: string;
|
|
196
|
+
onUpgrade?: () => void;
|
|
162
197
|
className?: string;
|
|
163
198
|
}
|
|
164
|
-
declare const ScPlanDetailsCard: ({ planName, planPrice, badgeText, currentPlanLabel, upgradeButtonText, className, ...props }: IScPlanDetailsCardProps) => JSX.Element;
|
|
199
|
+
declare const ScPlanDetailsCard: ({ planName, planCredits, planPrice, badgeText, currentPlanLabel, upgradeButtonText, onUpgrade, className, ...props }: IScPlanDetailsCardProps) => JSX.Element;
|
|
165
200
|
|
|
166
201
|
interface IScProfileProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
167
202
|
name?: string;
|
|
@@ -531,4 +566,18 @@ interface IScWorkspaceCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
531
566
|
}
|
|
532
567
|
declare const ScWorkspaceCard: ({ workspaceName, role, userCount, ownerEmail, buttonText, className, ...props }: IScWorkspaceCardProps) => JSX.Element;
|
|
533
568
|
|
|
534
|
-
|
|
569
|
+
interface ScWorkspaceSwitchCardProps {
|
|
570
|
+
name: string;
|
|
571
|
+
initials?: string;
|
|
572
|
+
imageUrl?: string;
|
|
573
|
+
role?: string;
|
|
574
|
+
plan?: string;
|
|
575
|
+
ownerEmail?: string;
|
|
576
|
+
isCurrent?: boolean;
|
|
577
|
+
variant?: "switch" | "settings";
|
|
578
|
+
onSwitch?: () => void;
|
|
579
|
+
onSettings?: () => void;
|
|
580
|
+
}
|
|
581
|
+
declare function ScWorkspaceSwitchCard({ name, initials, imageUrl, role, plan, ownerEmail, isCurrent, variant, onSwitch, onSettings, }: ScWorkspaceSwitchCardProps): react_jsx_runtime.JSX.Element;
|
|
582
|
+
|
|
583
|
+
export { type IScAccessProps, type IScAppCardProps, type IScAppFieldProps, type IScAppListingCardProps, type IScArtifaxInviteProps, type IScBadgesProps, type IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCreditsUsageCardProps, type IScFieldButtonProps, type IScGoogleSignInProps, type IScHDividerProps, type IScHeaderProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMenuOptionsProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanDetailsCardProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfileProps, type IScProfileSettingsCompProps, type IScProgressBarProps, type IScQuickPromptProps, type IScRadioProps, type IScReferralTableHeaderProps, type IScReferralTableListProps, type IScRoleProps, type IScSettingsNavProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSliderProps, type IScStrLogoProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListProps, type IScTextFieldProps, type IScToggleSwitchProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type 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 ScWorkspaceSwitchCardProps, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem };
|