@moderneinc/neo-styled-components 5.0.0-next.036ce4 → 5.0.0-next.06aac6
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/CanceledIcon/CanceledIcon.d.ts +11 -0
- package/dist/Checkbox/Checkbox.d.ts +5 -4
- package/dist/DatePickerListItem/DatePickerListItem.d.ts +1 -1
- package/dist/DatePickerMenu/DatePickerMenu.d.ts +1 -1
- package/dist/FilledStatusIcons/FilledStatusIcons.d.ts +41 -0
- package/dist/InputField/InputField.d.ts +4 -4
- package/dist/NavigationItem/NavigationItem.d.ts +6 -1
- package/dist/RadioButtonWithText/RadioButtonWithText.d.ts +1 -1
- package/dist/RipplingDot/RipplingDot.d.ts +12 -0
- package/dist/SideNav/NeoSideNavContext.d.ts +5 -0
- package/dist/SideNav/SideNav.d.ts +19 -6
- package/dist/Tabs/Tabs.d.ts +1 -1
- package/dist/ToggleButtonWithText/ToggleButtonWithText.d.ts +1 -1
- package/dist/TopNav/TopNav.d.ts +1 -1
- package/dist/TourModal/TourModal.d.ts +1 -1
- package/dist/TypologyControl/TypologyControl.d.ts +1 -1
- package/dist/VibratingDot/VibratingDot.d.ts +12 -0
- package/dist/index.d.ts +120 -29
- package/dist/index.esm.js +454 -170
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +463 -169
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
/**
|
|
3
|
+
* NeoCanceledIcon - Outlined circle struck through by a horizontal line.
|
|
4
|
+
*
|
|
5
|
+
* Marks a CANCELED state. Color comes entirely from `currentColor` (stroke plus
|
|
6
|
+
* a 10% fill tint); set it via the `color`/`sx` prop or a parent.
|
|
7
|
+
*/
|
|
8
|
+
export declare const NeoCanceledIcon: {
|
|
9
|
+
(props: SvgIconProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
displayName: string;
|
|
11
|
+
};
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { type CheckboxProps } from '@mui/material/Checkbox';
|
|
2
2
|
import type { ReactNode } from 'react';
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
5
|
-
*
|
|
4
|
+
* NeoCheckbox uses Lucide icons (square / square-check / square-minus): a rounded
|
|
5
|
+
* outline drawn in `currentColor`, with the check/minus mark sharing that stroke —
|
|
6
|
+
* so a single per-state `color` (set in StyledCheckbox) drives every variant.
|
|
6
7
|
*
|
|
8
|
+
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=11487-81
|
|
7
9
|
* Checkbox sizes: xs=12x12, small=16x16, medium=20x20
|
|
8
|
-
* Check/minus paths scaled from Untitled UI (originally 24x24)
|
|
9
10
|
*/
|
|
10
11
|
type CheckboxSize = 'xs' | 'small' | 'medium';
|
|
11
12
|
declare module '@mui/material/Checkbox' {
|
|
@@ -15,7 +16,7 @@ declare module '@mui/material/Checkbox' {
|
|
|
15
16
|
medium: true;
|
|
16
17
|
}
|
|
17
18
|
}
|
|
18
|
-
declare const StyledCheckbox: import("@emotion/styled").StyledComponent<CheckboxProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material
|
|
19
|
+
declare const StyledCheckbox: import("@emotion/styled").StyledComponent<CheckboxProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
19
20
|
size?: CheckboxSize;
|
|
20
21
|
disabled?: boolean;
|
|
21
22
|
}, {}, {}>;
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4176-8521
|
|
5
5
|
*/
|
|
6
|
-
export declare const NeoDatePickerListItem: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material
|
|
6
|
+
export declare const NeoDatePickerListItem: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4176-8593
|
|
5
5
|
*/
|
|
6
|
-
export declare const NeoDatePickerMenu: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material
|
|
6
|
+
export declare const NeoDatePickerMenu: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { type SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
/**
|
|
3
|
+
* Filled status icons — sourced from the published Figma library components
|
|
4
|
+
* Filled_Success / Filled_Queued / Filled_Info / Filled_Warning / Filled_Error /
|
|
5
|
+
* Filled_Neutral / Filled_Canceled.
|
|
6
|
+
*
|
|
7
|
+
* Designed at 16px; size via `fontSize` like any MUI `SvgIcon`. Each ships its
|
|
8
|
+
* intent's status color baked into the silhouette with a white inner glyph — the
|
|
9
|
+
* fill is fixed, so `color`/`htmlColor` are omitted from the props. There is no
|
|
10
|
+
* Filled_Active (the open-arc spinner cannot fill). Use below 18px; above that,
|
|
11
|
+
* prefer the Lucide outline glyph.
|
|
12
|
+
*/
|
|
13
|
+
export type NeoFilledStatusIconProps = Omit<SvgIconProps, 'color' | 'htmlColor'>;
|
|
14
|
+
export declare const NeoFilledSuccess: {
|
|
15
|
+
(props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
18
|
+
export declare const NeoFilledQueued: {
|
|
19
|
+
(props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
displayName: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const NeoFilledInfo: {
|
|
23
|
+
(props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
displayName: string;
|
|
25
|
+
};
|
|
26
|
+
export declare const NeoFilledWarning: {
|
|
27
|
+
(props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
displayName: string;
|
|
29
|
+
};
|
|
30
|
+
export declare const NeoFilledError: {
|
|
31
|
+
(props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
|
|
32
|
+
displayName: string;
|
|
33
|
+
};
|
|
34
|
+
export declare const NeoFilledNeutral: {
|
|
35
|
+
(props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
|
|
36
|
+
displayName: string;
|
|
37
|
+
};
|
|
38
|
+
export declare const NeoFilledCanceled: {
|
|
39
|
+
(props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
|
|
40
|
+
displayName: string;
|
|
41
|
+
};
|
|
@@ -2,15 +2,15 @@ import { type InputBaseProps } from '@mui/material/InputBase';
|
|
|
2
2
|
import type { ReactNode } from 'react';
|
|
3
3
|
type InputFieldSize = 'small' | 'medium';
|
|
4
4
|
export type { InputFieldSize as NeoInputFieldSize };
|
|
5
|
-
export declare const StyledFormControl: import("@emotion/styled").StyledComponent<import("@mui/material
|
|
5
|
+
export declare const StyledFormControl: import("@emotion/styled").StyledComponent<import("@mui/material").FormControlOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style" | "color" | "margin" | "size" | "children" | "sx" | "className" | "classes" | "disabled" | "variant" | "error" | "fullWidth" | "required" | "focused" | "hiddenLabel"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
6
6
|
size?: InputFieldSize;
|
|
7
7
|
}, {}, {}>;
|
|
8
|
-
export declare const StyledInputLabel: import("@emotion/styled").StyledComponent<import("@mui/material
|
|
8
|
+
export declare const StyledInputLabel: import("@emotion/styled").StyledComponent<import("@mui/material").InputLabelOwnProps & Pick<import("@mui/material").FormLabelOwnProps, "color" | "filled"> & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "style" | "color" | "margin" | "size" | "children" | "sx" | "className" | "classes" | "disabled" | "variant" | "filled" | "error" | "required" | "focused" | "disableAnimation" | "shrink"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
9
9
|
size?: InputFieldSize;
|
|
10
10
|
infoIcon?: boolean;
|
|
11
11
|
}, {}, {}>;
|
|
12
|
-
export declare const InfoIconWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material
|
|
13
|
-
export declare const StyledFormHelperText: import("@emotion/styled").StyledComponent<import("@mui/material
|
|
12
|
+
export declare const InfoIconWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
13
|
+
export declare const StyledFormHelperText: import("@emotion/styled").StyledComponent<import("@mui/material").FormHelperTextOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "style" | "margin" | "children" | "sx" | "className" | "classes" | "disabled" | "variant" | "filled" | "error" | "required" | "focused"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
14
14
|
size?: InputFieldSize;
|
|
15
15
|
}, {}, {}>;
|
|
16
16
|
export interface NeoInputFieldProps extends Omit<InputBaseProps, 'size'> {
|
|
@@ -21,6 +21,11 @@ type NeoNavigationItemOwnProps = {
|
|
|
21
21
|
* @figma Tag
|
|
22
22
|
*/
|
|
23
23
|
tag?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Hover tooltip shown only when the surrounding NeoSideNav is collapsed
|
|
26
|
+
* (and the label is therefore hidden).
|
|
27
|
+
*/
|
|
28
|
+
tooltip?: ReactNode;
|
|
24
29
|
/**
|
|
25
30
|
* Slot props for internal sub-components.
|
|
26
31
|
*/
|
|
@@ -47,7 +52,7 @@ export type NeoNavigationItemProps<C extends ElementType = typeof ButtonBase> =
|
|
|
47
52
|
*
|
|
48
53
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=8455-6120
|
|
49
54
|
*/
|
|
50
|
-
export declare function NeoNavigationItem<C extends ElementType = typeof ButtonBase>({ icon, label, selected, tag, slotProps, children, ...props }: NeoNavigationItemProps<C>): import("react/jsx-runtime").JSX.Element;
|
|
55
|
+
export declare function NeoNavigationItem<C extends ElementType = typeof ButtonBase>({ icon, label, selected, tag, tooltip, slotProps, children, ...props }: NeoNavigationItemProps<C>): import("react/jsx-runtime").JSX.Element;
|
|
51
56
|
export declare namespace NeoNavigationItem {
|
|
52
57
|
var displayName: string;
|
|
53
58
|
}
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=11565-7682
|
|
5
5
|
*/
|
|
6
|
-
export declare const NeoRadioButtonWithText: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material
|
|
6
|
+
export declare const NeoRadioButtonWithText: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type BoxProps } from '@mui/material';
|
|
2
|
+
import type { FunctionComponent } from 'react';
|
|
3
|
+
export interface NeoRipplingDotProps extends BoxProps {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* NeoRipplingDot - Animated status dot with an expanding ripple ring.
|
|
7
|
+
*
|
|
8
|
+
* Indicates an in-progress, indeterminate state (RUNNING / SYNCING / PROCESSING).
|
|
9
|
+
* Color is inherited from `currentColor`; set it via the `color`/`sx` prop or a
|
|
10
|
+
* parent. Sized to the lowercase-letter height regardless of parent fontSize.
|
|
11
|
+
*/
|
|
12
|
+
export declare const NeoRipplingDot: FunctionComponent<NeoRipplingDotProps>;
|
|
@@ -1,6 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*/
|
|
6
|
-
|
|
1
|
+
import { type ComponentPropsWithoutRef, type ReactNode } from 'react';
|
|
2
|
+
export type NeoSideNavProps = {
|
|
3
|
+
/** Controlled collapsed state. */
|
|
4
|
+
collapsed: boolean;
|
|
5
|
+
/** Called with the next collapsed value when the toggle is activated. */
|
|
6
|
+
onCollapsedChange: (next: boolean) => void;
|
|
7
|
+
/** Fixed top slot (e.g. product logo). */
|
|
8
|
+
header?: ReactNode;
|
|
9
|
+
/** Fixed bottom slot (e.g. tenant branding), rendered above the toggle. */
|
|
10
|
+
footer?: ReactNode;
|
|
11
|
+
/** Scrolling content slot — the nav items. */
|
|
12
|
+
children: ReactNode;
|
|
13
|
+
/** Toggle label shown when expanded. Default "Less". */
|
|
14
|
+
collapseLabel?: string;
|
|
15
|
+
} & Pick<ComponentPropsWithoutRef<'nav'>, 'className' | 'id' | 'aria-label'>;
|
|
16
|
+
export declare function NeoSideNav({ collapsed, onCollapsedChange, header, footer, children, collapseLabel, ...rest }: NeoSideNavProps): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export declare namespace NeoSideNav {
|
|
18
|
+
var displayName: string;
|
|
19
|
+
}
|
package/dist/Tabs/Tabs.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import type { ReactNode } from 'react';
|
|
|
10
10
|
* - Tab selection → value prop + onChange
|
|
11
11
|
* - Active indicator → styled via indicator slot
|
|
12
12
|
*/
|
|
13
|
-
export declare const NeoTabs: import("@emotion/styled").StyledComponent<import("@mui/material
|
|
13
|
+
export declare const NeoTabs: import("@emotion/styled").StyledComponent<import("@mui/material").TabsOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").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"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
14
14
|
export interface NeoTabProps extends Omit<TabProps, 'label'> {
|
|
15
15
|
/**
|
|
16
16
|
* The label for the tab
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=11565-10485
|
|
5
5
|
*/
|
|
6
|
-
export declare const NeoToggleButtonWithText: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material
|
|
6
|
+
export declare const NeoToggleButtonWithText: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
package/dist/TopNav/TopNav.d.ts
CHANGED
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4618-185228
|
|
5
5
|
*/
|
|
6
|
-
export declare const NeoTopNav: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material
|
|
6
|
+
export declare const NeoTopNav: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=12408-1800
|
|
5
5
|
*/
|
|
6
|
-
export declare const NeoTourModal: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material
|
|
6
|
+
export declare const NeoTourModal: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ToggleButtonGroupProps } from '@mui/material/ToggleButtonGroup';
|
|
2
|
-
declare const StyledToggleButton: import("@emotion/styled").StyledComponent<import("@mui/material
|
|
2
|
+
declare const StyledToggleButton: import("@emotion/styled").StyledComponent<import("@mui/material").ToggleButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").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"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
3
3
|
export interface NeoTypologyControlProps extends Omit<ToggleButtonGroupProps, 'orientation'> {
|
|
4
4
|
}
|
|
5
5
|
/**
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type BoxProps } from '@mui/material';
|
|
2
|
+
import type { FunctionComponent } from 'react';
|
|
3
|
+
export interface NeoVibratingDotProps extends BoxProps {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* NeoVibratingDot - Animated status dot with a breathing pulse halo.
|
|
7
|
+
*
|
|
8
|
+
* Indicates a waiting/pending state (QUEUED / CREATED). Color is inherited from
|
|
9
|
+
* `currentColor`; set it via the `color`/`sx` prop or a parent. Sized to the
|
|
10
|
+
* lowercase-letter height regardless of parent fontSize.
|
|
11
|
+
*/
|
|
12
|
+
export declare const NeoVibratingDot: FunctionComponent<NeoVibratingDotProps>;
|
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
|
|
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
|
|
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
|
|
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
|
-
*
|
|
634
|
-
*
|
|
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
|
|
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
|
|
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<
|
|
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
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
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<
|
|
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<
|
|
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
|
*/
|
|
@@ -3098,16 +3189,16 @@ declare const NeoTooltip: {
|
|
|
3098
3189
|
*
|
|
3099
3190
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4618-185228
|
|
3100
3191
|
*/
|
|
3101
|
-
declare const NeoTopNav: StyledComponent<_mui_system.MUIStyledCommonProps<
|
|
3192
|
+
declare const NeoTopNav: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
3102
3193
|
|
|
3103
3194
|
/**
|
|
3104
3195
|
* NeoTourModal
|
|
3105
3196
|
*
|
|
3106
3197
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=12408-1800
|
|
3107
3198
|
*/
|
|
3108
|
-
declare const NeoTourModal: StyledComponent<_mui_system.MUIStyledCommonProps<
|
|
3199
|
+
declare const NeoTourModal: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
3109
3200
|
|
|
3110
|
-
declare const StyledToggleButton: StyledComponent<
|
|
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>, {}, {}>;
|
|
3111
3202
|
interface NeoTypologyControlProps extends Omit<ToggleButtonGroupProps, 'orientation'> {
|
|
3112
3203
|
}
|
|
3113
3204
|
/**
|
|
@@ -3299,14 +3390,14 @@ declare const NeoDatePicker: {
|
|
|
3299
3390
|
*
|
|
3300
3391
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4176-8521
|
|
3301
3392
|
*/
|
|
3302
|
-
declare const NeoDatePickerListItem: StyledComponent<_mui_system.MUIStyledCommonProps<
|
|
3393
|
+
declare const NeoDatePickerListItem: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
3303
3394
|
|
|
3304
3395
|
/**
|
|
3305
3396
|
* NeoDatePickerMenu
|
|
3306
3397
|
*
|
|
3307
3398
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4176-8593
|
|
3308
3399
|
*/
|
|
3309
|
-
declare const NeoDatePickerMenu: StyledComponent<_mui_system.MUIStyledCommonProps<
|
|
3400
|
+
declare const NeoDatePickerMenu: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
3310
3401
|
|
|
3311
3402
|
/**
|
|
3312
3403
|
* Extended item data that NeoTreeItem can read from the items array.
|
|
@@ -3378,5 +3469,5 @@ declare module '@mui/x-data-grid-pro' {
|
|
|
3378
3469
|
|
|
3379
3470
|
declare const version: string
|
|
3380
3471
|
|
|
3381
|
-
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 };
|
|
3382
|
-
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 };
|