@onesaz/ui 0.3.6 → 0.3.8

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.d.ts CHANGED
@@ -3,9 +3,11 @@ import * as React from 'react';
3
3
  import { Theme, AccentColor, GrayColor, RadiusPreset } from '@onesaz/tokens';
4
4
  import { ClassValue } from 'clsx';
5
5
  import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
6
+ import * as SliderPrimitive from '@radix-ui/react-slider';
6
7
  import * as SelectPrimitive from '@radix-ui/react-select';
7
8
  import * as DialogPrimitive from '@radix-ui/react-dialog';
8
9
  import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
10
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
9
11
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
10
12
  import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
11
13
 
@@ -363,6 +365,24 @@ interface FormGroupProps extends React.HTMLAttributes<HTMLDivElement> {
363
365
  }
364
366
  declare const FormGroup: React.ForwardRefExoticComponent<FormGroupProps & React.RefAttributes<HTMLDivElement>>;
365
367
 
368
+ interface SliderProps extends Omit<React.ComponentPropsWithoutRef<typeof SliderPrimitive.Root>, "onValueChange" | "value" | "defaultValue" | "onChange"> {
369
+ /** Current value */
370
+ value?: number;
371
+ /** Default value */
372
+ defaultValue?: number;
373
+ /** Change handler */
374
+ onChange?: (value: number) => void;
375
+ /** Show value label */
376
+ showValue?: boolean;
377
+ /** Value label position */
378
+ valuePosition?: "top" | "bottom" | "left" | "right";
379
+ /** Custom value formatter */
380
+ valueFormatter?: (value: number) => string;
381
+ /** Additional CSS classes */
382
+ className?: string;
383
+ }
384
+ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<HTMLSpanElement>>;
385
+
366
386
  declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
367
387
  declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
368
388
  declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
@@ -412,8 +432,10 @@ declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.Dia
412
432
  declare const DialogPortal: React.FC<DialogPrimitive.DialogPortalProps>;
413
433
  declare const DialogClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
414
434
  declare const DialogOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
435
+ type DialogSize = 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
415
436
  interface DialogContentProps extends React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> {
416
437
  hideCloseButton?: boolean;
438
+ size?: DialogSize;
417
439
  }
418
440
  declare const DialogContent: React.ForwardRefExoticComponent<DialogContentProps & React.RefAttributes<HTMLDivElement>>;
419
441
  declare const DialogHeader: {
@@ -472,24 +494,43 @@ interface SpinnerProps extends React.HTMLAttributes<HTMLDivElement> {
472
494
  declare const Spinner: React.ForwardRefExoticComponent<SpinnerProps & React.RefAttributes<HTMLDivElement>>;
473
495
 
474
496
  interface AlertProps extends React.HTMLAttributes<HTMLDivElement> {
475
- /** The variant/severity of the alert */
476
- variant?: 'default' | 'info' | 'success' | 'warning' | 'error' | 'destructive';
477
- /** Whether the alert is dismissible */
478
- dismissible?: boolean;
479
- /** Callback when dismissed */
480
- onDismiss?: () => void;
481
- /** Icon to show (if undefined, a default icon is used based on variant) */
482
- icon?: React.ReactNode;
483
- /** Whether to show the default icon */
484
- showIcon?: boolean;
497
+ variant?: "default" | "info" | "success" | "warning" | "error" | "destructive";
498
+ duration?: number | null;
499
+ onClose?: () => void;
485
500
  }
486
- declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
501
+ declare const Alert: React.FC<AlertProps>;
487
502
  interface AlertTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
503
+ hasDescription?: boolean;
504
+ variant?: string;
488
505
  }
489
- declare const AlertTitle: React.ForwardRefExoticComponent<AlertTitleProps & React.RefAttributes<HTMLHeadingElement>>;
506
+ declare const AlertTitle: React.FC<AlertTitleProps>;
490
507
  interface AlertDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
491
508
  }
