@streamoid/ui 0.6.11 → 0.6.13

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 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,367 @@
5833
5834
  background: var(--alias-fill-error-solidhover, #e04444);
5834
5835
  }
5835
5836
 
5837
+ /* src/SC-Modal/ScModal.module.css */
5838
+ .ScModal_backdrop,
5839
+ .ScModal_backdrop * {
5840
+ box-sizing: border-box;
5841
+ }
5842
+ .ScModal_backdrop {
5843
+ position: fixed;
5844
+ top: 0;
5845
+ left: 0;
5846
+ width: 100%;
5847
+ height: 100%;
5848
+ padding-left: var(--leftMenuWidth, 0);
5849
+ z-index: 999;
5850
+ display: flex;
5851
+ align-items: center;
5852
+ justify-content: center;
5853
+ background: rgba(11, 8, 30, 0.5);
5854
+ }
5855
+ .ScModal_content {
5856
+ padding: 24px;
5857
+ border-radius: 16px;
5858
+ background: var(--alias-surface-base, #101010);
5859
+ opacity: 1;
5860
+ }
5861
+
5862
+ /* src/SC-InfoPopup/ScInfoPopup.module.css */
5863
+ .ScInfoPopup_scInfoPopup,
5864
+ .ScInfoPopup_scInfoPopup * {
5865
+ box-sizing: border-box;
5866
+ }
5867
+ .ScInfoPopup_scInfoPopup {
5868
+ position: relative;
5869
+ display: inline-block;
5870
+ }
5871
+ .ScInfoPopup_infoIcon {
5872
+ display: block;
5873
+ cursor: pointer;
5874
+ margin: 0 12px;
5875
+ width: 18px;
5876
+ height: 18px;
5877
+ }
5878
+ .ScInfoPopup_content {
5879
+ position: absolute;
5880
+ top: 18px;
5881
+ right: 0;
5882
+ transform: translateX(50%);
5883
+ width: max-content;
5884
+ max-width: 300px;
5885
+ background-color: var(--alias-surface-base, #101010);
5886
+ border-radius: 6px;
5887
+ padding: 8px;
5888
+ z-index: 2;
5889
+ box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
5890
+ }
5891
+ .ScInfoPopup_closeIconContainer {
5892
+ position: relative;
5893
+ }
5894
+ .ScInfoPopup_closeIcon {
5895
+ position: absolute;
5896
+ right: 0;
5897
+ width: 18px;
5898
+ height: 18px;
5899
+ cursor: pointer;
5900
+ margin: 0;
5901
+ }
5902
+ .ScInfoPopup_contentText {
5903
+ display: block;
5904
+ font-size: 12px;
5905
+ margin-top: 0px;
5906
+ margin-right: 18px;
5907
+ max-height: 100px;
5908
+ overflow-y: auto;
5909
+ line-height: 1.4;
5910
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
5911
+ }
5912
+
5913
+ /* src/SC-Pagination/ScPagination.module.css */
5914
+ .ScPagination_scPagination,
5915
+ .ScPagination_scPagination * {
5916
+ box-sizing: border-box;
5917
+ }
5918
+ .ScPagination_scPagination {
5919
+ width: 100%;
5920
+ display: flex;
5921
+ justify-content: flex-end;
5922
+ }
5923
+ .ScPagination_section {
5924
+ overflow: auto;
5925
+ display: flex;
5926
+ align-items: center;
5927
+ font-weight: 400;
5928
+ font-size: 1rem;
5929
+ line-height: 1.375rem;
5930
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
5931
+ }
5932
+ .ScPagination_section svg {
5933
+ cursor: pointer;
5934
+ }
5935
+ .ScPagination_leftArrow {
5936
+ transform: rotate(180deg);
5937
+ }
5938
+ .ScPagination_page input {
5939
+ display: block;
5940
+ padding: 0.3125rem 0;
5941
+ border-radius: 1rem;
5942
+ background: var(--alias-surface-canvasbase, #1a1a1a);
5943
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
5944
+ margin: 0 0.5rem;
5945
+ border: none;
5946
+ width: 3.75rem;
5947
+ text-align: center;
5948
+ -moz-appearance: textfield;
5949
+ }
5950
+ .ScPagination_page input:focus {
5951
+ outline: none;
5952
+ }
5953
+ .ScPagination_page input::-webkit-outer-spin-button,
5954
+ .ScPagination_page input::-webkit-inner-spin-button {
5955
+ -webkit-appearance: none;
5956
+ margin: 0;
5957
+ }
5958
+ .ScPagination_pageCount {
5959
+ margin-left: 1rem;
5960
+ }
5961
+
5962
+ /* src/SC-Beacon/ScBeacon.module.css */
5963
+ .ScBeacon_scBeacon,
5964
+ .ScBeacon_scBeacon * {
5965
+ box-sizing: border-box;
5966
+ }
5967
+ .ScBeacon_scBeacon {
5968
+ display: inline-flex;
5969
+ width: 1.25rem;
5970
+ height: 1.25rem;
5971
+ flex-shrink: 0;
5972
+ }
5973
+ .ScBeacon_success {
5974
+ color: var(--alias-text-and-icons-success, #00b96b);
5975
+ }
5976
+ .ScBeacon_warning {
5977
+ color: var(--alias-text-and-icons-warning, #db8b00);
5978
+ }
5979
+ .ScBeacon_error {
5980
+ color: var(--alias-text-and-icons-error, #d11a1a);
5981
+ }
5982
+ .ScBeacon_neutral {
5983
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
5984
+ }
5985
+
5986
+ /* src/SC-StoreCard/ScStoreCard.module.css */
5987
+ .ScStoreCard_scStoreCard,
5988
+ .ScStoreCard_scStoreCard * {
5989
+ box-sizing: border-box;
5990
+ }
5991
+ .ScStoreCard_scStoreCard {
5992
+ background: var(--alias-surface-base, #101010);
5993
+ border: 0.03125rem solid var(--alias-border-subtle, #242424);
5994
+ border-radius: var(--radius-4xl, 1.125rem);
5995
+ display: flex;
5996
+ flex-direction: column;
5997
+ align-items: flex-start;
5998
+ width: 100%;
5999
+ position: relative;
6000
+ overflow: hidden;
6001
+ cursor: pointer;
6002
+ transition:
6003
+ background-color 120ms ease,
6004
+ border-color 120ms ease,
6005
+ transform 120ms ease;
6006
+ }
6007
+ .ScStoreCard_scStoreCard:hover,
6008
+ .ScStoreCard_scStoreCard:focus-visible {
6009
+ background: var(--alias-surface-basesubtle, #151515);
6010
+ border-color: var(--alias-border-default, #3e3e3e);
6011
+ transform: scale(1.01);
6012
+ outline: none;
6013
+ }
6014
+ .ScStoreCard_nameSection {
6015
+ display: flex;
6016
+ align-items: center;
6017
+ justify-content: center;
6018
+ padding: var(--spacing-5xl, 1.25rem);
6019
+ width: 100%;
6020
+ }
6021
+ .ScStoreCard_storeName {
6022
+ flex: 1;
6023
+ min-width: 0;
6024
+ margin: 0;
6025
+ height: 3.5rem;
6026
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6027
+ text-align: left;
6028
+ font-family: var( --lead-text-lead-text-xs-regular-font-family, "Inter-Regular", sans-serif );
6029
+ font-size: var(--lead-text-lead-text-xs-regular-font-size, 1.125rem);
6030
+ line-height: var(--lead-text-lead-text-xs-regular-line-height, 1.625rem);
6031
+ font-weight: var(--lead-text-lead-text-xs-regular-font-weight, 400);
6032
+ display: -webkit-box;
6033
+ -webkit-line-clamp: 2;
6034
+ -webkit-box-orient: vertical;
6035
+ overflow: hidden;
6036
+ word-break: break-word;
6037
+ }
6038
+ .ScStoreCard_divider {
6039
+ width: 100%;
6040
+ }
6041
+ .ScStoreCard_footer {
6042
+ display: flex;
6043
+ align-items: center;
6044
+ justify-content: center;
6045
+ gap: 0.5rem;
6046
+ padding: var(--spacing-5xl, 1.25rem);
6047
+ width: 100%;
6048
+ }
6049
+ .ScStoreCard_products {
6050
+ flex: 1;
6051
+ min-width: 0;
6052
+ overflow: hidden;
6053
+ text-overflow: ellipsis;
6054
+ white-space: nowrap;
6055
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6056
+ text-align: left;
6057
+ font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
6058
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6059
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6060
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6061
+ }
6062
+ .ScStoreCard_date {
6063
+ flex-shrink: 0;
6064
+ overflow: hidden;
6065
+ text-overflow: ellipsis;
6066
+ white-space: nowrap;
6067
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6068
+ text-align: right;
6069
+ font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
6070
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6071
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6072
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6073
+ }
6074
+
6075
+ /* src/SC-Catalogix-Store-Header/ScCatalogixStoreHeader.module.css */
6076
+ .ScCatalogixStoreHeader_scCatalogixStoreHeader,
6077
+ .ScCatalogixStoreHeader_scCatalogixStoreHeader * {
6078
+ box-sizing: border-box;
6079
+ }
6080
+ .ScCatalogixStoreHeader_scCatalogixStoreHeader {
6081
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
6082
+ padding: var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem);
6083
+ display: flex;
6084
+ flex-direction: row;
6085
+ gap: var(--spacing-6xl, 1.5rem);
6086
+ align-items: center;
6087
+ justify-content: flex-start;
6088
+ position: relative;
6089
+ width: 100%;
6090
+ }
6091
+ .ScCatalogixStoreHeader_label {
6092
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6093
+ text-align: left;
6094
+ text-transform: uppercase;
6095
+ font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
6096
+ font-size: var(--text-text-xs-regular-font-size, 0.75rem);
6097
+ line-height: var(--text-text-xs-regular-line-height, 1.125rem);
6098
+ font-weight: var(--text-text-xs-regular-font-weight, 400);
6099
+ white-space: nowrap;
6100
+ overflow: hidden;
6101
+ text-overflow: ellipsis;
6102
+ flex-shrink: 0;
6103
+ }
6104
+ .ScCatalogixStoreHeader_colName {
6105
+ flex: 1;
6106
+ min-width: 0;
6107
+ }
6108
+ .ScCatalogixStoreHeader_colStatus {
6109
+ width: 7.5rem;
6110
+ }
6111
+ .ScCatalogixStoreHeader_colNum {
6112
+ width: 6rem;
6113
+ }
6114
+ .ScCatalogixStoreHeader_colDate {
6115
+ width: 7.5rem;
6116
+ }
6117
+ .ScCatalogixStoreHeader_colBy {
6118
+ width: 10rem;
6119
+ }
6120
+
6121
+ /* src/SC-CatalogixStoreTableList/ScCatalogixStoreTableList.module.css */
6122
+ .ScCatalogixStoreTableList_scCatalogixStoreTableList,
6123
+ .ScCatalogixStoreTableList_scCatalogixStoreTableList * {
6124
+ box-sizing: border-box;
6125
+ }
6126
+ .ScCatalogixStoreTableList_scCatalogixStoreTableList {
6127
+ border-style: solid;
6128
+ border-color: var(--alias-border-subtle, #242424);
6129
+ border-width: 0 0 0.0625rem 0;
6130
+ padding: var(--spacing-5xl, 1.25rem) var(--spacing-3xl, 1rem);
6131
+ display: flex;
6132
+ flex-direction: row;
6133
+ gap: var(--spacing-6xl, 1.5rem);
6134
+ align-items: center;
6135
+ justify-content: flex-start;
6136
+ position: relative;
6137
+ width: 100%;
6138
+ }
6139
+ .ScCatalogixStoreTableList_name {
6140
+ flex: 1;
6141
+ min-width: 0;
6142
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6143
+ text-align: left;
6144
+ font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
6145
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6146
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6147
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6148
+ white-space: nowrap;
6149
+ overflow: hidden;
6150
+ text-overflow: ellipsis;
6151
+ }
6152
+ .ScCatalogixStoreTableList_status {
6153
+ width: 7.5rem;
6154
+ flex-shrink: 0;
6155
+ text-align: left;
6156
+ font-family: var( --text-text-md-regular-font-family, "Inter-Regular", sans-serif );
6157
+ font-size: var(--text-text-md-regular-font-size, 1rem);
6158
+ line-height: var(--text-text-md-regular-line-height, 1.5rem);
6159
+ font-weight: var(--text-text-md-regular-font-weight, 400);
6160
+ white-space: nowrap;
6161
+ overflow: hidden;
6162
+ text-overflow: ellipsis;
6163
+ }
6164
+ .ScCatalogixStoreTableList_statusSuccess {
6165
+ color: var(--alias-text-and-icons-success, #00b96b);
6166
+ }
6167
+ .ScCatalogixStoreTableList_statusWarning {
6168
+ color: var(--alias-text-and-icons-warning, #db8b00);
6169
+ }
6170
+ .ScCatalogixStoreTableList_statusError {
6171
+ color: var(--alias-text-and-icons-error, #d11a1a);
6172
+ }
6173
+ .ScCatalogixStoreTableList_statusNeutral {
6174
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6175
+ }
6176
+ .ScCatalogixStoreTableList_cell {
6177
+ flex-shrink: 0;
6178
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6179
+ text-align: left;
6180
+ font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
6181
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6182
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6183
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6184
+ white-space: nowrap;
6185
+ overflow: hidden;
6186
+ text-overflow: ellipsis;
6187
+ }
6188
+ .ScCatalogixStoreTableList_colNum {
6189
+ width: 6rem;
6190
+ }
6191
+ .ScCatalogixStoreTableList_colDate {
6192
+ width: 7.5rem;
6193
+ }
6194
+ .ScCatalogixStoreTableList_colBy {
6195
+ width: 10rem;
6196
+ }
6197
+
5836
6198
  /* src/SC-ThinkingStepIcon/ScThinkingStepIcon.module.css */
5837
6199
  .ScThinkingStepIcon_scThinkingStepIcon,
5838
6200
  .ScThinkingStepIcon_scThinkingStepIcon * {
package/dist/index.d.mts CHANGED
@@ -870,12 +870,13 @@ declare const ScCheckField: ({ label, className, checkboxes, ...props }: IScChec
870
870
  interface IScCheckboxProps {
871
871
  state?: "default" | "partial" | "selected";
872
872
  checked?: boolean;
873
+ disabled?: boolean;
873
874
  onChange?: (checked: boolean) => void;
874
875
  className?: string;
875
876
  style?: React.CSSProperties;
876
877
  onClick?: React.MouseEventHandler<HTMLDivElement>;
877
878
  }
878
- declare const ScCheckbox: ({ state, checked, onChange, className, ...props }: IScCheckboxProps & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">) => JSX.Element;
879
+ declare const ScCheckbox: ({ state, checked, disabled, onChange, className, style, onClick, ...props }: IScCheckboxProps & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">) => JSX.Element;
879
880
 
880
881
  interface IScFieldButtonProps extends React.HTMLAttributes<HTMLDivElement> {
881
882
  icon?: JSX.Element;
@@ -1031,10 +1032,11 @@ declare const ScTextField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGrou
1031
1032
  interface IScToggleSwitchProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onToggle"> {
1032
1033
  active?: "true" | "false";
1033
1034
  checked?: boolean;
1035
+ disabled?: boolean;
1034
1036
  onToggle?: (active: boolean) => void;
1035
1037
  className?: string;
1036
1038
  }
1037
- declare const ScToggleSwitch: ({ active, checked, onToggle, className, ...props }: IScToggleSwitchProps) => JSX.Element;
1039
+ declare const ScToggleSwitch: ({ active, checked, disabled, onToggle, className, ...props }: IScToggleSwitchProps) => JSX.Element;
1038
1040
 
1039
1041
  interface IScVersionProps extends React.HTMLAttributes<HTMLDivElement> {
1040
1042
  state?: "expanded" | "collapsed";
@@ -1073,6 +1075,79 @@ declare function ScWorkspaceSwitchCard({ wsName, role, plan, ownerId, initials,
1073
1075
  /** @deprecated Use ScWorkspaceSwitchCard directly */
1074
1076
  declare const NscWorkspaceSwitch: typeof ScWorkspaceSwitchCard;
1075
1077
 
1078
+ interface IScModalProps {
1079
+ children?: React.ReactNode;
1080
+ onClose?: () => void;
1081
+ open?: boolean;
1082
+ className?: string;
1083
+ style?: React.CSSProperties;
1084
+ contentClassName?: string;
1085
+ contentStyle?: React.CSSProperties;
1086
+ closeOnBackdrop?: boolean;
1087
+ closeOnEsc?: boolean;
1088
+ }
1089
+ declare const ScModal: ({ children, onClose, open, className, style, contentClassName, contentStyle, closeOnBackdrop, closeOnEsc, }: IScModalProps) => JSX.Element | null;
1090
+
1091
+ interface IScInfoPopupProps {
1092
+ content?: React.ReactNode;
1093
+ className?: string;
1094
+ }
1095
+ declare const ScInfoPopup: ({ content, className, }: IScInfoPopupProps) => JSX.Element;
1096
+
1097
+ interface IScPaginationProps {
1098
+ itemsCount: number;
1099
+ itemsPerPage: number | string;
1100
+ page: number | string;
1101
+ setPage: (page: number | string) => void;
1102
+ setOffsetValue: (offset: number) => void;
1103
+ onPageChangeAction: () => void;
1104
+ className?: string;
1105
+ }
1106
+ declare const ScPagination: ({ itemsCount, itemsPerPage, page, setPage, setOffsetValue, onPageChangeAction, className, }: IScPaginationProps) => JSX.Element;
1107
+
1108
+ type ScBeaconTone = "success" | "warning" | "error" | "neutral";
1109
+ interface IScBeaconProps extends React.HTMLAttributes<HTMLSpanElement> {
1110
+ tone?: ScBeaconTone;
1111
+ className?: string;
1112
+ }
1113
+ declare const ScBeacon: ({ tone, className, ...props }: IScBeaconProps) => JSX.Element;
1114
+
1115
+ interface IScStoreCardProps extends React.HTMLAttributes<HTMLDivElement> {
1116
+ storeName?: string;
1117
+ noOfProducts?: string;
1118
+ dateCreated?: string;
1119
+ tone?: ScBeaconTone;
1120
+ className?: string;
1121
+ }
1122
+ declare const ScStoreCard: ({ storeName, noOfProducts, dateCreated, tone, className, ...props }: IScStoreCardProps) => JSX.Element;
1123
+
1124
+ interface IScCatalogixStoreHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
1125
+ storeNameLabel?: string;
1126
+ statusLabel?: string;
1127
+ productsLabel?: string;
1128
+ assetsLabel?: string;
1129
+ createdOnLabel?: string;
1130
+ createdByLabel?: string;
1131
+ showAssets?: boolean;
1132
+ showCreatedBy?: boolean;
1133
+ className?: string;
1134
+ }
1135
+ declare const ScCatalogixStoreHeader: ({ storeNameLabel, statusLabel, productsLabel, assetsLabel, createdOnLabel, createdByLabel, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreHeaderProps) => JSX.Element;
1136
+
1137
+ interface IScCatalogixStoreTableListProps extends React.HTMLAttributes<HTMLDivElement> {
1138
+ storeName?: string;
1139
+ status?: string;
1140
+ statusTone?: ScBeaconTone;
1141
+ products?: string;
1142
+ assets?: string;
1143
+ createdOn?: string;
1144
+ createdBy?: string;
1145
+ showAssets?: boolean;
1146
+ showCreatedBy?: boolean;
1147
+ className?: string;
1148
+ }
1149
+ declare const ScCatalogixStoreTableList: ({ storeName, status, statusTone, products, assets, createdOn, createdBy, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreTableListProps) => JSX.Element;
1150
+
1076
1151
  interface IScThinkingStepIconProps extends Omit<React$1.HTMLAttributes<HTMLSpanElement>, "children"> {
1077
1152
  state?: "default" | "working" | "completed" | "error";
1078
1153
  size?: number;
@@ -1491,4 +1566,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
1491
1566
  }
1492
1567
  declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, badgeSubText, currentPlanLabel, upgradeButtonText, isLoading, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
1493
1568
 
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 };
1569
+ 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 IScInfoPopupProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMediaApprovalProps, type IScMediaSelectProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScModalProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPaginationProps, 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, ScInfoPopup, ScIntialProfileCover, ScLogoUnit, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScModal, ScOnlyField, ScOnlyIcon, ScPagination, 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
@@ -870,12 +870,13 @@ declare const ScCheckField: ({ label, className, checkboxes, ...props }: IScChec
870
870
  interface IScCheckboxProps {
871
871
  state?: "default" | "partial" | "selected";
872
872
  checked?: boolean;
873
+ disabled?: boolean;
873
874
  onChange?: (checked: boolean) => void;
874
875
  className?: string;
875
876
  style?: React.CSSProperties;
876
877
  onClick?: React.MouseEventHandler<HTMLDivElement>;
877
878
  }
878
- declare const ScCheckbox: ({ state, checked, onChange, className, ...props }: IScCheckboxProps & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">) => JSX.Element;
879
+ declare const ScCheckbox: ({ state, checked, disabled, onChange, className, style, onClick, ...props }: IScCheckboxProps & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">) => JSX.Element;
879
880
 
880
881
  interface IScFieldButtonProps extends React.HTMLAttributes<HTMLDivElement> {
881
882
  icon?: JSX.Element;
@@ -1031,10 +1032,11 @@ declare const ScTextField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGrou
1031
1032
  interface IScToggleSwitchProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onToggle"> {
1032
1033
  active?: "true" | "false";
1033
1034
  checked?: boolean;
1035
+ disabled?: boolean;
1034
1036
  onToggle?: (active: boolean) => void;
1035
1037
  className?: string;
1036
1038
  }
1037
- declare const ScToggleSwitch: ({ active, checked, onToggle, className, ...props }: IScToggleSwitchProps) => JSX.Element;
1039
+ declare const ScToggleSwitch: ({ active, checked, disabled, onToggle, className, ...props }: IScToggleSwitchProps) => JSX.Element;
1038
1040
 
1039
1041
  interface IScVersionProps extends React.HTMLAttributes<HTMLDivElement> {
1040
1042
  state?: "expanded" | "collapsed";
@@ -1073,6 +1075,79 @@ declare function ScWorkspaceSwitchCard({ wsName, role, plan, ownerId, initials,
1073
1075
  /** @deprecated Use ScWorkspaceSwitchCard directly */
1074
1076
  declare const NscWorkspaceSwitch: typeof ScWorkspaceSwitchCard;
1075
1077
 
1078
+ interface IScModalProps {
1079
+ children?: React.ReactNode;
1080
+ onClose?: () => void;
1081
+ open?: boolean;
1082
+ className?: string;
1083
+ style?: React.CSSProperties;
1084
+ contentClassName?: string;
1085
+ contentStyle?: React.CSSProperties;
1086
+ closeOnBackdrop?: boolean;
1087
+ closeOnEsc?: boolean;
1088
+ }
1089
+ declare const ScModal: ({ children, onClose, open, className, style, contentClassName, contentStyle, closeOnBackdrop, closeOnEsc, }: IScModalProps) => JSX.Element | null;
1090
+
1091
+ interface IScInfoPopupProps {
1092
+ content?: React.ReactNode;
1093
+ className?: string;
1094
+ }
1095
+ declare const ScInfoPopup: ({ content, className, }: IScInfoPopupProps) => JSX.Element;
1096
+
1097
+ interface IScPaginationProps {
1098
+ itemsCount: number;
1099
+ itemsPerPage: number | string;
1100
+ page: number | string;
1101
+ setPage: (page: number | string) => void;
1102
+ setOffsetValue: (offset: number) => void;
1103
+ onPageChangeAction: () => void;
1104
+ className?: string;
1105
+ }
1106
+ declare const ScPagination: ({ itemsCount, itemsPerPage, page, setPage, setOffsetValue, onPageChangeAction, className, }: IScPaginationProps) => JSX.Element;
1107
+
1108
+ type ScBeaconTone = "success" | "warning" | "error" | "neutral";
1109
+ interface IScBeaconProps extends React.HTMLAttributes<HTMLSpanElement> {
1110
+ tone?: ScBeaconTone;
1111
+ className?: string;
1112
+ }
1113
+ declare const ScBeacon: ({ tone, className, ...props }: IScBeaconProps) => JSX.Element;
1114
+
1115
+ interface IScStoreCardProps extends React.HTMLAttributes<HTMLDivElement> {
1116
+ storeName?: string;
1117
+ noOfProducts?: string;
1118
+ dateCreated?: string;
1119
+ tone?: ScBeaconTone;
1120
+ className?: string;
1121
+ }
1122
+ declare const ScStoreCard: ({ storeName, noOfProducts, dateCreated, tone, className, ...props }: IScStoreCardProps) => JSX.Element;
1123
+
1124
+ interface IScCatalogixStoreHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
1125
+ storeNameLabel?: string;
1126
+ statusLabel?: string;
1127
+ productsLabel?: string;
1128
+ assetsLabel?: string;
1129
+ createdOnLabel?: string;
1130
+ createdByLabel?: string;
1131
+ showAssets?: boolean;
1132
+ showCreatedBy?: boolean;
1133
+ className?: string;
1134
+ }
1135
+ declare const ScCatalogixStoreHeader: ({ storeNameLabel, statusLabel, productsLabel, assetsLabel, createdOnLabel, createdByLabel, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreHeaderProps) => JSX.Element;
1136
+
1137
+ interface IScCatalogixStoreTableListProps extends React.HTMLAttributes<HTMLDivElement> {
1138
+ storeName?: string;
1139
+ status?: string;
1140
+ statusTone?: ScBeaconTone;
1141
+ products?: string;
1142
+ assets?: string;
1143
+ createdOn?: string;
1144
+ createdBy?: string;
1145
+ showAssets?: boolean;
1146
+ showCreatedBy?: boolean;
1147
+ className?: string;
1148
+ }
1149
+ declare const ScCatalogixStoreTableList: ({ storeName, status, statusTone, products, assets, createdOn, createdBy, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreTableListProps) => JSX.Element;
1150
+
1076
1151
  interface IScThinkingStepIconProps extends Omit<React$1.HTMLAttributes<HTMLSpanElement>, "children"> {
1077
1152
  state?: "default" | "working" | "completed" | "error";
1078
1153
  size?: number;
@@ -1491,4 +1566,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
1491
1566
  }
1492
1567
  declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, badgeSubText, currentPlanLabel, upgradeButtonText, isLoading, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
1493
1568
 
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 };
1569
+ 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 IScInfoPopupProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMediaApprovalProps, type IScMediaSelectProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScModalProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPaginationProps, 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, ScInfoPopup, ScIntialProfileCover, ScLogoUnit, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScModal, ScOnlyField, ScOnlyIcon, ScPagination, 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 };