@up42/up-components 1.4.2 → 1.5.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.
@@ -1,5 +1,15 @@
1
1
  /// <reference types="react" />
2
+ export declare type NotFoundProps = {
3
+ /**
4
+ * The label of the CTA button
5
+ */
6
+ ctaLabel?: string;
7
+ /**
8
+ * The path of the CTA button.
9
+ */
10
+ ctaPath?: string;
11
+ };
2
12
  /**
3
13
  * Documentation: https://up-components.up42.com/?path=/docs/patterns-notfound--docs
4
14
  */
5
- export declare const NotFound: () => JSX.Element;
15
+ export declare const NotFound: ({ ctaLabel, ctaPath }: NotFoundProps) => JSX.Element;
@@ -66,6 +66,9 @@ export { default as Workflow } from './workflow.svg';
66
66
  export { default as WorkflowPencil } from './workflow-pencil.svg';
67
67
  export { default as UpgradeShield } from './upgrade-shield.svg';
68
68
  export { default as ShieldWithLock } from './shield-lock.svg';
69
+ export { default as Cloud } from './cloud.svg';
70
+ export { default as BoxesGrid } from './boxes-grid.svg';
71
+ export { default as DottedLines } from './dotted-lines.svg';
69
72
  export { default as AccessTime } from '@mui/icons-material/AccessTime';
70
73
  export { default as ArrowBack } from '@mui/icons-material/ArrowBack';
71
74
  export { default as ArrowDownward } from '@mui/icons-material/ArrowDownward';
@@ -76,7 +79,6 @@ export { default as AutoStoriesOutlined } from '@mui/icons-material/AutoStoriesO
76
79
  export { default as Balance } from '@mui/icons-material/Balance';
77
80
  export { default as Brightness1 } from '@mui/icons-material/Brightness1';
78
81
  export { default as CampaignOutlined } from '@mui/icons-material/CampaignOutlined';
79
- export { default as Cloud } from '@mui/icons-material/Cloud';
80
82
  export { default as ContactSupportOutlined } from '@mui/icons-material/ContactSupportOutlined';
81
83
  export { default as ContentCopy } from '@mui/icons-material/ContentCopy';
82
84
  export { default as ContentCut } from '@mui/icons-material/ContentCut';
@@ -38,7 +38,7 @@ export { CopyButton, type CopyButtonProps } from './components/CopyButton/CopyBu
38
38
  export { Popover, type PopoverProps } from './components/Popover/Popover';
39
39
  export { InfoPopover, type InfoPopoverProps } from './components/InfoPopover/InfoPopover';
40
40
  export { PageHeader, type PageHeaderProps } from './components/PageHeader/PageHeader';
41
- export { NotFound } from './components/NotFound/NotFound';
41
+ export { NotFound, type NotFoundProps } from './components/NotFound/NotFound';
42
42
  export { Loading, type LoadingProps } from './components/Loading/Loading';
43
43
  export { Icon, type IconProps } from './components/Icon/Icon';
44
44
  export { Badge, type BadgeProps } from './components/Badge/Badge';