@moderneinc/neo-styled-components 2.6.0 → 2.7.0-next.4bcf59

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
@@ -8,7 +8,9 @@ import { AlertProps } from '@mui/material/Alert';
8
8
  import { LinkProps } from '@mui/material/Link';
9
9
  import * as ButtonBase from '@mui/material/ButtonBase';
10
10
  import ButtonBase__default, { ButtonBaseProps } from '@mui/material/ButtonBase';
11
- import { ButtonGroupProps } from '@mui/material/ButtonGroup';
11
+ import * as _mui_material_ToggleButton from '@mui/material/ToggleButton';
12
+ import { ToggleButtonProps } from '@mui/material/ToggleButton';
13
+ import { ToggleButtonGroupProps } from '@mui/material/ToggleButtonGroup';
12
14
  import { CheckboxProps } from '@mui/material/Checkbox';
13
15
  import { GridDensity as GridDensity$1, DataGridProProps, GridSlots, ToolbarProps, GridColumnsPanelProps } from '@mui/x-data-grid-pro';
14
16
  import * as _mui_material_styles from '@mui/material/styles';
@@ -33,8 +35,6 @@ import Button from '@mui/material/Button';
33
35
  import { SwitchProps } from '@mui/material/Switch';
34
36
  import { ListItemButtonProps } from '@mui/material/ListItemButton';
35
37
  import { TooltipProps } from '@mui/material/Tooltip';
36
- import * as _mui_material_ToggleButton from '@mui/material/ToggleButton';
37
- import { ToggleButtonGroupProps } from '@mui/material/ToggleButtonGroup';
38
38
  import { CardProps } from '@mui/material/Card';
39
39
  import { DatePickerProps } from '@mui/x-date-pickers/DatePicker';
40
40
  import { PickersShortcutsItem } from '@mui/x-date-pickers/PickersShortcuts';
@@ -305,7 +305,7 @@ interface NeoAvatarProps extends Omit<AvatarProps, 'variant'> {
305
305
  /**
306
306
  * NeoAvatar - User avatar component based on MUI Avatar
307
307
  *
308
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4214-58134
308
+ * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=9600-185
309
309
  *
310
310
  * Figma Props Mapping:
311
311
  * - Figma Type "Initials" → variant="initials", size="small" (20px)
@@ -562,43 +562,60 @@ declare namespace NeoButton {
562
562
  var displayName: string;
563
563
  }
564
564
 
565
- type ButtonGroupSize = 'small' | 'medium';
566
- interface NeoButtonGroupProps extends Omit<ButtonGroupProps, 'size' | 'variant'> {
565
+ interface NeoButtonTabProps extends Omit<ToggleButtonProps, 'color'> {
566
+ /**
567
+ * Whether the tab is currently selected.
568
+ * When used inside NeoButtonGroup, this is computed automatically from the group's value.
569
+ * @default false
570
+ * @figma Current
571
+ */
572
+ selected?: boolean;
573
+ }
574
+ /**
575
+ * NeoButtonTab - A tab-style toggle button for use within NeoButtonGroup
576
+ *
577
+ * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4106-11048
578
+ */
579
+ declare const NeoButtonTab: {
580
+ ({ children, ...props }: NeoButtonTabProps): react_jsx_runtime.JSX.Element;
581
+ displayName: string;
582
+ };
583
+
584
+ type ButtonTabGroupSize = 'small' | 'medium';
585
+ interface NeoButtonTabGroupProps extends Omit<ToggleButtonGroupProps, 'orientation' | 'color' | 'fullWidth'> {
567
586
  /**
568
- * The size of the button group
587
+ * The size of the button tab group
569
588
  * @default "medium"
570
589
  *
571
590
  * @figma Size=Sm → small, Size=Md → medium
572
591
  */
573
- size?: ButtonGroupSize;
592
+ size?: ButtonTabGroupSize;
574
593
  /**
575
- * The visual variant of the buttons
576
- * ButtonGroup uses a fixed outlined style from the design
594
+ * Whether only one button can be selected at a time
595
+ * @default true
577
596
  */
578
- variant?: 'outlined';
597
+ exclusive?: boolean;
579
598
  }
