@streamoid/ui 0.6.12 → 0.6.14
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 +280 -0
- package/dist/index.d.mts +130 -32
- package/dist/index.d.ts +130 -32
- package/dist/index.js +1581 -1000
- package/dist/index.mjs +1539 -958
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1244,6 +1244,7 @@
|
|
|
1244
1244
|
position: relative;
|
|
1245
1245
|
overflow: visible;
|
|
1246
1246
|
aspect-ratio: 1;
|
|
1247
|
+
cursor: pointer;
|
|
1247
1248
|
}
|
|
1248
1249
|
.ScRadio_scRadio .ScRadio_vector {
|
|
1249
1250
|
width: 100%;
|
|
@@ -1452,6 +1453,32 @@
|
|
|
1452
1453
|
.ScButton_scButton.ScButton_state-hover.ScButton_variant-primary {
|
|
1453
1454
|
background: var(--alias-fill-base-basehover, #bfbfbf);
|
|
1454
1455
|
}
|
|
1456
|
+
.ScButton_scButton.ScButton_variant-mono {
|
|
1457
|
+
background: var(--alias-surface-inverse, #f5f5f5);
|
|
1458
|
+
}
|
|
1459
|
+
.ScButton_scButton.ScButton_variant-mono .ScButton_label,
|
|
1460
|
+
.ScButton_scButton.ScButton_variant-mono .ScButton_container {
|
|
1461
|
+
color: var(--alias-text-and-icons-inverse, #101010);
|
|
1462
|
+
}
|
|
1463
|
+
.ScButton_scButton.ScButton_variant-mono:hover,
|
|
1464
|
+
.ScButton_scButton.ScButton_state-hover.ScButton_variant-mono {
|
|
1465
|
+
background: var(--alias-surface-inverse, #f5f5f5);
|
|
1466
|
+
transform: scale(1.03);
|
|
1467
|
+
}
|
|
1468
|
+
.ScButton_spinner {
|
|
1469
|
+
display: inline-block;
|
|
1470
|
+
width: 1.25rem;
|
|
1471
|
+
height: 1.25rem;
|
|
1472
|
+
border: 0.15rem solid currentColor;
|
|
1473
|
+
border-top-color: transparent;
|
|
1474
|
+
border-radius: 50%;
|
|
1475
|
+
animation: ScButton_sc-btn-spin 0.8s linear infinite;
|
|
1476
|
+
}
|
|
1477
|
+
@keyframes ScButton_sc-btn-spin {
|
|
1478
|
+
to {
|
|
1479
|
+
transform: rotate(360deg);
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1455
1482
|
.ScButton_scButton.ScButton_size-sm .ScButton_siconHomeInstance {
|
|
1456
1483
|
width: 1rem !important;
|
|
1457
1484
|
height: 1rem !important;
|
|
@@ -3146,6 +3173,75 @@
|
|
|
3146
3173
|
.ScTextField_scTextField.ScTextField_label-group-none .ScTextField_labelContainer {
|
|
3147
3174
|
display: none;
|
|
3148
3175
|
}
|
|
3176
|
+
.ScTextField_required {
|
|
3177
|
+
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
3178
|
+
margin-left: 0.125rem;
|
|
3179
|
+
}
|
|
3180
|
+
.ScTextField_desc {
|
|
3181
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3182
|
+
text-align: left;
|
|
3183
|
+
font-family: var(--text-text-xs-regular-font-family, "Inter-Regular", sans-serif);
|
|
3184
|
+
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
3185
|
+
line-height: var(--text-text-xs-regular-line-height, 1.125rem);
|
|
3186
|
+
font-weight: var(--text-text-xs-regular-font-weight, 400);
|
|
3187
|
+
align-self: stretch;
|
|
3188
|
+
}
|
|
3189
|
+
.ScTextField_scTextField.ScTextField_tall .ScTextField_inputContainer {
|
|
3190
|
+
height: auto;
|
|
3191
|
+
min-height: 5rem;
|
|
3192
|
+
align-items: flex-start;
|
|
3193
|
+
}
|
|
3194
|
+
|
|
3195
|
+
/* src/SC-InfoPopup/ScInfoPopup.module.css */
|
|
3196
|
+
.ScInfoPopup_scInfoPopup,
|
|
3197
|
+
.ScInfoPopup_scInfoPopup * {
|
|
3198
|
+
box-sizing: border-box;
|
|
3199
|
+
}
|
|
3200
|
+
.ScInfoPopup_scInfoPopup {
|
|
3201
|
+
position: relative;
|
|
3202
|
+
display: inline-block;
|
|
3203
|
+
}
|
|
3204
|
+
.ScInfoPopup_infoIcon {
|
|
3205
|
+
display: block;
|
|
3206
|
+
cursor: pointer;
|
|
3207
|
+
margin: 0 12px;
|
|
3208
|
+
width: 18px;
|
|
3209
|
+
height: 18px;
|
|
3210
|
+
}
|
|
3211
|
+
.ScInfoPopup_content {
|
|
3212
|
+
position: absolute;
|
|
3213
|
+
top: 18px;
|
|
3214
|
+
right: 0;
|
|
3215
|
+
transform: translateX(50%);
|
|
3216
|
+
width: max-content;
|
|
3217
|
+
max-width: 300px;
|
|
3218
|
+
background-color: var(--alias-surface-base, #101010);
|
|
3219
|
+
border-radius: 6px;
|
|
3220
|
+
padding: 8px;
|
|
3221
|
+
z-index: 2;
|
|
3222
|
+
box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
|
|
3223
|
+
}
|
|
3224
|
+
.ScInfoPopup_closeIconContainer {
|
|
3225
|
+
position: relative;
|
|
3226
|
+
}
|
|
3227
|
+
.ScInfoPopup_closeIcon {
|
|
3228
|
+
position: absolute;
|
|
3229
|
+
right: 0;
|
|
3230
|
+
width: 18px;
|
|
3231
|
+
height: 18px;
|
|
3232
|
+
cursor: pointer;
|
|
3233
|
+
margin: 0;
|
|
3234
|
+
}
|
|
3235
|
+
.ScInfoPopup_contentText {
|
|
3236
|
+
display: block;
|
|
3237
|
+
font-size: 12px;
|
|
3238
|
+
margin-top: 0px;
|
|
3239
|
+
margin-right: 18px;
|
|
3240
|
+
max-height: 100px;
|
|
3241
|
+
overflow-y: auto;
|
|
3242
|
+
line-height: 1.4;
|
|
3243
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3244
|
+
}
|
|
3149
3245
|
|
|
3150
3246
|
/* src/SC-Role/ScRole.module.css */
|
|
3151
3247
|
.ScRole_scRole,
|
|
@@ -5834,6 +5930,190 @@
|
|
|
5834
5930
|
background: var(--alias-fill-error-solidhover, #e04444);
|
|
5835
5931
|
}
|
|
5836
5932
|
|
|
5933
|
+
/* src/SC-Modal/ScModal.module.css */
|
|
5934
|
+
.ScModal_backdrop,
|
|
5935
|
+
.ScModal_backdrop * {
|
|
5936
|
+
box-sizing: border-box;
|
|
5937
|
+
}
|
|
5938
|
+
.ScModal_backdrop {
|
|
5939
|
+
position: fixed;
|
|
5940
|
+
top: 0;
|
|
5941
|
+
left: 0;
|
|
5942
|
+
width: 100%;
|
|
5943
|
+
height: 100%;
|
|
5944
|
+
padding-left: var(--leftMenuWidth, 0);
|
|
5945
|
+
z-index: 999;
|
|
5946
|
+
display: flex;
|
|
5947
|
+
align-items: center;
|
|
5948
|
+
justify-content: center;
|
|
5949
|
+
background: rgba(11, 8, 30, 0.5);
|
|
5950
|
+
}
|
|
5951
|
+
.ScModal_content {
|
|
5952
|
+
padding: 24px;
|
|
5953
|
+
border-radius: 16px;
|
|
5954
|
+
background: var(--alias-surface-base, #101010);
|
|
5955
|
+
opacity: 1;
|
|
5956
|
+
}
|
|
5957
|
+
|
|
5958
|
+
/* src/SC-Drawer/ScDrawer.module.css */
|
|
5959
|
+
.ScDrawer_drawer,
|
|
5960
|
+
.ScDrawer_drawer * {
|
|
5961
|
+
box-sizing: border-box;
|
|
5962
|
+
}
|
|
5963
|
+
.ScDrawer_drawer {
|
|
5964
|
+
width: 512px;
|
|
5965
|
+
height: 100vh;
|
|
5966
|
+
position: fixed;
|
|
5967
|
+
top: 0;
|
|
5968
|
+
background: var(--alias-surface-subtleraised, #1a1a1a);
|
|
5969
|
+
overflow: hidden;
|
|
5970
|
+
z-index: 10;
|
|
5971
|
+
}
|
|
5972
|
+
.ScDrawer_side-right {
|
|
5973
|
+
right: 0;
|
|
5974
|
+
border-radius: 24px 0 0 24px;
|
|
5975
|
+
box-shadow: -8px 0 56px 8px rgba(0, 0, 0, 0.16);
|
|
5976
|
+
}
|
|
5977
|
+
.ScDrawer_side-left {
|
|
5978
|
+
left: 0;
|
|
5979
|
+
border-radius: 0 24px 24px 0;
|
|
5980
|
+
box-shadow: 8px 0 56px 8px rgba(0, 0, 0, 0.16);
|
|
5981
|
+
}
|
|
5982
|
+
.ScDrawer_content {
|
|
5983
|
+
padding: 56px 96px 0 96px;
|
|
5984
|
+
height: 100%;
|
|
5985
|
+
display: flex;
|
|
5986
|
+
flex-direction: column;
|
|
5987
|
+
overflow: hidden;
|
|
5988
|
+
}
|
|
5989
|
+
|
|
5990
|
+
/* src/SC-Tabs/ScTabs.module.css */
|
|
5991
|
+
.ScTabs_tabs,
|
|
5992
|
+
.ScTabs_tabs * {
|
|
5993
|
+
box-sizing: border-box;
|
|
5994
|
+
}
|
|
5995
|
+
.ScTabs_tabs {
|
|
5996
|
+
width: 100%;
|
|
5997
|
+
display: flex;
|
|
5998
|
+
align-items: center;
|
|
5999
|
+
gap: 12px;
|
|
6000
|
+
}
|
|
6001
|
+
.ScTabs_tab {
|
|
6002
|
+
padding: 6px 12px;
|
|
6003
|
+
cursor: pointer;
|
|
6004
|
+
text-transform: capitalize;
|
|
6005
|
+
white-space: nowrap;
|
|
6006
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6007
|
+
font-size: 14px;
|
|
6008
|
+
font-weight: 400;
|
|
6009
|
+
line-height: 20px;
|
|
6010
|
+
border-radius: 100px;
|
|
6011
|
+
border: 1px solid var(--alias-surface-canvas, #0f0f0f);
|
|
6012
|
+
}
|
|
6013
|
+
.ScTabs_active {
|
|
6014
|
+
background: var(--alias-surface-canvas, #0f0f0f);
|
|
6015
|
+
}
|
|
6016
|
+
.ScTabs_autoWidth {
|
|
6017
|
+
width: max-content;
|
|
6018
|
+
}
|
|
6019
|
+
.ScTabs_allowWrap {
|
|
6020
|
+
flex-wrap: wrap;
|
|
6021
|
+
row-gap: 8px;
|
|
6022
|
+
}
|
|
6023
|
+
.ScTabs_compact {
|
|
6024
|
+
gap: 8px;
|
|
6025
|
+
}
|
|
6026
|
+
.ScTabs_compact .ScTabs_tab {
|
|
6027
|
+
padding: 4px 10px;
|
|
6028
|
+
font-size: 13px;
|
|
6029
|
+
line-height: 18px;
|
|
6030
|
+
}
|
|
6031
|
+
|
|
6032
|
+
/* src/SC-Counter/ScCounter.module.css */
|
|
6033
|
+
.ScCounter_counter,
|
|
6034
|
+
.ScCounter_counter * {
|
|
6035
|
+
box-sizing: border-box;
|
|
6036
|
+
}
|
|
6037
|
+
.ScCounter_counter {
|
|
6038
|
+
display: flex;
|
|
6039
|
+
justify-content: space-around;
|
|
6040
|
+
align-items: center;
|
|
6041
|
+
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
6042
|
+
border: 1px solid var(--alias-surface-infohover, #2a2a2a);
|
|
6043
|
+
border-radius: 16px;
|
|
6044
|
+
padding: 12px 16px;
|
|
6045
|
+
width: 100%;
|
|
6046
|
+
}
|
|
6047
|
+
.ScCounter_step {
|
|
6048
|
+
cursor: pointer;
|
|
6049
|
+
display: flex;
|
|
6050
|
+
align-items: center;
|
|
6051
|
+
}
|
|
6052
|
+
.ScCounter_value {
|
|
6053
|
+
cursor: pointer;
|
|
6054
|
+
}
|
|
6055
|
+
.ScCounter_inputContainer {
|
|
6056
|
+
display: flex;
|
|
6057
|
+
justify-content: center;
|
|
6058
|
+
align-items: center;
|
|
6059
|
+
}
|
|
6060
|
+
.ScCounter_inputContainer input {
|
|
6061
|
+
border: none;
|
|
6062
|
+
outline: none;
|
|
6063
|
+
width: 30%;
|
|
6064
|
+
background-color: var(--alias-fill-neutral-neutralplus, #151515);
|
|
6065
|
+
color: inherit;
|
|
6066
|
+
}
|
|
6067
|
+
|
|
6068
|
+
/* src/SC-Pagination/ScPagination.module.css */
|
|
6069
|
+
.ScPagination_scPagination,
|
|
6070
|
+
.ScPagination_scPagination * {
|
|
6071
|
+
box-sizing: border-box;
|
|
6072
|
+
}
|
|
6073
|
+
.ScPagination_scPagination {
|
|
6074
|
+
width: 100%;
|
|
6075
|
+
display: flex;
|
|
6076
|
+
justify-content: flex-end;
|
|
6077
|
+
}
|
|
6078
|
+
.ScPagination_section {
|
|
6079
|
+
overflow: auto;
|
|
6080
|
+
display: flex;
|
|
6081
|
+
align-items: center;
|
|
6082
|
+
font-weight: 400;
|
|
6083
|
+
font-size: 1rem;
|
|
6084
|
+
line-height: 1.375rem;
|
|
6085
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6086
|
+
}
|
|
6087
|
+
.ScPagination_section svg {
|
|
6088
|
+
cursor: pointer;
|
|
6089
|
+
}
|
|
6090
|
+
.ScPagination_leftArrow {
|
|
6091
|
+
transform: rotate(180deg);
|
|
6092
|
+
}
|
|
6093
|
+
.ScPagination_page input {
|
|
6094
|
+
display: block;
|
|
6095
|
+
padding: 0.3125rem 0;
|
|
6096
|
+
border-radius: 1rem;
|
|
6097
|
+
background: var(--alias-surface-canvasbase, #1a1a1a);
|
|
6098
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6099
|
+
margin: 0 0.5rem;
|
|
6100
|
+
border: none;
|
|
6101
|
+
width: 3.75rem;
|
|
6102
|
+
text-align: center;
|
|
6103
|
+
-moz-appearance: textfield;
|
|
6104
|
+
}
|
|
6105
|
+
.ScPagination_page input:focus {
|
|
6106
|
+
outline: none;
|
|
6107
|
+
}
|
|
6108
|
+
.ScPagination_page input::-webkit-outer-spin-button,
|
|
6109
|
+
.ScPagination_page input::-webkit-inner-spin-button {
|
|
6110
|
+
-webkit-appearance: none;
|
|
6111
|
+
margin: 0;
|
|
6112
|
+
}
|
|
6113
|
+
.ScPagination_pageCount {
|
|
6114
|
+
margin-left: 1rem;
|
|
6115
|
+
}
|
|
6116
|
+
|
|
5837
6117
|
/* src/SC-Beacon/ScBeacon.module.css */
|
|
5838
6118
|
.ScBeacon_scBeacon,
|
|
5839
6119
|
.ScBeacon_scBeacon * {
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React$1
|
|
1
|
+
import * as React$1 from 'react';
|
|
2
|
+
import React__default, { CSSProperties, HTMLAttributes, ReactNode } from 'react';
|
|
2
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
4
|
|
|
4
5
|
interface IScAccessProps {
|
|
@@ -146,12 +147,14 @@ interface IScButtonProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
146
147
|
icon?: JSX.Element;
|
|
147
148
|
styleVariant?: "default" | "icon-right" | "icon-left" | "icon-only";
|
|
148
149
|
state?: "default" | "hover" | "disabled";
|
|
149
|
-
variant?: "primary" | "secondary" | "tertiary" | "outline" | "error";
|
|
150
|
+
variant?: "primary" | "secondary" | "tertiary" | "outline" | "error" | "mono";
|
|
150
151
|
type?: "primary" | "secondary" | "tertiary";
|
|
151
152
|
size?: "lg" | "md" | "sm";
|
|
152
153
|
className?: string;
|
|
154
|
+
/** Show a spinner in place of the label (e.g. async submit). */
|
|
155
|
+
loading?: boolean;
|
|
153
156
|
}
|
|
154
|
-
declare const ScButton: ({ text, icon, styleVariant, state, variant, type, size, className, ...props }: IScButtonProps) => JSX.Element;
|
|
157
|
+
declare const ScButton: ({ text, icon, styleVariant, state, variant, type, size, className, loading, children, ...props }: IScButtonProps) => JSX.Element;
|
|
155
158
|
|
|
156
159
|
interface IScCalendarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
157
160
|
className?: string;
|
|
@@ -211,7 +214,7 @@ interface ScDpProps {
|
|
|
211
214
|
/** Width & height in pixels. Defaults to 60. */
|
|
212
215
|
size?: number;
|
|
213
216
|
className?: string;
|
|
214
|
-
style?:
|
|
217
|
+
style?: React__default.CSSProperties;
|
|
215
218
|
}
|
|
216
219
|
declare function ScDp({ type, variant, initial, imageUrl, size, className, style, }: ScDpProps): react_jsx_runtime.JSX.Element;
|
|
217
220
|
|
|
@@ -870,12 +873,13 @@ declare const ScCheckField: ({ label, className, checkboxes, ...props }: IScChec
|
|
|
870
873
|
interface IScCheckboxProps {
|
|
871
874
|
state?: "default" | "partial" | "selected";
|
|
872
875
|
checked?: boolean;
|
|
876
|
+
disabled?: boolean;
|
|
873
877
|
onChange?: (checked: boolean) => void;
|
|
874
878
|
className?: string;
|
|
875
879
|
style?: React.CSSProperties;
|
|
876
880
|
onClick?: React.MouseEventHandler<HTMLDivElement>;
|
|
877
881
|
}
|
|
878
|
-
declare const ScCheckbox: ({ state, checked, onChange, className, ...props }: IScCheckboxProps & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">) => JSX.Element;
|
|
882
|
+
declare const ScCheckbox: ({ state, checked, disabled, onChange, className, style, onClick, ...props }: IScCheckboxProps & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">) => JSX.Element;
|
|
879
883
|
|
|
880
884
|
interface IScFieldButtonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
881
885
|
icon?: JSX.Element;
|
|
@@ -1025,16 +1029,36 @@ interface IScTextFieldProps extends React.InputHTMLAttributes<HTMLInputElement>
|
|
|
1025
1029
|
className?: string;
|
|
1026
1030
|
placeholderFilled?: string;
|
|
1027
1031
|
label?: string;
|
|
1028
|
-
|
|
1029
|
-
|
|
1032
|
+
/** Adds a `*` after the label. */
|
|
1033
|
+
required?: boolean;
|
|
1034
|
+
/** Info-popover content shown beside the label. */
|
|
1035
|
+
info?: React.ReactNode;
|
|
1036
|
+
/** Helper/description text rendered below the field. */
|
|
1037
|
+
desc?: React.ReactNode;
|
|
1038
|
+
/** Taller input. */
|
|
1039
|
+
tall?: boolean;
|
|
1040
|
+
/** Arbitrary adornment(s) rendered at the left/right inside the field. */
|
|
1041
|
+
leftSlot?: React.ReactNode;
|
|
1042
|
+
rightSlot?: React.ReactNode;
|
|
1043
|
+
/** Style/class escape hatches (root wrapper / field container / input / desc). */
|
|
1044
|
+
rootClassName?: string;
|
|
1045
|
+
rootStyle?: React.CSSProperties;
|
|
1046
|
+
containerClassName?: string;
|
|
1047
|
+
containerStyle?: React.CSSProperties;
|
|
1048
|
+
inputStyle?: React.CSSProperties;
|
|
1049
|
+
descClassName?: string;
|
|
1050
|
+
descStyle?: React.CSSProperties;
|
|
1051
|
+
}
|
|
1052
|
+
declare const ScTextField: React$1.ForwardRefExoticComponent<IScTextFieldProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1030
1053
|
|
|
1031
1054
|
interface IScToggleSwitchProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onToggle"> {
|
|
1032
1055
|
active?: "true" | "false";
|
|
1033
1056
|
checked?: boolean;
|
|
1057
|
+
disabled?: boolean;
|
|
1034
1058
|
onToggle?: (active: boolean) => void;
|
|
1035
1059
|
className?: string;
|
|
1036
1060
|
}
|
|
1037
|
-
declare const ScToggleSwitch: ({ active, checked, onToggle, className, ...props }: IScToggleSwitchProps) => JSX.Element;
|
|
1061
|
+
declare const ScToggleSwitch: ({ active, checked, disabled, onToggle, className, ...props }: IScToggleSwitchProps) => JSX.Element;
|
|
1038
1062
|
|
|
1039
1063
|
interface IScVersionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1040
1064
|
state?: "expanded" | "collapsed";
|
|
@@ -1073,6 +1097,80 @@ declare function ScWorkspaceSwitchCard({ wsName, role, plan, ownerId, initials,
|
|
|
1073
1097
|
/** @deprecated Use ScWorkspaceSwitchCard directly */
|
|
1074
1098
|
declare const NscWorkspaceSwitch: typeof ScWorkspaceSwitchCard;
|
|
1075
1099
|
|
|
1100
|
+
interface IScModalProps {
|
|
1101
|
+
children?: React.ReactNode;
|
|
1102
|
+
onClose?: () => void;
|
|
1103
|
+
open?: boolean;
|
|
1104
|
+
className?: string;
|
|
1105
|
+
style?: React.CSSProperties;
|
|
1106
|
+
contentClassName?: string;
|
|
1107
|
+
contentStyle?: React.CSSProperties;
|
|
1108
|
+
closeOnBackdrop?: boolean;
|
|
1109
|
+
closeOnEsc?: boolean;
|
|
1110
|
+
}
|
|
1111
|
+
declare const ScModal: ({ children, onClose, open, className, style, contentClassName, contentStyle, closeOnBackdrop, closeOnEsc, }: IScModalProps) => JSX.Element | null;
|
|
1112
|
+
|
|
1113
|
+
interface IScDrawerProps {
|
|
1114
|
+
children?: React.ReactNode;
|
|
1115
|
+
onClose?: () => void;
|
|
1116
|
+
open?: boolean;
|
|
1117
|
+
side?: "right" | "left";
|
|
1118
|
+
className?: string;
|
|
1119
|
+
style?: React.CSSProperties;
|
|
1120
|
+
contentClassName?: string;
|
|
1121
|
+
contentStyle?: React.CSSProperties;
|
|
1122
|
+
closeOnOutside?: boolean;
|
|
1123
|
+
closeOnEsc?: boolean;
|
|
1124
|
+
}
|
|
1125
|
+
declare const ScDrawer: ({ children, onClose, open, side, className, style, contentClassName, contentStyle, closeOnOutside, closeOnEsc, }: IScDrawerProps) => JSX.Element | null;
|
|
1126
|
+
|
|
1127
|
+
type ScTab = string | {
|
|
1128
|
+
label?: string;
|
|
1129
|
+
value?: string;
|
|
1130
|
+
};
|
|
1131
|
+
interface IScTabsProps {
|
|
1132
|
+
tabs: ScTab[];
|
|
1133
|
+
activeTab?: string;
|
|
1134
|
+
onClickTab?: (value: string) => void;
|
|
1135
|
+
/** Shrink-wrap to content width instead of full width. */
|
|
1136
|
+
isAutoWidth?: boolean;
|
|
1137
|
+
/** Wrap pills onto multiple rows. */
|
|
1138
|
+
allowWrap?: boolean;
|
|
1139
|
+
/** Denser pills (smaller padding/font). */
|
|
1140
|
+
isCompact?: boolean;
|
|
1141
|
+
className?: string;
|
|
1142
|
+
}
|
|
1143
|
+
declare const ScTabs: ({ tabs, activeTab, onClickTab, isAutoWidth, allowWrap, isCompact, className, }: IScTabsProps) => JSX.Element;
|
|
1144
|
+
|
|
1145
|
+
interface IScCounterProps {
|
|
1146
|
+
count: number;
|
|
1147
|
+
onChange: (next: number) => void;
|
|
1148
|
+
label?: React.ReactNode;
|
|
1149
|
+
/** Optional clamp bounds; omit for unbounded (legacy) behavior. */
|
|
1150
|
+
min?: number;
|
|
1151
|
+
max?: number;
|
|
1152
|
+
className?: string;
|
|
1153
|
+
style?: React.CSSProperties;
|
|
1154
|
+
}
|
|
1155
|
+
declare const ScCounter: ({ count, onChange, label, min, max, className, style, }: IScCounterProps) => JSX.Element;
|
|
1156
|
+
|
|
1157
|
+
interface IScInfoPopupProps {
|
|
1158
|
+
content?: React.ReactNode;
|
|
1159
|
+
className?: string;
|
|
1160
|
+
}
|
|
1161
|
+
declare const ScInfoPopup: ({ content, className, }: IScInfoPopupProps) => JSX.Element;
|
|
1162
|
+
|
|
1163
|
+
interface IScPaginationProps {
|
|
1164
|
+
itemsCount: number;
|
|
1165
|
+
itemsPerPage: number | string;
|
|
1166
|
+
page: number | string;
|
|
1167
|
+
setPage: (page: number | string) => void;
|
|
1168
|
+
setOffsetValue: (offset: number) => void;
|
|
1169
|
+
onPageChangeAction: () => void;
|
|
1170
|
+
className?: string;
|
|
1171
|
+
}
|
|
1172
|
+
declare const ScPagination: ({ itemsCount, itemsPerPage, page, setPage, setOffsetValue, onPageChangeAction, className, }: IScPaginationProps) => JSX.Element;
|
|
1173
|
+
|
|
1076
1174
|
type ScBeaconTone = "success" | "warning" | "error" | "neutral";
|
|
1077
1175
|
interface IScBeaconProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
1078
1176
|
tone?: ScBeaconTone;
|
|
@@ -1116,11 +1214,11 @@ interface IScCatalogixStoreTableListProps extends React.HTMLAttributes<HTMLDivEl
|
|
|
1116
1214
|
}
|
|
1117
1215
|
declare const ScCatalogixStoreTableList: ({ storeName, status, statusTone, products, assets, createdOn, createdBy, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreTableListProps) => JSX.Element;
|
|
1118
1216
|
|
|
1119
|
-
interface IScThinkingStepIconProps extends Omit<
|
|
1217
|
+
interface IScThinkingStepIconProps extends Omit<React__default.HTMLAttributes<HTMLSpanElement>, "children"> {
|
|
1120
1218
|
state?: "default" | "working" | "completed" | "error";
|
|
1121
1219
|
size?: number;
|
|
1122
1220
|
className?: string;
|
|
1123
|
-
style?:
|
|
1221
|
+
style?: React__default.CSSProperties;
|
|
1124
1222
|
}
|
|
1125
1223
|
declare const ScThinkingStepIcon: ({ state, size, className, style, ...props }: IScThinkingStepIconProps) => JSX.Element;
|
|
1126
1224
|
|
|
@@ -1138,7 +1236,7 @@ interface IScInChatListProps {
|
|
|
1138
1236
|
toolUsing?: string;
|
|
1139
1237
|
onToggle?: () => void;
|
|
1140
1238
|
className?: string;
|
|
1141
|
-
style?:
|
|
1239
|
+
style?: React__default.CSSProperties;
|
|
1142
1240
|
}
|
|
1143
1241
|
declare const ScInChatList: ({ title, description, descriptionVisibility, leadingIndicator, iconState, showSteps, stepCount, showTool, toolUsing, onToggle, className, style, }: IScInChatListProps) => JSX.Element;
|
|
1144
1242
|
|
|
@@ -1308,11 +1406,11 @@ interface IScTableListMobileProps {
|
|
|
1308
1406
|
/** Access icons - second group */
|
|
1309
1407
|
permissionIcons?: JSX.Element[];
|
|
1310
1408
|
/** Callback on row click */
|
|
1311
|
-
onRowClick?: (e:
|
|
1409
|
+
onRowClick?: (e: React__default.MouseEvent) => void;
|
|
1312
1410
|
/** Additional class name */
|
|
1313
1411
|
className?: string;
|
|
1314
1412
|
}
|
|
1315
|
-
declare const ScTableListMobile: ({ name, email, imageUrl, role, accessIcons, permissionIcons, onRowClick, className, ...props }: IScTableListMobileProps &
|
|
1413
|
+
declare const ScTableListMobile: ({ name, email, imageUrl, role, accessIcons, permissionIcons, onRowClick, className, ...props }: IScTableListMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1316
1414
|
|
|
1317
1415
|
interface IScWorkspaceSwitchMobileProps {
|
|
1318
1416
|
/** Workspace name */
|
|
@@ -1330,9 +1428,9 @@ interface IScWorkspaceSwitchMobileProps {
|
|
|
1330
1428
|
/** Additional class name */
|
|
1331
1429
|
className?: string;
|
|
1332
1430
|
/** Click handler */
|
|
1333
|
-
onClick?: (e:
|
|
1431
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1334
1432
|
}
|
|
1335
|
-
declare const ScWorkspaceSwitchMobile: ({ storeName, initials, role, ownerId, currentWs, ownerIcon, className, onClick, ...props }: IScWorkspaceSwitchMobileProps &
|
|
1433
|
+
declare const ScWorkspaceSwitchMobile: ({ storeName, initials, role, ownerId, currentWs, ownerIcon, className, onClick, ...props }: IScWorkspaceSwitchMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1336
1434
|
|
|
1337
1435
|
interface IScWorkspaceSettingsMobileProps {
|
|
1338
1436
|
/** Workspace name */
|
|
@@ -1354,9 +1452,9 @@ interface IScWorkspaceSettingsMobileProps {
|
|
|
1354
1452
|
/** Additional class name */
|
|
1355
1453
|
className?: string;
|
|
1356
1454
|
/** Click handler */
|
|
1357
|
-
onClick?: (e:
|
|
1455
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1358
1456
|
}
|
|
1359
|
-
declare const ScWorkspaceSettingsMobile: ({ storeName, initials, role, ownerId, teamCount, currentWs, ownerIcon, teamIcon, className, onClick, ...props }: IScWorkspaceSettingsMobileProps &
|
|
1457
|
+
declare const ScWorkspaceSettingsMobile: ({ storeName, initials, role, ownerId, teamCount, currentWs, ownerIcon, teamIcon, className, onClick, ...props }: IScWorkspaceSettingsMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1360
1458
|
|
|
1361
1459
|
interface IScMobileTopNavProps {
|
|
1362
1460
|
/** Navigation type */
|
|
@@ -1382,19 +1480,19 @@ interface IScMobileTopNavProps {
|
|
|
1382
1480
|
/** More icon element */
|
|
1383
1481
|
moreIcon?: JSX.Element;
|
|
1384
1482
|
/** Callback on menu click */
|
|
1385
|
-
onMenuClick?: (e:
|
|
1483
|
+
onMenuClick?: (e: React__default.MouseEvent) => void;
|
|
1386
1484
|
/** Callback on search icon click */
|
|
1387
|
-
onSearchClick?: (e:
|
|
1485
|
+
onSearchClick?: (e: React__default.MouseEvent) => void;
|
|
1388
1486
|
/** Callback on close click */
|
|
1389
|
-
onCloseClick?: (e:
|
|
1487
|
+
onCloseClick?: (e: React__default.MouseEvent) => void;
|
|
1390
1488
|
/** Callback on more click */
|
|
1391
|
-
onMoreClick?: (e:
|
|
1489
|
+
onMoreClick?: (e: React__default.MouseEvent) => void;
|
|
1392
1490
|
/** Callback on search input change */
|
|
1393
1491
|
onSearchChange?: (value: string) => void;
|
|
1394
1492
|
/** Additional class name */
|
|
1395
1493
|
className?: string;
|
|
1396
1494
|
}
|
|
1397
|
-
declare const ScMobileTopNav: ({ type, searchIcon, search, heading, chatTitle, searchPlaceholder, searchValue, menuIcon, searchIconElement, closeIcon, moreIcon, onMenuClick, onSearchClick, onCloseClick, onMoreClick, onSearchChange, className, ...props }: IScMobileTopNavProps &
|
|
1495
|
+
declare const ScMobileTopNav: ({ type, searchIcon, search, heading, chatTitle, searchPlaceholder, searchValue, menuIcon, searchIconElement, closeIcon, moreIcon, onMenuClick, onSearchClick, onCloseClick, onMoreClick, onSearchChange, className, ...props }: IScMobileTopNavProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1398
1496
|
|
|
1399
1497
|
interface IScMobileBottomActionProps {
|
|
1400
1498
|
/** Primary button text */
|
|
@@ -1402,17 +1500,17 @@ interface IScMobileBottomActionProps {
|
|
|
1402
1500
|
/** Whether primary button is disabled */
|
|
1403
1501
|
disabled?: boolean;
|
|
1404
1502
|
/** Primary button click handler */
|
|
1405
|
-
onClick?: (e:
|
|
1503
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1406
1504
|
/** Secondary (outline) button text — renders 2-button layout when provided */
|
|
1407
1505
|
secondaryText?: string;
|
|
1408
1506
|
/** Whether secondary button is disabled */
|
|
1409
1507
|
secondaryDisabled?: boolean;
|
|
1410
1508
|
/** Secondary button click handler */
|
|
1411
|
-
onSecondaryClick?: (e:
|
|
1509
|
+
onSecondaryClick?: (e: React__default.MouseEvent) => void;
|
|
1412
1510
|
/** Additional class name */
|
|
1413
1511
|
className?: string;
|
|
1414
1512
|
}
|
|
1415
|
-
declare const ScMobileBottomAction: ({ text, disabled, onClick, secondaryText, secondaryDisabled, onSecondaryClick, className, ...props }: IScMobileBottomActionProps &
|
|
1513
|
+
declare const ScMobileBottomAction: ({ text, disabled, onClick, secondaryText, secondaryDisabled, onSecondaryClick, className, ...props }: IScMobileBottomActionProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1416
1514
|
|
|
1417
1515
|
interface IScPopUpMenuProps {
|
|
1418
1516
|
/** Menu label text */
|
|
@@ -1422,11 +1520,11 @@ interface IScPopUpMenuProps {
|
|
|
1422
1520
|
/** Icon element */
|
|
1423
1521
|
icon?: JSX.Element;
|
|
1424
1522
|
/** Click handler */
|
|
1425
|
-
onClick?: (e:
|
|
1523
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1426
1524
|
/** Additional class name */
|
|
1427
1525
|
className?: string;
|
|
1428
1526
|
}
|
|
1429
|
-
declare const ScPopUpMenu: ({ menu, state, icon, onClick, className, ...props }: IScPopUpMenuProps &
|
|
1527
|
+
declare const ScPopUpMenu: ({ menu, state, icon, onClick, className, ...props }: IScPopUpMenuProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1430
1528
|
|
|
1431
1529
|
interface IScReferralCardMobileProps {
|
|
1432
1530
|
/** User name */
|
|
@@ -1442,11 +1540,11 @@ interface IScReferralCardMobileProps {
|
|
|
1442
1540
|
/** Credit amount */
|
|
1443
1541
|
credits?: string;
|
|
1444
1542
|
/** Click handler */
|
|
1445
|
-
onClick?: (e:
|
|
1543
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1446
1544
|
/** Additional class name */
|
|
1447
1545
|
className?: string;
|
|
1448
1546
|
}
|
|
1449
|
-
declare const ScReferralCardMobile: ({ name, email, imageUrl, badge, date, credits, onClick, className, ...props }: IScReferralCardMobileProps &
|
|
1547
|
+
declare const ScReferralCardMobile: ({ name, email, imageUrl, badge, date, credits, onClick, className, ...props }: IScReferralCardMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1450
1548
|
|
|
1451
1549
|
interface IInvoiceHistoryMobileProps {
|
|
1452
1550
|
invoiceId?: string;
|
|
@@ -1482,11 +1580,11 @@ interface IScWorkspaceSwitchMobileV2Props {
|
|
|
1482
1580
|
/** Card type */
|
|
1483
1581
|
type?: "currentWS" | "otherWS" | "display";
|
|
1484
1582
|
/** Click handler */
|
|
1485
|
-
onClick?: (e:
|
|
1583
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1486
1584
|
/** Additional class name */
|
|
1487
1585
|
className?: string;
|
|
1488
1586
|
}
|
|
1489
|
-
declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, imageUrl, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props &
|
|
1587
|
+
declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, imageUrl, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1490
1588
|
|
|
1491
1589
|
interface IScImageFieldProps {
|
|
1492
1590
|
label?: string;
|
|
@@ -1534,4 +1632,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
|
|
|
1534
1632
|
}
|
|
1535
1633
|
declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, badgeSubText, currentPlanLabel, upgradeButtonText, isLoading, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
|
|
1536
1634
|
|
|
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 };
|
|
1635
|
+
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 IScCounterProps, type IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScCxoCopilotLogoProps, type IScDrawerProps, 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 IScTabsProps, 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, ScCounter, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScDp, type ScDpProps, ScDrawer, 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, type ScTab, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTabs, 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 };
|