@up42/up-components 4.7.2 → 4.8.0

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.
@@ -0,0 +1,30 @@
1
+ import React, { ReactNode } from 'react';
2
+ import { CardProps } from '@mui/material';
3
+ export type FeatureCardProps = CardProps & {
4
+ banner?: ReactNode;
5
+ header?: {
6
+ title: ReactNode;
7
+ actions?: ReactNode;
8
+ };
9
+ footer?: {
10
+ info?: ReactNode;
11
+ actions?: ReactNode;
12
+ };
13
+ /**
14
+ * Whether the card is selectable.
15
+ */
16
+ isSelectable?: boolean;
17
+ /**
18
+ * Applies the selected state to the card from the parent.
19
+ */
20
+ selected?: boolean;
21
+ /**
22
+ * Whether the card is hoverable.
23
+ */
24
+ isHoverable?: boolean;
25
+ /**
26
+ * Applies the hovered state to the card from the parent.
27
+ */
28
+ hovered?: boolean;
29
+ };
30
+ export declare const FeatureCard: ({ children, header, footer, banner, isSelectable, selected, isHoverable, hovered, ...props }: FeatureCardProps) => React.JSX.Element;
@@ -45,6 +45,7 @@ export { Badge, type BadgeProps } from './components/Badge/Badge';
45
45
  export { Tag, type TagProps } from './components/Tag/Tag';
46
46
  export { DateTime, type DateTimeProps } from './components/DateTime/DateTime';
47
47
  export { Divider, type DividerProps } from './components/Divider/Divider';
48
+ export { FeatureCard, type FeatureCardProps } from './components/FeatureCard/FeatureCard';
48
49
  export { DocumentationPopover, type DocumentationPopoverProps, } from './components/DocumentationPopover/DocumentationPopover';
49
50
  export { CodeInline, type CodeInlineProps } from './components/CodeInline/CodeInline';
50
51
  export { CodeSnippet, type CodeSnippetProps, type CodeSnippetItemProps } from './components/CodeSnippet/CodeSnippet';
package/dist/index.d.ts CHANGED
@@ -5095,6 +5095,35 @@ declare const Divider: React__default.ForwardRefExoticComponent<Omit<Omit<Divide
5095
5095
  size?: "small" | "large" | "medium" | undefined;
5096
5096
  }, "ref"> & React__default.RefAttributes<unknown>>;
5097
5097
 
