@moderneinc/neo-styled-components 2.8.0-next.6d340c → 2.8.0-next.eb01a5

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.
@@ -0,0 +1,32 @@
1
+ import { type CardProps } from '@mui/material/Card';
2
+ import type { ReactNode } from 'react';
3
+ export type NeoCardSize = 'small' | 'large';
4
+ export interface NeoCardSmallProps extends Omit<CardProps, 'children' | 'title'> {
5
+ size: 'small';
6
+ logo: ReactNode;
7
+ recipeCount: string;
8
+ title: ReactNode | string;
9
+ description: string;
10
+ selected?: boolean;
11
+ disabled?: boolean;
12
+ onClick?: () => void;
13
+ }
14
+ export interface NeoCardLargeProps extends Omit<CardProps, 'children' | 'title'> {
15
+ size: 'large';
16
+ state?: 'default' | 'active' | 'disabled' | 'focused';
17
+ cardTheme?: 'light' | 'dark';
18
+ showIcon?: boolean;
19
+ showGel?: boolean;
20
+ showButtons?: boolean;
21
+ icon?: ReactNode;
22
+ gel?: ReactNode;
23
+ title?: ReactNode;
24
+ children?: ReactNode;
25
+ actions?: ReactNode;
26
+ onClick?: () => void;
27
+ }
28
+ export type NeoCardProps = NeoCardSmallProps | NeoCardLargeProps;
29
+ export declare const NeoCard: {
30
+ (props: NeoCardProps): import("react/jsx-runtime").JSX.Element;
31
+ displayName: string;
32
+ };
@@ -1,85 +1,23 @@
1
- import { type CardProps } from '@mui/material/Card';
2
- import type { ReactNode } from 'react';
1
+ import type { NeoCardSmallProps } from '../Card/Card';
3
2
  /**
4
3
  * Props for the NeoMarketplaceCard component
4
+ * @deprecated Use NeoCardSmallProps with NeoCard instead
5
5
  */