580
599
  /**
581
- * NeoButtonGroup - Button group component based on MUI ButtonGroup
600
+ * NeoButtonTabGroup - Button tab group container
582
601
  *
583
602
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4106-11129
584
603
  *
585
604
  * Figma Props Mapping:
586
605
  * - Size (Sm|Md) → size prop (small|medium)
587
- * - Active button state → Controlled externally via button props or classes
606
+ * - Active button state → Controlled via value/onChange props
588
607
  *
589
608
  * Usage:
590
609
  * ```tsx
591
- * <NeoButtonGroup size="medium">
592
- * <NeoButton>Button 1</NeoButton>
593
- * <NeoButton>Button 2</NeoButton>
594
- * <NeoButton>Button 3</NeoButton>
595
- * </NeoButtonGroup>
610
+ * <NeoButtonTabGroup value={selected} onChange={(_, val) => setSelected(val)} size="medium">
611
+ * <NeoButtonTab value="tab1">Tab 1</NeoButtonTab>
612
+ * <NeoButtonTab value="tab2">Tab 2</NeoButtonTab>
613
+ * <NeoButtonTab value="tab3">Tab 3</NeoButtonTab>
614
+ * </NeoButtonTabGroup>
596
615
  * ```
597
- *
598
- * Note: To show active state, add 'active' class to the selected button
599
616
  */
