@equinor/echo-framework 0.15.4 → 0.16.0-beta-1

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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@equinor/echo-framework",
3
- "version": "0.15.4",
3
+ "version": "0.16.0-beta-1",
4
4
  "peerDependencies": {
5
5
  "@equinor/echo-base": ">= 0.7.0 < 0.8.0",
6
- "@equinor/echo-components": ">= 0.8.0 < 0.9.0",
6
+ "@equinor/echo-components": "0.9.0-beta-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 * from './echoLogo';
6
+ export { EchoLogo } from './echoLogo/echoLogo';
7
7
  export * from './errorBoundary';
8
8
  export * from './externalLinkButton/externalLinkButton';
9
9
  export * from './footer';
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @deprecated This is a duplicate: please use the one exported from echo-components.
3
+ * We plan to remove this duplication soon.
4
+ */
1
5
  export declare const themeConst: {
2
6
  black: string;
3
7
  white: string;
@@ -1 +0,0 @@
1
- export * from './echoLogo';