6
- export interface NeoMarketplaceCardProps extends Omit<CardProps, 'children' | 'title'> {
7
- /**
8
- * The logo to display (48x48px ReactNode)
9
- */
10
- logo: ReactNode;
11
- /**
12
- * The recipe count text (e.g., "1,260 recipes")
13
- */
14
- recipeCount: string;
15
- /**
16
- * The title text or element
17
- */
18
- title: ReactNode | string;
19
- /**
20
- * The description text
21
- */
22
- description: string;
23
- /**
24
- * Whether the card is in selected/active state
25
- * @default false
26
- * @figma State (Active)
27
- */
28
- selected?: boolean;
29
- /**
30
- * Whether the card is disabled
31
- * @default false
32
- * @figma State (Disabled)
33
- */
34
- disabled?: boolean;
35
- /**
36
- * Click handler for the card
37
- */
38
- onClick?: () => void;
6
+ export interface NeoMarketplaceCardProps extends Omit<NeoCardSmallProps, 'size'> {
39
7
  }
40
8
  /**
41
- * NeoMarketplaceCard - Selectable card component for marketplace items
42
- *
43
- * A fixed-size card (160x160px) displaying a logo, recipe count, title, and description.
44
- * Supports selected (active), disabled, and focused states.
9
+ * @deprecated Use `NeoCard` with `size="small"` instead.
45
10
  *
46
11
  * @example
47
12
  * ```tsx
48
- * <NeoMarketplaceCard
49
- * logo={<JavaLogo />}
50
- * recipeCount="1,260 recipes"
51
- * title="Java"
52
- * description="Basic building blocks for transforming Java..."
53
- * selected={false}
54
- * disabled={false}
55
- * onClick={() => console.log('clicked')}
56
- * />
57
- * ```
58
- *
59
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4286-1635&t=Bo58EpFmg6ILJtmv-11
13
+ * // Before
14
+ * <NeoMarketplaceCard logo={...} title="Java" ... />
60
15
  *
61
- * Figma Props Mapping:
62
- * - State="Active" → selected={true}
63
- * - State="Disabled" → disabled={true}
64
- * - State="Focused" → CSS :focus-visible state (not a prop)
65
- * - State="Hover" → CSS :hover state (not a prop)
66
- * - State="Default" → Base state (no props)
67
- *
68
- * Design Tokens Used:
69
- * - semanticColors.surfaces.card (#FFFFFF) - Default card background
70
- * - semanticColors.status.info.light (#f2f3ff) - Active/focused card background
71
- * - semanticColors.border.primary (#d1d5db) - Default border
72
- * - semanticColors.buttons.primary.default (#2f42ff) - Active/focused border
73
- * - shadows.focusWhite1 - Inner white focus ring (2px spread)
74
- * - shadows.focusBlue2 - Outer blue focus ring (4px spread)
75
- * - colors.grey[800] (#1F2937) - Text color
76
- * - typography.fontSize.xxs (10px) - Recipe count
77
- * - typography.fontSize.xs (12px) - Description
78
- * - typography.fontSize.h6 (16px) - Title
79
- * - typography.fontWeight.semiBold (600) - Title and recipe count
80
- * - typography.fontWeight.regular (400) - Description
16
+ * // After
17
+ * <NeoCard size="small" logo={...} title="Java" ... />
18
+ * ```
81
19
  */
82
20
  export declare const NeoMarketplaceCard: {
83
- ({ logo, recipeCount, title, description, selected, disabled, onClick, ...props }: NeoMarketplaceCardProps): import("react/jsx-runtime").JSX.Element;
21
+ (props: NeoMarketplaceCardProps): import("react/jsx-runtime").JSX.Element;
84
22
  displayName: string;
85
23
  };
@@ -1,91 +1,23 @@
1
- import { type CardProps } from '@mui/material/Card';
2
- import type { ReactNode } from 'react';
3
- type LargeCardState = 'default' | 'active' | 'disabled' | 'focused';
4
- type LargeCardTheme = 'light' | 'dark';
5
- export interface NeoMarketplaceLargeCardProps extends Omit<CardProps, 'children' | 'title'> {
6
- /**
7
- * The visual state of the card
8
- * @default "default"
9
- * @figma State
10
- */
11
- state?: LargeCardState;
12
- /**
13
- * The theme variant of the card
14
- * @default "light"
15
- * @figma Theme
16
- */
17
- cardTheme?: LargeCardTheme;
18
- /**
19
- * Whether to show the icon
20
- * @default true
21
- * @figma Show Icon
22
- */
23
- showIcon?: boolean;
24
- /**
25
- * Whether to show the gel brand icon
26
- * @default true
27
- * @figma Show Gel
28
- */
29
- showGel?: boolean;
30
- /**
31
- * Whether to show the button area
32
- * @default true
33
- * @figma Show Buttons
34
- */
35
- showButtons?: boolean;
36
- /**
37
- * Icon element to display in the header row (rendered at 20x20)
38
- */
39
- icon?: ReactNode;
40
- /**
41
- * Gel/brand icon to display in the header row (rendered at 20x20)
42
- */
43
- gel?: ReactNode;
44
- /**
45
- * Title text displayed inline in the header row with icon and gel
46
- */
47
- title?: ReactNode;
48
- /**
49
- * Description text displayed below the header row
50
- */
51
- children?: ReactNode;
52
- /**
53
- * Button/action elements for the footer row
54
- */
55
- actions?: ReactNode;
56
- /**
57
- * Click handler for the card
58
- */
59
- onClick?: () => void;
1
+ import type { NeoCardLargeProps } from '../Card/Card';
2
+ /**
3
+ * Props for the NeoMarketplaceLargeCard component
4
+ * @deprecated Use NeoCardLargeProps with NeoCard instead
5
+ */
6
+ export interface NeoMarketplaceLargeCardProps extends Omit<NeoCardLargeProps, 'size'> {
60
7
  }
61
8
  /**
62
- * NeoMarketplaceLargeCard - A large marketplace card with state and theme variants
63
- *
64
- * A 340x162px card with optional icon, gel brand icon, title, description, and action buttons.
65
- * Icon, gel, and title display inline in a header row.
66
- * Supports 4 states (default, active, disabled, focused) and 2 themes (light, dark).
67
- *
68
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=5925-11
9
+ * @deprecated Use `NeoCard` with `size="large"` instead.
69
10
  *
70
- * Figma Props Mapping:
71
- * - State → state (Default/Active/Disabled/Focused)
72
- * - Theme → cardTheme (Dark/Light)
73
- * - Show Icon → showIcon
74
- * - Show Gel → showGel
75
- * - Show Buttons → showButtons
11
+ * @example
12
+ * ```tsx
13
+ * // Before
14
+ * <NeoMarketplaceLargeCard cardTheme="light" ... />
76
15
  *
77
- * Design Tokens Used:
78
- * - semanticColors.surfaces.card (#ffffff) - Light theme background
79
- * - colors.grey[800] (#1f2937) - Dark theme background
80
- * - semanticColors.border.primary (#d1d5db) - Default border (50% opacity on dark)
81
- * - semanticColors.buttons.primary.default (#2f42ff) - Active/focused border (light theme)
82
- * - colors.digitalGreen[300] (#88fe9b) - Active/focused border (dark theme)
83
- * - borderRadius.xS (4px) - Corner radius
84
- * - shadows.focusWhite1 + shadows.focusBlue2 - Focus ring
85
- * - shadows.card - Active state shadow
16
+ * // After
17
+ * <NeoCard size="large" cardTheme="light" ... />
18
+ * ```
86
19
  */
87
20
  export declare const NeoMarketplaceLargeCard: {
88
- ({ state, cardTheme, showIcon, showGel, showButtons, icon, gel, title, children, actions, onClick, ...props }: NeoMarketplaceLargeCardProps): import("react/jsx-runtime").JSX.Element;
21
+ (props: NeoMarketplaceLargeCardProps): import("react/jsx-runtime").JSX.Element;
89
22
  displayName: string;
90
23
  };
91
- export {};
package/dist/index.d.ts CHANGED
@@ -2675,87 +2675,80 @@ declare const NeoTypologyControl: {
2675
2675
  displayName: string;
2676
2676
  };
2677
2677
 
2678
- /**
2679
- * Props for the NeoMarketplaceCard component
2680
- */
2681
- interface NeoMarketplaceCardProps extends Omit<CardProps, 'children' | 'title'> {
2682
- /**
2683
- * The logo to display (48x48px ReactNode)
2684
- */
2678
+ type NeoCardSize = 'small' | 'large';
2679
+ interface NeoCardSmallProps extends Omit<CardProps, 'children' | 'title'> {
2680
+ size: 'small';
2685
2681
  logo: ReactNode;
2686
- /**
2687
- * The recipe count text (e.g., "1,260 recipes")
2688
- */
2689
2682
  recipeCount: string;
2690
- /**
2691
- * The title text or element
2692
- */
2693
2683
  title: ReactNode | string;
2694
- /**
2695
- * The description text
2696
- */
2697
2684
  description: string;
2698
- /**
2699
- * Whether the card is in selected/active state
2700
- * @default false
2701
- * @figma State (Active)
2702
- */
2703
2685
  selected?: boolean;
2704
- /**
2705
- * Whether the card is disabled
2706
- * @default false
2707
- * @figma State (Disabled)
2708
- */
2709
2686
  disabled?: boolean;
2710
- /**
2711
- * Click handler for the card
2712
- */
2713
2687
  onClick?: () => void;
2714
2688
  }
2689
+ interface NeoCardLargeProps extends Omit<CardProps, 'children' | 'title'> {
2690
+ size: 'large';
2691
+ state?: 'default' | 'active' | 'disabled' | 'focused';
2692
+ cardTheme?: 'light' | 'dark';
2693
+ showIcon?: boolean;
2694
+ showGel?: boolean;
2695
+ showButtons?: boolean;
2696
+ icon?: ReactNode;
2697
+ gel?: ReactNode;
2698
+ title?: ReactNode;
2699
+ children?: ReactNode;
2700
+ actions?: ReactNode;
2701
+ onClick?: () => void;
2702
+ }
2703
+ type NeoCardProps = NeoCardSmallProps | NeoCardLargeProps;
2704
+ declare const NeoCard: {
2705
+ (props: NeoCardProps): react_jsx_runtime.JSX.Element;
2706
+ displayName: string;
2707
+ };
2708
+
2709
+ /**
2710
+ * Props for the NeoMarketplaceCard component
2711
+ * @deprecated Use NeoCardSmallProps with NeoCard instead
2712
+ */
2713
+ interface NeoMarketplaceCardProps extends Omit<NeoCardSmallProps, 'size'> {
2714
+ }
2715
2715
  /**
2716
- * NeoMarketplaceCard - Selectable card component for marketplace items
2717
- *
2718
- * A fixed-size card (160x160px) displaying a logo, recipe count, title, and description.
2719
- * Supports selected (active), disabled, and focused states.
2716
+ * @deprecated Use `NeoCard` with `size="small"` instead.
2720
2717
  *
2721
2718
  * @example
2722
2719
  * ```tsx
2723
- * <NeoMarketplaceCard
2724
- * logo={<JavaLogo />}
2725
- * recipeCount="1,260 recipes"
2726
- * title="Java"
2727
- * description="Basic building blocks for transforming Java..."
2728
- * selected={false}
2729
- * disabled={false}
2730
- * onClick={() => console.log('clicked')}
2731
- * />
2732
- * ```
2720
+ * // Before
2721
+ * <NeoMarketplaceCard logo={...} title="Java" ... />
2733
2722
  *
2734
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4286-1635&t=Bo58EpFmg6ILJtmv-11
2723
+ * // After
2724
+ * <NeoCard size="small" logo={...} title="Java" ... />
2725
+ * ```
2726
+ */
2727
+ declare const NeoMarketplaceCard: {
2728
+ (props: NeoMarketplaceCardProps): react_jsx_runtime.JSX.Element;
2729
+ displayName: string;
2730
+ };
2731
+
2732
+ /**
2733
+ * Props for the NeoMarketplaceLargeCard component
2734
+ * @deprecated Use NeoCardLargeProps with NeoCard instead
2735
+ */
2736
+ interface NeoMarketplaceLargeCardProps extends Omit<NeoCardLargeProps, 'size'> {
2737
+ }
2738
+ /**
2739
+ * @deprecated Use `NeoCard` with `size="large"` instead.
2735
2740
  *
2736
- * Figma Props Mapping:
2737
- * - State="Active" → selected={true}
2738
- * - State="Disabled" → disabled={true}
2739
- * - State="Focused" CSS :focus-visible state (not a prop)
2740
- * - State="Hover" → CSS :hover state (not a prop)
2741
- * - State="Default" → Base state (no props)
2741
+ * @example
2742
+ * ```tsx
2743
+ * // Before
2744
+ * <NeoMarketplaceLargeCard cardTheme="light" ... />
2742
2745
  *
2743
- * Design Tokens Used:
2744
- * - semanticColors.surfaces.card (#FFFFFF) - Default card background
2745
- * - semanticColors.status.info.light (#f2f3ff) - Active/focused card background
2746
- * - semanticColors.border.primary (#d1d5db) - Default border
2747
- * - semanticColors.buttons.primary.default (#2f42ff) - Active/focused border
2748
- * - shadows.focusWhite1 - Inner white focus ring (2px spread)
2749
- * - shadows.focusBlue2 - Outer blue focus ring (4px spread)
2750
- * - colors.grey[800] (#1F2937) - Text color
2751
- * - typography.fontSize.xxs (10px) - Recipe count
2752
- * - typography.fontSize.xs (12px) - Description
2753
- * - typography.fontSize.h6 (16px) - Title
2754
- * - typography.fontWeight.semiBold (600) - Title and recipe count
2755
- * - typography.fontWeight.regular (400) - Description
2746
+ * // After
2747
+ * <NeoCard size="large" cardTheme="light" ... />
2748
+ * ```
2756
2749
  */
2757
- declare const NeoMarketplaceCard: {
2758
- ({ logo, recipeCount, title, description, selected, disabled, onClick, ...props }: NeoMarketplaceCardProps): react_jsx_runtime.JSX.Element;
2750
+ declare const NeoMarketplaceLargeCard: {
2751
+ (props: NeoMarketplaceLargeCardProps): react_jsx_runtime.JSX.Element;
2759
2752
  displayName: string;
2760
2753
  };
2761
2754
 
@@ -2952,5 +2945,5 @@ declare module '@mui/x-data-grid-pro' {
2952
2945
 
2953
2946
  declare const version: string
2954
2947
 
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 };
2948
+ export { ActivityScene, CIRCLE_RADIUS, NeoActivityHeader, NeoActivityIndicatorCell, NeoAvatar, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonTab, NeoButtonTabGroup, NeoCard, 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, NeoMarketplaceLargeCard, 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 };
2949
+ export type { ActivityColor, ActivityEvent, ActivityHeaderSize, BreadcrumbItem, DataGridSize, NeoActivityHeaderProps, NeoActivityIndicatorCellProps, NeoAvatarProps, NeoBadgeProps, NeoBannerProps, NeoBreadcrumbLinkProps, NeoBreadcrumbsProps, NeoButtonProps, NeoButtonTabGroupProps, NeoButtonTabProps, NeoCardLargeProps, NeoCardProps, NeoCardSize, NeoCardSmallProps, NeoCheckboxProps, NeoCodeSnippetProps, NeoDataGridCellContentProps, NeoDataGridHeaderLabelProps, NeoDataGridProps, NeoDatePickerProps, NeoDividerProps, NeoDotProps, NeoDropdownMenuItemProps, NeoDropdownMenuProps, NeoDropdownProps, NeoFilterChipProps, NeoFooterProps, NeoGeneralAvatarProps, NeoIconButtonProps, NeoInfiniteScrollGridProps, NeoInputFieldProps, NeoListItemButtonProps, NeoListItemProps, NeoLoadingSpinnerProps, NeoMarketplaceCardProps, NeoMarketplaceLargeCardProps, 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 };