5098
+ type FeatureCardProps = CardProps & {
5099
+ banner?: ReactNode;
5100
+ header?: {
5101
+ title: ReactNode;
5102
+ actions?: ReactNode;
5103
+ };
5104
+ footer?: {
5105
+ info?: ReactNode;
5106
+ actions?: ReactNode;
5107
+ };
5108
+ /**
5109
+ * Whether the card is selectable.
5110
+ */
5111
+ isSelectable?: boolean;
5112
+ /**
5113
+ * Applies the selected state to the card from the parent.
5114
+ */
5115
+ selected?: boolean;
5116
+ /**
5117
+ * Whether the card is hoverable.
5118
+ */
5119
+ isHoverable?: boolean;
5120
+ /**
5121
+ * Applies the hovered state to the card from the parent.
5122
+ */
5123
+ hovered?: boolean;
5124
+ };
5125
+ declare const FeatureCard: ({ children, header, footer, banner, isSelectable, selected, isHoverable, hovered, ...props }: FeatureCardProps) => React__default.JSX.Element;
5126
+
5098
5127
  type DocumentationPopoverProps = {
5099
5128
  title: string;
5100
5129
  children: React__default.ReactNode;
@@ -5342,5 +5371,5 @@ type ContextState = {
5342
5371
  */
5343
5372
  declare const useAlert: () => ContextState;
5344
5373
 
5345
- export { Alert, Avatar, Badge, Banner, Button, Checkbox, CodeInline, CodeSnippet, ContactBox, ControlButton, CopyButton, DataGrid, DateTime, Divider, DocumentationPopover, EmptyState, FormCheckbox, FormDatePicker, FormDateRangePicker, FormDateRangePickerList, FormDateTimePicker, FormInput, FormRadio, FormSelect, FormSwitch, GridContainer, GridItem, Icon, Illustration, InfoCard, InfoModal, InfoPopover, Input, Link, Loading, Logo, NotFound, PageContainer, PageHeader, Radio, Select, Slider, Switch, Tab, TabGroup, Table, TableBody, TableCell, TableContainer, TableFooter, TableHead, TablePagination, TableRow, TableSortLabel, Tabs, Tag, Typography, UpComponentsProvider, capitalize, copyToClipboard, formatDate, formatFileSize, formatNumber, theme, useAlert, useCursorPagination, useDebounce, useQueryParams, useRemotePagination };
5346
- export type { AlertProps, AvatarProps, BadgeProps, BannerProps, ButtonProps, CheckboxProps, CodeInlineProps, CodeSnippetItemProps, CodeSnippetProps, ContactBoxProps, ControlButtonProps, CopyButtonProps, CreateAlertProps, CreateSnackbarProps, CursorPaginatedResponse, DatePickerDateType, DateRange, DateTimeProps, DividerProps, DocumentationPopoverProps, EmptyStateProps, FormCheckboxProps, FormDatePickerProps, FormDateRangePickerListProps, FormDateRangePickerProps, FormDateTimePickerProps, FormInputProps, FormRadioProps, FormSelectProps, FormSwitchProps, GridContainerProps, GridItemProps, IconProps, IllustrationProps, InfoCardProps, InfoModalProps, InfoPopoverProps, InputProps, LinkProps, LoadingProps, LogoProps, NotFoundProps, PageContainerProps, PageHeaderProps, PaginatedResponse, RadioProps, SelectProps, SliderProps, SwitchProps, TabGroupProps, TabProps, TableBodyProps, TableCellProps, TableContainerProps, TableFooterProps, TableHeadProps, TablePaginationProps, TableProps, TableRowProps, TableSortLabelProps, TabsProps, TagProps, TypographyProps };
5374
+ export { Alert, Avatar, Badge, Banner, Button, Checkbox, CodeInline, CodeSnippet, ContactBox, ControlButton, CopyButton, DataGrid, DateTime, Divider, DocumentationPopover, EmptyState, FeatureCard, FormCheckbox, FormDatePicker, FormDateRangePicker, FormDateRangePickerList, FormDateTimePicker, FormInput, FormRadio, FormSelect, FormSwitch, GridContainer, GridItem, Icon, Illustration, InfoCard, InfoModal, InfoPopover, Input, Link, Loading, Logo, NotFound, PageContainer, PageHeader, Radio, Select, Slider, Switch, Tab, TabGroup, Table, TableBody, TableCell, TableContainer, TableFooter, TableHead, TablePagination, TableRow, TableSortLabel, Tabs, Tag, Typography, UpComponentsProvider, capitalize, copyToClipboard, formatDate, formatFileSize, formatNumber, theme, useAlert, useCursorPagination, useDebounce, useQueryParams, useRemotePagination };
5375
+ export type { AlertProps, AvatarProps, BadgeProps, BannerProps, ButtonProps, CheckboxProps, CodeInlineProps, CodeSnippetItemProps, CodeSnippetProps, ContactBoxProps, ControlButtonProps, CopyButtonProps, CreateAlertProps, CreateSnackbarProps, CursorPaginatedResponse, DatePickerDateType, DateRange, DateTimeProps, DividerProps, DocumentationPopoverProps, EmptyStateProps, FeatureCardProps, FormCheckboxProps, FormDatePickerProps, FormDateRangePickerListProps, FormDateRangePickerProps, FormDateTimePickerProps, FormInputProps, FormRadioProps, FormSelectProps, FormSwitchProps, GridContainerProps, GridItemProps, IconProps, IllustrationProps, InfoCardProps, InfoModalProps, InfoPopoverProps, InputProps, LinkProps, LoadingProps, LogoProps, NotFoundProps, PageContainerProps, PageHeaderProps, PaginatedResponse, RadioProps, SelectProps, SliderProps, SwitchProps, TabGroupProps, TabProps, TableBodyProps, TableCellProps, TableContainerProps, TableFooterProps, TableHeadProps, TablePaginationProps, TableProps, TableRowProps, TableSortLabelProps, TabsProps, TagProps, TypographyProps };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@up42/up-components",
3
- "version": "4.7.2",
3
+ "version": "4.8.0",
4
4
  "description": "UP42 Component Library",
5
5
  "author": "Axel Fuhrmann axel.fuhrmann@up42.com",
6
6
  "license": "ISC",