@up42/up-components 6.0.0 → 6.2.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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/types/components/EmptyState/EmptyState.d.ts +1 -1
- package/dist/cjs/types/components/Illustration/Illustration.d.ts +3 -3
- package/dist/cjs/types/global/illustrations/index.d.ts +25 -3
- package/dist/esm/index.js +2 -2
- package/dist/esm/types/components/EmptyState/EmptyState.d.ts +1 -1
- package/dist/esm/types/components/Illustration/Illustration.d.ts +3 -3
- package/dist/esm/types/global/illustrations/index.d.ts +25 -3
- package/dist/index.d.ts +7243 -1016
- package/package.json +2 -1
|
@@ -9,7 +9,7 @@ export type EmptyStateProps = MUIGlobalOmit<Omit<BoxProps, 'component'>, {
|
|
|
9
9
|
/**
|
|
10
10
|
* Helpful message that conveys the purpose of the screen and the next action to populate the space
|
|
11
11
|
*/
|
|
12
|
-
subTitle
|
|
12
|
+
subTitle?: string;
|
|
13
13
|
/**
|
|
14
14
|
* An imported SVG icon component
|
|
15
15
|
*/
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { BoxProps } from '@mui/material';
|
|
3
3
|
import * as illustrations from '@global/illustrations';
|
|
4
4
|
export type IllustrationProps = {
|
|
5
5
|
name: keyof typeof illustrations;
|
|
6
|
-
size?:
|
|
7
|
-
} &
|
|
6
|
+
size?: number;
|
|
7
|
+
} & BoxProps;
|
|
8
8
|
/**
|
|
9
9
|
* Documentation: https://up-components.up42.com/?path=/docs/data-display-illustrations--docs
|
|
10
10
|
* Illustrations: https://up-components.up42.com/?path=/docs/illustrations--docs
|
|
@@ -1,5 +1,27 @@
|
|
|
1
|
+
export { default as Aoi } from './aoi.svg';
|
|
2
|
+
export { default as ApproveDoc } from './approve-doc.svg';
|
|
3
|
+
export { default as Catalog } from './catalog.svg';
|
|
4
|
+
export { default as Certified } from './certified.svg';
|
|
5
|
+
export { default as CertifiedDocuments } from './certified-documents.svg';
|
|
6
|
+
export { default as CloudRain } from './cloud-rain.svg';
|
|
7
|
+
export { default as Credits } from './credits.svg';
|
|
8
|
+
export { default as CreditsFall } from './credits-fall.svg';
|
|
9
|
+
export { default as DataTransfer } from './data-transfer.svg';
|
|
10
|
+
export { default as Discovery } from './discovery.svg';
|
|
11
|
+
export { default as EmailCheck } from './email-check.svg';
|
|
12
|
+
export { default as EmailVerification } from './email-verification.svg';
|
|
13
|
+
export { default as Enterprise } from './enterprise.svg';
|
|
1
14
|
export { default as FloppyDisk } from './floppy-disk.svg';
|
|
2
|
-
export { default as
|
|
15
|
+
export { default as Invoice } from './invoice.svg';
|
|
16
|
+
export { default as MediaGlobe } from './media-globe.svg';
|
|
17
|
+
export { default as NoResults } from './no-results.svg';
|
|
18
|
+
export { default as Rocket } from './rocket.svg';
|
|
3
19
|
export { default as RocketFixing } from './rocket-fixing.svg';
|
|
4
|
-
export { default as
|
|
5
|
-
export { default as
|
|
20
|
+
export { default as Satellite } from './satellite.svg';
|
|
21
|
+
export { default as SatelliteFaceDown } from './satellite-face-down.svg';
|
|
22
|
+
export { default as SatelliteOrbit } from './satellite-orbit.svg';
|
|
23
|
+
export { default as SearchImage } from './search-image.svg';
|
|
24
|
+
export { default as SearchPlanet } from './search-planet.svg';
|
|
25
|
+
export { default as TermsConditions } from './terms-conditions.svg';
|
|
26
|
+
export { default as Webhooks } from './webhooks.svg';
|
|
27
|
+
export { default as Wmts } from './wmts.svg';
|