@streamoid/ui 0.6.11 → 0.6.12
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 +237 -0
- package/dist/index.d.mts +44 -1
- package/dist/index.d.ts +44 -1
- package/dist/index.js +490 -311
- package/dist/index.mjs +490 -311
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2904,6 +2904,7 @@
|
|
|
2904
2904
|
align-self: stretch;
|
|
2905
2905
|
flex-shrink: 0;
|
|
2906
2906
|
position: relative;
|
|
2907
|
+
cursor: pointer;
|
|
2907
2908
|
}
|
|
2908
2909
|
.ScTabComp_textContainer {
|
|
2909
2910
|
display: flex;
|
|
@@ -5833,6 +5834,242 @@
|
|
|
5833
5834
|
background: var(--alias-fill-error-solidhover, #e04444);
|
|
5834
5835
|
}
|
|
5835
5836
|
|
|
5837
|
+
/* src/SC-Beacon/ScBeacon.module.css */
|
|
5838
|
+
.ScBeacon_scBeacon,
|
|
5839
|
+
.ScBeacon_scBeacon * {
|
|
5840
|
+
box-sizing: border-box;
|
|
5841
|
+
}
|
|
5842
|
+
.ScBeacon_scBeacon {
|
|
5843
|
+
display: inline-flex;
|
|
5844
|
+
width: 1.25rem;
|
|
5845
|
+
height: 1.25rem;
|
|
5846
|
+
flex-shrink: 0;
|
|
5847
|
+
}
|
|
5848
|
+
.ScBeacon_success {
|
|
5849
|
+
color: var(--alias-text-and-icons-success, #00b96b);
|
|
5850
|
+
}
|
|
5851
|
+
.ScBeacon_warning {
|
|
5852
|
+
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
5853
|
+
}
|
|
5854
|
+
.ScBeacon_error {
|
|
5855
|
+
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
5856
|
+
}
|
|
5857
|
+
.ScBeacon_neutral {
|
|
5858
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
5859
|
+
}
|
|
5860
|
+
|
|
5861
|
+
/* src/SC-StoreCard/ScStoreCard.module.css */
|
|
5862
|
+
.ScStoreCard_scStoreCard,
|
|
5863
|
+
.ScStoreCard_scStoreCard * {
|
|
5864
|
+
box-sizing: border-box;
|
|
5865
|
+
}
|
|
5866
|
+
.ScStoreCard_scStoreCard {
|
|
5867
|
+
background: var(--alias-surface-base, #101010);
|
|
5868
|
+
border: 0.03125rem solid var(--alias-border-subtle, #242424);
|
|
5869
|
+
border-radius: var(--radius-4xl, 1.125rem);
|
|
5870
|
+
display: flex;
|
|
5871
|
+
flex-direction: column;
|
|
5872
|
+
align-items: flex-start;
|
|
5873
|
+
width: 100%;
|
|
5874
|
+
position: relative;
|
|
5875
|
+
overflow: hidden;
|
|
5876
|
+
cursor: pointer;
|
|
5877
|
+
transition:
|
|
5878
|
+
background-color 120ms ease,
|
|
5879
|
+
border-color 120ms ease,
|
|
5880
|
+
transform 120ms ease;
|
|
5881
|
+
}
|
|
5882
|
+
.ScStoreCard_scStoreCard:hover,
|
|
5883
|
+
.ScStoreCard_scStoreCard:focus-visible {
|
|
5884
|
+
background: var(--alias-surface-basesubtle, #151515);
|
|
5885
|
+
border-color: var(--alias-border-default, #3e3e3e);
|
|
5886
|
+
transform: scale(1.01);
|
|
5887
|
+
outline: none;
|
|
5888
|
+
}
|
|
5889
|
+
.ScStoreCard_nameSection {
|
|
5890
|
+
display: flex;
|
|
5891
|
+
align-items: center;
|
|
5892
|
+
justify-content: center;
|
|
5893
|
+
padding: var(--spacing-5xl, 1.25rem);
|
|
5894
|
+
width: 100%;
|
|
5895
|
+
}
|
|
5896
|
+
.ScStoreCard_storeName {
|
|
5897
|
+
flex: 1;
|
|
5898
|
+
min-width: 0;
|
|
5899
|
+
margin: 0;
|
|
5900
|
+
height: 3.5rem;
|
|
5901
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5902
|
+
text-align: left;
|
|
5903
|
+
font-family: var( --lead-text-lead-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5904
|
+
font-size: var(--lead-text-lead-text-xs-regular-font-size, 1.125rem);
|
|
5905
|
+
line-height: var(--lead-text-lead-text-xs-regular-line-height, 1.625rem);
|
|
5906
|
+
font-weight: var(--lead-text-lead-text-xs-regular-font-weight, 400);
|
|
5907
|
+
display: -webkit-box;
|
|
5908
|
+
-webkit-line-clamp: 2;
|
|
5909
|
+
-webkit-box-orient: vertical;
|
|
5910
|
+
overflow: hidden;
|
|
5911
|
+
word-break: break-word;
|
|
5912
|
+
}
|
|
5913
|
+
.ScStoreCard_divider {
|
|
5914
|
+
width: 100%;
|
|
5915
|
+
}
|
|
5916
|
+
.ScStoreCard_footer {
|
|
5917
|
+
display: flex;
|
|
5918
|
+
align-items: center;
|
|
5919
|
+
justify-content: center;
|
|
5920
|
+
gap: 0.5rem;
|
|
5921
|
+
padding: var(--spacing-5xl, 1.25rem);
|
|
5922
|
+
width: 100%;
|
|
5923
|
+
}
|
|
5924
|
+
.ScStoreCard_products {
|
|
5925
|
+
flex: 1;
|
|
5926
|
+
min-width: 0;
|
|
5927
|
+
overflow: hidden;
|
|
5928
|
+
text-overflow: ellipsis;
|
|
5929
|
+
white-space: nowrap;
|
|
5930
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5931
|
+
text-align: left;
|
|
5932
|
+
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5933
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
5934
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
5935
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
5936
|
+
}
|
|
5937
|
+
.ScStoreCard_date {
|
|
5938
|
+
flex-shrink: 0;
|
|
5939
|
+
overflow: hidden;
|
|
5940
|
+
text-overflow: ellipsis;
|
|
5941
|
+
white-space: nowrap;
|
|
5942
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5943
|
+
text-align: right;
|
|
5944
|
+
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5945
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
5946
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
5947
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
5948
|
+
}
|
|
5949
|
+
|
|
5950
|
+
/* src/SC-Catalogix-Store-Header/ScCatalogixStoreHeader.module.css */
|
|
5951
|
+
.ScCatalogixStoreHeader_scCatalogixStoreHeader,
|
|
5952
|
+
.ScCatalogixStoreHeader_scCatalogixStoreHeader * {
|
|
5953
|
+
box-sizing: border-box;
|
|
5954
|
+
}
|
|
5955
|
+
.ScCatalogixStoreHeader_scCatalogixStoreHeader {
|
|
5956
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
5957
|
+
padding: var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem);
|
|
5958
|
+
display: flex;
|
|
5959
|
+
flex-direction: row;
|
|
5960
|
+
gap: var(--spacing-6xl, 1.5rem);
|
|
5961
|
+
align-items: center;
|
|
5962
|
+
justify-content: flex-start;
|
|
5963
|
+
position: relative;
|
|
5964
|
+
width: 100%;
|
|
5965
|
+
}
|
|
5966
|
+
.ScCatalogixStoreHeader_label {
|
|
5967
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
5968
|
+
text-align: left;
|
|
5969
|
+
text-transform: uppercase;
|
|
5970
|
+
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5971
|
+
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
5972
|
+
line-height: var(--text-text-xs-regular-line-height, 1.125rem);
|
|
5973
|
+
font-weight: var(--text-text-xs-regular-font-weight, 400);
|
|
5974
|
+
white-space: nowrap;
|
|
5975
|
+
overflow: hidden;
|
|
5976
|
+
text-overflow: ellipsis;
|
|
5977
|
+
flex-shrink: 0;
|
|
5978
|
+
}
|
|
5979
|
+
.ScCatalogixStoreHeader_colName {
|
|
5980
|
+
flex: 1;
|
|
5981
|
+
min-width: 0;
|
|
5982
|
+
}
|
|
5983
|
+
.ScCatalogixStoreHeader_colStatus {
|
|
5984
|
+
width: 7.5rem;
|
|
5985
|
+
}
|
|
5986
|
+
.ScCatalogixStoreHeader_colNum {
|
|
5987
|
+
width: 6rem;
|
|
5988
|
+
}
|
|
5989
|
+
.ScCatalogixStoreHeader_colDate {
|
|
5990
|
+
width: 7.5rem;
|
|
5991
|
+
}
|
|
5992
|
+
.ScCatalogixStoreHeader_colBy {
|
|
5993
|
+
width: 10rem;
|
|
5994
|
+
}
|
|
5995
|
+
|
|
5996
|
+
/* src/SC-CatalogixStoreTableList/ScCatalogixStoreTableList.module.css */
|
|
5997
|
+
.ScCatalogixStoreTableList_scCatalogixStoreTableList,
|
|
5998
|
+
.ScCatalogixStoreTableList_scCatalogixStoreTableList * {
|
|
5999
|
+
box-sizing: border-box;
|
|
6000
|
+
}
|
|
6001
|
+
.ScCatalogixStoreTableList_scCatalogixStoreTableList {
|
|
6002
|
+
border-style: solid;
|
|
6003
|
+
border-color: var(--alias-border-subtle, #242424);
|
|
6004
|
+
border-width: 0 0 0.0625rem 0;
|
|
6005
|
+
padding: var(--spacing-5xl, 1.25rem) var(--spacing-3xl, 1rem);
|
|
6006
|
+
display: flex;
|
|
6007
|
+
flex-direction: row;
|
|
6008
|
+
gap: var(--spacing-6xl, 1.5rem);
|
|
6009
|
+
align-items: center;
|
|
6010
|
+
justify-content: flex-start;
|
|
6011
|
+
position: relative;
|
|
6012
|
+
width: 100%;
|
|
6013
|
+
}
|
|
6014
|
+
.ScCatalogixStoreTableList_name {
|
|
6015
|
+
flex: 1;
|
|
6016
|
+
min-width: 0;
|
|
6017
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6018
|
+
text-align: left;
|
|
6019
|
+
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6020
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6021
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6022
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6023
|
+
white-space: nowrap;
|
|
6024
|
+
overflow: hidden;
|
|
6025
|
+
text-overflow: ellipsis;
|
|
6026
|
+
}
|
|
6027
|
+
.ScCatalogixStoreTableList_status {
|
|
6028
|
+
width: 7.5rem;
|
|
6029
|
+
flex-shrink: 0;
|
|
6030
|
+
text-align: left;
|
|
6031
|
+
font-family: var( --text-text-md-regular-font-family, "Inter-Regular", sans-serif );
|
|
6032
|
+
font-size: var(--text-text-md-regular-font-size, 1rem);
|
|
6033
|
+
line-height: var(--text-text-md-regular-line-height, 1.5rem);
|
|
6034
|
+
font-weight: var(--text-text-md-regular-font-weight, 400);
|
|
6035
|
+
white-space: nowrap;
|
|
6036
|
+
overflow: hidden;
|
|
6037
|
+
text-overflow: ellipsis;
|
|
6038
|
+
}
|
|
6039
|
+
.ScCatalogixStoreTableList_statusSuccess {
|
|
6040
|
+
color: var(--alias-text-and-icons-success, #00b96b);
|
|
6041
|
+
}
|
|
6042
|
+
.ScCatalogixStoreTableList_statusWarning {
|
|
6043
|
+
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
6044
|
+
}
|
|
6045
|
+
.ScCatalogixStoreTableList_statusError {
|
|
6046
|
+
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
6047
|
+
}
|
|
6048
|
+
.ScCatalogixStoreTableList_statusNeutral {
|
|
6049
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6050
|
+
}
|
|
6051
|
+
.ScCatalogixStoreTableList_cell {
|
|
6052
|
+
flex-shrink: 0;
|
|
6053
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6054
|
+
text-align: left;
|
|
6055
|
+
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6056
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6057
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6058
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6059
|
+
white-space: nowrap;
|
|
6060
|
+
overflow: hidden;
|
|
6061
|
+
text-overflow: ellipsis;
|
|
6062
|
+
}
|
|
6063
|
+
.ScCatalogixStoreTableList_colNum {
|
|
6064
|
+
width: 6rem;
|
|
6065
|
+
}
|
|
6066
|
+
.ScCatalogixStoreTableList_colDate {
|
|
6067
|
+
width: 7.5rem;
|
|
6068
|
+
}
|
|
6069
|
+
.ScCatalogixStoreTableList_colBy {
|
|
6070
|
+
width: 10rem;
|
|
6071
|
+
}
|
|
6072
|
+
|
|
5836
6073
|
/* src/SC-ThinkingStepIcon/ScThinkingStepIcon.module.css */
|
|
5837
6074
|
.ScThinkingStepIcon_scThinkingStepIcon,
|
|
5838
6075
|
.ScThinkingStepIcon_scThinkingStepIcon * {
|
package/dist/index.d.mts
CHANGED
|
@@ -1073,6 +1073,49 @@ declare function ScWorkspaceSwitchCard({ wsName, role, plan, ownerId, initials,
|
|
|
1073
1073
|
/** @deprecated Use ScWorkspaceSwitchCard directly */
|
|
1074
1074
|
declare const NscWorkspaceSwitch: typeof ScWorkspaceSwitchCard;
|
|
1075
1075
|
|
|
1076
|
+
type ScBeaconTone = "success" | "warning" | "error" | "neutral";
|
|
1077
|
+
interface IScBeaconProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
1078
|
+
tone?: ScBeaconTone;
|
|
1079
|
+
className?: string;
|
|
1080
|
+
}
|
|
1081
|
+
declare const ScBeacon: ({ tone, className, ...props }: IScBeaconProps) => JSX.Element;
|
|
1082
|
+
|
|
1083
|
+
interface IScStoreCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1084
|
+
storeName?: string;
|
|
1085
|
+
noOfProducts?: string;
|
|
1086
|
+
dateCreated?: string;
|
|
1087
|
+
tone?: ScBeaconTone;
|
|
1088
|
+
className?: string;
|
|
1089
|
+
}
|
|
1090
|
+
declare const ScStoreCard: ({ storeName, noOfProducts, dateCreated, tone, className, ...props }: IScStoreCardProps) => JSX.Element;
|
|
1091
|
+
|
|
1092
|
+
interface IScCatalogixStoreHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1093
|
+
storeNameLabel?: string;
|
|
1094
|
+
statusLabel?: string;
|
|
1095
|
+
productsLabel?: string;
|
|
1096
|
+
assetsLabel?: string;
|
|
1097
|
+
createdOnLabel?: string;
|
|
1098
|
+
createdByLabel?: string;
|
|
1099
|
+
showAssets?: boolean;
|
|
1100
|
+
showCreatedBy?: boolean;
|
|
1101
|
+
className?: string;
|
|
1102
|
+
}
|
|
1103
|
+
declare const ScCatalogixStoreHeader: ({ storeNameLabel, statusLabel, productsLabel, assetsLabel, createdOnLabel, createdByLabel, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreHeaderProps) => JSX.Element;
|
|
1104
|
+
|
|
1105
|
+
interface IScCatalogixStoreTableListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1106
|
+
storeName?: string;
|
|
1107
|
+
status?: string;
|
|
1108
|
+
statusTone?: ScBeaconTone;
|
|
1109
|
+
products?: string;
|
|
1110
|
+
assets?: string;
|
|
1111
|
+
createdOn?: string;
|
|
1112
|
+
createdBy?: string;
|
|
1113
|
+
showAssets?: boolean;
|
|
1114
|
+
showCreatedBy?: boolean;
|
|
1115
|
+
className?: string;
|
|
1116
|
+
}
|
|
1117
|
+
declare const ScCatalogixStoreTableList: ({ storeName, status, statusTone, products, assets, createdOn, createdBy, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreTableListProps) => JSX.Element;
|
|
1118
|
+
|
|
1076
1119
|
interface IScThinkingStepIconProps extends Omit<React$1.HTMLAttributes<HTMLSpanElement>, "children"> {
|
|
1077
1120
|
state?: "default" | "working" | "completed" | "error";
|
|
1078
1121
|
size?: number;
|
|
@@ -1491,4 +1534,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
|
|
|
1491
1534
|
}
|
|
1492
1535
|
declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, badgeSubText, currentPlanLabel, upgradeButtonText, isLoading, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
|
|
1493
1536
|
|
|
1494
|
-
export { type AppcardProduct, type ArtifaxMenuItem, type ArtifaxSection, type ArtifaxSidebarAssistantCta, type ArtifaxSidebarCreditWarning, type ArtifaxSidebarIconContext, type ArtifaxSidebarIconMap, type ArtifaxSidebarIconRenderer, type ArtifaxSidebarProfile, type CatalogixNavItem, type CatalogixSidebarCreditWarning, type CatalogixSidebarIconContext, type CatalogixSidebarIconMap, type CatalogixSidebarIconRenderer, type CatalogixSidebarProfile, type CatalogixSwitchApp, CreditWarningBanner, type CreditWarningBannerProps, type DescriptionVisibility, type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAppCardForCopilotProps, type IScAppCardProps, type IScAppCardV3Props, type IScAppFieldProps, type IScAppListingCardProps, type IScAppSwitchPanelProps, type IScAppcardLogosProps, type IScArtifaxInviteProps, type IScArtifaxSidebarProps, type IScBadgesProps, type IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScBriefCardProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCatalogixSidebarProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScCxoCopilotLogoProps, type IScFieldButtonProps, type IScFileFieldProps, type IScGoogleSignInProps, type IScGuideProps, type IScHDividerProps, type IScHeaderProps, type IScImageFieldProps, type IScInChatListProps, type IScInChatMessageProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMediaApprovalProps, type IScMediaSelectProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanComparisonProps, 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 IScSelectOption, type IScSelectProps, type IScSelectionListProps, type IScSelectionProps, type IScSettingsNavProps, type IScSettingsTabCompProps, type IScSideBarLogoUnitProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSidebarSwitchMenuProps, type IScSliderProps, type IScStrLogoProps, type IScStreamoidMascotProps, type IScStreamoidWordmarkProps, type IScSubAgentProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListMobileProps, type IScTableListProps, type IScTextAreaProps, type IScTextFieldProps, type IScThinkingStepIconProps, type IScTodoItem, type IScTodoListProps, type IScToggleSwitchProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceSettingsMobileProps, type IScWorkspaceSwitchMobileProps, type IScWorkspaceSwitchMobileV2Props, type IUsageHistoryMobileProps, type IcListIconState, InvoiceHistoryMobile, NscWorkspaceSwitch, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, ScAccess, ScAppCard, ScAppCardForCopilot, ScAppCardV3, ScAppField, ScAppListingCard, type ScAppSwitchItem, ScAppSwitchPanel, ScAppSwitchRow, ScAppcardLogos, ScArtifaxInvite, ScArtifaxSidebar, ScBadges, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScDp, type ScDpProps, ScFieldButton, ScFileField, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScIntialProfileCover, ScLogoUnit, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScOnlyField, ScOnlyIcon, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanComparison, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSelect, ScSelection, ScSelectionList, ScSettingsNav, ScSettingsTabComp, ScSideBarLogoUnit, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSidebarSwitchMenu, ScSlider, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScVersion, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SelectionListState, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProduct, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem, formatSubAgentLabel, hasCollapsedMark };
|
|
1537
|
+
export { type AppcardProduct, type ArtifaxMenuItem, type ArtifaxSection, type ArtifaxSidebarAssistantCta, type ArtifaxSidebarCreditWarning, type ArtifaxSidebarIconContext, type ArtifaxSidebarIconMap, type ArtifaxSidebarIconRenderer, type ArtifaxSidebarProfile, type CatalogixNavItem, type CatalogixSidebarCreditWarning, type CatalogixSidebarIconContext, type CatalogixSidebarIconMap, type CatalogixSidebarIconRenderer, type CatalogixSidebarProfile, type CatalogixSwitchApp, CreditWarningBanner, type CreditWarningBannerProps, type DescriptionVisibility, type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAppCardForCopilotProps, type IScAppCardProps, type IScAppCardV3Props, type IScAppFieldProps, type IScAppListingCardProps, type IScAppSwitchPanelProps, type IScAppcardLogosProps, type IScArtifaxInviteProps, type IScArtifaxSidebarProps, type IScBadgesProps, type IScBeaconProps, type IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScBriefCardProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCatalogixSidebarProps, type IScCatalogixStoreHeaderProps, type IScCatalogixStoreTableListProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScCxoCopilotLogoProps, type IScFieldButtonProps, type IScFileFieldProps, type IScGoogleSignInProps, type IScGuideProps, type IScHDividerProps, type IScHeaderProps, type IScImageFieldProps, type IScInChatListProps, type IScInChatMessageProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMediaApprovalProps, type IScMediaSelectProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanComparisonProps, 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 IScSelectOption, type IScSelectProps, type IScSelectionListProps, type IScSelectionProps, type IScSettingsNavProps, type IScSettingsTabCompProps, type IScSideBarLogoUnitProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSidebarSwitchMenuProps, type IScSliderProps, type IScStoreCardProps, type IScStrLogoProps, type IScStreamoidMascotProps, type IScStreamoidWordmarkProps, type IScSubAgentProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListMobileProps, type IScTableListProps, type IScTextAreaProps, type IScTextFieldProps, type IScThinkingStepIconProps, type IScTodoItem, type IScTodoListProps, type IScToggleSwitchProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceSettingsMobileProps, type IScWorkspaceSwitchMobileProps, type IScWorkspaceSwitchMobileV2Props, type IUsageHistoryMobileProps, type IcListIconState, InvoiceHistoryMobile, NscWorkspaceSwitch, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, ScAccess, ScAppCard, ScAppCardForCopilot, ScAppCardV3, ScAppField, ScAppListingCard, type ScAppSwitchItem, ScAppSwitchPanel, ScAppSwitchRow, ScAppcardLogos, ScArtifaxInvite, ScArtifaxSidebar, ScBadges, ScBeacon, type ScBeaconTone, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCatalogixStoreHeader, ScCatalogixStoreTableList, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScDp, type ScDpProps, ScFieldButton, ScFileField, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScIntialProfileCover, ScLogoUnit, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScOnlyField, ScOnlyIcon, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanComparison, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSelect, ScSelection, ScSelectionList, ScSettingsNav, ScSettingsTabComp, ScSideBarLogoUnit, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSidebarSwitchMenu, ScSlider, ScStoreCard, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScVersion, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SelectionListState, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProduct, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem, formatSubAgentLabel, hasCollapsedMark };
|
package/dist/index.d.ts
CHANGED
|
@@ -1073,6 +1073,49 @@ declare function ScWorkspaceSwitchCard({ wsName, role, plan, ownerId, initials,
|
|
|
1073
1073
|
/** @deprecated Use ScWorkspaceSwitchCard directly */
|
|
1074
1074
|
declare const NscWorkspaceSwitch: typeof ScWorkspaceSwitchCard;
|
|
1075
1075
|
|
|
1076
|
+
type ScBeaconTone = "success" | "warning" | "error" | "neutral";
|
|
1077
|
+
interface IScBeaconProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
1078
|
+
tone?: ScBeaconTone;
|
|
1079
|
+
className?: string;
|
|
1080
|
+
}
|
|
1081
|
+
declare const ScBeacon: ({ tone, className, ...props }: IScBeaconProps) => JSX.Element;
|
|
1082
|
+
|
|
1083
|
+
interface IScStoreCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1084
|
+
storeName?: string;
|
|
1085
|
+
noOfProducts?: string;
|
|
1086
|
+
dateCreated?: string;
|
|
1087
|
+
tone?: ScBeaconTone;
|
|
1088
|
+
className?: string;
|
|
1089
|
+
}
|
|
1090
|
+
declare const ScStoreCard: ({ storeName, noOfProducts, dateCreated, tone, className, ...props }: IScStoreCardProps) => JSX.Element;
|
|
1091
|
+
|
|
1092
|
+
interface IScCatalogixStoreHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1093
|
+
storeNameLabel?: string;
|
|
1094
|
+
statusLabel?: string;
|
|
1095
|
+
productsLabel?: string;
|
|
1096
|
+
assetsLabel?: string;
|
|
1097
|
+
createdOnLabel?: string;
|
|
1098
|
+
createdByLabel?: string;
|
|
1099
|
+
showAssets?: boolean;
|
|
1100
|
+
showCreatedBy?: boolean;
|
|
1101
|
+
className?: string;
|
|
1102
|
+
}
|
|
1103
|
+
declare const ScCatalogixStoreHeader: ({ storeNameLabel, statusLabel, productsLabel, assetsLabel, createdOnLabel, createdByLabel, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreHeaderProps) => JSX.Element;
|
|
1104
|
+
|
|
1105
|
+
interface IScCatalogixStoreTableListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1106
|
+
storeName?: string;
|
|
1107
|
+
status?: string;
|
|
1108
|
+
statusTone?: ScBeaconTone;
|
|
1109
|
+
products?: string;
|
|
1110
|
+
assets?: string;
|
|
1111
|
+
createdOn?: string;
|
|
1112
|
+
createdBy?: string;
|
|
1113
|
+
showAssets?: boolean;
|
|
1114
|
+
showCreatedBy?: boolean;
|
|
1115
|
+
className?: string;
|
|
1116
|
+
}
|
|
1117
|
+
declare const ScCatalogixStoreTableList: ({ storeName, status, statusTone, products, assets, createdOn, createdBy, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreTableListProps) => JSX.Element;
|
|
1118
|
+
|
|
1076
1119
|
interface IScThinkingStepIconProps extends Omit<React$1.HTMLAttributes<HTMLSpanElement>, "children"> {
|
|
1077
1120
|
state?: "default" | "working" | "completed" | "error";
|
|
1078
1121
|
size?: number;
|
|
@@ -1491,4 +1534,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
|
|
|
1491
1534
|
}
|
|
1492
1535
|
declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, badgeSubText, currentPlanLabel, upgradeButtonText, isLoading, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
|
|
1493
1536
|
|
|
1494
|
-
export { type AppcardProduct, type ArtifaxMenuItem, type ArtifaxSection, type ArtifaxSidebarAssistantCta, type ArtifaxSidebarCreditWarning, type ArtifaxSidebarIconContext, type ArtifaxSidebarIconMap, type ArtifaxSidebarIconRenderer, type ArtifaxSidebarProfile, type CatalogixNavItem, type CatalogixSidebarCreditWarning, type CatalogixSidebarIconContext, type CatalogixSidebarIconMap, type CatalogixSidebarIconRenderer, type CatalogixSidebarProfile, type CatalogixSwitchApp, CreditWarningBanner, type CreditWarningBannerProps, type DescriptionVisibility, type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAppCardForCopilotProps, type IScAppCardProps, type IScAppCardV3Props, type IScAppFieldProps, type IScAppListingCardProps, type IScAppSwitchPanelProps, type IScAppcardLogosProps, type IScArtifaxInviteProps, type IScArtifaxSidebarProps, type IScBadgesProps, type IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScBriefCardProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCatalogixSidebarProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScCxoCopilotLogoProps, type IScFieldButtonProps, type IScFileFieldProps, type IScGoogleSignInProps, type IScGuideProps, type IScHDividerProps, type IScHeaderProps, type IScImageFieldProps, type IScInChatListProps, type IScInChatMessageProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMediaApprovalProps, type IScMediaSelectProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanComparisonProps, 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 IScSelectOption, type IScSelectProps, type IScSelectionListProps, type IScSelectionProps, type IScSettingsNavProps, type IScSettingsTabCompProps, type IScSideBarLogoUnitProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSidebarSwitchMenuProps, type IScSliderProps, type IScStrLogoProps, type IScStreamoidMascotProps, type IScStreamoidWordmarkProps, type IScSubAgentProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListMobileProps, type IScTableListProps, type IScTextAreaProps, type IScTextFieldProps, type IScThinkingStepIconProps, type IScTodoItem, type IScTodoListProps, type IScToggleSwitchProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceSettingsMobileProps, type IScWorkspaceSwitchMobileProps, type IScWorkspaceSwitchMobileV2Props, type IUsageHistoryMobileProps, type IcListIconState, InvoiceHistoryMobile, NscWorkspaceSwitch, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, ScAccess, ScAppCard, ScAppCardForCopilot, ScAppCardV3, ScAppField, ScAppListingCard, type ScAppSwitchItem, ScAppSwitchPanel, ScAppSwitchRow, ScAppcardLogos, ScArtifaxInvite, ScArtifaxSidebar, ScBadges, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScDp, type ScDpProps, ScFieldButton, ScFileField, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScIntialProfileCover, ScLogoUnit, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScOnlyField, ScOnlyIcon, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanComparison, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSelect, ScSelection, ScSelectionList, ScSettingsNav, ScSettingsTabComp, ScSideBarLogoUnit, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSidebarSwitchMenu, ScSlider, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScVersion, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SelectionListState, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProduct, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem, formatSubAgentLabel, hasCollapsedMark };
|
|
1537
|
+
export { type AppcardProduct, type ArtifaxMenuItem, type ArtifaxSection, type ArtifaxSidebarAssistantCta, type ArtifaxSidebarCreditWarning, type ArtifaxSidebarIconContext, type ArtifaxSidebarIconMap, type ArtifaxSidebarIconRenderer, type ArtifaxSidebarProfile, type CatalogixNavItem, type CatalogixSidebarCreditWarning, type CatalogixSidebarIconContext, type CatalogixSidebarIconMap, type CatalogixSidebarIconRenderer, type CatalogixSidebarProfile, type CatalogixSwitchApp, CreditWarningBanner, type CreditWarningBannerProps, type DescriptionVisibility, type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAppCardForCopilotProps, type IScAppCardProps, type IScAppCardV3Props, type IScAppFieldProps, type IScAppListingCardProps, type IScAppSwitchPanelProps, type IScAppcardLogosProps, type IScArtifaxInviteProps, type IScArtifaxSidebarProps, type IScBadgesProps, type IScBeaconProps, type IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScBriefCardProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCatalogixSidebarProps, type IScCatalogixStoreHeaderProps, type IScCatalogixStoreTableListProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScCxoCopilotLogoProps, type IScFieldButtonProps, type IScFileFieldProps, type IScGoogleSignInProps, type IScGuideProps, type IScHDividerProps, type IScHeaderProps, type IScImageFieldProps, type IScInChatListProps, type IScInChatMessageProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMediaApprovalProps, type IScMediaSelectProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanComparisonProps, 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 IScSelectOption, type IScSelectProps, type IScSelectionListProps, type IScSelectionProps, type IScSettingsNavProps, type IScSettingsTabCompProps, type IScSideBarLogoUnitProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSidebarSwitchMenuProps, type IScSliderProps, type IScStoreCardProps, type IScStrLogoProps, type IScStreamoidMascotProps, type IScStreamoidWordmarkProps, type IScSubAgentProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListMobileProps, type IScTableListProps, type IScTextAreaProps, type IScTextFieldProps, type IScThinkingStepIconProps, type IScTodoItem, type IScTodoListProps, type IScToggleSwitchProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceSettingsMobileProps, type IScWorkspaceSwitchMobileProps, type IScWorkspaceSwitchMobileV2Props, type IUsageHistoryMobileProps, type IcListIconState, InvoiceHistoryMobile, NscWorkspaceSwitch, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, ScAccess, ScAppCard, ScAppCardForCopilot, ScAppCardV3, ScAppField, ScAppListingCard, type ScAppSwitchItem, ScAppSwitchPanel, ScAppSwitchRow, ScAppcardLogos, ScArtifaxInvite, ScArtifaxSidebar, ScBadges, ScBeacon, type ScBeaconTone, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCatalogixStoreHeader, ScCatalogixStoreTableList, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScDp, type ScDpProps, ScFieldButton, ScFileField, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScIntialProfileCover, ScLogoUnit, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScOnlyField, ScOnlyIcon, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanComparison, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSelect, ScSelection, ScSelectionList, ScSettingsNav, ScSettingsTabComp, ScSideBarLogoUnit, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSidebarSwitchMenu, ScSlider, ScStoreCard, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScVersion, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SelectionListState, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProduct, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem, formatSubAgentLabel, hasCollapsedMark };
|