@equinor/echo-framework 0.15.4 → 0.16.0-beta-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/{47deeba42768c5d1.svg → 063009f06499d102.svg} +8 -8
- package/README.md +28 -28
- package/{1bd97dd2170d0f64.svg → f4c85313e79b1662.svg} +850 -850
- package/index.cjs.d.ts +2 -2
- package/index.cjs.js +1 -1
- package/package.json +2 -2
- package/src/index.d.ts +0 -1
- package/src/lib/components/errorBoundary/components/errorBoundaryBaseMessage.d.ts +1 -1
- package/src/lib/components/errorBoundary/components/notificationCardWithLogo.d.ts +1 -2
- package/src/lib/components/index.d.ts +1 -1
- package/src/lib/theme/themeConst.d.ts +4 -0
- package/src/lib/components/echoLogo/index.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/echo-framework",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0-beta-0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@equinor/echo-base": ">= 0.7.0 < 0.8.0",
|
|
6
|
-
"@equinor/echo-components": ">= 0.
|
|
6
|
+
"@equinor/echo-components": ">= 0.9.0 < 0.10.0",
|
|
7
7
|
"@equinor/echo-core": ">= 0.9.0 < 0.10.0",
|
|
8
8
|
"@equinor/echo-search": ">= 0.15.0 < 0.16.0",
|
|
9
9
|
"@equinor/echo-utils": ">= 0.3.0 < 0.4.0",
|
package/src/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import './lib/globalStyles.css';
|
|
3
3
|
import { getPlantsInfo, getTagDetails } from './lib/services/api';
|
|
4
|
-
import './lib/theme/theme.css';
|
|
5
4
|
import { getLegendStatusColor } from './lib/utils/legendUtils';
|
|
6
5
|
export * from './lib/components';
|
|
7
6
|
export { RequestSapAccess } from './lib/components/requestAccess/RequestSapAccess';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export interface ErrorBoundaryBaseMessageProps {
|
|
3
3
|
errorTitle?: string;
|
|
4
|
-
errorDetails: string;
|
|
4
|
+
errorDetails: string | null | undefined;
|
|
5
5
|
}
|
|
6
6
|
declare const ErrorBoundaryBaseMessage: React.FC<ErrorBoundaryBaseMessageProps>;
|
|
7
7
|
export default ErrorBoundaryBaseMessage;
|
|
@@ -9,5 +9,4 @@ export interface NotificationCardWithLogoProps {
|
|
|
9
9
|
footer?: React.ReactNode;
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
-
declare const NotificationCardWithLogo: React.FC<NotificationCardWithLogoProps>;
|
|
13
|
-
export default NotificationCardWithLogo;
|
|
12
|
+
export declare const NotificationCardWithLogo: React.FC<NotificationCardWithLogoProps>;
|
|
@@ -3,7 +3,7 @@ export * from './containers';
|
|
|
3
3
|
export * from './contextualAppLinks/externalLinkButtons/index';
|
|
4
4
|
export { ContextualAppLinks } from './contextualAppLinks/index';
|
|
5
5
|
export * from './echo3DButton';
|
|
6
|
-
export
|
|
6
|
+
export { EchoLogo } from './echoLogo/echoLogo';
|
|
7
7
|
export * from './errorBoundary';
|
|
8
8
|
export * from './externalLinkButton/externalLinkButton';
|
|
9
9
|
export * from './footer';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './echoLogo';
|