@moderneinc/neo-styled-components 2.8.0 → 3.0.0-next.cbf6d5
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/Banner/Banner.d.ts +20 -22
- package/dist/Card/Card.d.ts +32 -0
- package/dist/Checkbox/Checkbox.d.ts +2 -2
- package/dist/CodeSnippet/CodeSnippet.d.ts +4 -4
- package/dist/DownloadToast/DownloadToast.d.ts +47 -0
- package/dist/MarketplaceCard/MarketplaceCard.d.ts +10 -72
- package/dist/MarketplaceLargeCard/MarketplaceLargeCard.d.ts +15 -83
- package/dist/NavigationItem/NavigationItem.d.ts +12 -8
- package/dist/Radio/Radio.d.ts +0 -1
- package/dist/Tag/Tag.d.ts +12 -7
- package/dist/Toast/Toast.d.ts +3 -12
- package/dist/index.d.ts +107 -121
- package/dist/index.esm.js +442 -476
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +440 -472
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
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, ComponentType } from 'react';
|
|
3
|
+
import React__default, { ReactNode, ElementType, HTMLAttributes, ComponentType, ComponentPropsWithoutRef } from 'react';
|
|
4
4
|
import { GridDensity, GridFilterPanel } from '@mui/x-data-grid';
|
|
5
5
|
import { AvatarProps } from '@mui/material/Avatar';
|
|
6
|
-
import { ChipProps } from '@mui/material/Chip';
|
|
6
|
+
import Chip, { ChipProps } from '@mui/material/Chip';
|
|
7
7
|
import { AlertProps } from '@mui/material/Alert';
|
|
8
8
|
import { LinkProps } from '@mui/material/Link';
|
|
9
9
|
import * as ButtonBase from '@mui/material/ButtonBase';
|
|
@@ -362,14 +362,23 @@ declare const NeoBadge: {
|
|
|
362
362
|
displayName: string;
|
|
363
363
|
};
|
|
364
364
|
|
|
365
|
+
type Intent = 'info' | 'success' | 'error' | 'warning' | 'neutral';
|
|
366
|
+
type BannerType = 'outlined' | 'filled';
|
|
365
367
|
interface NeoBannerProps extends Omit<AlertProps, 'variant' | 'severity' | 'color'> {
|
|
366
368
|
/**
|
|
367
|
-
* The
|
|
368
|
-
* @default "
|
|
369
|
+
* The intent/purpose of the banner
|
|
370
|
+
* @default "info"
|
|
371
|
+
*
|
|
372
|
+
* @figmaPropMapping Intention (Info|Success|Error|Warning|Neutral) → intent
|
|
373
|
+
*/
|
|
374
|
+
intent?: Intent;
|
|
375
|
+
/**
|
|
376
|
+
* Visual type: outlined (light bg) or filled (solid bg)
|
|
377
|
+
* @default "outlined"
|
|
369
378
|
*
|
|
370
|
-
* @figmaPropMapping
|
|
379
|
+
* @figmaPropMapping Type (Outlined|Filled) → type
|
|
371
380
|
*/
|
|
372
|
-
|
|
381
|
+
type?: BannerType;
|
|
373
382
|
/**
|
|
374
383
|
* The message text to display
|
|
375
384
|
*
|
|
@@ -380,20 +389,20 @@ interface NeoBannerProps extends Omit<AlertProps, 'variant' | 'severity' | 'colo
|
|
|
380
389
|
* Horizontal alignment of the message content
|
|
381
390
|
* @default "left"
|
|
382
391
|
*
|
|
383
|
-
* @figmaPropMapping
|
|
392
|
+
* @figmaPropMapping Message Position (Left|Center) → messagePosition
|
|
384
393
|
*/
|
|
385
394
|
messagePosition?: 'left' | 'center';
|
|
386
395
|
/**
|
|
387
396
|
* Optional link text to display after the message
|
|
388
397
|
*
|
|
389
|
-
* @figmaPropMapping
|
|
398
|
+
* @figmaPropMapping Show Link (boolean) → linkText (string)
|
|
390
399
|
*/
|
|
391
400
|
linkText?: string;
|
|
392
401
|
/**
|
|
393
402
|
* Whether to show the close button
|
|
394
|
-
* @default
|
|
403
|
+
* @default false
|
|
395
404
|
*
|
|
396
|
-
* @figmaPropMapping
|
|
405
|
+
* @figmaPropMapping Dismissible → showClose
|
|
397
406
|
*/
|
|
398
407
|
showClose?: boolean;
|
|
399
408
|
/**
|
|
@@ -410,20 +419,8 @@ interface NeoBannerProps extends Omit<AlertProps, 'variant' | 'severity' | 'colo
|
|
|
410
419
|
*/
|
|
411
420
|
onLinkClick?: () => void;
|
|
412
421
|
}
|
|
413
|
-
/**
|
|
414
|
-
* NeoBanner - Inline banner/alert component based on MUI Alert
|
|
415
|
-
*
|
|
416
|
-
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4170-2158
|
|
417
|
-
*
|
|
418
|
-
* Figma Props Mapping:
|
|
419
|
-
* - color (Dark|Light|Success|Error|Warning) → variant (dark|light|success|error|warning)
|
|
420
|
-
* - messagePosition (Left|Center) → messagePosition ("left"|"center")
|
|
421
|
-
* - closeIcon (boolean) → showClose (boolean)
|
|
422
|
-
* - link (boolean) → linkText (string)
|
|
423
|
-
* - {Message} → message (string)
|
|
424
|
-
*/
|
|
425
422
|
declare const NeoBanner: {
|
|
426
|
-
({
|
|
423
|
+
({ intent, type, message, messagePosition, linkText, showClose, icon, onClose, onLinkClick, ...props }: NeoBannerProps): react_jsx_runtime.JSX.Element | null;
|
|
427
424
|
displayName: string;
|
|
428
425
|
};
|
|
429
426
|
|
|
@@ -684,7 +681,7 @@ interface StyledComponent<ComponentProps extends {}, SpecificComponentProps exte
|
|
|
684
681
|
|
|
685
682
|
/**
|
|
686
683
|
* Custom checkbox icons matching Figma design
|
|
687
|
-
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=
|
|
684
|
+
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=11487-81
|
|
688
685
|
*
|
|
689
686
|
* Checkbox sizes: xs=12x12, small=16x16, medium=20x20
|
|
690
687
|
* Check/minus paths scaled from Untitled UI (originally 24x24)
|
|
@@ -721,7 +718,7 @@ interface NeoCheckboxProps extends Omit<CheckboxProps, 'size'> {
|
|
|
721
718
|
/**
|
|
722
719
|
* NeoCheckbox - Checkbox component based on MUI Checkbox
|
|
723
720
|
*
|
|
724
|
-
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=
|
|
721
|
+
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=11487-81
|
|
725
722
|
*
|
|
726
723
|
* Figma Props Mapping:
|
|
727
724
|
* - Checked (True|False) → checked prop
|
|
@@ -787,7 +784,7 @@ interface NeoCodeSnippetProps extends Omit<ButtonBaseProps, 'children'> {
|
|
|
787
784
|
* The size of the code snippet
|
|
788
785
|
* @default "small"
|
|
789
786
|
*
|
|
790
|
-
* @figma
|
|
787
|
+
* @figma Content (Multi|Inline)
|
|
791
788
|
*/
|
|
792
789
|
size?: CodeSnippetSize;
|
|
793
790
|
/**
|
|
@@ -805,9 +802,9 @@ interface NeoCodeSnippetProps extends Omit<ButtonBaseProps, 'children'> {
|
|
|
805
802
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4187-30353
|
|
806
803
|
*
|
|
807
804
|
* Figma Props Mapping:
|
|
808
|
-
* -
|
|
809
|
-
* -
|
|
810
|
-
* -
|
|
805
|
+
* - Theme (Dark|Light) → variant (filled|outlined)
|
|
806
|
+
* - Content (Multi|Inline) → size prop + auto-detected multiline
|
|
807
|
+
* - Show icon → endIcon (ReactNode, unmappable: boolean vs ReactNode)
|
|
811
808
|
* - Text content → children prop
|
|
812
809
|
*/
|
|
813
810
|
declare const NeoCodeSnippet: {
|
|
@@ -1699,7 +1696,7 @@ declare const NeoNavigationAvatar: {
|
|
|
1699
1696
|
displayName: string;
|
|
1700
1697
|
};
|
|
1701
1698
|
|
|
1702
|
-
|
|
1699
|
+
type NeoNavigationItemOwnProps = {
|
|
1703
1700
|
/**
|
|
1704
1701
|
* Icon element to display
|
|
1705
1702
|
*/
|
|
@@ -1723,16 +1720,19 @@ interface NeoNavigationItemProps extends Omit<ButtonBaseProps, 'children'> {
|
|
|
1723
1720
|
* Additional content
|
|
1724
1721
|
*/
|
|
1725
1722
|
children?: ReactNode;
|
|
1726
|
-
}
|
|
1723
|
+
};
|
|
1724
|
+
type NeoNavigationItemProps<C extends ElementType = typeof ButtonBase__default> = NeoNavigationItemOwnProps & Omit<ButtonBaseProps, keyof NeoNavigationItemOwnProps | 'component'> & Omit<ComponentPropsWithoutRef<C>, keyof NeoNavigationItemOwnProps | keyof ButtonBaseProps> & {
|
|
1725
|
+
component?: C;
|
|
1726
|
+
};
|
|
1727
1727
|
/**
|
|
1728
1728
|
* NeoNavigationItem - Vertical navigation item with icon, label, and optional tag
|
|
1729
1729
|
*
|
|
1730
1730
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=8455-6120
|
|
1731
1731
|
*/
|
|
1732
|
-
declare
|
|
1733
|
-
|
|
1734
|
-
displayName: string;
|
|
1735
|
-
}
|
|
1732
|
+
declare function NeoNavigationItem<C extends ElementType = typeof ButtonBase__default>({ icon, label, selected, tag, children, ...props }: NeoNavigationItemProps<C>): react_jsx_runtime.JSX.Element;
|
|
1733
|
+
declare namespace NeoNavigationItem {
|
|
1734
|
+
var displayName: string;
|
|
1735
|
+
}
|
|
1736
1736
|
|
|
1737
1737
|
/**
|
|
1738
1738
|
* Breadcrumb item configuration
|
|
@@ -2006,7 +2006,6 @@ interface NeoRadioProps extends Omit<RadioProps, 'size'> {
|
|
|
2006
2006
|
* NeoRadio - Radio button component based on MUI Radio
|
|
2007
2007
|
*
|
|
2008
2008
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4122-40039
|
|
2009
|
-
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4122-40150
|
|
2010
2009
|
*
|
|
2011
2010
|
* Figma Props Mapping:
|
|
2012
2011
|
* - Checked (True|False) → checked prop
|
|
@@ -2222,7 +2221,7 @@ declare module '@mui/material/Chip' {
|
|
|
2222
2221
|
filled: true;
|
|
2223
2222
|
}
|
|
2224
2223
|
}
|
|
2225
|
-
|
|
2224
|
+
type NeoTagOwnProps = {
|
|
2226
2225
|
/**
|
|
2227
2226
|
* The size of the tag
|
|
2228
2227
|
* @figma m (sm|md|lg)
|
|
@@ -2241,7 +2240,10 @@ interface NeoTagProps extends Omit<ChipProps, 'variant' | 'size'> {
|
|
|
2241
2240
|
* @default "default"
|
|
2242
2241
|
*/
|
|
2243
2242
|
color?: 'default' | 'error' | 'warning' | 'success' | 'info' | 'violet' | 'beta';
|
|
2244
|
-
}
|
|
2243
|
+
};
|
|
2244
|
+
type NeoTagProps<C extends ElementType = typeof Chip> = NeoTagOwnProps & Omit<ChipProps, keyof NeoTagOwnProps | 'component'> & Omit<ComponentPropsWithoutRef<C>, keyof NeoTagOwnProps | keyof ChipProps> & {
|
|
2245
|
+
component?: C;
|
|
2246
|
+
};
|
|
2245
2247
|
/**
|
|
2246
2248
|
* NeoTag - Small pill-shaped label component based on MUI Chip
|
|
2247
2249
|
*
|
|
@@ -2253,17 +2255,17 @@ interface NeoTagProps extends Omit<ChipProps, 'variant' | 'size'> {
|
|
|
2253
2255
|
* - state (Neutral|Error|Warning|Success|Info|Violet|Beta) → color (default|error|warning|success|info|violet|beta)
|
|
2254
2256
|
* - Label text → label prop
|
|
2255
2257
|
*/
|
|
2256
|
-
declare
|
|
2257
|
-
|
|
2258
|
-
displayName: string;
|
|
2259
|
-
}
|
|
2258
|
+
declare function NeoTag<C extends ElementType = typeof Chip>({ size, variant, ...props }: NeoTagProps<C>): react_jsx_runtime.JSX.Element;
|
|
2259
|
+
declare namespace NeoTag {
|
|
2260
|
+
var displayName: string;
|
|
2261
|
+
}
|
|
2260
2262
|
|
|
2261
2263
|
interface NeoToastProps extends Omit<AlertProps, 'variant' | 'severity' | 'color'> {
|
|
2262
2264
|
/**
|
|
2263
2265
|
* The visual style variant of the toast
|
|
2264
2266
|
* @default "default"
|
|
2265
2267
|
*/
|
|
2266
|
-
variant?: 'default' | 'dark' | 'brand' | 'error' | 'success' | 'info'
|
|
2268
|
+
variant?: 'default' | 'dark' | 'brand' | 'error' | 'success' | 'info';
|
|
2267
2269
|
/**
|
|
2268
2270
|
* The title/header text
|
|
2269
2271
|
*/
|
|
@@ -2282,14 +2284,6 @@ interface NeoToastProps extends Omit<AlertProps, 'variant' | 'severity' | 'color
|
|
|
2282
2284
|
* Pass action buttons as children of this prop
|
|
2283
2285
|
*/
|
|
2284
2286
|
actions?: ReactNode;
|
|
2285
|
-
/**
|
|
2286
|
-
* Progress value (0-100) for download variant
|
|
2287
|
-
*/
|
|
2288
|
-
progress?: number;
|
|
2289
|
-
/**
|
|
2290
|
-
* File name for download variant
|
|
2291
|
-
*/
|
|
2292
|
-
fileName?: string;
|
|
2293
2287
|
/**
|
|
2294
2288
|
* Callback when close button is clicked
|
|
2295
2289
|
*/
|
|
@@ -2301,15 +2295,14 @@ interface NeoToastProps extends Omit<AlertProps, 'variant' | 'severity' | 'color
|
|
|
2301
2295
|
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=4122-37223
|
|
2302
2296
|
*
|
|
2303
2297
|
* Figma Props Mapping:
|
|
2304
|
-
* - type (Light mode|Dark mode|Brand color|Error|Success|Info
|
|
2298
|
+
* - type (Light mode|Dark mode|Brand color|Error|Success|Info) → variant (default|dark|brand|error|success|info)
|
|
2305
2299
|
* - header → title (string)
|
|
2306
2300
|
* - supportingText → message (string)
|
|
2307
2301
|
* - xCloseButton → showClose (boolean)
|
|
2308
2302
|
* - actions → actions (ReactNode)
|
|
2309
|
-
* - Progress bar → progress (number 0-100)
|
|
2310
2303
|
*/
|
|
2311
2304
|
declare const NeoToast: {
|
|
2312
|
-
({ variant, title, message, showClose, actions,
|
|
2305
|
+
({ variant, title, message, showClose, actions, onClose, ...props }: NeoToastProps): react_jsx_runtime.JSX.Element;
|
|
2313
2306
|
displayName: string;
|
|
2314
2307
|
};
|
|
2315
2308
|
/**
|
|
@@ -2675,87 +2668,80 @@ declare const NeoTypologyControl: {
|
|
|
2675
2668
|
displayName: string;
|
|
2676
2669
|
};
|
|
2677
2670
|
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
interface NeoMarketplaceCardProps extends Omit<CardProps, 'children' | 'title'> {
|
|
2682
|
-
/**
|
|
2683
|
-
* The logo to display (48x48px ReactNode)
|
|
2684
|
-
*/
|
|
2671
|
+
type NeoCardSize = 'small' | 'large';
|
|
2672
|
+
interface NeoCardSmallProps extends Omit<CardProps, 'children' | 'title'> {
|
|
2673
|
+
size: 'small';
|
|
2685
2674
|
logo: ReactNode;
|
|
2686
|
-
/**
|
|
2687
|
-
* The recipe count text (e.g., "1,260 recipes")
|
|
2688
|
-
*/
|
|
2689
2675
|
recipeCount: string;
|
|
2690
|
-
/**
|
|
2691
|
-
* The title text or element
|
|
2692
|
-
*/
|
|
2693
2676
|
title: ReactNode | string;
|
|
2694
|
-
/**
|
|
2695
|
-
* The description text
|
|
2696
|
-
*/
|
|
2697
2677
|
description: string;
|
|
2698
|
-
/**
|
|
2699
|
-
* Whether the card is in selected/active state
|
|
2700
|
-
* @default false
|
|
2701
|
-
* @figma State (Active)
|
|
2702
|
-
*/
|
|
2703
2678
|
selected?: boolean;
|
|
2704
|
-
/**
|
|
2705
|
-
* Whether the card is disabled
|
|
2706
|
-
* @default false
|
|
2707
|
-
* @figma State (Disabled)
|
|
2708
|
-
*/
|
|
2709
2679
|
disabled?: boolean;
|
|
2710
|
-
/**
|
|
2711
|
-
* Click handler for the card
|
|
2712
|
-
*/
|
|
2713
2680
|
onClick?: () => void;
|
|
2714
2681
|
}
|
|
2682
|
+
interface NeoCardLargeProps extends Omit<CardProps, 'children' | 'title'> {
|
|
2683
|
+
size: 'large';
|
|
2684
|
+
disabled?: boolean;
|
|
2685
|
+
cardTheme?: 'light' | 'dark';
|
|
2686
|
+
showIcon?: boolean;
|
|
2687
|
+
showGel?: boolean;
|
|
2688
|
+
showButtons?: boolean;
|
|
2689
|
+
icon?: ReactNode;
|
|
2690
|
+
gel?: ReactNode;
|
|
2691
|
+
title?: ReactNode;
|
|
2692
|
+
children?: ReactNode;
|
|
2693
|
+
actions?: ReactNode;
|
|
2694
|
+
onClick?: () => void;
|
|
2695
|
+
}
|
|
2696
|
+
type NeoCardProps = NeoCardSmallProps | NeoCardLargeProps;
|
|
2697
|
+
declare const NeoCard: {
|
|
2698
|
+
(props: NeoCardProps): react_jsx_runtime.JSX.Element;
|
|
2699
|
+
displayName: string;
|
|
2700
|
+
};
|
|
2701
|
+
|
|
2715
2702
|
/**
|
|
2716
|
-
*
|
|
2717
|
-
*
|
|
2718
|
-
|
|
2719
|
-
|
|
2703
|
+
* Props for the NeoMarketplaceCard component
|
|
2704
|
+
* @deprecated Use NeoCardSmallProps with NeoCard instead
|
|
2705
|
+
*/
|
|
2706
|
+
interface NeoMarketplaceCardProps extends Omit<NeoCardSmallProps, 'size'> {
|
|
2707
|
+
}
|
|
2708
|
+
/**
|
|
2709
|
+
* @deprecated Use `NeoCard` with `size="small"` instead.
|
|
2720
2710
|
*
|
|
2721
2711
|
* @example
|
|
2722
2712
|
* ```tsx
|
|
2723
|
-
*
|
|
2724
|
-
*
|
|
2725
|
-
* recipeCount="1,260 recipes"
|
|
2726
|
-
* title="Java"
|
|
2727
|
-
* description="Basic building blocks for transforming Java..."
|
|
2728
|
-
* selected={false}
|
|
2729
|
-
* disabled={false}
|
|
2730
|
-
* onClick={() => console.log('clicked')}
|
|
2731
|
-
* />
|
|
2732
|
-
* ```
|
|
2713
|
+
* // Before
|
|
2714
|
+
* <NeoMarketplaceCard logo={...} title="Java" ... />
|
|
2733
2715
|
*
|
|
2734
|
-
*
|
|
2716
|
+
* // After
|
|
2717
|
+
* <NeoCard size="small" logo={...} title="Java" ... />
|
|
2718
|
+
* ```
|
|
2719
|
+
*/
|
|
2720
|
+
declare const NeoMarketplaceCard: {
|
|
2721
|
+
(props: NeoMarketplaceCardProps): react_jsx_runtime.JSX.Element;
|
|
2722
|
+
displayName: string;
|
|
2723
|
+
};
|
|
2724
|
+
|
|
2725
|
+
/**
|
|
2726
|
+
* Props for the NeoMarketplaceLargeCard component
|
|
2727
|
+
* @deprecated Use NeoCardLargeProps with NeoCard instead
|
|
2728
|
+
*/
|
|
2729
|
+
interface NeoMarketplaceLargeCardProps extends Omit<NeoCardLargeProps, 'size'> {
|
|
2730
|
+
}
|
|
2731
|
+
/**
|
|
2732
|
+
* @deprecated Use `NeoCard` with `size="large"` instead.
|
|
2735
2733
|
*
|
|
2736
|
-
*
|
|
2737
|
-
*
|
|
2738
|
-
*
|
|
2739
|
-
*
|
|
2740
|
-
* - State="Hover" → CSS :hover state (not a prop)
|
|
2741
|
-
* - State="Default" → Base state (no props)
|
|
2734
|
+
* @example
|
|
2735
|
+
* ```tsx
|
|
2736
|
+
* // Before
|
|
2737
|
+
* <NeoMarketplaceLargeCard cardTheme="light" ... />
|
|
2742
2738
|
*
|
|
2743
|
-
*
|
|
2744
|
-
*
|
|
2745
|
-
*
|
|
2746
|
-
* - semanticColors.border.primary (#d1d5db) - Default border
|
|
2747
|
-
* - semanticColors.buttons.primary.default (#2f42ff) - Active/focused border
|
|
2748
|
-
* - shadows.focusWhite1 - Inner white focus ring (2px spread)
|
|
2749
|
-
* - shadows.focusBlue2 - Outer blue focus ring (4px spread)
|
|
2750
|
-
* - colors.grey[800] (#1F2937) - Text color
|
|
2751
|
-
* - typography.fontSize.xxs (10px) - Recipe count
|
|
2752
|
-
* - typography.fontSize.xs (12px) - Description
|
|
2753
|
-
* - typography.fontSize.h6 (16px) - Title
|
|
2754
|
-
* - typography.fontWeight.semiBold (600) - Title and recipe count
|
|
2755
|
-
* - typography.fontWeight.regular (400) - Description
|
|
2739
|
+
* // After
|
|
2740
|
+
* <NeoCard size="large" cardTheme="light" ... />
|
|
2741
|
+
* ```
|
|
2756
2742
|
*/
|
|
2757
|
-
declare const
|
|
2758
|
-
(
|
|
2743
|
+
declare const NeoMarketplaceLargeCard: {
|
|
2744
|
+
(props: NeoMarketplaceLargeCardProps): react_jsx_runtime.JSX.Element;
|
|
2759
2745
|
displayName: string;
|
|
2760
2746
|
};
|
|
2761
2747
|
|
|
@@ -2952,5 +2938,5 @@ declare module '@mui/x-data-grid-pro' {
|
|
|
2952
2938
|
|
|
2953
2939
|
declare const version: string
|
|
2954
2940
|
|
|
2955
|
-
export { ActivityScene, CIRCLE_RADIUS, NeoActivityHeader, NeoActivityIndicatorCell, NeoAvatar, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonTab, NeoButtonTabGroup, NeoCheckbox, NeoCodeSnippet, NeoDataGrid, NeoDataGridCellContent, NeoDataGridColumnsButton, NeoDataGridColumnsPanel, NeoDataGridFilterPanel, NeoDataGridFilterPanelAddIcon, NeoDataGridFilterPanelDeleteIcon, NeoDataGridFilterPanelRemoveAllIcon, NeoDataGridFiltersButton, NeoDataGridHeaderLabel, NeoDropdown as NeoDataGridSelect, NeoDatePicker, NeoDivider, NeoDot, NeoDropdown, NeoDropdownMenu, NeoDropdownMenuItem, NeoDropdownMenuItem as NeoDropdownOption, NeoFilterChip, NeoFooter, NeoGeneralAvatar, NeoIconButton, NeoInfiniteScrollGrid, NeoInputField, NeoListItem, NeoListItemButton, NeoLoadingSpinner, NeoMarketplaceCard, NeoDropdownMenu as NeoMenu, NeoDropdownMenuItem as NeoMenuItem, NeoModal, NeoModalContent, NeoModalFooter, NeoModalHeader, NeoMultiBadgesCell, NeoNavigationAvatar, NeoNavigationItem, NeoPageContent, NeoPaginatedGrid, NeoProgressbar, NeoQuickFilter, NeoRadio, NeoSearchChip, NeoDropdown as NeoSelect, NeoDropdownMenuItem as NeoSelectOption, NeoSkeleton, NeoStatusBadgeCell, NeoStatusBanner, NeoTab, NeoTabs, NeoTag, NeoToast, NeoToastButton, NeoToggle, NeoToolbar, NeoTooltip, NeoTreeItem, NeoTreeView, StyledToggleButton as NeoTypologyButton, NeoTypologyControl, NeoUserAvatarCell, SortedAscendingIcon, SortedDescendingIcon, UnsortedIcon, getDataGridHeaderStyles, version };
|
|
2956
|
-
export type { ActivityColor, ActivityEvent, ActivityHeaderSize, BreadcrumbItem, DataGridSize, NeoActivityHeaderProps, NeoActivityIndicatorCellProps, NeoAvatarProps, NeoBadgeProps, NeoBannerProps, NeoBreadcrumbLinkProps, NeoBreadcrumbsProps, NeoButtonProps, NeoButtonTabGroupProps, NeoButtonTabProps, NeoCheckboxProps, NeoCodeSnippetProps, NeoDataGridCellContentProps, NeoDataGridHeaderLabelProps, NeoDataGridProps, NeoDatePickerProps, NeoDividerProps, NeoDotProps, NeoDropdownMenuItemProps, NeoDropdownMenuProps, NeoDropdownProps, NeoFilterChipProps, NeoFooterProps, NeoGeneralAvatarProps, NeoIconButtonProps, NeoInfiniteScrollGridProps, NeoInputFieldProps, NeoListItemButtonProps, NeoListItemProps, NeoLoadingSpinnerProps, NeoMarketplaceCardProps, NeoDropdownMenuItemProps as NeoMenuItemProps, NeoDropdownMenuProps as NeoMenuProps, NeoModalContentProps, NeoModalFooterProps, NeoModalHeaderProps, NeoModalProps, NeoMultiBadgesCellProps, NeoNavigationAvatarProps, NeoNavigationItemProps, NeoPageContentProps, NeoPaginatedGridProps, NeoProgressbarProps, NeoQuickFilterProps, NeoRadioProps, NeoSearchChipProps, NeoDropdownProps as NeoSelectProps, NeoSkeletonProps, NeoStatusBadgeCellProps, NeoStatusBannerProps, NeoTabProps, NeoTagProps, NeoToastProps, NeoToggleProps, NeoToolbarProps, NeoTooltipProps, NeoTreeItemData, NeoTreeItemProps, NeoTreeViewProps, NeoTypologyControlProps, NeoUserAvatarCellProps };
|
|
2941
|
+
export { ActivityScene, CIRCLE_RADIUS, NeoActivityHeader, NeoActivityIndicatorCell, NeoAvatar, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonTab, NeoButtonTabGroup, NeoCard, NeoCheckbox, NeoCodeSnippet, NeoDataGrid, NeoDataGridCellContent, NeoDataGridColumnsButton, NeoDataGridColumnsPanel, NeoDataGridFilterPanel, NeoDataGridFilterPanelAddIcon, NeoDataGridFilterPanelDeleteIcon, NeoDataGridFilterPanelRemoveAllIcon, NeoDataGridFiltersButton, NeoDataGridHeaderLabel, NeoDropdown as NeoDataGridSelect, NeoDatePicker, NeoDivider, NeoDot, NeoDropdown, NeoDropdownMenu, NeoDropdownMenuItem, NeoDropdownMenuItem as NeoDropdownOption, NeoFilterChip, NeoFooter, NeoGeneralAvatar, NeoIconButton, NeoInfiniteScrollGrid, NeoInputField, NeoListItem, NeoListItemButton, NeoLoadingSpinner, NeoMarketplaceCard, NeoMarketplaceLargeCard, NeoDropdownMenu as NeoMenu, NeoDropdownMenuItem as NeoMenuItem, NeoModal, NeoModalContent, NeoModalFooter, NeoModalHeader, NeoMultiBadgesCell, NeoNavigationAvatar, NeoNavigationItem, NeoPageContent, NeoPaginatedGrid, NeoProgressbar, NeoQuickFilter, NeoRadio, NeoSearchChip, NeoDropdown as NeoSelect, NeoDropdownMenuItem as NeoSelectOption, NeoSkeleton, NeoStatusBadgeCell, NeoStatusBanner, NeoTab, NeoTabs, NeoTag, NeoToast, NeoToastButton, NeoToggle, NeoToolbar, NeoTooltip, NeoTreeItem, NeoTreeView, StyledToggleButton as NeoTypologyButton, NeoTypologyControl, NeoUserAvatarCell, SortedAscendingIcon, SortedDescendingIcon, UnsortedIcon, getDataGridHeaderStyles, version };
|
|
2942
|
+
export type { ActivityColor, ActivityEvent, ActivityHeaderSize, BreadcrumbItem, DataGridSize, NeoActivityHeaderProps, NeoActivityIndicatorCellProps, NeoAvatarProps, NeoBadgeProps, NeoBannerProps, NeoBreadcrumbLinkProps, NeoBreadcrumbsProps, NeoButtonProps, NeoButtonTabGroupProps, NeoButtonTabProps, NeoCardLargeProps, NeoCardProps, NeoCardSize, NeoCardSmallProps, NeoCheckboxProps, NeoCodeSnippetProps, NeoDataGridCellContentProps, NeoDataGridHeaderLabelProps, NeoDataGridProps, NeoDatePickerProps, NeoDividerProps, NeoDotProps, NeoDropdownMenuItemProps, NeoDropdownMenuProps, NeoDropdownProps, NeoFilterChipProps, NeoFooterProps, NeoGeneralAvatarProps, NeoIconButtonProps, NeoInfiniteScrollGridProps, NeoInputFieldProps, NeoListItemButtonProps, NeoListItemProps, NeoLoadingSpinnerProps, NeoMarketplaceCardProps, NeoMarketplaceLargeCardProps, NeoDropdownMenuItemProps as NeoMenuItemProps, NeoDropdownMenuProps as NeoMenuProps, NeoModalContentProps, NeoModalFooterProps, NeoModalHeaderProps, NeoModalProps, NeoMultiBadgesCellProps, NeoNavigationAvatarProps, NeoNavigationItemProps, NeoPageContentProps, NeoPaginatedGridProps, NeoProgressbarProps, NeoQuickFilterProps, NeoRadioProps, NeoSearchChipProps, NeoDropdownProps as NeoSelectProps, NeoSkeletonProps, NeoStatusBadgeCellProps, NeoStatusBannerProps, NeoTabProps, NeoTagProps, NeoToastProps, NeoToggleProps, NeoToolbarProps, NeoTooltipProps, NeoTreeItemData, NeoTreeItemProps, NeoTreeViewProps, NeoTypologyControlProps, NeoUserAvatarCellProps };
|