@moderneinc/neo-styled-components 4.0.0-next.91534 → 4.0.0-next.b214ff
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/MarketplaceCard/MarketplaceCard.d.ts +23 -0
- package/dist/MarketplaceLargeCard/MarketplaceLargeCard.d.ts +23 -0
- package/dist/index.d.ts +48 -2
- package/dist/index.esm.js +35 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +36 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { NeoCardSmallProps } from '../Card/Card';
|
|
2
|
+
/**
|
|
3
|
+
* Props for the NeoMarketplaceCard component
|
|
4
|
+
* @deprecated Use NeoCardSmallProps with NeoCard instead
|
|
5
|
+
*/
|
|
6
|
+
export interface NeoMarketplaceCardProps extends Omit<NeoCardSmallProps, 'size'> {
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated Use `NeoCard` with `size="small"` instead.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```tsx
|
|
13
|
+
* // Before
|
|
14
|
+
* <NeoMarketplaceCard logo={...} title="Java" ... />
|
|
15
|
+
*
|
|
16
|
+
* // After
|
|
17
|
+
* <NeoCard size="small" logo={...} title="Java" ... />
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
export declare const NeoMarketplaceCard: {
|
|
21
|
+
(props: NeoMarketplaceCardProps): import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
displayName: string;
|
|
23
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { NeoCardLargeProps } from '../Card/Card';
|
|
2
|
+
/**
|
|
3
|
+
* Props for the NeoMarketplaceLargeCard component
|
|
4
|
+
* @deprecated Use NeoCardLargeProps with NeoCard instead
|
|
5
|
+
*/
|
|
6
|
+
export interface NeoMarketplaceLargeCardProps extends Omit<NeoCardLargeProps, 'size'> {
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated Use `NeoCard` with `size="large"` instead.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```tsx
|
|
13
|
+
* // Before
|
|
14
|
+
* <NeoMarketplaceLargeCard cardTheme="light" ... />
|
|
15
|
+
*
|
|
16
|
+
* // After
|
|
17
|
+
* <NeoCard size="large" cardTheme="light" ... />
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
export declare const NeoMarketplaceLargeCard: {
|
|
21
|
+
(props: NeoMarketplaceLargeCardProps): import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
displayName: string;
|
|
23
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -2690,6 +2690,52 @@ declare const NeoCard: {
|
|
|
2690
2690
|
displayName: string;
|
|
2691
2691
|
};
|
|
2692
2692
|
|
|
2693
|
+
/**
|
|
2694
|
+
* Props for the NeoMarketplaceCard component
|
|
2695
|
+
* @deprecated Use NeoCardSmallProps with NeoCard instead
|
|
2696
|
+
*/
|
|
2697
|
+
interface NeoMarketplaceCardProps extends Omit<NeoCardSmallProps, 'size'> {
|
|
2698
|
+
}
|
|
2699
|
+
/**
|
|
2700
|
+
* @deprecated Use `NeoCard` with `size="small"` instead.
|
|
2701
|
+
*
|
|
2702
|
+
* @example
|
|
2703
|
+
* ```tsx
|
|
2704
|
+
* // Before
|
|
2705
|
+
* <NeoMarketplaceCard logo={...} title="Java" ... />
|
|
2706
|
+
*
|
|
2707
|
+
* // After
|
|
2708
|
+
* <NeoCard size="small" logo={...} title="Java" ... />
|
|
2709
|
+
* ```
|
|
2710
|
+
*/
|
|
2711
|
+
declare const NeoMarketplaceCard: {
|
|
2712
|
+
(props: NeoMarketplaceCardProps): react_jsx_runtime.JSX.Element;
|
|
2713
|
+
displayName: string;
|
|
2714
|
+
};
|
|
2715
|
+
|
|
2716
|
+
/**
|
|
2717
|
+
* Props for the NeoMarketplaceLargeCard component
|
|
2718
|
+
* @deprecated Use NeoCardLargeProps with NeoCard instead
|
|
2719
|
+
*/
|
|
2720
|
+
interface NeoMarketplaceLargeCardProps extends Omit<NeoCardLargeProps, 'size'> {
|
|
2721
|
+
}
|
|
2722
|
+
/**
|
|
2723
|
+
* @deprecated Use `NeoCard` with `size="large"` instead.
|
|
2724
|
+
*
|
|
2725
|
+
* @example
|
|
2726
|
+
* ```tsx
|
|
2727
|
+
* // Before
|
|
2728
|
+
* <NeoMarketplaceLargeCard cardTheme="light" ... />
|
|
2729
|
+
*
|
|
2730
|
+
* // After
|
|
2731
|
+
* <NeoCard size="large" cardTheme="light" ... />
|
|
2732
|
+
* ```
|
|
2733
|
+
*/
|
|
2734
|
+
declare const NeoMarketplaceLargeCard: {
|
|
2735
|
+
(props: NeoMarketplaceLargeCardProps): react_jsx_runtime.JSX.Element;
|
|
2736
|
+
displayName: string;
|
|
2737
|
+
};
|
|
2738
|
+
|
|
2693
2739
|
/**
|
|
2694
2740
|
* NeoDataGridColumnsPanel - Custom columns panel for NeoDataGrid matching Figma design
|
|
2695
2741
|
*
|
|
@@ -2881,5 +2927,5 @@ declare module '@mui/x-data-grid-pro' {
|
|
|
2881
2927
|
|
|
2882
2928
|
declare const version: string
|
|
2883
2929
|
|
|
2884
|
-
export { ActivityScene, CIRCLE_RADIUS, NeoActivityHeader, NeoActivityIndicatorCell, NeoAlert, NeoAvatar, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonTab, NeoButtonTabGroup, NeoCard, NeoCheckbox, NeoCodeSnippet, NeoDataGrid, NeoDataGridCellContent, NeoDataGridColumnsButton, NeoDataGridColumnsPanel, NeoDataGridFilterPanel, NeoDataGridFilterPanelAddIcon, NeoDataGridFilterPanelDeleteIcon, NeoDataGridFilterPanelRemoveAllIcon, NeoDataGridFiltersButton, NeoDataGridHeaderLabel, NeoSelect as NeoDataGridSelect, NeoDatePicker, NeoDivider, NeoDot, NeoSelect as NeoDropdown, NeoMenu as NeoDropdownMenu, NeoMenuItem as NeoDropdownMenuItem, NeoMenuItem as NeoDropdownOption, NeoFilterChip, NeoFooter, NeoGeneralAvatar, NeoIconButton, NeoInfiniteScrollGrid, NeoInputField, NeoListItem, NeoListItemButton, NeoLoadingSpinner, NeoMenu, NeoMenuItem, NeoModal, NeoModalContent, NeoModalFooter, NeoModalHeader, NeoMultiBadgesCell, NeoNavigationAvatar, NeoNavigationItem, NeoPageContent, NeoPaginatedGrid, NeoProgressbar, NeoQuickFilter, NeoRadio, NeoSearchChip, NeoSelect, NeoMenuItem as NeoSelectOption, NeoSkeleton, NeoStatusBadgeCell, NeoTab, NeoTabs, NeoTag, NeoToast, NeoToastButton, NeoToggle, NeoToolbar, NeoTooltip, NeoTreeItem, NeoTreeView, StyledToggleButton as NeoTypologyButton, NeoTypologyControl, NeoUserAvatarCell, SortedAscendingIcon, SortedDescendingIcon, UnsortedIcon, getDataGridHeaderStyles, version };
|
|
2885
|
-
export type { ActivityColor, ActivityEvent, ActivityHeaderSize, BreadcrumbItem, DataGridSize, NeoActivityHeaderProps, NeoActivityIndicatorCellProps, NeoAlertProps, NeoAvatarProps, NeoBadgeProps, NeoBannerProps, NeoBreadcrumbLinkProps, NeoBreadcrumbsProps, NeoButtonProps, NeoButtonTabGroupProps, NeoButtonTabProps, NeoCardLargeProps, NeoCardProps, NeoCardSize, NeoCardSmallProps, NeoCheckboxProps, NeoCodeSnippetProps, NeoDataGridCellContentProps, NeoDataGridHeaderLabelProps, NeoDataGridProps, NeoDatePickerProps, NeoDividerProps, NeoDotProps, NeoMenuItemProps as NeoDropdownMenuItemProps, NeoMenuProps as NeoDropdownMenuProps, NeoSelectProps as NeoDropdownProps, NeoFilterChipProps, NeoFooterProps, NeoGeneralAvatarProps, NeoIconButtonProps, NeoInfiniteScrollGridProps, NeoInputFieldProps, NeoListItemButtonProps, NeoListItemProps, NeoLoadingSpinnerProps, NeoMenuItemProps, NeoMenuProps, NeoModalContentProps, NeoModalFooterProps, NeoModalHeaderProps, NeoModalProps, NeoMultiBadgesCellProps, NeoNavigationAvatarProps, NeoNavigationItemProps, NeoPageContentProps, NeoPaginatedGridProps, NeoProgressbarProps, NeoQuickFilterProps, NeoRadioProps, NeoSearchChipProps, NeoSelectProps, NeoSkeletonProps, NeoStatusBadgeCellProps, NeoTabProps, NeoTagProps, NeoToastProps, NeoToggleProps, NeoToolbarProps, NeoTooltipProps, NeoTreeItemData, NeoTreeItemProps, NeoTreeViewProps, NeoTypologyControlProps, NeoUserAvatarCellProps };
|
|
2930
|
+
export { ActivityScene, CIRCLE_RADIUS, NeoActivityHeader, NeoActivityIndicatorCell, NeoAlert, NeoAvatar, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonTab, NeoButtonTabGroup, NeoCard, NeoCheckbox, NeoCodeSnippet, NeoDataGrid, NeoDataGridCellContent, NeoDataGridColumnsButton, NeoDataGridColumnsPanel, NeoDataGridFilterPanel, NeoDataGridFilterPanelAddIcon, NeoDataGridFilterPanelDeleteIcon, NeoDataGridFilterPanelRemoveAllIcon, NeoDataGridFiltersButton, NeoDataGridHeaderLabel, NeoSelect as NeoDataGridSelect, NeoDatePicker, NeoDivider, NeoDot, NeoSelect as NeoDropdown, NeoMenu as NeoDropdownMenu, NeoMenuItem as NeoDropdownMenuItem, NeoMenuItem as NeoDropdownOption, NeoFilterChip, NeoFooter, NeoGeneralAvatar, NeoIconButton, NeoInfiniteScrollGrid, NeoInputField, NeoListItem, NeoListItemButton, NeoLoadingSpinner, NeoMarketplaceCard, NeoMarketplaceLargeCard, NeoMenu, NeoMenuItem, NeoModal, NeoModalContent, NeoModalFooter, NeoModalHeader, NeoMultiBadgesCell, NeoNavigationAvatar, NeoNavigationItem, NeoPageContent, NeoPaginatedGrid, NeoProgressbar, NeoQuickFilter, NeoRadio, NeoSearchChip, NeoSelect, NeoMenuItem as NeoSelectOption, NeoSkeleton, NeoStatusBadgeCell, NeoTab, NeoTabs, NeoTag, NeoToast, NeoToastButton, NeoToggle, NeoToolbar, NeoTooltip, NeoTreeItem, NeoTreeView, StyledToggleButton as NeoTypologyButton, NeoTypologyControl, NeoUserAvatarCell, SortedAscendingIcon, SortedDescendingIcon, UnsortedIcon, getDataGridHeaderStyles, version };
|
|
2931
|
+
export type { ActivityColor, ActivityEvent, ActivityHeaderSize, BreadcrumbItem, DataGridSize, NeoActivityHeaderProps, NeoActivityIndicatorCellProps, NeoAlertProps, NeoAvatarProps, NeoBadgeProps, NeoBannerProps, NeoBreadcrumbLinkProps, NeoBreadcrumbsProps, NeoButtonProps, NeoButtonTabGroupProps, NeoButtonTabProps, NeoCardLargeProps, NeoCardProps, NeoCardSize, NeoCardSmallProps, NeoCheckboxProps, NeoCodeSnippetProps, NeoDataGridCellContentProps, NeoDataGridHeaderLabelProps, NeoDataGridProps, NeoDatePickerProps, NeoDividerProps, NeoDotProps, NeoMenuItemProps as NeoDropdownMenuItemProps, NeoMenuProps as NeoDropdownMenuProps, NeoSelectProps as NeoDropdownProps, NeoFilterChipProps, NeoFooterProps, NeoGeneralAvatarProps, NeoIconButtonProps, NeoInfiniteScrollGridProps, NeoInputFieldProps, NeoListItemButtonProps, NeoListItemProps, NeoLoadingSpinnerProps, NeoMarketplaceCardProps, NeoMarketplaceLargeCardProps, NeoMenuItemProps, NeoMenuProps, NeoModalContentProps, NeoModalFooterProps, NeoModalHeaderProps, NeoModalProps, NeoMultiBadgesCellProps, NeoNavigationAvatarProps, NeoNavigationItemProps, NeoPageContentProps, NeoPaginatedGridProps, NeoProgressbarProps, NeoQuickFilterProps, NeoRadioProps, NeoSearchChipProps, NeoSelectProps, NeoSkeletonProps, NeoStatusBadgeCellProps, NeoTabProps, NeoTagProps, NeoToastProps, NeoToggleProps, NeoToolbarProps, NeoTooltipProps, NeoTreeItemData, NeoTreeItemProps, NeoTreeViewProps, NeoTypologyControlProps, NeoUserAvatarCellProps };
|
package/dist/index.esm.js
CHANGED
|
@@ -5067,6 +5067,40 @@ const NeoListItemButton = ({ children, selected = false, disabled = false, ...pr
|
|
|
5067
5067
|
};
|
|
5068
5068
|
NeoListItemButton.displayName = 'NeoListItemButton';
|
|
5069
5069
|
|
|
5070
|
+
/**
|
|
5071
|
+
* @deprecated Use `NeoCard` with `size="small"` instead.
|
|
5072
|
+
*
|
|
5073
|
+
* @example
|
|
5074
|
+
* ```tsx
|
|
5075
|
+
* // Before
|
|
5076
|
+
* <NeoMarketplaceCard logo={...} title="Java" ... />
|
|
5077
|
+
*
|
|
5078
|
+
* // After
|
|
5079
|
+
* <NeoCard size="small" logo={...} title="Java" ... />
|
|
5080
|
+
* ```
|
|
5081
|
+
*/
|
|
5082
|
+
const NeoMarketplaceCard = (props) => {
|
|
5083
|
+
return jsx(NeoCard, { size: "small", ...props });
|
|
5084
|
+
};
|
|
5085
|
+
NeoMarketplaceCard.displayName = 'NeoMarketplaceCard';
|
|
5086
|
+
|
|
5087
|
+
/**
|
|
5088
|
+
* @deprecated Use `NeoCard` with `size="large"` instead.
|
|
5089
|
+
*
|
|
5090
|
+
* @example
|
|
5091
|
+
* ```tsx
|
|
5092
|
+
* // Before
|
|
5093
|
+
* <NeoMarketplaceLargeCard cardTheme="light" ... />
|
|
5094
|
+
*
|
|
5095
|
+
* // After
|
|
5096
|
+
* <NeoCard size="large" cardTheme="light" ... />
|
|
5097
|
+
* ```
|
|
5098
|
+
*/
|
|
5099
|
+
const NeoMarketplaceLargeCard = (props) => {
|
|
5100
|
+
return jsx(NeoCard, { size: "large", ...props });
|
|
5101
|
+
};
|
|
5102
|
+
NeoMarketplaceLargeCard.displayName = 'NeoMarketplaceLargeCard';
|
|
5103
|
+
|
|
5070
5104
|
const StyledMenu = styled(Menu)(({ theme }) => ({
|
|
5071
5105
|
[`& .${paperClasses.root}`]: {
|
|
5072
5106
|
backgroundColor: semanticColors.surfaces.white,
|
|
@@ -6843,5 +6877,5 @@ NeoTypologyControl.displayName = 'NeoTypologyControl';
|
|
|
6843
6877
|
|
|
6844
6878
|
const version = '0.0.0-development';
|
|
6845
6879
|
|
|
6846
|
-
export { ActivityScene, CIRCLE_RADIUS, NeoActivityHeader, NeoActivityIndicatorCell, NeoAlert, NeoAvatar, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonTab, NeoButtonTabGroup, NeoCard, NeoCheckbox, NeoCodeSnippet, NeoDataGrid, NeoDataGridCellContent, NeoDataGridColumnsButton, NeoDataGridColumnsPanel, NeoDataGridFilterPanel, NeoDataGridFilterPanelAddIcon, NeoDataGridFilterPanelDeleteIcon, NeoDataGridFilterPanelRemoveAllIcon, NeoDataGridFiltersButton, NeoDataGridHeaderLabel, NeoSelect as NeoDataGridSelect, NeoDatePicker, NeoDivider, NeoDot, NeoDownloadToast, NeoSelect as NeoDropdown, NeoMenu as NeoDropdownMenu, NeoMenuItem as NeoDropdownMenuItem, NeoMenuItem as NeoDropdownOption, NeoFilterChip, NeoFooter, NeoGeneralAvatar, NeoIconButton, NeoIconWrapper, NeoInfiniteScrollGrid, NeoInputField, NeoListItem, NeoListItemButton, NeoLoadingSpinner, NeoMenu, NeoMenuItem, NeoModal, NeoModalContent, NeoModalFooter, NeoModalHeader, NeoMultiBadgesCell, NeoNavigationAvatar, NeoNavigationItem, NeoPageContent, NeoPaginatedGrid, NeoProgressbar, NeoQuickFilter, NeoRadio, NeoSearchChip, NeoSelect, NeoMenuItem as NeoSelectOption, NeoSkeleton, NeoStatusBadgeCell, NeoTab, NeoTabs, NeoTag, NeoToast, NeoToastButton, NeoToggle, NeoToolbar, NeoTooltip, NeoTreeItem, NeoTreeView, StyledToggleButton as NeoTypologyButton, NeoTypologyControl, NeoUserAvatarCell, SortedAscendingIcon, SortedDescendingIcon, UnsortedIcon, getDataGridHeaderStyles, neoRowHeights, version };
|
|
6880
|
+
export { ActivityScene, CIRCLE_RADIUS, NeoActivityHeader, NeoActivityIndicatorCell, NeoAlert, NeoAvatar, NeoBadge, NeoBanner, NeoBreadcrumbLink, NeoBreadcrumbs, NeoButton, NeoButtonTab, NeoButtonTabGroup, NeoCard, NeoCheckbox, NeoCodeSnippet, NeoDataGrid, NeoDataGridCellContent, NeoDataGridColumnsButton, NeoDataGridColumnsPanel, NeoDataGridFilterPanel, NeoDataGridFilterPanelAddIcon, NeoDataGridFilterPanelDeleteIcon, NeoDataGridFilterPanelRemoveAllIcon, NeoDataGridFiltersButton, NeoDataGridHeaderLabel, NeoSelect as NeoDataGridSelect, NeoDatePicker, NeoDivider, NeoDot, NeoDownloadToast, NeoSelect as NeoDropdown, NeoMenu as NeoDropdownMenu, NeoMenuItem as NeoDropdownMenuItem, NeoMenuItem as NeoDropdownOption, NeoFilterChip, NeoFooter, NeoGeneralAvatar, NeoIconButton, NeoIconWrapper, NeoInfiniteScrollGrid, NeoInputField, NeoListItem, NeoListItemButton, NeoLoadingSpinner, NeoMarketplaceCard, NeoMarketplaceLargeCard, NeoMenu, NeoMenuItem, NeoModal, NeoModalContent, NeoModalFooter, NeoModalHeader, NeoMultiBadgesCell, NeoNavigationAvatar, NeoNavigationItem, NeoPageContent, NeoPaginatedGrid, NeoProgressbar, NeoQuickFilter, NeoRadio, NeoSearchChip, NeoSelect, NeoMenuItem as NeoSelectOption, NeoSkeleton, NeoStatusBadgeCell, NeoTab, NeoTabs, NeoTag, NeoToast, NeoToastButton, NeoToggle, NeoToolbar, NeoTooltip, NeoTreeItem, NeoTreeView, StyledToggleButton as NeoTypologyButton, NeoTypologyControl, NeoUserAvatarCell, SortedAscendingIcon, SortedDescendingIcon, UnsortedIcon, getDataGridHeaderStyles, neoRowHeights, version };
|
|
6847
6881
|
//# sourceMappingURL=index.esm.js.map
|