@moderneinc/neo-styled-components 5.0.0-next.c9e7b7 → 5.0.0-next.cd1d8d

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
@@ -1,18 +1,16 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React$1 from 'react';
3
- import React__default, { ReactNode, ElementType, HTMLAttributes, ComponentPropsWithoutRef, ComponentType } from 'react';
3
+ import React__default, { ReactNode, ElementType, HTMLAttributes, ComponentPropsWithoutRef, ComponentType, FunctionComponent } from 'react';
4
4
  import { GridDensity, GridRenderCellParams, GridFilterPanel, ToolbarProps } from '@mui/x-data-grid';
5
5
  import Chip, { ChipProps } from '@mui/material/Chip';
6
6
  import { AlertProps } from '@mui/material/Alert';
7
7
  import { LinkProps } from '@mui/material/Link';
8
- import * as ButtonBase from '@mui/material/ButtonBase';
9
- import ButtonBase__default, { ButtonBaseProps } from '@mui/material/ButtonBase';
10
- import * as _mui_material_ToggleButton from '@mui/material/ToggleButton';
8
+ import ButtonBase, { ButtonBaseProps } from '@mui/material/ButtonBase';
11
9
  import { ToggleButtonProps } from '@mui/material/ToggleButton';
12
10
  import { ToggleButtonGroupProps } from '@mui/material/ToggleButtonGroup';
11
+ import { SvgIconProps } from '@mui/material/SvgIcon';
13
12
  import { CheckboxProps } from '@mui/material/Checkbox';
14
13
  import { GridDensity as GridDensity$1, DataGridProProps, GridSlots, GridColumnsPanelProps } from '@mui/x-data-grid-pro';
15
- import * as _mui_material_styles from '@mui/material/styles';
16
14
  import { SxProps, Theme, Breakpoint } from '@mui/material/styles';
17
15
  import { DividerProps } from '@mui/material/Divider';
18
16
  import { PaperProps } from '@mui/material/Paper';
@@ -25,11 +23,12 @@ import { BoxProps } from '@mui/material/Box';
25
23
  import { LinearProgressProps } from '@mui/material/LinearProgress';
26
24
  import { RadioProps } from '@mui/material/Radio';
27
25
  import * as _mui_system from '@mui/system';
26
+ import * as _mui_material from '@mui/material';
27
+ import { BoxProps as BoxProps$1 } from '@mui/material';
28
28
  import { SelectProps, SelectChangeEvent } from '@mui/material/Select';
29
29
  import { SkeletonProps } from '@mui/material/Skeleton';
30
30
  import { TableProps } from '@mui/material/Table';
31
31
  import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
32
- import * as _mui_material_Tabs from '@mui/material/Tabs';
33
32
  import { TabProps } from '@mui/material/Tab';
34
33
  import Button from '@mui/material/Button';
35
34
  import { SwitchProps } from '@mui/material/Switch';
@@ -487,7 +486,7 @@ type NeoButtonOwnProps = {
487
486
  */
488
487
  endIcon?: ReactNode;
489
488
  };