492
- declare const AlertDescription: React.ForwardRefExoticComponent<AlertDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
509
+ declare const AlertDescription: React.FC<AlertDescriptionProps>;
510
+
511
+ declare const Tabs: React.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>>;
512
+ declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
513
+ declare const TabsTrigger: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
514
+ declare const TabsContent: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
515
+ declare const UnderlineTabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
516
+ interface UnderlineTabsTriggerProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger> {
517
+ /** Optional count badge displayed next to the label */
518
+ count?: number;
519
+ }
520
+ declare const UnderlineTabsTrigger: React.ForwardRefExoticComponent<UnderlineTabsTriggerProps & React.RefAttributes<HTMLButtonElement>>;
521
+ declare const UnderlineTabsContent: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
522
+ declare const VerticalTabs: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
523
+ declare const VerticalTabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
524
+ interface VerticalTabsTriggerProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger> {
525
+ /** Icon element rendered before the label */
526
+ icon?: React.ReactNode;
527
+ }
528
+ declare const VerticalTabsTrigger: React.ForwardRefExoticComponent<VerticalTabsTriggerProps & React.RefAttributes<HTMLButtonElement>>;
529
+ declare const VerticalTabsContent: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
530
+ /** Non-interactive section label for grouping vertical tabs */
531
+ interface VerticalTabsGroupLabelProps extends React.HTMLAttributes<HTMLDivElement> {
532
+ }
533
+ declare const VerticalTabsGroupLabel: React.ForwardRefExoticComponent<VerticalTabsGroupLabelProps & React.RefAttributes<HTMLDivElement>>;
493
534
 
494
535
  declare const TooltipProvider: React.FC<TooltipPrimitive.TooltipProviderProps>;
495
536
  declare const TooltipRoot: React.FC<TooltipPrimitive.TooltipProps>;
@@ -902,6 +943,442 @@ interface ListDividerProps extends React.HTMLAttributes<HTMLLIElement> {
902
943
  }
903
944
  declare const ListDivider: React.ForwardRefExoticComponent<ListDividerProps & React.RefAttributes<HTMLLIElement>>;
904
945
 