600
- declare const NeoButtonGroup: {
601
- ({ size, variant, ...props }: NeoButtonGroupProps): react_jsx_runtime.JSX.Element;
617
+ declare const NeoButtonTabGroup: {
618
+ ({ size, exclusive, ...props }: NeoButtonTabGroupProps): react_jsx_runtime.JSX.Element;
602
619
  displayName: string;
603
620
  };
604
621
 
@@ -1085,7 +1102,7 @@ declare namespace NeoDataGridFiltersButton {
1085
1102
  var displayName: string;
1086
1103
  }
1087
1104
 
1088
- interface NeoMenuItemProps extends MenuItemProps {
1105
+ interface NeoDropdownMenuItemProps extends MenuItemProps {
1089
1106
  /**
1090
1107
  * Optional icon to display on the left side
1091
1108
  * Note: Cannot be directly mapped from Figma (ReactNode)
@@ -1110,60 +1127,49 @@ interface NeoMenuItemProps extends MenuItemProps {
1110
1127
  children?: ReactNode;
1111
1128
  }
1112
1129
  /**
1113
- * NeoMenuItem - Menu item component based on MUI MenuItem
1130
+ * NeoDropdownMenuItem - Dropdown menu item component based on MUI MenuItem
1114
1131
  *
1115
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4159-8649
1116
- *
1117
- * Figma Props Mapping:
1118
- * - Figma "Dropdown - Menu" component uses Type (Avatar|Button|Icon) and Open (True|False)
1119
- * to control the menu trigger. NeoMenuItem is the individual item inside the menu.
1120
- * - Text label → children prop (mapped via figma.children)
1121
- * - selected → selected prop (React-controlled)
1122
- * - disabled → disabled prop (React-controlled)
1123
- * - Hover state → CSS :hover (not mapped)
1124
- * - Icon slot → icon prop (not mappable - ReactNode)
1125
- * - Secondary text → secondaryText prop (not mappable - ReactNode/string)
1126
- * - Keyboard shortcut → shortcut prop (not mappable - ReactNode/string)
1132
+ * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4159-8584
1127
1133
  *
1128
1134
  * @example
1129
1135
  * ```tsx
1130
1136
  * // With icon and shortcut
1131
- * <NeoMenuItem icon={<UserIcon />} shortcut="⌘+P">
1137
+ * <NeoDropdownMenuItem icon={<UserIcon />} shortcut="⌘+P">
1132
1138
  * View profile
1133
- * </NeoMenuItem>
1139
+ * </NeoDropdownMenuItem>
1134
1140
  *
1135
1141
  * // With secondary text (user list pattern from Figma node 4305:41844)
1136
- * <NeoMenuItem secondaryText="@phoenix">Phoenix Baker</NeoMenuItem>
1137
- * <NeoMenuItem secondaryText="@olivia">Olivia Rhye</NeoMenuItem>
1142
+ * <NeoDropdownMenuItem secondaryText="@phoenix">Phoenix Baker</NeoDropdownMenuItem>
1143
+ * <NeoDropdownMenuItem secondaryText="@olivia">Olivia Rhye</NeoDropdownMenuItem>
1138
1144
  *
1139
1145
  * // Disabled state
1140
- * <NeoMenuItem disabled>Disabled item</NeoMenuItem>
1146
+ * <NeoDropdownMenuItem disabled>Disabled item</NeoDropdownMenuItem>
1141
1147
  * ```
1142
1148
  */
1143
- declare const NeoMenuItem: {
1144
- ({ icon, shortcut, secondaryText, children, ...props }: NeoMenuItemProps): react_jsx_runtime.JSX.Element;
1149
+ declare const NeoDropdownMenuItem: {
1150
+ ({ icon, shortcut, secondaryText, children, ...props }: NeoDropdownMenuItemProps): react_jsx_runtime.JSX.Element;
1145
1151
  displayName: string;
1146
1152
  };
1147
1153
 
1148
- type NeoSelectProps = SelectProps;
1154
+ type NeoDropdownProps = SelectProps;
1149
1155
  /**
1150
- * NeoSelect - Select dropdown component with Neo design system styling
1156
+ * NeoDropdown - Dropdown select component with Neo design system styling
1151
1157
  *
1152
1158
  * A styled version of MUI's Select that uses Neo design tokens, Lucide ChevronDown icon,
1153
- * and NeoMenu/NeoMenuItem for the dropdown list.
1159
+ * and NeoDropdownMenu/NeoDropdownMenuItem for the dropdown list.
1154
1160
  *
1155
1161
  * @example
1156
1162
  * ```tsx
1157
- * import { NeoSelect, NeoSelectOption } from '@moderneinc/neo-styled-components'
1163
+ * import { NeoDropdown, NeoDropdownOption } from '@moderneinc/neo-styled-components'
1158
1164
  *
1159
- * <NeoSelect value={value} onChange={handleChange}>
1160
- * <NeoSelectOption value="option1">Option 1</NeoSelectOption>
1161
- * <NeoSelectOption value="option2">Option 2</NeoSelectOption>
1162
- * </NeoSelect>
1165
+ * <NeoDropdown value={value} onChange={handleChange}>
1166
+ * <NeoDropdownOption value="option1">Option 1</NeoDropdownOption>
1167
+ * <NeoDropdownOption value="option2">Option 2</NeoDropdownOption>
1168
+ * </NeoDropdown>
1163
1169
  * ```
1164
1170
  */
1165
- declare const NeoSelect: {
1166
- (props: NeoSelectProps): react_jsx_runtime.JSX.Element;
1171
+ declare const NeoDropdown: {
1172
+ (props: NeoDropdownProps): react_jsx_runtime.JSX.Element;
1167
1173
  displayName: string;
1168
1174
  };
1169
1175
 
@@ -1259,16 +1265,16 @@ interface NeoDividerProps extends DividerProps {
1259
1265
  * Generic divider component that can be used in menus, lists, cards, or any layout
1260
1266
  * that needs visual separation between content sections.
1261
1267
  *
1262
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4159-8649
1268
+ * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4633-39807
1263
1269
  *
1264
1270
  * @example
1265
1271
  * ```tsx
1266
1272
  * // In a menu
1267
- * <NeoMenu>
1268
- * <NeoMenuItem>Settings</NeoMenuItem>
1273
+ * <NeoDropdownMenu>
1274
+ * <NeoDropdownMenuItem>Settings</NeoDropdownMenuItem>
1269
1275
  * <NeoDivider />
1270
- * <NeoMenuItem>Sign out</NeoMenuItem>
1271
- * </NeoMenu>
1276
+ * <NeoDropdownMenuItem>Sign out</NeoDropdownMenuItem>
1277
+ * </NeoDropdownMenu>
1272
1278
  *
1273
1279
  * // In a card
1274
1280
  * <Card>
@@ -1360,6 +1366,31 @@ declare const NeoFilterChip: {
1360
1366
  displayName: string;
1361
1367
  };
1362
1368
 
1369
+ type AvatarSize = 'small' | 'medium';
1370
+ interface NeoGeneralAvatarProps extends Omit<AvatarProps, 'variant'> {
1371
+ /**
1372
+ * The size of the avatar
1373
+ * @default "medium"
1374
+ * @figma Size
1375
+ */
1376
+ size?: AvatarSize;
1377
+ /**
1378
+ * Color index for initials background (1-7). Use 0 or omit for image mode.
1379
+ * @default 0
1380
+ * @figma Color Index
1381
+ */
1382
+ colorIndex?: number;
1383
+ }
1384
+ /**
1385
+ * NeoGeneralAvatar - Avatar with image or colored initials display
1386
+ *
1387
+ * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=9600-185
1388
+ */
1389
+ declare const NeoGeneralAvatar: {
1390
+ ({ size, colorIndex, children, ...props }: NeoGeneralAvatarProps): react_jsx_runtime.JSX.Element;
1391
+ displayName: string;
1392
+ };
1393
+
1363
1394
  type IconButtonSize = 'small' | 'medium';
1364
1395
  interface NeoIconButtonProps extends Omit<IconButtonProps, 'color' | 'size'> {
1365
1396
  /**
@@ -1509,48 +1540,35 @@ declare const NeoLoadingSpinner: {
1509
1540
  displayName: string;
1510
1541
  };
1511
1542
 
1512
- interface NeoMenuProps extends MenuProps {
1543
+ interface NeoDropdownMenuProps extends MenuProps {
1513
1544
  /**
1514
- * Menu content (typically NeoMenuItem components)
1545
+ * Menu content (typically NeoDropdownMenuItem components)
1515
1546
  */
1516
1547
  children?: React.ReactNode;
1517
1548
  }
1518
1549
  /**
1519
- * NeoMenu - Dropdown menu component based on MUI Menu
1520
- *
1521
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4159-8649
1522
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4305-41844 (Dropdown list pattern)
1550
+ * NeoDropdownMenu - Dropdown menu component based on MUI Menu
1523
1551
  *
1524
- * Figma Props Mapping:
1525
- * - Container shown in Figma is the Menu Paper component
1526
- * - Menu items are styled separately via NeoMenuItem
1527
- * - Any trigger component (Button, IconButton, etc.) can open the menu
1552
+ * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=11141-4980
1528
1553
  *
1529
1554
  * @example
1530
1555
  * ```tsx
1531
1556
  * const [anchorEl, setAnchorEl] = useState<null | HTMLElement>(null);
1532
1557
  * const open = Boolean(anchorEl);
1533
1558
  *
1534
- * // Standard menu with icons and shortcuts
1535
1559
  * <Button onClick={(e) => setAnchorEl(e.currentTarget)}>Open Menu</Button>
1536
- * <NeoMenu
1560
+ * <NeoDropdownMenu
1537
1561
  * open={open}
1538
1562
  * anchorEl={anchorEl}
1539
1563
  * onClose={() => setAnchorEl(null)}
1540
1564
  * >
1541
- * <NeoMenuItem icon={<Icon />} shortcut="⌘+P">View profile</NeoMenuItem>
1542
- * <NeoMenuItem>Settings</NeoMenuItem>
1543
- * </NeoMenu>
1544
- *
1545
- * // Dropdown list with secondary text (user list pattern)
1546
- * <NeoMenu open={open} anchorEl={anchorEl} onClose={() => setAnchorEl(null)}>
1547
- * <NeoMenuItem secondaryText="@phoenix">Phoenix Baker</NeoMenuItem>
1548
- * <NeoMenuItem secondaryText="@olivia" selected>Olivia Rhye</NeoMenuItem>
1549
- * </NeoMenu>
1565
+ * <NeoDropdownMenuItem icon={<Icon />} shortcut="⌘+P">View profile</NeoDropdownMenuItem>
1566
+ * <NeoDropdownMenuItem>Settings</NeoDropdownMenuItem>
1567
+ * </NeoDropdownMenu>
1550
1568
  * ```
1551
1569
  */
1552
- declare const NeoMenu: {
1553
- ({ children, ...props }: NeoMenuProps): react_jsx_runtime.JSX.Element;
1570
+ declare const NeoDropdownMenu: {
1571
+ ({ children, ...props }: NeoDropdownMenuProps): react_jsx_runtime.JSX.Element;
1554
1572
  displayName: string;
1555
1573
  };
1556
1574
 
@@ -1666,6 +1684,21 @@ declare const NeoModalFooter: {
1666
1684
  displayName: string;
1667
1685
  };
1668
1686
 
1687
+ interface NeoNavigationAvatarProps extends Omit<NeoGeneralAvatarProps, 'size'> {
1688
+ }
1689
+ /**
1690
+ * NeoNavigationAvatar - Compact avatar for navigation contexts
1691
+ *
1692
+ * Wraps NeoGeneralAvatar (size="small") in a 44px container with 6px padding,
1693
+ * providing a larger interactive area for navigation UI.
1694
+ *
1695
+ * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=11325-102
1696
+ */
1697
+ declare const NeoNavigationAvatar: {
1698
+ ({ colorIndex, children, ...props }: NeoNavigationAvatarProps): react_jsx_runtime.JSX.Element;
1699
+ displayName: string;
1700
+ };
1701
+
1669
1702
  interface NeoNavigationItemProps extends Omit<ButtonBaseProps, 'children'> {
1670
1703
  /**
1671
1704
  * Icon element to display
@@ -2110,10 +2143,10 @@ interface NeoStatusBannerProps extends Omit<AlertProps, 'severity' | 'variant'>
2110
2143
  * - Mode (Light|Dark) → variant ('outlined'|'filled')
2111
2144
  *
2112
2145
  * Design Tokens Used:
2113
- * - status.success.light, status.success.medium
2114
- * - status.error.light, status.error.medium
2115
- * - status.neutral.light, status.neutral.medium
2116
- * - status.info.light, status.info.medium
2146
+ * - status.success.light, status.success.default
2147
+ * - status.error.light, status.error.default
2148
+ * - status.neutral.light, status.neutral.default
2149
+ * - status.info.light, status.info.default
2117
2150
  * - typography.tooltip, typography.bodySecondary
2118
2151
  * - grey[800]
2119
2152
  * - fontSize.default, fontSize.sm
@@ -2549,7 +2582,7 @@ interface NeoListItemButtonProps extends ListItemButtonProps {
2549
2582
  * - showIcon → Conditional rendering of ListItemIcon child
2550
2583
  *
2551
2584
  * Design Tokens Used:
2552
- * - semanticColors.border.tabActive (#2f42ff) - Active border
2585
+ * - semanticColors.buttons.primary.default (#2f42ff) - Active border
2553
2586
  * - semanticColors.border.primary (#d1d5db) - Default/disabled border
2554
2587
  * - semanticColors.icons.default (#1f2937) - Active icon color
2555
2588
  * - semanticColors.icons.disabled (#d1d5db) - Deselected/disabled icon color
@@ -2710,8 +2743,8 @@ interface NeoMarketplaceCardProps extends Omit<CardProps, 'children' | 'title'>
2710
2743
  * Design Tokens Used:
2711
2744
  * - semanticColors.surfaces.card (#FFFFFF) - Default card background
2712
2745
  * - semanticColors.status.info.light (#f2f3ff) - Active/focused card background
2713
- * - semanticColors.border.card (#d1d5db) - Default border
2714
- * - semanticColors.border.tabActive (#2f42ff) - Active/focused border
2746
+ * - semanticColors.border.primary (#d1d5db) - Default border
2747
+ * - semanticColors.buttons.primary.default (#2f42ff) - Active/focused border
2715
2748
  * - shadows.focusWhite1 - Inner white focus ring (2px spread)
2716
2749
  * - shadows.focusBlue2 - Outer blue focus ring (4px spread)
2717
2750
  * - colors.grey[800] (#1F2937) - Text color
@@ -2919,5 +2952,5 @@ declare module '@mui/x-data-grid-pro' {
2919
2952
 
2920
2953
  declare const version: string
2921
2954
 
2922
- export { ActivityScene, CIRCLE_RADIUS, NeoActivityHeader, NeoActivityIndicatorCell, NeoAvatar, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonGroup, NeoCheckbox, NeoCodeSnippet, NeoDataGrid, NeoDataGridCellContent, NeoDataGridColumnsButton, NeoDataGridColumnsPanel, NeoDataGridFilterPanel, NeoDataGridFilterPanelAddIcon, NeoDataGridFilterPanelDeleteIcon, NeoDataGridFilterPanelRemoveAllIcon, NeoDataGridFiltersButton, NeoDataGridHeaderLabel, NeoSelect as NeoDataGridSelect, NeoDatePicker, NeoDivider, NeoDot, NeoFilterChip, NeoFooter, NeoIconButton, NeoInfiniteScrollGrid, NeoInputField, NeoListItem, NeoListItemButton, NeoLoadingSpinner, NeoMarketplaceCard, NeoMenu, NeoMenuItem, NeoModal, NeoModalContent, NeoModalFooter, NeoModalHeader, NeoMultiBadgesCell, NeoNavigationItem, NeoPageContent, NeoPaginatedGrid, NeoProgressbar, NeoQuickFilter, NeoRadio, NeoSearchChip, NeoSelect, NeoMenuItem as NeoSelectOption, NeoSkeleton, NeoStatusBadgeCell, NeoStatusBanner, NeoTab, NeoTabs, NeoTag, NeoToast, NeoToastButton, NeoToggle, NeoToolbar, NeoTooltip, NeoTreeItem, NeoTreeView, StyledToggleButton as NeoTypologyButton, NeoTypologyControl, NeoUserAvatarCell, SortedAscendingIcon, SortedDescendingIcon, UnsortedIcon, getDataGridHeaderStyles, version };
2923
- export type { ActivityColor, ActivityEvent, ActivityHeaderSize, BreadcrumbItem, DataGridSize, NeoActivityHeaderProps, NeoActivityIndicatorCellProps, NeoAvatarProps, NeoBadgeProps, NeoBannerProps, NeoBreadcrumbLinkProps, NeoBreadcrumbsProps, NeoButtonGroupProps, NeoButtonProps, NeoCheckboxProps, NeoCodeSnippetProps, NeoDataGridCellContentProps, NeoDataGridHeaderLabelProps, NeoDataGridProps, NeoDatePickerProps, NeoDividerProps, NeoDotProps, NeoFilterChipProps, NeoFooterProps, NeoIconButtonProps, NeoInfiniteScrollGridProps, NeoInputFieldProps, NeoListItemButtonProps, NeoListItemProps, NeoLoadingSpinnerProps, NeoMarketplaceCardProps, NeoMenuItemProps, NeoMenuProps, NeoModalContentProps, NeoModalFooterProps, NeoModalHeaderProps, NeoModalProps, NeoMultiBadgesCellProps, NeoNavigationItemProps, NeoPageContentProps, NeoPaginatedGridProps, NeoProgressbarProps, NeoQuickFilterProps, NeoRadioProps, NeoSearchChipProps, NeoSelectProps, NeoSkeletonProps, NeoStatusBadgeCellProps, NeoStatusBannerProps, NeoTabProps, NeoTagProps, NeoToastProps, NeoToggleProps, NeoToolbarProps, NeoTooltipProps, NeoTreeItemData, NeoTreeItemProps, NeoTreeViewProps, NeoTypologyControlProps, NeoUserAvatarCellProps };
2955
+ export { ActivityScene, CIRCLE_RADIUS, NeoActivityHeader, NeoActivityIndicatorCell, NeoAvatar, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonTab, NeoButtonTabGroup, NeoCheckbox, NeoCodeSnippet, NeoDataGrid, NeoDataGridCellContent, NeoDataGridColumnsButton, NeoDataGridColumnsPanel, NeoDataGridFilterPanel, NeoDataGridFilterPanelAddIcon, NeoDataGridFilterPanelDeleteIcon, NeoDataGridFilterPanelRemoveAllIcon, NeoDataGridFiltersButton, NeoDataGridHeaderLabel, NeoDropdown as NeoDataGridSelect, NeoDatePicker, NeoDivider, NeoDot, NeoDropdown, NeoDropdownMenu, NeoDropdownMenuItem, NeoDropdownMenuItem as NeoDropdownOption, NeoFilterChip, NeoFooter, NeoGeneralAvatar, NeoIconButton, NeoInfiniteScrollGrid, NeoInputField, NeoListItem, NeoListItemButton, NeoLoadingSpinner, NeoMarketplaceCard, NeoDropdownMenu as NeoMenu, NeoDropdownMenuItem as NeoMenuItem, NeoModal, NeoModalContent, NeoModalFooter, NeoModalHeader, NeoMultiBadgesCell, NeoNavigationAvatar, NeoNavigationItem, NeoPageContent, NeoPaginatedGrid, NeoProgressbar, NeoQuickFilter, NeoRadio, NeoSearchChip, NeoDropdown as NeoSelect, NeoDropdownMenuItem as NeoSelectOption, NeoSkeleton, NeoStatusBadgeCell, NeoStatusBanner, NeoTab, NeoTabs, NeoTag, NeoToast, NeoToastButton, NeoToggle, NeoToolbar, NeoTooltip, NeoTreeItem, NeoTreeView, StyledToggleButton as NeoTypologyButton, NeoTypologyControl, NeoUserAvatarCell, SortedAscendingIcon, SortedDescendingIcon, UnsortedIcon, getDataGridHeaderStyles, version };
2956
+ export type { ActivityColor, ActivityEvent, ActivityHeaderSize, BreadcrumbItem, DataGridSize, NeoActivityHeaderProps, NeoActivityIndicatorCellProps, NeoAvatarProps, NeoBadgeProps, NeoBannerProps, NeoBreadcrumbLinkProps, NeoBreadcrumbsProps, NeoButtonProps, NeoButtonTabGroupProps, NeoButtonTabProps, NeoCheckboxProps, NeoCodeSnippetProps, NeoDataGridCellContentProps, NeoDataGridHeaderLabelProps, NeoDataGridProps, NeoDatePickerProps, NeoDividerProps, NeoDotProps, NeoDropdownMenuItemProps, NeoDropdownMenuProps, NeoDropdownProps, NeoFilterChipProps, NeoFooterProps, NeoGeneralAvatarProps, NeoIconButtonProps, NeoInfiniteScrollGridProps, NeoInputFieldProps, NeoListItemButtonProps, NeoListItemProps, NeoLoadingSpinnerProps, NeoMarketplaceCardProps, NeoDropdownMenuItemProps as NeoMenuItemProps, NeoDropdownMenuProps as NeoMenuProps, NeoModalContentProps, NeoModalFooterProps, NeoModalHeaderProps, NeoModalProps, NeoMultiBadgesCellProps, NeoNavigationAvatarProps, NeoNavigationItemProps, NeoPageContentProps, NeoPaginatedGridProps, NeoProgressbarProps, NeoQuickFilterProps, NeoRadioProps, NeoSearchChipProps, NeoDropdownProps as NeoSelectProps, NeoSkeletonProps, NeoStatusBadgeCellProps, NeoStatusBannerProps, NeoTabProps, NeoTagProps, NeoToastProps, NeoToggleProps, NeoToolbarProps, NeoTooltipProps, NeoTreeItemData, NeoTreeItemProps, NeoTreeViewProps, NeoTypologyControlProps, NeoUserAvatarCellProps };