@moderneinc/neo-styled-components 4.0.0-next.b214ff → 4.0.0-next.e0896f

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/Tag/Tag.d.ts CHANGED
@@ -16,24 +16,24 @@ declare module '@mui/material/Chip' {
16
16
  type NeoTagOwnProps = {
17
17
  /**
18
18
  * The size of the tag
19
- * @figma m (sm|md|lg)
19
+ * @figma Size (Small|Medium|Large)
20
20
  * @default "small"
21
21
  */
22
22
  size?: 'small' | 'medium' | 'large';
23
23
  /**
24
24
  * The variant style of the tag
25
- * @figma type (light|dark)
25
+ * @figma Variant (Subtle|Filled)
26
26
  * @default "outlined"
27
27
  */
28
28
  variant?: 'outlined' | 'filled';
29
29
  /**
30
- * The color/state of the tag
31
- * @figma state (Neutral|Error|Warning|Success|Info|Violet|Beta)
30
+ * The intent/purpose of the tag
31
+ * @figma Intent (Neutral|Error|Warning|Success|Info|Violet)
32
32
  * @default "default"
33
33
  */
34
- color?: 'default' | 'error' | 'warning' | 'success' | 'info' | 'violet' | 'beta';
34
+ intent?: 'default' | 'error' | 'warning' | 'success' | 'info' | 'violet' | 'beta';
35
35
  };
36
- export type NeoTagProps<C extends ElementType = typeof Chip> = NeoTagOwnProps & Omit<ChipProps, keyof NeoTagOwnProps | 'component'> & Omit<ComponentPropsWithoutRef<C>, keyof NeoTagOwnProps | keyof ChipProps> & {
36
+ export type NeoTagProps<C extends ElementType = typeof Chip> = NeoTagOwnProps & Omit<ChipProps, keyof NeoTagOwnProps | 'component' | 'color'> & Omit<ComponentPropsWithoutRef<C>, keyof NeoTagOwnProps | keyof ChipProps> & {
37
37
  component?: C;
38
38
  };
39
39
  /**
@@ -42,12 +42,12 @@ export type NeoTagProps<C extends ElementType = typeof Chip> = NeoTagOwnProps &
42
42
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4120-34533
43
43
  *
44
44
  * Figma Props Mapping:
45
- * - m (sm|md|lg) → size (small|medium|large)
46
- * - type (light|dark) → variant (outlined|filled)
47
- * - state (Neutral|Error|Warning|Success|Info|Violet|Beta) → color (default|error|warning|success|info|violet|beta)
48
- * - Label text → label prop
45
+ * - Size (Small|Medium|Large) → size (small|medium|large)
46
+ * - Variant (Subtle|Filled) → variant (outlined|filled)
47
+ * - Intent (Neutral|Error|Warning|Success|Info|Violet|Beta) → intent (default|error|warning|success|info|violet|beta)
48
+ * - TEXT Label → label prop
49
49
  */
50
- export declare function NeoTag<C extends ElementType = typeof Chip>({ size, variant, ...props }: NeoTagProps<C>): import("react/jsx-runtime").JSX.Element;
50
+ export declare function NeoTag<C extends ElementType = typeof Chip>({ size, variant, intent, ...props }: NeoTagProps<C>): import("react/jsx-runtime").JSX.Element;
51
51
  export declare namespace NeoTag {
52
52
  var displayName: string;
53
53
  }
@@ -1,12 +1,23 @@
1
1
  import { type AlertProps } from '@mui/material/Alert';
2
2
  import Button from '@mui/material/Button';
3
3
  import type { ReactNode } from 'react';
4
+ type Intent = 'neutral' | 'info' | 'success' | 'error' | 'warning';
5
+ type ToastType = 'outlined' | 'filled';
4
6
  export interface NeoToastProps extends Omit<AlertProps, 'variant' | 'severity' | 'color'> {
5
7
  /**
6
- * The visual style variant of the toast
7
- * @default "default"
8
+ * The intent/purpose of the toast
9
+ * @default "neutral"
10
+ *
11
+ * @figmaPropMapping Intent (Neutral|Error|Success|Info|Warning) → intent
8
12
  */
9
- variant?: 'default' | 'dark' | 'brand' | 'error' | 'success' | 'info';
13
+ intent?: Intent;
14
+ /**
15
+ * Visual type: outlined (light bg + border) or filled (solid bg)
16
+ * @default "outlined"
17
+ *
18
+ * @figmaPropMapping Style (Outlined|Filled) → type
19
+ */
20
+ type?: ToastType;
10
21
  /**
11
22
  * The title/header text
12
23
  */
@@ -17,7 +28,7 @@ export interface NeoToastProps extends Omit<AlertProps, 'variant' | 'severity' |
17
28
  message?: string;
18
29
  /**
19
30
  * Whether to show the close button
20
- * @default true
31
+ * @default false
21
32
  */
22
33
  showClose?: boolean;
23
34
  /**
@@ -34,26 +45,21 @@ export interface NeoToastProps extends Omit<AlertProps, 'variant' | 'severity' |
34
45
  * NeoToast - Notification/Toast component based on MUI Alert
35
46
  *
36
47
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4122-37223
37
- *
38
- * Figma Props Mapping:
39
- * - type (Light mode|Dark mode|Brand color|Error|Success|Info) → variant (default|dark|brand|error|success|info)
40
- * - header → title (string)
41
- * - supportingText → message (string)
42
- * - xCloseButton → showClose (boolean)
43
- * - actions → actions (ReactNode)
44
48
  */
45
49
  export declare const NeoToast: {
46
- ({ variant, title, message, showClose, actions, onClose, ...props }: NeoToastProps): import("react/jsx-runtime").JSX.Element;
50
+ ({ intent, type, title, message, showClose, actions, onClose, ...props }: NeoToastProps): import("react/jsx-runtime").JSX.Element;
47
51
  displayName: string;
48
52
  };
49
53
  /**
50
54
  * Helper component for creating toast action buttons with proper styling
51
55
  */
52
56
  export declare const NeoToastButton: {
53
- ({ primary, variant, children, ...props }: {
57
+ ({ primary, intent, type, children, ...props }: {
54
58
  primary?: boolean;
55
- variant?: NeoToastProps["variant"];
59
+ intent?: Intent;
60
+ type?: ToastType;
56
61
  children: ReactNode;
57
62
  } & Omit<React.ComponentProps<typeof Button>, "variant">): import("react/jsx-runtime").JSX.Element;
58
63
  displayName: string;
59
64
  };
65
+ export {};
@@ -10,7 +10,7 @@ export interface NeoTooltipProps extends Omit<TooltipProps, 'title' | 'variant'>
10
10
  /**
11
11
  * The visual style variant
12
12
  * @default "light"
13
- * @figma Type
13
+ * @figma Theme
14
14
  */
15
15
  variant?: TooltipVariant;
16
16
  /**
@@ -35,8 +35,8 @@ export interface NeoTooltipProps extends Omit<TooltipProps, 'title' | 'variant'>
35
35
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4091-26557&t=Bo58EpFmg6ILJtmv-11
36
36
  *
37
37
  * Figma Props Mapping:
38
- * - Type (Light mode|Dark mode|Brand color) → variant ('light'|'dark'|'brand')
39
- * - Arrow → arrow (boolean) + placement (top/bottom/left/right/etc)
38
+ * - Theme (Light mode|Dark mode|Brand color) → variant ('light'|'dark'|'brand')
39
+ * - Placement → arrow (boolean) + placement (top/bottom/left/right/etc)
40
40
  * - Supporting text (True|False) → description (string|undefined)
41
41
  * - text → title (string, literal content)
42
42
  *
package/dist/index.d.ts CHANGED
@@ -362,7 +362,7 @@ declare const NeoBadge: {
362
362
  displayName: string;
363
363
  };
364
364
 
365
- type Intent$1 = 'info' | 'success' | 'error' | 'warning' | 'neutral';
365
+ type Intent$2 = 'info' | 'success' | 'error' | 'warning' | 'neutral';
366
366
  type BannerType = 'outlined' | 'filled';
367
367
  interface NeoBannerProps extends Omit<AlertProps, 'variant' | 'severity' | 'color'> {
368
368
  /**
@@ -371,7 +371,7 @@ interface NeoBannerProps extends Omit<AlertProps, 'variant' | 'severity' | 'colo
371
371
  *
372
372
  * @figmaPropMapping Intention (Info|Success|Error|Warning|Neutral) → intent
373
373
  */
374
- intent?: Intent$1;
374
+ intent?: Intent$2;
375
375
  /**
376
376
  * Visual type: outlined (light bg) or filled (solid bg)
377
377
  * @default "outlined"
@@ -2104,7 +2104,7 @@ declare const NeoSkeleton: {
2104
2104
  displayName: string;
2105
2105
  };
2106
2106
 
2107
- type Intent = 'success' | 'error' | 'warning' | 'offline' | 'info';
2107
+ type Intent$1 = 'success' | 'error' | 'warning' | 'offline' | 'info';
2108
2108
  type AlertType = 'outlined' | 'filled';
2109
2109
  interface NeoAlertProps extends Omit<AlertProps, 'severity' | 'variant' | 'color'> {
2110
2110
  /**
@@ -2112,7 +2112,7 @@ interface NeoAlertProps extends Omit<AlertProps, 'severity' | 'variant' | 'color
2112
2112
  * @default "success"
2113
2113
  * @figma Intent
2114
2114
  */
2115
- intent?: Intent;
2115
+ intent?: Intent$1;
2116
2116
  /**
2117
2117
  * Visual type: outlined (light bg) or filled (solid bg)
2118
2118
  * @default "outlined"
@@ -2215,24 +2215,24 @@ declare module '@mui/material/Chip' {
2215
2215
  type NeoTagOwnProps = {
2216
2216
  /**
2217
2217
  * The size of the tag
2218
- * @figma m (sm|md|lg)
2218
+ * @figma Size (Small|Medium|Large)
2219
2219
  * @default "small"
2220
2220
  */
2221
2221
  size?: 'small' | 'medium' | 'large';
2222
2222
  /**
2223
2223
  * The variant style of the tag
2224
- * @figma type (light|dark)
2224
+ * @figma Variant (Subtle|Filled)
2225
2225
  * @default "outlined"
2226
2226
  */
2227
2227
  variant?: 'outlined' | 'filled';
2228
2228
  /**
2229
- * The color/state of the tag
2230
- * @figma state (Neutral|Error|Warning|Success|Info|Violet|Beta)
2229
+ * The intent/purpose of the tag
2230
+ * @figma Intent (Neutral|Error|Warning|Success|Info|Violet)
2231
2231
  * @default "default"
2232
2232
  */
2233
- color?: 'default' | 'error' | 'warning' | 'success' | 'info' | 'violet' | 'beta';
2233
+ intent?: 'default' | 'error' | 'warning' | 'success' | 'info' | 'violet' | 'beta';
2234
2234
  };
2235
- type NeoTagProps<C extends ElementType = typeof Chip> = NeoTagOwnProps & Omit<ChipProps, keyof NeoTagOwnProps | 'component'> & Omit<ComponentPropsWithoutRef<C>, keyof NeoTagOwnProps | keyof ChipProps> & {
2235
+ type NeoTagProps<C extends ElementType = typeof Chip> = NeoTagOwnProps & Omit<ChipProps, keyof NeoTagOwnProps | 'component' | 'color'> & Omit<ComponentPropsWithoutRef<C>, keyof NeoTagOwnProps | keyof ChipProps> & {
2236
2236
  component?: C;
2237
2237
  };
2238
2238
  /**
@@ -2241,22 +2241,33 @@ type NeoTagProps<C extends ElementType = typeof Chip> = NeoTagOwnProps & Omit<Ch
2241
2241
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4120-34533
2242
2242
  *
2243
2243
  * Figma Props Mapping:
2244
- * - m (sm|md|lg) → size (small|medium|large)
2245
- * - type (light|dark) → variant (outlined|filled)
2246
- * - state (Neutral|Error|Warning|Success|Info|Violet|Beta) → color (default|error|warning|success|info|violet|beta)
2247
- * - Label text → label prop
2244
+ * - Size (Small|Medium|Large) → size (small|medium|large)
2245
+ * - Variant (Subtle|Filled) → variant (outlined|filled)
2246
+ * - Intent (Neutral|Error|Warning|Success|Info|Violet|Beta) → intent (default|error|warning|success|info|violet|beta)
2247
+ * - TEXT Label → label prop
2248
2248
  */
2249
- declare function NeoTag<C extends ElementType = typeof Chip>({ size, variant, ...props }: NeoTagProps<C>): react_jsx_runtime.JSX.Element;
2249
+ declare function NeoTag<C extends ElementType = typeof Chip>({ size, variant, intent, ...props }: NeoTagProps<C>): react_jsx_runtime.JSX.Element;
2250
2250
  declare namespace NeoTag {
2251
2251
  var displayName: string;
2252
2252
  }
2253
2253
 
2254
+ type Intent = 'neutral' | 'info' | 'success' | 'error' | 'warning';
2255
+ type ToastType = 'outlined' | 'filled';
2254
2256
  interface NeoToastProps extends Omit<AlertProps, 'variant' | 'severity' | 'color'> {
2255
2257
  /**
2256
- * The visual style variant of the toast
2257
- * @default "default"
2258
+ * The intent/purpose of the toast
2259
+ * @default "neutral"
2260
+ *
2261
+ * @figmaPropMapping Intent (Neutral|Error|Success|Info|Warning) → intent
2262
+ */
2263
+ intent?: Intent;
2264
+ /**
2265
+ * Visual type: outlined (light bg + border) or filled (solid bg)
2266
+ * @default "outlined"
2267
+ *
2268
+ * @figmaPropMapping Style (Outlined|Filled) → type
2258
2269
  */
2259
- variant?: 'default' | 'dark' | 'brand' | 'error' | 'success' | 'info';
2270
+ type?: ToastType;
2260
2271
  /**
2261
2272
  * The title/header text
2262
2273
  */
@@ -2267,7 +2278,7 @@ interface NeoToastProps extends Omit<AlertProps, 'variant' | 'severity' | 'color
2267
2278
  message?: string;
2268
2279
  /**
2269
2280
  * Whether to show the close button
2270
- * @default true
2281
+ * @default false
2271
2282
  */
2272
2283
  showClose?: boolean;
2273
2284
  /**
@@ -2284,25 +2295,19 @@ interface NeoToastProps extends Omit<AlertProps, 'variant' | 'severity' | 'color
2284
2295
  * NeoToast - Notification/Toast component based on MUI Alert
2285
2296
  *
2286
2297
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4122-37223
2287
- *
2288
- * Figma Props Mapping:
2289
- * - type (Light mode|Dark mode|Brand color|Error|Success|Info) → variant (default|dark|brand|error|success|info)
2290
- * - header → title (string)
2291
- * - supportingText → message (string)
2292
- * - xCloseButton → showClose (boolean)
2293
- * - actions → actions (ReactNode)
2294
2298
  */
2295
2299
  declare const NeoToast: {
2296
- ({ variant, title, message, showClose, actions, onClose, ...props }: NeoToastProps): react_jsx_runtime.JSX.Element;
2300
+ ({ intent, type, title, message, showClose, actions, onClose, ...props }: NeoToastProps): react_jsx_runtime.JSX.Element;
2297
2301
  displayName: string;
2298
2302
  };
2299
2303
  /**
2300
2304
  * Helper component for creating toast action buttons with proper styling
2301
2305
  */
2302
2306
  declare const NeoToastButton: {
2303
- ({ primary, variant, children, ...props }: {
2307
+ ({ primary, intent, type, children, ...props }: {
2304
2308
  primary?: boolean;
2305
- variant?: NeoToastProps["variant"];
2309
+ intent?: Intent;
2310
+ type?: ToastType;
2306
2311
  children: ReactNode;
2307
2312
  } & Omit<React.ComponentProps<typeof Button>, "variant">): react_jsx_runtime.JSX.Element;
2308
2313
  displayName: string;
@@ -2593,7 +2598,7 @@ interface NeoTooltipProps extends Omit<TooltipProps, 'title' | 'variant'> {
2593
2598
  /**
2594
2599
  * The visual style variant
2595
2600
  * @default "light"
2596
- * @figma Type
2601
+ * @figma Theme
2597
2602
  */
2598
2603
  variant?: TooltipVariant;
2599
2604
  /**
@@ -2618,8 +2623,8 @@ interface NeoTooltipProps extends Omit<TooltipProps, 'title' | 'variant'> {
2618
2623
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4091-26557&t=Bo58EpFmg6ILJtmv-11
2619
2624
  *
2620
2625
  * Figma Props Mapping:
2621
- * - Type (Light mode|Dark mode|Brand color) → variant ('light'|'dark'|'brand')
2622
- * - Arrow → arrow (boolean) + placement (top/bottom/left/right/etc)
2626
+ * - Theme (Light mode|Dark mode|Brand color) → variant ('light'|'dark'|'brand')
2627
+ * - Placement → arrow (boolean) + placement (top/bottom/left/right/etc)
2623
2628
  * - Supporting text (True|False) → description (string|undefined)
2624
2629
  * - text → title (string, literal content)
2625
2630
  *
@@ -2690,52 +2695,6 @@ declare const NeoCard: {
2690
2695
  displayName: string;
2691
2696
  };
2692
2697
 
2693
- /**
2694
- * Props for the NeoMarketplaceCard component
2695
- * @deprecated Use NeoCardSmallProps with NeoCard instead
2696
- */
2697
- interface NeoMarketplaceCardProps extends Omit<NeoCardSmallProps, 'size'> {
2698
- }
2699
- /**
2700
- * @deprecated Use `NeoCard` with `size="small"` instead.
2701
- *
2702
- * @example
2703
- * ```tsx
2704
- * // Before
2705
- * <NeoMarketplaceCard logo={...} title="Java" ... />
2706
- *
2707
- * // After
2708
- * <NeoCard size="small" logo={...} title="Java" ... />
2709
- * ```
2710
- */
2711
- declare const NeoMarketplaceCard: {
2712
- (props: NeoMarketplaceCardProps): react_jsx_runtime.JSX.Element;
2713
- displayName: string;
2714
- };
2715
-
2716
- /**
2717
- * Props for the NeoMarketplaceLargeCard component
2718
- * @deprecated Use NeoCardLargeProps with NeoCard instead
2719
- */
2720
- interface NeoMarketplaceLargeCardProps extends Omit<NeoCardLargeProps, 'size'> {
2721
- }
2722
- /**
2723
- * @deprecated Use `NeoCard` with `size="large"` instead.
2724
- *
2725
- * @example
2726
- * ```tsx
2727
- * // Before
2728
- * <NeoMarketplaceLargeCard cardTheme="light" ... />
2729
- *
2730
- * // After
2731
- * <NeoCard size="large" cardTheme="light" ... />
2732
- * ```
2733
- */
2734
- declare const NeoMarketplaceLargeCard: {
2735
- (props: NeoMarketplaceLargeCardProps): react_jsx_runtime.JSX.Element;
2736
- displayName: string;
2737
- };
2738
-
2739
2698
  /**
2740
2699
  * NeoDataGridColumnsPanel - Custom columns panel for NeoDataGrid matching Figma design
2741
2700
  *
@@ -2927,5 +2886,5 @@ declare module '@mui/x-data-grid-pro' {
2927
2886
 
2928
2887
  declare const version: string
2929
2888
 
2930
- export { ActivityScene, CIRCLE_RADIUS, NeoActivityHeader, NeoActivityIndicatorCell, NeoAlert, NeoAvatar, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonTab, NeoButtonTabGroup, NeoCard, NeoCheckbox, NeoCodeSnippet, NeoDataGrid, NeoDataGridCellContent, NeoDataGridColumnsButton, NeoDataGridColumnsPanel, NeoDataGridFilterPanel, NeoDataGridFilterPanelAddIcon, NeoDataGridFilterPanelDeleteIcon, NeoDataGridFilterPanelRemoveAllIcon, NeoDataGridFiltersButton, NeoDataGridHeaderLabel, NeoSelect as NeoDataGridSelect, NeoDatePicker, NeoDivider, NeoDot, NeoSelect as NeoDropdown, NeoMenu as NeoDropdownMenu, NeoMenuItem as NeoDropdownMenuItem, NeoMenuItem as NeoDropdownOption, NeoFilterChip, NeoFooter, NeoGeneralAvatar, NeoIconButton, NeoInfiniteScrollGrid, NeoInputField, NeoListItem, NeoListItemButton, NeoLoadingSpinner, NeoMarketplaceCard, NeoMarketplaceLargeCard, NeoMenu, NeoMenuItem, NeoModal, NeoModalContent, NeoModalFooter, NeoModalHeader, NeoMultiBadgesCell, NeoNavigationAvatar, NeoNavigationItem, NeoPageContent, NeoPaginatedGrid, NeoProgressbar, NeoQuickFilter, NeoRadio, NeoSearchChip, NeoSelect, NeoMenuItem as NeoSelectOption, NeoSkeleton, NeoStatusBadgeCell, NeoTab, NeoTabs, NeoTag, NeoToast, NeoToastButton, NeoToggle, NeoToolbar, NeoTooltip, NeoTreeItem, NeoTreeView, StyledToggleButton as NeoTypologyButton, NeoTypologyControl, NeoUserAvatarCell, SortedAscendingIcon, SortedDescendingIcon, UnsortedIcon, getDataGridHeaderStyles, version };
2931
- export type { ActivityColor, ActivityEvent, ActivityHeaderSize, BreadcrumbItem, DataGridSize, NeoActivityHeaderProps, NeoActivityIndicatorCellProps, NeoAlertProps, NeoAvatarProps, NeoBadgeProps, NeoBannerProps, NeoBreadcrumbLinkProps, NeoBreadcrumbsProps, NeoButtonProps, NeoButtonTabGroupProps, NeoButtonTabProps, NeoCardLargeProps, NeoCardProps, NeoCardSize, NeoCardSmallProps, NeoCheckboxProps, NeoCodeSnippetProps, NeoDataGridCellContentProps, NeoDataGridHeaderLabelProps, NeoDataGridProps, NeoDatePickerProps, NeoDividerProps, NeoDotProps, NeoMenuItemProps as NeoDropdownMenuItemProps, NeoMenuProps as NeoDropdownMenuProps, NeoSelectProps as NeoDropdownProps, NeoFilterChipProps, NeoFooterProps, NeoGeneralAvatarProps, NeoIconButtonProps, NeoInfiniteScrollGridProps, NeoInputFieldProps, NeoListItemButtonProps, NeoListItemProps, NeoLoadingSpinnerProps, NeoMarketplaceCardProps, NeoMarketplaceLargeCardProps, NeoMenuItemProps, NeoMenuProps, NeoModalContentProps, NeoModalFooterProps, NeoModalHeaderProps, NeoModalProps, NeoMultiBadgesCellProps, NeoNavigationAvatarProps, NeoNavigationItemProps, NeoPageContentProps, NeoPaginatedGridProps, NeoProgressbarProps, NeoQuickFilterProps, NeoRadioProps, NeoSearchChipProps, NeoSelectProps, NeoSkeletonProps, NeoStatusBadgeCellProps, NeoTabProps, NeoTagProps, NeoToastProps, NeoToggleProps, NeoToolbarProps, NeoTooltipProps, NeoTreeItemData, NeoTreeItemProps, NeoTreeViewProps, NeoTypologyControlProps, NeoUserAvatarCellProps };
2889
+ export { ActivityScene, CIRCLE_RADIUS, NeoActivityHeader, NeoActivityIndicatorCell, NeoAlert, NeoAvatar, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonTab, NeoButtonTabGroup, NeoCard, NeoCheckbox, NeoCodeSnippet, NeoDataGrid, NeoDataGridCellContent, NeoDataGridColumnsButton, NeoDataGridColumnsPanel, NeoDataGridFilterPanel, NeoDataGridFilterPanelAddIcon, NeoDataGridFilterPanelDeleteIcon, NeoDataGridFilterPanelRemoveAllIcon, NeoDataGridFiltersButton, NeoDataGridHeaderLabel, NeoSelect as NeoDataGridSelect, NeoDatePicker, NeoDivider, NeoDot, NeoSelect as NeoDropdown, NeoMenu as NeoDropdownMenu, NeoMenuItem as NeoDropdownMenuItem, NeoMenuItem as NeoDropdownOption, NeoFilterChip, NeoFooter, NeoGeneralAvatar, NeoIconButton, NeoInfiniteScrollGrid, NeoInputField, NeoListItem, NeoListItemButton, NeoLoadingSpinner, NeoMenu, NeoMenuItem, NeoModal, NeoModalContent, NeoModalFooter, NeoModalHeader, NeoMultiBadgesCell, NeoNavigationAvatar, NeoNavigationItem, NeoPageContent, NeoPaginatedGrid, NeoProgressbar, NeoQuickFilter, NeoRadio, NeoSearchChip, NeoSelect, NeoMenuItem as NeoSelectOption, NeoSkeleton, NeoStatusBadgeCell, NeoTab, NeoTabs, NeoTag, NeoToast, NeoToastButton, NeoToggle, NeoToolbar, NeoTooltip, NeoTreeItem, NeoTreeView, StyledToggleButton as NeoTypologyButton, NeoTypologyControl, NeoUserAvatarCell, SortedAscendingIcon, SortedDescendingIcon, UnsortedIcon, getDataGridHeaderStyles, version };
2890
+ export type { ActivityColor, ActivityEvent, ActivityHeaderSize, BreadcrumbItem, DataGridSize, NeoActivityHeaderProps, NeoActivityIndicatorCellProps, NeoAlertProps, NeoAvatarProps, NeoBadgeProps, NeoBannerProps, NeoBreadcrumbLinkProps, NeoBreadcrumbsProps, NeoButtonProps, NeoButtonTabGroupProps, NeoButtonTabProps, NeoCardLargeProps, NeoCardProps, NeoCardSize, NeoCardSmallProps, NeoCheckboxProps, NeoCodeSnippetProps, NeoDataGridCellContentProps, NeoDataGridHeaderLabelProps, NeoDataGridProps, NeoDatePickerProps, NeoDividerProps, NeoDotProps, NeoMenuItemProps as NeoDropdownMenuItemProps, NeoMenuProps as NeoDropdownMenuProps, NeoSelectProps as NeoDropdownProps, NeoFilterChipProps, NeoFooterProps, NeoGeneralAvatarProps, NeoIconButtonProps, NeoInfiniteScrollGridProps, NeoInputFieldProps, NeoListItemButtonProps, NeoListItemProps, NeoLoadingSpinnerProps, NeoMenuItemProps, NeoMenuProps, NeoModalContentProps, NeoModalFooterProps, NeoModalHeaderProps, NeoModalProps, NeoMultiBadgesCellProps, NeoNavigationAvatarProps, NeoNavigationItemProps, NeoPageContentProps, NeoPaginatedGridProps, NeoProgressbarProps, NeoQuickFilterProps, NeoRadioProps, NeoSearchChipProps, NeoSelectProps, NeoSkeletonProps, NeoStatusBadgeCellProps, NeoTabProps, NeoTagProps, NeoToastProps, NeoToggleProps, NeoToolbarProps, NeoTooltipProps, NeoTreeItemData, NeoTreeItemProps, NeoTreeViewProps, NeoTypologyControlProps, NeoUserAvatarCellProps };