490
- type NeoButtonProps<C extends ElementType = typeof ButtonBase__default> = NeoButtonOwnProps & Omit<React__default.ComponentPropsWithoutRef<C>, keyof NeoButtonOwnProps> & {
489
+ type NeoButtonProps<C extends ElementType = typeof ButtonBase> = NeoButtonOwnProps & Omit<React__default.ComponentPropsWithoutRef<C>, keyof NeoButtonOwnProps> & {
491
490
  component?: C;
492
491
  };
493
492
  /**
@@ -504,7 +503,7 @@ type NeoButtonProps<C extends ElementType = typeof ButtonBase__default> = NeoBut
504
503
  * - State=Pressed → CSS :active
505
504
  * - State=Focused → CSS :focus-visible
506
505
  */
507
- declare function NeoButton<C extends ElementType = typeof ButtonBase__default>({ variant, size, loading, children, disabled, startIcon, endIcon, ...rest }: NeoButtonProps<C>): react_jsx_runtime.JSX.Element;
506
+ declare function NeoButton<C extends ElementType = typeof ButtonBase>({ variant, size, loading, children, disabled, startIcon, endIcon, ...rest }: NeoButtonProps<C>): react_jsx_runtime.JSX.Element;
508
507
  declare namespace NeoButton {
509
508
  var displayName: string;
510
509
  }
@@ -566,6 +565,17 @@ declare const NeoButtonTabGroup: {
566
565
  displayName: string;
567
566
  };
568
567
 
568
+ /**
569
+ * NeoCanceledIcon - Outlined circle struck through by a horizontal line.
570
+ *
571
+ * Marks a CANCELED state. Color comes entirely from `currentColor` (stroke plus
572
+ * a 10% fill tint); set it via the `color`/`sx` prop or a parent.
573
+ */
574
+ declare const NeoCanceledIcon: {
575
+ (props: SvgIconProps): react_jsx_runtime.JSX.Element;
576
+ displayName: string;
577
+ };
578
+
569
579
  interface ComponentSelector {
570
580
  __emotion_styles: any;
571
581
  }
@@ -630,11 +640,12 @@ interface StyledComponent<ComponentProps extends {}, SpecificComponentProps exte
630
640
  }
631
641
 
632
642
  /**
633
- * Custom checkbox icons matching Figma design
634
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=11487-81
643
+ * NeoCheckbox uses Lucide icons (square / square-check / square-minus): a rounded
644
+ * outline drawn in `currentColor`, with the check/minus mark sharing that stroke —
645
+ * so a single per-state `color` (set in StyledCheckbox) drives every variant.
635
646
  *
647
+ * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=11487-81
636
648
  * Checkbox sizes: xs=12x12, small=16x16, medium=20x20
637
- * Check/minus paths scaled from Untitled UI (originally 24x24)
638
649
  */
639
650
  type CheckboxSize = 'xs' | 'small' | 'medium';
