@moderneinc/neo-styled-components 5.0.0-next.e2cf11 → 5.0.0-next.e7f738
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 +1 -1
- 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/Tooltip/Tooltip.d.ts +8 -5
- 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 +123 -31
- package/dist/index.esm.js +407 -148
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +416 -147
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
|
@@ -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
|
+
};
|
|
@@ -15,7 +15,7 @@ declare module '@mui/material/Checkbox' {
|
|
|
15
15
|
medium: true;
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
|
-
declare const StyledCheckbox: import("@emotion/styled").StyledComponent<CheckboxProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material
|
|
18
|
+
declare const StyledCheckbox: import("@emotion/styled").StyledComponent<CheckboxProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
19
19
|
size?: CheckboxSize;
|
|
20
20
|
disabled?: boolean;
|
|
21
21
|
}, {}, {}>;
|
|
@@ -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>, {}>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { type TooltipProps } from '@mui/material/Tooltip';
|
|
2
|
+
import type { ReactNode } from 'react';
|
|
2
3
|
/**
|
|
3
4
|
* Variant type for NeoTooltip
|
|
4
5
|
*/
|
|
@@ -14,13 +15,15 @@ export interface NeoTooltipProps extends Omit<TooltipProps, 'title' | 'variant'>
|
|
|
14
15
|
*/
|
|
15
16
|
variant?: TooltipVariant;
|
|
16
17
|
/**
|
|
17
|
-
* The main tooltip
|
|
18
|
+
* The main tooltip content. Accepts a string or any ReactNode, so callers can
|
|
19
|
+
* compose richer content when the `description` variant isn't enough.
|
|
18
20
|
* @figma text (literal content, not a variant property)
|
|
19
21
|
*/
|
|
20
|
-
title:
|
|
22
|
+
title: ReactNode;
|
|
21
23
|
/**
|
|
22
|
-
* Optional supporting description text
|
|
23
|
-
*
|
|
24
|
+
* Optional supporting description text. When provided, shows a larger tooltip
|
|
25
|
+
* with a heading + body hierarchy: title (13px semibold) above a muted
|
|
26
|
+
* description (12px medium).
|
|
24
27
|
* @default undefined
|
|
25
28
|
* @figma Supporting text
|
|
26
29
|
*/
|
|
@@ -45,7 +48,7 @@ export interface NeoTooltipProps extends Omit<TooltipProps, 'title' | 'variant'>
|
|
|
45
48
|
* - Dark: grey[50] (#f9fafb), grey[800] (#1f2937)
|
|
46
49
|
* - Brand: digitalBlue[800] (#131e7a), typography.tooltip (#ffffff)
|
|
47
50
|
* - Shadow: neutralMedium (0px 8px 15px 0px rgba(31,41,55,0.1))
|
|
48
|
-
* - Typography: fontSize.xs (12), fontWeight.medium (500), fontWeight.semiBold (600)
|
|
51
|
+
* - Typography: fontSize.xs (12), fontSize.caption (13), fontWeight.medium (500), fontWeight.semiBold (600)
|
|
49
52
|
*/
|
|
50
53
|
export declare const NeoTooltip: {
|
|
51
54
|
({ variant, title, description, children, arrow, placement, ...props }: NeoTooltipProps): import("react/jsx-runtime").JSX.Element;
|
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
|
}
|
|
@@ -1471,6 +1481,47 @@ declare const NeoDot: {
|
|
|
1471
1481
|
displayName: string;
|
|
1472
1482
|
};
|
|
1473
1483
|
|
|
1484
|
+
/**
|
|
1485
|
+
* Filled status icons — sourced from the published Figma library components
|
|
1486
|
+
* Filled_Success / Filled_Queued / Filled_Info / Filled_Warning / Filled_Error /
|
|
1487
|
+
* Filled_Neutral / Filled_Canceled.
|
|
1488
|
+
*
|
|
1489
|
+
* Designed at 16px; size via `fontSize` like any MUI `SvgIcon`. Each ships its
|
|
1490
|
+
* intent's status color baked into the silhouette with a white inner glyph — the
|
|
1491
|
+
* fill is fixed, so `color`/`htmlColor` are omitted from the props. There is no
|
|
1492
|
+
* Filled_Active (the open-arc spinner cannot fill). Use below 18px; above that,
|
|
1493
|
+
* prefer the Lucide outline glyph.
|
|
1494
|
+
*/
|
|
1495
|
+
type NeoFilledStatusIconProps = Omit<SvgIconProps, 'color' | 'htmlColor'>;
|
|
1496
|
+
declare const NeoFilledSuccess: {
|
|
1497
|
+
(props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
|
|
1498
|
+
displayName: string;
|
|
1499
|
+
};
|
|
1500
|
+
declare const NeoFilledQueued: {
|
|
1501
|
+
(props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
|
|
1502
|
+
displayName: string;
|
|
1503
|
+
};
|
|
1504
|
+
declare const NeoFilledInfo: {
|
|
1505
|
+
(props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
|
|
1506
|
+
displayName: string;
|
|
1507
|
+
};
|
|
1508
|
+
declare const NeoFilledWarning: {
|
|
1509
|
+
(props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
|
|
1510
|
+
displayName: string;
|
|
1511
|
+
};
|
|
1512
|
+
declare const NeoFilledError: {
|
|
1513
|
+
(props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
|
|
1514
|
+
displayName: string;
|
|
1515
|
+
};
|
|
1516
|
+
declare const NeoFilledNeutral: {
|
|
1517
|
+
(props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
|
|
1518
|
+
displayName: string;
|
|
1519
|
+
};
|
|
1520
|
+
declare const NeoFilledCanceled: {
|
|
1521
|
+
(props: NeoFilledStatusIconProps): react_jsx_runtime.JSX.Element;
|
|
1522
|
+
displayName: string;
|
|
1523
|
+
};
|
|
1524
|
+
|
|
1474
1525
|
interface NeoFilterChipProps extends Omit<ChipProps, 'variant' | 'color' | 'label'> {
|
|
1475
1526
|
/**
|
|
1476
1527
|
* The filter label text
|
|
@@ -1937,6 +1988,11 @@ type NeoNavigationItemOwnProps = {
|
|
|
1937
1988
|
* @figma Tag
|
|
1938
1989
|
*/
|
|
1939
1990
|
tag?: string;
|
|
1991
|
+
/**
|
|
1992
|
+
* Hover tooltip shown only when the surrounding NeoSideNav is collapsed
|
|
1993
|
+
* (and the label is therefore hidden).
|
|
1994
|
+
*/
|
|
1995
|
+
tooltip?: ReactNode;
|
|
1940
1996
|
/**
|
|
1941
1997
|
* Slot props for internal sub-components.
|
|
1942
1998
|
*/
|
|
@@ -1955,7 +2011,7 @@ type NeoNavigationItemOwnProps = {
|
|
|
1955
2011
|
*/
|
|
1956
2012
|
children?: ReactNode;
|
|
1957
2013
|
};
|
|
1958
|
-
type NeoNavigationItemProps<C extends ElementType = typeof
|
|
2014
|
+
type NeoNavigationItemProps<C extends ElementType = typeof ButtonBase> = NeoNavigationItemOwnProps & Omit<ButtonBaseProps, keyof NeoNavigationItemOwnProps | 'component'> & Omit<ComponentPropsWithoutRef<C>, keyof NeoNavigationItemOwnProps | keyof ButtonBaseProps> & {
|
|
1959
2015
|
component?: C;
|
|
1960
2016
|
};
|
|
1961
2017
|
/**
|
|
@@ -1963,7 +2019,7 @@ type NeoNavigationItemProps<C extends ElementType = typeof ButtonBase__default>
|
|
|
1963
2019
|
*
|
|
1964
2020
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=8455-6120
|
|
1965
2021
|
*/
|
|
1966
|
-
declare function NeoNavigationItem<C extends ElementType = typeof
|
|
2022
|
+
declare function NeoNavigationItem<C extends ElementType = typeof ButtonBase>({ icon, label, selected, tag, tooltip, slotProps, children, ...props }: NeoNavigationItemProps<C>): react_jsx_runtime.JSX.Element;
|
|
1967
2023
|
declare namespace NeoNavigationItem {
|
|
1968
2024
|
var displayName: string;
|
|
1969
2025
|
}
|
|
@@ -2299,7 +2355,18 @@ declare const NeoRadio: {
|
|
|
2299
2355
|
*
|
|
2300
2356
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=11565-7682
|
|
2301
2357
|
*/
|
|
2302
|
-
declare const NeoRadioButtonWithText: StyledComponent<_mui_system.MUIStyledCommonProps<
|
|
2358
|
+
declare const NeoRadioButtonWithText: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
2359
|
+
|
|
2360
|
+
interface NeoRipplingDotProps extends BoxProps$1 {
|
|
2361
|
+
}
|
|
2362
|
+
/**
|
|
2363
|
+
* NeoRipplingDot - Animated status dot with an expanding ripple ring.
|
|
2364
|
+
*
|
|
2365
|
+
* Indicates an in-progress, indeterminate state (RUNNING / SYNCING / PROCESSING).
|
|
2366
|
+
* Color is inherited from `currentColor`; set it via the `color`/`sx` prop or a
|
|
2367
|
+
* parent. Sized to the lowercase-letter height regardless of parent fontSize.
|
|
2368
|
+
*/
|
|
2369
|
+
declare const NeoRipplingDot: FunctionComponent<NeoRipplingDotProps>;
|
|
2303
2370
|
|
|
2304
2371
|
interface NeoSearchChipProps extends Omit<InputBaseProps, 'startAdornment' | 'endAdornment' | 'type'> {
|
|
2305
2372
|
/**
|
|
@@ -2381,12 +2448,24 @@ declare const NeoSelectField: {
|
|
|
2381
2448
|
|
|
2382
2449
|
type NeoSelectFieldChangeEvent<T = unknown> = SelectChangeEvent<T>;
|
|
2383
2450
|
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2451
|
+
type NeoSideNavProps = {
|
|
2452
|
+
/** Controlled collapsed state. */
|
|
2453
|
+
collapsed: boolean;
|
|
2454
|
+
/** Called with the next collapsed value when the toggle is activated. */
|
|
2455
|
+
onCollapsedChange: (next: boolean) => void;
|
|
2456
|
+
/** Fixed top slot (e.g. product logo). */
|
|
2457
|
+
header?: ReactNode;
|
|
2458
|
+
/** Fixed bottom slot (e.g. tenant branding), rendered above the toggle. */
|
|
2459
|
+
footer?: ReactNode;
|
|
2460
|
+
/** Scrolling content slot — the nav items. */
|
|
2461
|
+
children: ReactNode;
|
|
2462
|
+
/** Toggle label shown when expanded. Default "Less". */
|
|
2463
|
+
collapseLabel?: string;
|
|
2464
|
+
} & Pick<ComponentPropsWithoutRef<'nav'>, 'className' | 'id' | 'aria-label'>;
|
|
2465
|
+
declare function NeoSideNav({ collapsed, onCollapsedChange, header, footer, children, collapseLabel, ...rest }: NeoSideNavProps): react_jsx_runtime.JSX.Element;
|
|
2466
|
+
declare namespace NeoSideNav {
|
|
2467
|
+
var displayName: string;
|
|
2468
|
+
}
|
|
2390
2469
|
|
|
2391
2470
|
/**
|
|
2392
2471
|
* Extended props for NeoSkeleton component
|
|
@@ -2558,7 +2637,7 @@ declare const NeoTable: {
|
|
|
2558
2637
|
* - Tab selection → value prop + onChange
|
|
2559
2638
|
* - Active indicator → styled via indicator slot
|
|
2560
2639
|
*/
|
|
2561
|
-
declare const NeoTabs: StyledComponent<
|
|
2640
|
+
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
2641
|
interface NeoTabProps extends Omit<TabProps, 'label'> {
|
|
2563
2642
|
/**
|
|
2564
2643
|
* The label for the tab
|
|
@@ -2819,7 +2898,7 @@ declare const NeoToggleButtonGroup: {
|
|
|
2819
2898
|
*
|
|
2820
2899
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=11565-10485
|
|
2821
2900
|
*/
|
|
2822
|
-
declare const NeoToggleButtonWithText: StyledComponent<_mui_system.MUIStyledCommonProps<
|
|
2901
|
+
declare const NeoToggleButtonWithText: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
2823
2902
|
|
|
2824
2903
|
interface NeoToolbarProps extends ToolbarProps {
|
|
2825
2904
|
/**
|
|
@@ -3038,6 +3117,17 @@ declare const NeoListItemButton: {
|
|
|
3038
3117
|
displayName: string;
|
|
3039
3118
|
};
|
|
3040
3119
|
|
|
3120
|
+
interface NeoVibratingDotProps extends BoxProps$1 {
|
|
3121
|
+
}
|
|
3122
|
+
/**
|
|
3123
|
+
* NeoVibratingDot - Animated status dot with a breathing pulse halo.
|
|
3124
|
+
*
|
|
3125
|
+
* Indicates a waiting/pending state (QUEUED / CREATED). Color is inherited from
|
|
3126
|
+
* `currentColor`; set it via the `color`/`sx` prop or a parent. Sized to the
|
|
3127
|
+
* lowercase-letter height regardless of parent fontSize.
|
|
3128
|
+
*/
|
|
3129
|
+
declare const NeoVibratingDot: FunctionComponent<NeoVibratingDotProps>;
|
|
3130
|
+
|
|
3041
3131
|
/**
|
|
3042
3132
|
* Variant type for NeoTooltip
|
|
3043
3133
|
*/
|
|
@@ -3053,13 +3143,15 @@ interface NeoTooltipProps extends Omit<TooltipProps, 'title' | 'variant'> {
|
|
|
3053
3143
|
*/
|
|
3054
3144
|
variant?: TooltipVariant;
|
|
3055
3145
|
/**
|
|
3056
|
-
* The main tooltip
|
|
3146
|
+
* The main tooltip content. Accepts a string or any ReactNode, so callers can
|
|
3147
|
+
* compose richer content when the `description` variant isn't enough.
|
|
3057
3148
|
* @figma text (literal content, not a variant property)
|
|
3058
3149
|
*/
|
|
3059
|
-
title:
|
|
3150
|
+
title: ReactNode;
|
|
3060
3151
|
/**
|
|
3061
|
-
* Optional supporting description text
|
|
3062
|
-
*
|
|
3152
|
+
* Optional supporting description text. When provided, shows a larger tooltip
|
|
3153
|
+
* with a heading + body hierarchy: title (13px semibold) above a muted
|
|
3154
|
+
* description (12px medium).
|
|
3063
3155
|
* @default undefined
|
|
3064
3156
|
* @figma Supporting text
|
|
3065
3157
|
*/
|
|
@@ -3084,7 +3176,7 @@ interface NeoTooltipProps extends Omit<TooltipProps, 'title' | 'variant'> {
|
|
|
3084
3176
|
* - Dark: grey[50] (#f9fafb), grey[800] (#1f2937)
|
|
3085
3177
|
* - Brand: digitalBlue[800] (#131e7a), typography.tooltip (#ffffff)
|
|
3086
3178
|
* - Shadow: neutralMedium (0px 8px 15px 0px rgba(31,41,55,0.1))
|
|
3087
|
-
* - Typography: fontSize.xs (12), fontWeight.medium (500), fontWeight.semiBold (600)
|
|
3179
|
+
* - Typography: fontSize.xs (12), fontSize.caption (13), fontWeight.medium (500), fontWeight.semiBold (600)
|
|
3088
3180
|
*/
|
|
3089
3181
|
declare const NeoTooltip: {
|
|
3090
3182
|
({ variant, title, description, children, arrow, placement, ...props }: NeoTooltipProps): react_jsx_runtime.JSX.Element;
|
|
@@ -3096,16 +3188,16 @@ declare const NeoTooltip: {
|
|
|
3096
3188
|
*
|
|
3097
3189
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4618-185228
|
|
3098
3190
|
*/
|
|
3099
|
-
declare const NeoTopNav: StyledComponent<_mui_system.MUIStyledCommonProps<
|
|
3191
|
+
declare const NeoTopNav: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
3100
3192
|
|
|
3101
3193
|
/**
|
|
3102
3194
|
* NeoTourModal
|
|
3103
3195
|
*
|
|
3104
3196
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=12408-1800
|
|
3105
3197
|
*/
|
|
3106
|
-
declare const NeoTourModal: StyledComponent<_mui_system.MUIStyledCommonProps<
|
|
3198
|
+
declare const NeoTourModal: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
3107
3199
|
|
|
3108
|
-
declare const StyledToggleButton: StyledComponent<
|
|
3200
|
+
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
3201
|
interface NeoTypologyControlProps extends Omit<ToggleButtonGroupProps, 'orientation'> {
|
|
3110
3202
|
}
|
|
3111
3203
|
/**
|
|
@@ -3297,14 +3389,14 @@ declare const NeoDatePicker: {
|
|
|
3297
3389
|
*
|
|
3298
3390
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4176-8521
|
|
3299
3391
|
*/
|
|
3300
|
-
declare const NeoDatePickerListItem: StyledComponent<_mui_system.MUIStyledCommonProps<
|
|
3392
|
+
declare const NeoDatePickerListItem: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
3301
3393
|
|
|
3302
3394
|
/**
|
|
3303
3395
|
* NeoDatePickerMenu
|
|
3304
3396
|
*
|
|
3305
3397
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4176-8593
|
|
3306
3398
|
*/
|
|
3307
|
-
declare const NeoDatePickerMenu: StyledComponent<_mui_system.MUIStyledCommonProps<
|
|
3399
|
+
declare const NeoDatePickerMenu: StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
3308
3400
|
|
|
3309
3401
|
/**
|
|
3310
3402
|
* Extended item data that NeoTreeItem can read from the items array.
|
|
@@ -3376,5 +3468,5 @@ declare module '@mui/x-data-grid-pro' {
|
|
|
3376
3468
|
|
|
3377
3469
|
declare const version: string
|
|
3378
3470
|
|
|
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 };
|
|
3471
|
+
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 };
|
|
3472
|
+
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 };
|