946
+ interface BarChartProps {
947
+ /** Chart data */
948
+ data: any[];
949
+ /** Data key for the bars */
950
+ dataKey: string;
951
+ /** Multiple data keys for grouped bars */
952
+ dataKeys?: Array<{
953
+ dataKey: string;
954
+ fill?: string;
955
+ name?: string;
956
+ }>;
957
+ /** Fill color for single bar */
958
+ fill?: string;
959
+ /** Bar name for legend */
960
+ name?: string;
961
+ /** Width of the chart */
962
+ width?: number | string;
963
+ /** Height of the chart */
964
+ height?: number | string;
965
+ /** Margin around the chart */
966
+ margin?: {
967
+ top?: number;
968
+ right?: number;
969
+ bottom?: number;
970
+ left?: number;
971
+ };
972
+ /** Show grid lines */
973
+ showGrid?: boolean;
974
+ /** Show tooltip */
975
+ showTooltip?: boolean;
976
+ /** Show legend */
977
+ showLegend?: boolean;
978
+ /** X-axis configuration */
979
+ xAxis?: {
980
+ dataKey?: string;
981
+ type?: 'number' | 'category';
982
+ hide?: boolean;
983
+ label?: string;
984
+ angle?: number;
985
+ textAnchor?: 'start' | 'middle' | 'end';
986
+ height?: number;
987
+ interval?: number | 'preserveStartEnd' | 'preserveStart' | 'preserveEnd';
988
+ tick?: {
989
+ fontSize?: number;
990
+ fontWeight?: string | number;
991
+ fill?: string;
992
+ };
993
+ };
994
+ /** Y-axis configuration */
995
+ yAxis?: {
996
+ type?: 'number' | 'category';
997
+ hide?: boolean;
998
+ label?: string;
999
+ angle?: number;
1000
+ position?: 'insideLeft' | 'insideRight' | 'left' | 'right';
1001
+ tick?: {
1002
+ fontSize?: number;
1003
+ fontWeight?: string | number;
1004
+ fill?: string;
1005
+ };
1006
+ };
1007
+ /** Bar styling */
1008
+ barProps?: {
1009
+ radius?: number | [number, number, number, number];
1010
+ maxBarSize?: number;
1011
+ minPointSize?: number;
1012
+ barCategoryGap?: number | string;
1013
+ barGap?: number | string;
1014
+ };
1015
+ /** Label list configuration */
1016
+ labelList?: {
1017
+ dataKey?: string;
1018
+ position?: 'top' | 'bottom' | 'left' | 'right' | 'center' | 'inside' | 'outside';
1019
+ style?: React.CSSProperties;
1020
+ formatter?: (value: any, entry: any, index: number) => React.ReactNode;
1021
+ };
1022
+ /** Custom colors array */
1023
+ colors?: string[];
1024
+ /** Tooltip configuration */
1025
+ tooltip?: {
1026
+ formatter?: (value: any, name: string, props: any) => [React.ReactNode, string];
1027
+ labelFormatter?: (label: any, payload: any[]) => React.ReactNode;
1028
+ labelStyle?: React.CSSProperties;
1029
+ contentStyle?: React.CSSProperties;
1030
+ };
1031
+ /** Additional CSS classes */
1032
+ className?: string;
1033
+ }
1034
+ declare const BarChart: React.FC<BarChartProps>;
1035
+ interface LineChartProps {
1036
+ /** Chart data */
1037
+ data: any[];
1038
+ /** Data key for the line */
1039
+ dataKey: string;
1040
+ /** Multiple data keys for multiple lines */
1041
+ dataKeys?: Array<{
1042
+ dataKey: string;
1043
+ stroke?: string;
1044
+ name?: string;
1045
+ }>;
1046
+ /** Stroke color for single line */
1047
+ stroke?: string;
1048
+ /** Line name for legend */
1049
+ name?: string;
1050
+ /** Width of the chart */
1051
+ width?: number | string;
1052
+ /** Height of the chart */
1053
+ height?: number | string;
1054
+ /** Margin around the chart */
1055
+ margin?: {
1056
+ top?: number;
1057
+ right?: number;
1058
+ bottom?: number;
1059
+ left?: number;
1060
+ };
1061
+ /** Show grid lines */
1062
+ showGrid?: boolean;
1063
+ /** Show tooltip */
1064
+ showTooltip?: boolean;
1065
+ /** Show legend */
1066
+ showLegend?: boolean;
1067
+ /** X-axis configuration */
1068
+ xAxis?: {
1069
+ dataKey?: string;
1070
+ type?: 'number' | 'category';
1071
+ hide?: boolean;
1072
+ label?: string;
1073
+ };
1074
+ /** Y-axis configuration */
1075
+ yAxis?: {
1076
+ type?: 'number' | 'category';
1077
+ hide?: boolean;
1078
+ label?: string;
1079
+ };
1080
+ /** Additional CSS classes */
1081
+ className?: string;
1082
+ }
1083
+ declare const LineChart: React.FC<LineChartProps>;
1084
+ interface PieChartProps {
1085
+ /** Chart data */
1086
+ data: any[];
1087
+ /** Data key for the pie slices */
1088
+ dataKey: string;
1089
+ /** Name key for labels */
1090
+ nameKey?: string;
1091
+ /** Colors for pie slices */
1092
+ colors?: string[];
1093
+ /** Inner radius for donut effect (set to create donut chart) */
1094
+ innerRadius?: number;
1095
+ /** Outer radius */
1096
+ outerRadius?: number;
1097
+ /** Center coordinates */
1098
+ cx?: number | string;
1099
+ cy?: number | string;
1100
+ /** Width of the chart */
1101
+ width?: number | string;
1102
+ /** Height of the chart */
1103
+ height?: number | string;
1104
+ /** Show tooltip */
1105
+ showTooltip?: boolean;
1106
+ /** Show legend */
1107
+ showLegend?: boolean;
1108
+ /** Additional CSS classes */
1109
+ className?: string;
1110
+ }
1111
+ declare const PieChart: React.FC<PieChartProps>;
1112
+ interface AreaChartProps {
1113
+ /** Chart data */
1114
+ data: any[];
1115
+ /** Data key for the area */
1116
+ dataKey: string;
1117
+ /** Multiple data keys for stacked areas */
1118
+ dataKeys?: Array<{
1119
+ dataKey: string;
1120
+ fill?: string;
1121
+ stroke?: string;
1122
+ name?: string;
1123
+ }>;
1124
+ /** Fill color for single area */
1125
+ fill?: string;
1126
+ /** Stroke color for single area */
1127
+ stroke?: string;
1128
+ /** Area name for legend */
1129
+ name?: string;
1130
+ /** Width of the chart */
1131
+ width?: number | string;
1132
+ /** Height of the chart */
1133
+ height?: number | string;
1134
+ /** Margin around the chart */
1135
+ margin?: {
1136
+ top?: number;
1137
+ right?: number;
1138
+ bottom?: number;
1139
+ left?: number;
1140
+ };
1141
+ /** Show grid lines */
1142
+ showGrid?: boolean;
1143
+ /** Show tooltip */
1144
+ showTooltip?: boolean;
1145
+ /** Show legend */
1146
+ showLegend?: boolean;
1147
+ /** Stack areas on top of each other */
1148
+ stack?: boolean;
1149
+ /** X-axis configuration */
1150
+ xAxis?: {
1151
+ dataKey?: string;
1152
+ type?: 'number' | 'category';
1153
+ hide?: boolean;
1154
+ label?: string;
1155
+ };
1156
+ /** Y-axis configuration */
1157
+ yAxis?: {
1158
+ type?: 'number' | 'category';
1159
+ hide?: boolean;
1160
+ label?: string;
1161
+ };
1162
+ /** Additional CSS classes */
1163
+ className?: string;
1164
+ }
1165
+ declare const AreaChart: React.FC<AreaChartProps>;
1166
+ interface ScatterChartProps {
1167
+ /** Chart data */
1168
+ data: any[];
1169
+ /** X-axis data key */
1170
+ xDataKey: string;
1171
+ /** Y-axis data key */
1172
+ yDataKey: string;
1173
+ /** Fill color for points */
1174
+ fill?: string;
1175
+ /** Point name for legend */
1176
+ name?: string;
1177
+ /** Width of the chart */
1178
+ width?: number | string;
1179
+ /** Height of the chart */
1180
+ height?: number | string;
1181
+ /** Margin around the chart */
1182
+ margin?: {
1183
+ top?: number;
1184
+ right?: number;
1185
+ bottom?: number;
1186
+ left?: number;
1187
+ };
1188
+ /** Show grid lines */
1189
+ showGrid?: boolean;
1190
+ /** Show tooltip */
1191
+ showTooltip?: boolean;
1192
+ /** Show legend */
1193
+ showLegend?: boolean;
1194
+ /** X-axis configuration */
1195
+ xAxis?: {
1196
+ type?: 'number' | 'category';
1197
+ hide?: boolean;
1198
+ label?: string;
1199
+ };
1200
+ /** Y-axis configuration */
1201
+ yAxis?: {
1202
+ type?: 'number' | 'category';
1203
+ hide?: boolean;
1204
+ label?: string;
1205
+ };
1206
+ /** Additional CSS classes */
1207
+ className?: string;
1208
+ }
1209
+ declare const ScatterChart: React.FC<ScatterChartProps>;
1210
+ interface RadarChartProps {
1211
+ /** Chart data */
1212
+ data: any[];
1213
+ /** Data key for the radar values */
1214
+ dataKey: string;
1215
+ /** Name key for labels */
1216
+ nameKey: string;
1217
+ /** Fill color */
1218
+ fill?: string;
1219
+ /** Stroke color */
1220
+ stroke?: string;
1221
+ /** Radar name for legend */
1222
+ name?: string;
1223
+ /** Width of the chart */
1224
+ width?: number | string;
1225
+ /** Height of the chart */
1226
+ height?: number | string;
1227
+ /** Show tooltip */
1228
+ showTooltip?: boolean;
1229
+ /** Show legend */
1230
+ showLegend?: boolean;
1231
+ /** Additional CSS classes */
1232
+ className?: string;
1233
+ }
1234
+ declare const RadarChart: React.FC<RadarChartProps>;
1235
+ interface DonutChartProps {
1236
+ /** Chart data */
1237
+ data: any[];
1238
+ /** Data key for the donut slices */
1239
+ dataKey: string;
1240
+ /** Name key for labels */
1241
+ nameKey?: string;
1242
+ /** Colors for donut slices */
1243
+ colors?: string[];
1244
+ /** Inner radius */
1245
+ innerRadius?: number;
1246
+ /** Outer radius */
1247
+ outerRadius?: number;
1248
+ /** Center coordinates */
1249
+ cx?: number | string;
1250
+ cy?: number | string;
1251
+ /** Width of the chart */
1252
+ width?: number | string;
1253
+ /** Height of the chart */
1254
+ height?: number | string;
1255
+ /** Show tooltip */
1256
+ showTooltip?: boolean;
1257
+ /** Show legend */
1258
+ showLegend?: boolean;
1259
+ /** Advanced styling options */
1260
+ advancedStyling?: {
1261
+ /** Enable gradient effects */
1262
+ enableGradients?: boolean;
1263
+ /** Enable shadow effects */
1264
+ enableShadows?: boolean;
1265
+ /** Custom gradient definitions */
1266
+ gradients?: Array<{
1267
+ id: string;
1268
+ colors: [string, string];
1269
+ x1?: string;
1270
+ y1?: string;
1271
+ x2?: string;
1272
+ y2?: string;
1273
+ }>;
1274
+ /** Background circle styling */
1275
+ backgroundCircle?: {
1276
+ stroke?: string;
1277
+ strokeWidth?: number;
1278
+ filter?: string;
1279
+ };
1280
+ /** Progress arc styling */
1281
+ progressArc?: {
1282
+ strokeLinecap?: 'butt' | 'round' | 'square';
1283
+ filter?: string;
1284
+ };
1285
+ };
1286
+ /** Tooltip configuration */
1287
+ tooltip?: {
1288
+ formatter?: (value: any, name: string, props: any) => [React.ReactNode, string];
1289
+ labelFormatter?: (label: any, payload: any[]) => React.ReactNode;
1290
+ labelStyle?: React.CSSProperties;
1291
+ contentStyle?: React.CSSProperties;
1292
+ };
1293
+ /** Additional CSS classes */
1294
+ className?: string;
1295
+ }
1296
+ declare const DonutChart: React.FC<DonutChartProps>;
1297
+ interface ProgressCardProps {
1298
+ /** Question number or identifier */
1299
+ questionNum: string | number;
1300
+ /** Percentage value (0-100) */
1301
+ percentage: number;
1302
+ /** Optional click handler */
1303
+ onClick?: (questionNum: string | number) => void;
1304
+ /** Size of the donut chart */
1305
+ donutSize?: number;
1306
+ /** Stroke width for the progress arc */
1307
+ strokeWidth?: number;
1308
+ /** Background stroke color */
1309
+ backgroundColor?: string;
1310
+ /** Custom color logic based on percentage */
1311
+ getColor?: (percentage: number) => [string, string];
1312
+ /** Enable shadows */
1313
+ enableShadows?: boolean;
1314
+ /** Enable gradients */
1315
+ enableGradients?: boolean;
1316
+ /** Typography options */
1317
+ typography?: {
1318
+ questionFontSize?: string;
1319
+ percentageFontSize?: string;
1320
+ questionColor?: string;
1321
+ percentageColorAuto?: boolean;
1322
+ };
1323
+ /** Additional CSS classes */
1324
+ className?: string;
1325
+ }
1326
+ declare const ProgressCard: React.FC<ProgressCardProps>;
1327
+ interface ProgressDonutProps {
1328
+ /** Array of data items with value and label */
1329
+ data?: Array<{
1330
+ value: number;
1331
+ label?: string;
1332
+ [key: string]: any;
1333
+ }>;
1334
+ /** Width of the chart */
1335
+ width?: number | string;
1336
+ /** Height of the chart */
1337
+ height?: number | string;
1338
+ /** Inner radius for donut effect */
1339
+ innerRadius?: number;
1340
+ /** Outer radius */
1341
+ outerRadius?: number;
1342
+ /** Show tooltip */
1343
+ showTooltip?: boolean;
1344
+ /** Show legend */
1345
+ showLegend?: boolean;
1346
+ /** Custom color logic based on value */
1347
+ getColor?: (value: number) => string;
1348
+ /** Additional CSS classes */
1349
+ className?: string;
1350
+ }
1351
+ declare const ProgressDonut: React.FC<ProgressDonutProps>;
1352
+ interface MultiProgressDonutProps {
1353
+ /** Array of data items with value and label */
1354
+ data?: Array<{
1355
+ value: number;
1356
+ label?: string;
1357
+ [key: string]: any;
1358
+ }>;
1359
+ /** Size of each donut chart */
1360
+ size?: number;
1361
+ /** Outer radius */
1362
+ outerRadius?: number;
1363
+ /** Stroke width for the progress arc */
1364
+ strokeWidth?: number;
1365
+ /** Background stroke color */
1366
+ backgroundColor?: string;
1367
+ /** Background stroke width */
1368
+ backgroundStrokeWidth?: number;
1369
+ /** Show percentage text in center */
1370
+ showPercentage?: boolean;
1371
+ /** Custom color logic based on value */
1372
+ getColor?: (value: number) => [string, string];
1373
+ /** Enable shadows */
1374
+ enableShadows?: boolean;
1375
+ /** Enable gradients */
1376
+ enableGradients?: boolean;
1377
+ /** Additional CSS classes */
1378
+ className?: string;
1379
+ }
1380
+ declare const MultiProgressDonut: React.FC<MultiProgressDonutProps>;
1381
+
905
1382
  interface BreadcrumbsProps extends React.HTMLAttributes<HTMLElement> {
906
1383
  /** Custom separator element */
907
1384
  separator?: React.ReactNode;
@@ -1187,4 +1664,4 @@ declare const RailPanelItem: React.ForwardRefExoticComponent<RailPanelItemProps
1187
1664
 
1188
1665
  declare const Playground: () => react_jsx_runtime.JSX.Element;
1189
1666
 
1190
- export { Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, Box, type BoxProps, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbPage, type BreadcrumbPageProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, type ColumnVisibilityModel, Combobox, type ComboboxMultipleProps, type ComboboxOption, type ComboboxProps, type ComboboxSingleProps, DataGrid, type DataGridProps, DataGrid as DataGridV0, DialogNamespace as Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, DrawerContent, type DrawerContentProps, DrawerDescription, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, FormControl, type FormControlProps, FormGroup, type FormGroupProps, FormHelperText, type FormHelperTextProps, FormLabel, type FormLabelProps, Grid, type GridColDef, type GridProps, type GridRenderCellParams, type GridRenderHeaderParams, type GridRowSelectionModel, type GridValueFormatterParams, type GridValueGetterParams, H1, H2, H3, H4, H5, H6, HStack, IconButton, type IconButtonProps, IconRail, IconRailContent, type IconRailContentProps, IconRailFooter, type IconRailFooterProps, IconRailHeader, type IconRailHeaderProps, IconRailItem, type IconRailItemProps, type IconRailProps, Input, InputAdornment, type InputAdornmentProps, type InputProps, Label, type LabelProps, LinearProgress, type LinearProgressProps, List, ListDivider, type ListDividerProps, ListItem, ListItemAvatar, type ListItemAvatarProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListSubheader, type ListSubheaderProps, NativeSelect, NativeSelectOption, type NativeSelectOptionProps, type NativeSelectProps, PaginationNamespace as Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, type PaginationModel, PaginationNext, PaginationPrevious, type PaginationProps, Playground, Progress, type ProgressProps, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type RadioProps, RailPanel, RailPanelGroup, type RailPanelGroupProps, RailPanelItem, type RailPanelItemProps, type RailPanelProps, SelectNamespace as Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarRail, type SidebarRailProps, SidebarSubMenu, type SidebarSubMenuProps, SidebarToggle, type SidebarToggleProps, Skeleton, SkeletonAvatar, type SkeletonAvatarProps, SkeletonCard, type SkeletonCardProps, type SkeletonProps, SkeletonTableRow, type SkeletonTableRowProps, SkeletonText, type SkeletonTextProps, Spinner, type SpinnerProps, Stack, type StackProps, Switch, type SwitchProps, TableNamespace as Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Text, TextField, type TextFieldProps, Textarea, type TextareaProps, ThemeContext, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, Tooltip, TooltipArrow, TooltipContent, type TooltipContentProps, TooltipPortal, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TopBar, TopBarBrand, type TopBarBrandProps, TopBarDivider, type TopBarDividerProps, TopBarNav, TopBarNavItem, type TopBarNavItemProps, type TopBarNavProps, type TopBarProps, TopBarSection, type TopBarSectionProps, Typography, type TypographyProps, VStack, cn, useFormControl, useSidebar, useSidebarRail, useTheme };
1667
+ export { Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, AreaChart, type AreaChartProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, BarChart, type BarChartProps, Box, type BoxProps, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbPage, type BreadcrumbPageProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, type ColumnVisibilityModel, Combobox, type ComboboxMultipleProps, type ComboboxOption, type ComboboxProps, type ComboboxSingleProps, DataGrid, type DataGridProps, DataGrid as DataGridV0, DialogNamespace as Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DonutChart, type DonutChartProps, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, DrawerContent, type DrawerContentProps, DrawerDescription, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, FormControl, type FormControlProps, FormGroup, type FormGroupProps, FormHelperText, type FormHelperTextProps, FormLabel, type FormLabelProps, Grid, type GridColDef, type GridProps, type GridRenderCellParams, type GridRenderHeaderParams, type GridRowSelectionModel, type GridValueFormatterParams, type GridValueGetterParams, H1, H2, H3, H4, H5, H6, HStack, IconButton, type IconButtonProps, IconRail, IconRailContent, type IconRailContentProps, IconRailFooter, type IconRailFooterProps, IconRailHeader, type IconRailHeaderProps, IconRailItem, type IconRailItemProps, type IconRailProps, Input, InputAdornment, type InputAdornmentProps, type InputProps, Label, type LabelProps, LineChart, type LineChartProps, LinearProgress, type LinearProgressProps, List, ListDivider, type ListDividerProps, ListItem, ListItemAvatar, type ListItemAvatarProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListSubheader, type ListSubheaderProps, MultiProgressDonut, type MultiProgressDonutProps, NativeSelect, NativeSelectOption, type NativeSelectOptionProps, type NativeSelectProps, PaginationNamespace as Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, type PaginationModel, PaginationNext, PaginationPrevious, type PaginationProps, PieChart, type PieChartProps, Playground, Progress, ProgressCard, type ProgressCardProps, ProgressDonut, type ProgressDonutProps, type ProgressProps, RadarChart, type RadarChartProps, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type RadioProps, RailPanel, RailPanelGroup, type RailPanelGroupProps, RailPanelItem, type RailPanelItemProps, type RailPanelProps, ScatterChart, type ScatterChartProps, SelectNamespace as Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarRail, type SidebarRailProps, SidebarSubMenu, type SidebarSubMenuProps, SidebarToggle, type SidebarToggleProps, Skeleton, SkeletonAvatar, type SkeletonAvatarProps, SkeletonCard, type SkeletonCardProps, type SkeletonProps, SkeletonTableRow, type SkeletonTableRowProps, SkeletonText, type SkeletonTextProps, Slider, type SliderProps, Spinner, type SpinnerProps, Stack, type StackProps, Switch, type SwitchProps, TableNamespace as Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Text, TextField, type TextFieldProps, Textarea, type TextareaProps, ThemeContext, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, Tooltip, TooltipArrow, TooltipContent, type TooltipContentProps, TooltipPortal, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TopBar, TopBarBrand, type TopBarBrandProps, TopBarDivider, type TopBarDividerProps, TopBarNav, TopBarNavItem, type TopBarNavItemProps, type TopBarNavProps, type TopBarProps, TopBarSection, type TopBarSectionProps, Typography, type TypographyProps, UnderlineTabsContent, UnderlineTabsList, UnderlineTabsTrigger, type UnderlineTabsTriggerProps, VStack, VerticalTabs, VerticalTabsContent, VerticalTabsGroupLabel, type VerticalTabsGroupLabelProps, VerticalTabsList, VerticalTabsTrigger, type VerticalTabsTriggerProps, cn, useFormControl, useSidebar, useSidebarRail, useTheme };