640
651
  declare module '@mui/material/Checkbox' {
@@ -1471,6 +1482,47 @@ declare const NeoDot: {
1471
1482
  displayName: string;
1472
1483
  };
1473
1484
 
1485
+ /**
1486
+ * Filled status icons — sourced from the published Figma library components
1487
+ * Filled_Success / Filled_Queued / Filled_Info / Filled_Warning / Filled_Error /
1488
+ * Filled_Neutral / Filled_Canceled.
1489
+ *
1490
+ * Designed at 16px; size via `fontSize` like any MUI `SvgIcon`. Each ships its
1491
+ * intent's status color baked into the silhouette with a white inner glyph — the
1492
+ * fill is fixed, so `color`/`htmlColor` are omitted from the props. There is no
1493
+ * Filled_Active (the open-arc spinner cannot fill). Use below 18px; above that,
1494
+ * prefer the Lucide outline glyph.
1495
+ */
1496
+ type NeoFilledStatusIconProps = Omit<SvgIconProps, 'color' | 'htmlColor'>;
1497
+ declare const NeoFilledSuccess: {
1498
+ (props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
1499
+ displayName: string;
1500
+ };
1501
+ declare const NeoFilledQueued: {
1502
+ (props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
1503
+ displayName: string;
1504
+ };
1505
+ declare const NeoFilledInfo: {
1506
+ (props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
1507
+ displayName: string;
1508
+ };
1509
+ declare const NeoFilledWarning: {
1510
+ (props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
1511
+ displayName: string;
1512
+ };
1513
+ declare const NeoFilledError: {
1514
+ (props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
1515
+ displayName: string;
1516
+ };
1517
+ declare const NeoFilledNeutral: {
1518
+ (props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
1519
+ displayName: string;
1520
+ };
1521
+ declare const NeoFilledCanceled: {
1522
+ (props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
1523
+ displayName: string;
1524
+ };
1525
+
1474
1526
  interface NeoFilterChipProps extends Omit<ChipProps, 'variant' | 'color' | 'label'> {
1475
1527
  /**
1476
1528
  * The filter label text
@@ -1937,6 +1989,11 @@ type NeoNavigationItemOwnProps = {
1937
1989
  * @figma Tag
1938
1990
  */
1939
1991
  tag?: string;
1992
+ /**
1993
+ * Hover tooltip shown only when the surrounding NeoSideNav is collapsed
1994
+ * (and the label is therefore hidden).
1995
+ */
1996
+ tooltip?: ReactNode;
1940
1997
  /**
1941
1998
  * Slot props for internal sub-components.
1942
1999
  */
@@ -1955,7 +2012,7 @@ type NeoNavigationItemOwnProps = {
1955
2012
  */
1956
2013
  children?: ReactNode;
1957
2014
  };
1958
- type NeoNavigationItemProps<C extends ElementType = typeof ButtonBase__default> = NeoNavigationItemOwnProps & Omit<ButtonBaseProps, keyof NeoNavigationItemOwnProps | 'component'> & Omit<ComponentPropsWithoutRef<C>, keyof NeoNavigationItemOwnProps | keyof ButtonBaseProps> & {
2015
+ type NeoNavigationItemProps<C extends ElementType = typeof ButtonBase> = NeoNavigationItemOwnProps & Omit<ButtonBaseProps, keyof NeoNavigationItemOwnProps | 'component'> & Omit<ComponentPropsWithoutRef<C>, keyof NeoNavigationItemOwnProps | keyof ButtonBaseProps> & {
1959
2016
  component?: C;
1960
2017
  };
1961
2018
  /**
@@ -1963,7 +2020,7 @@ type NeoNavigationItemProps<C extends ElementType = typeof ButtonBase__default>
1963
2020
  *
1964
2021
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=8455-6120
1965
2022
  */
1966
- declare function NeoNavigationItem<C extends ElementType = typeof ButtonBase__default>({ icon, label, selected, tag, slotProps, children, ...props }: NeoNavigationItemProps<C>): react_jsx_runtime.JSX.Element;
2023
+ declare function NeoNavigationItem<C extends ElementType = typeof ButtonBase>({ icon, label, selected, tag, tooltip, slotProps, children, ...props }: NeoNavigationItemProps<C>): react_jsx_runtime.JSX.Element;
1967
2024
  declare namespace NeoNavigationItem {
1968
2025
  var displayName: string;
1969
2026
  }
@@ -2299,7 +2356,18 @@ declare const NeoRadio: {
2299
2356
  *
2300
2357
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=11565-7682
2301
2358
  */
2302
- declare const NeoRadioButtonWithText: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material_styles.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2359
+ declare const NeoRadioButtonWithText: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2360
+
2361
+ interface NeoRipplingDotProps extends BoxProps$1 {
2362
+ }
2363
+ /**
2364
+ * NeoRipplingDot - Animated status dot with an expanding ripple ring.
2365
+ *
2366
+ * Indicates an in-progress, indeterminate state (RUNNING / SYNCING / PROCESSING).
2367
+ * Color is inherited from `currentColor`; set it via the `color`/`sx` prop or a
2368
+ * parent. Sized to the lowercase-letter height regardless of parent fontSize.
2369
+ */
2370
+ declare const NeoRipplingDot: FunctionComponent<NeoRipplingDotProps>;
2303
2371
 
2304
2372
  interface NeoSearchChipProps extends Omit<InputBaseProps, 'startAdornment' | 'endAdornment' | 'type'> {
2305
2373
  /**
@@ -2381,12 +2449,24 @@ declare const NeoSelectField: {
2381
2449
 
2382
2450
  type NeoSelectFieldChangeEvent<T = unknown> = SelectChangeEvent<T>;
2383
2451
 
2384
- /**
2385
- * NeoSideNav
2386
- *
2387
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4065-3425
2388
- */
2389
- declare const NeoSideNav: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material_styles.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2452
+ type NeoSideNavProps = {
2453
+ /** Controlled collapsed state. */
2454
+ collapsed: boolean;
2455
+ /** Called with the next collapsed value when the toggle is activated. */
2456
+ onCollapsedChange: (next: boolean) => void;
2457
+ /** Fixed top slot (e.g. product logo). */
2458
+ header?: ReactNode;
2459
+ /** Fixed bottom slot (e.g. tenant branding), rendered above the toggle. */
2460
+ footer?: ReactNode;
2461
+ /** Scrolling content slot — the nav items. */
2462
+ children: ReactNode;
2463
+ /** Toggle label shown when expanded. Default "Less". */
2464
+ collapseLabel?: string;
2465
+ } & Pick<ComponentPropsWithoutRef<'nav'>, 'className' | 'id' | 'aria-label'>;
2466
+ declare function NeoSideNav({ collapsed, onCollapsedChange, header, footer, children, collapseLabel, ...rest }: NeoSideNavProps): react_jsx_runtime.JSX.Element;
2467
+ declare namespace NeoSideNav {
2468
+ var displayName: string;
2469
+ }
2390
2470
 
2391
2471
  /**
2392
2472
  * Extended props for NeoSkeleton component
@@ -2558,7 +2638,7 @@ declare const NeoTable: {
2558
2638
  * - Tab selection → value prop + onChange
2559
2639
  * - Active indicator → styled via indicator slot
2560
2640
  */
2561
- declare const NeoTabs: StyledComponent<_mui_material_Tabs.TabsOwnProps & _mui_material_OverridableComponent.CommonProps & Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style" | "children" | "sx" | "className" | "aria-label" | "aria-labelledby" | "onChange" | "classes" | "action" | "value" | "variant" | "orientation" | "slots" | "slotProps" | "allowScrollButtonsMobile" | "centered" | "indicatorColor" | "ScrollButtonComponent" | "scrollButtons" | "selectionFollowsFocus" | "TabIndicatorProps" | "TabScrollButtonProps" | "textColor" | "visibleScrollbar"> & _mui_system.MUIStyledCommonProps<_mui_material_styles.Theme>, {}, {}>;
2641
+ declare const NeoTabs: StyledComponent<_mui_material.TabsOwnProps & _mui_material_OverridableComponent.CommonProps & Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style" | "children" | "sx" | "className" | "aria-label" | "aria-labelledby" | "onChange" | "classes" | "action" | "value" | "variant" | "orientation" | "slots" | "slotProps" | "allowScrollButtonsMobile" | "centered" | "indicatorColor" | "ScrollButtonComponent" | "scrollButtons" | "selectionFollowsFocus" | "TabIndicatorProps" | "TabScrollButtonProps" | "textColor" | "visibleScrollbar"> & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
2562
2642
  interface NeoTabProps extends Omit<TabProps, 'label'> {
2563
2643
  /**
2564
2644
  * The label for the tab
@@ -2819,7 +2899,7 @@ declare const NeoToggleButtonGroup: {
2819
2899
  *
2820
2900
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=11565-10485
2821
2901
  */
2822
- declare const NeoToggleButtonWithText: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material_styles.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2902
+ declare const NeoToggleButtonWithText: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2823
2903
 
2824
2904
  interface NeoToolbarProps extends ToolbarProps {
2825
2905
  /**
@@ -3038,6 +3118,17 @@ declare const NeoListItemButton: {
3038
3118
  displayName: string;
3039
3119
  };
3040
3120
 
3121
+ interface NeoVibratingDotProps extends BoxProps$1 {
3122
+ }
3123
+ /**
3124
+ * NeoVibratingDot - Animated status dot with a breathing pulse halo.
3125
+ *
3126
+ * Indicates a waiting/pending state (QUEUED / CREATED). Color is inherited from
3127
+ * `currentColor`; set it via the `color`/`sx` prop or a parent. Sized to the
3128
+ * lowercase-letter height regardless of parent fontSize.
3129
+ */
3130
+ declare const NeoVibratingDot: FunctionComponent<NeoVibratingDotProps>;
3131
+
3041
3132
  /**
3042
3133
  * Variant type for NeoTooltip
3043
3134
  */
@@ -3053,13 +3144,15 @@ interface NeoTooltipProps extends Omit<TooltipProps, 'title' | 'variant'> {
3053
3144
  */
3054
3145
  variant?: TooltipVariant;
3055
3146
  /**
3056
- * The main tooltip text
3147
+ * The main tooltip content. Accepts a string or any ReactNode, so callers can
3148
+ * compose richer content when the `description` variant isn't enough.
3057
3149
  * @figma text (literal content, not a variant property)
3058
3150
  */
3059
- title: string;
3151
+ title: ReactNode;
3060
3152
  /**
3061
- * Optional supporting description text
3062
- * When provided, shows a larger tooltip with title (semibold) + description (medium)
3153
+ * Optional supporting description text. When provided, shows a larger tooltip
3154
+ * with a heading + body hierarchy: title (13px semibold) above a muted
3155
+ * description (12px medium).
3063
3156
  * @default undefined
3064
3157
  * @figma Supporting text
3065
3158
  */
@@ -3084,7 +3177,7 @@ interface NeoTooltipProps extends Omit<TooltipProps, 'title' | 'variant'> {
3084
3177
  * - Dark: grey[50] (#f9fafb), grey[800] (#1f2937)
3085
3178
  * - Brand: digitalBlue[800] (#131e7a), typography.tooltip (#ffffff)
3086
3179
  * - Shadow: neutralMedium (0px 8px 15px 0px rgba(31,41,55,0.1))
3087
- * - Typography: fontSize.xs (12), fontWeight.medium (500), fontWeight.semiBold (600)
3180
+ * - Typography: fontSize.xs (12), fontSize.caption (13), fontWeight.medium (500), fontWeight.semiBold (600)
3088
3181
  */
3089
3182
  declare const NeoTooltip: {
3090
3183
  ({ variant, title, description, children, arrow, placement, ...props }: NeoTooltipProps): react_jsx_runtime.JSX.Element;
@@ -3096,16 +3189,16 @@ declare const NeoTooltip: {
3096
3189
  *
3097
3190
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4618-185228
3098
3191
  */
3099
- declare const NeoTopNav: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material_styles.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
3192
+ declare const NeoTopNav: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
3100
3193
 
3101
3194
  /**
3102
3195
  * NeoTourModal
3103
3196
  *
3104
3197
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=12408-1800
3105
3198
  */
3106
- declare const NeoTourModal: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material_styles.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
3199
+ declare const NeoTourModal: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
3107
3200
 
3108
- declare const StyledToggleButton: StyledComponent<_mui_material_ToggleButton.ToggleButtonOwnProps & Omit<ButtonBase.ButtonBaseOwnProps, "classes"> & _mui_material_OverridableComponent.CommonProps & Omit<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "style" | "color" | "size" | "children" | "sx" | "className" | "tabIndex" | "onChange" | "onClick" | "classes" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "value" | "fullWidth" | "selected"> & _mui_system.MUIStyledCommonProps<_mui_material_styles.Theme>, {}, {}>;
3201
+ declare const StyledToggleButton: StyledComponent<_mui_material.ToggleButtonOwnProps & Omit<_mui_material.ButtonBaseOwnProps, "classes"> & _mui_material_OverridableComponent.CommonProps & Omit<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "style" | "color" | "size" | "children" | "sx" | "className" | "tabIndex" | "onChange" | "onClick" | "classes" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "value" | "fullWidth" | "selected"> & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
3109
3202
  interface NeoTypologyControlProps extends Omit<ToggleButtonGroupProps, 'orientation'> {
3110
3203
  }
3111
3204
  /**
@@ -3297,14 +3390,14 @@ declare const NeoDatePicker: {
3297
3390
  *
3298
3391
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4176-8521
3299
3392
  */
3300
- declare const NeoDatePickerListItem: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material_styles.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
3393
+ declare const NeoDatePickerListItem: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
3301
3394
 
3302
3395
  /**
3303
3396
  * NeoDatePickerMenu
3304
3397
  *
3305
3398
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4176-8593
3306
3399
  */
3307
- declare const NeoDatePickerMenu: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material_styles.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
3400
+ declare const NeoDatePickerMenu: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
3308
3401
 
3309
3402
  /**
3310
3403
  * Extended item data that NeoTreeItem can read from the items array.
@@ -3376,5 +3469,5 @@ declare module '@mui/x-data-grid-pro' {
3376
3469
 
3377
3470
  declare const version: string
3378
3471
 
3379
- export { ActivityScene, CIRCLE_RADIUS, NeoActionsCell, NeoActivityHeader, NeoActivityIndicatorCell, NeoAlert, NeoAvatarCell, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonTab, NeoButtonTabGroup, NeoCard, NeoCheckbox, NeoCheckboxWithText, NeoCodeSnippet, NeoDataGrid, NeoDataGridCellContent, NeoDataGridColumnsButton, NeoDataGridColumnsPanel, NeoDataGridFilterPanel, NeoDataGridFilterPanelAddIcon, NeoDataGridFilterPanelDeleteIcon, NeoDataGridFilterPanelRemoveAllIcon, NeoDataGridFiltersButton, NeoDataGridHeaderLabel, NeoSelect as NeoDataGridSelect, NeoDatePicker, NeoDatePickerListItem, NeoDatePickerMenu, NeoDivider, NeoDot, NeoDownloadToast, NeoSelect as NeoDropdown, NeoMenu as NeoDropdownMenu, NeoMenuItem as NeoDropdownMenuItem, NeoMenuItem as NeoDropdownOption, NeoFilterChip, NeoFooter, NeoGeneralAvatar, NeoIconButton, NeoIconCell, NeoInfiniteScrollGrid, NeoInputField, NeoListItem, NeoListItemButton, NeoLoadingSpinner, NeoLogoCell, NeoMenu, NeoMenuItem, NeoModal, NeoModalContent, NeoModalFooter, NeoModalHeader, NeoMultiBadgesCell, NeoNavigationAvatar, NeoNavigationItem, NeoPageContent, NeoPaginatedGrid, NeoProgressCell, NeoProgressbar, NeoQuickFilter, NeoRadio, NeoRadioButtonWithText, NeoSearchChip, NeoSelect, NeoSelectField, NeoMenuItem as NeoSelectOption, NeoSideNav, NeoSkeleton, NeoStatusBadgeCell, NeoStatusCell, NeoTab, NeoTabPanel, NeoTable, NeoTabs, NeoTag, NeoToast, NeoToastButton, NeoToggle, NeoToggleButton, NeoToggleButtonGroup, NeoToggleButtonWithText, NeoToolbar, NeoTooltip, NeoTopNav, NeoTourModal, NeoTreeItem, NeoTreeView, StyledToggleButton as NeoTypologyButton, NeoTypologyControl, NeoUserAvatarCell, SortedAscendingIcon, SortedDescendingIcon, UnsortedIcon, focusRingStyles, getDataGridHeaderStyles, getDataGridRowStyles, version };
3380
- export type { ActivityColor, ActivityEvent, ActivityHeaderSize, BreadcrumbItem, DataGridSize, NeoActionsCellProps, NeoActivityHeaderProps, NeoActivityIndicatorCellProps, NeoAlertProps, NeoAvatarCellProps, NeoBadgeProps, NeoBannerProps, NeoBreadcrumbLinkProps, NeoBreadcrumbsProps, NeoButtonProps, NeoButtonTabGroupProps, NeoButtonTabProps, NeoCardLargeProps, NeoCardProps, NeoCardSize, NeoCardSmallProps, NeoCheckboxProps, NeoCheckboxWithTextProps, NeoCodeSnippetProps, NeoDataGridCellContentProps, NeoDataGridHeaderLabelProps, NeoDataGridProps, NeoDatePickerProps, NeoDividerProps, NeoDotProps, NeoDownloadToastProps, NeoMenuItemProps as NeoDropdownMenuItemProps, NeoMenuProps as NeoDropdownMenuProps, NeoSelectProps as NeoDropdownProps, NeoFilterChipProps, NeoFooterProps, NeoGeneralAvatarProps, NeoIconButtonProps, NeoIconCellProps, NeoInfiniteScrollGridProps, NeoInputFieldProps, NeoListItemButtonProps, NeoListItemProps, NeoLoadingSpinnerProps, NeoLogoCellProps, NeoMenuItemProps, NeoMenuProps, NeoModalContentProps, NeoModalFooterProps, NeoModalHeaderProps, NeoModalProps, NeoMultiBadgesCellProps, NeoNavigationAvatarProps, NeoNavigationItemProps, NeoPageContentProps, NeoPaginatedGridProps, NeoProgressCellProps, NeoProgressbarProps, NeoQuickFilterProps, NeoRadioProps, NeoSearchChipProps, NeoSelectFieldChangeEvent, NeoSelectFieldOption, NeoSelectFieldProps, NeoSelectProps, NeoSkeletonProps, NeoStatusBadgeCellProps, NeoStatusCellProps, NeoStatusCellVariant, NeoTabPanelProps, NeoTabProps, NeoTableColumn, NeoTableProps, NeoTagProps, NeoToastProps, NeoToggleButtonGroupProps, NeoToggleButtonProps, NeoToggleProps, NeoToolbarProps, NeoTooltipProps, NeoTreeItemData, NeoTreeItemProps, NeoTreeViewProps, NeoTypologyControlProps, NeoUserAvatarCellProps };
3472
+ export { ActivityScene, CIRCLE_RADIUS, NeoActionsCell, NeoActivityHeader, NeoActivityIndicatorCell, NeoAlert, NeoAvatarCell, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonTab, NeoButtonTabGroup, NeoCanceledIcon, NeoCard, NeoCheckbox, NeoCheckboxWithText, NeoCodeSnippet, NeoDataGrid, NeoDataGridCellContent, NeoDataGridColumnsButton, NeoDataGridColumnsPanel, NeoDataGridFilterPanel, NeoDataGridFilterPanelAddIcon, NeoDataGridFilterPanelDeleteIcon, NeoDataGridFilterPanelRemoveAllIcon, NeoDataGridFiltersButton, NeoDataGridHeaderLabel, NeoSelect as NeoDataGridSelect, NeoDatePicker, NeoDatePickerListItem, NeoDatePickerMenu, NeoDivider, NeoDot, NeoDownloadToast, NeoSelect as NeoDropdown, NeoMenu as NeoDropdownMenu, NeoMenuItem as NeoDropdownMenuItem, NeoMenuItem as NeoDropdownOption, NeoFilledCanceled, NeoFilledError, NeoFilledInfo, NeoFilledNeutral, NeoFilledQueued, NeoFilledSuccess, NeoFilledWarning, NeoFilterChip, NeoFooter, NeoGeneralAvatar, NeoIconButton, NeoIconCell, NeoInfiniteScrollGrid, NeoInputField, NeoListItem, NeoListItemButton, NeoLoadingSpinner, NeoLogoCell, NeoMenu, NeoMenuItem, NeoModal, NeoModalContent, NeoModalFooter, NeoModalHeader, NeoMultiBadgesCell, NeoNavigationAvatar, NeoNavigationItem, NeoPageContent, NeoPaginatedGrid, NeoProgressCell, NeoProgressbar, NeoQuickFilter, NeoRadio, NeoRadioButtonWithText, NeoRipplingDot, NeoSearchChip, NeoSelect, NeoSelectField, NeoMenuItem as NeoSelectOption, NeoSideNav, NeoSkeleton, NeoStatusBadgeCell, NeoStatusCell, NeoTab, NeoTabPanel, NeoTable, NeoTabs, NeoTag, NeoToast, NeoToastButton, NeoToggle, NeoToggleButton, NeoToggleButtonGroup, NeoToggleButtonWithText, NeoToolbar, NeoTooltip, NeoTopNav, NeoTourModal, NeoTreeItem, NeoTreeView, StyledToggleButton as NeoTypologyButton, NeoTypologyControl, NeoUserAvatarCell, NeoVibratingDot, SortedAscendingIcon, SortedDescendingIcon, UnsortedIcon, focusRingStyles, getDataGridHeaderStyles, getDataGridRowStyles, version };
3473
+ export type { ActivityColor, ActivityEvent, ActivityHeaderSize, BreadcrumbItem, DataGridSize, NeoActionsCellProps, NeoActivityHeaderProps, NeoActivityIndicatorCellProps, NeoAlertProps, NeoAvatarCellProps, NeoBadgeProps, NeoBannerProps, NeoBreadcrumbLinkProps, NeoBreadcrumbsProps, NeoButtonProps, NeoButtonTabGroupProps, NeoButtonTabProps, NeoCardLargeProps, NeoCardProps, NeoCardSize, NeoCardSmallProps, NeoCheckboxProps, NeoCheckboxWithTextProps, NeoCodeSnippetProps, NeoDataGridCellContentProps, NeoDataGridHeaderLabelProps, NeoDataGridProps, NeoDatePickerProps, NeoDividerProps, NeoDotProps, NeoDownloadToastProps, NeoMenuItemProps as NeoDropdownMenuItemProps, NeoMenuProps as NeoDropdownMenuProps, NeoSelectProps as NeoDropdownProps, NeoFilledStatusIconProps, NeoFilterChipProps, NeoFooterProps, NeoGeneralAvatarProps, NeoIconButtonProps, NeoIconCellProps, NeoInfiniteScrollGridProps, NeoInputFieldProps, NeoListItemButtonProps, NeoListItemProps, NeoLoadingSpinnerProps, NeoLogoCellProps, NeoMenuItemProps, NeoMenuProps, NeoModalContentProps, NeoModalFooterProps, NeoModalHeaderProps, NeoModalProps, NeoMultiBadgesCellProps, NeoNavigationAvatarProps, NeoNavigationItemProps, NeoPageContentProps, NeoPaginatedGridProps, NeoProgressCellProps, NeoProgressbarProps, NeoQuickFilterProps, NeoRadioProps, NeoRipplingDotProps, NeoSearchChipProps, NeoSelectFieldChangeEvent, NeoSelectFieldOption, NeoSelectFieldProps, NeoSelectProps, NeoSideNavProps, NeoSkeletonProps, NeoStatusBadgeCellProps, NeoStatusCellProps, NeoStatusCellVariant, NeoTabPanelProps, NeoTabProps, NeoTableColumn, NeoTableProps, NeoTagProps, NeoToastProps, NeoToggleButtonGroupProps, NeoToggleButtonProps, NeoToggleProps, NeoToolbarProps, NeoTooltipProps, NeoTreeItemData, NeoTreeItemProps, NeoTreeViewProps, NeoTypologyControlProps, NeoUserAvatarCellProps, NeoVibratingDotProps };