@equinor/echo-components 0.9.6 → 0.10.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/echo-components",
3
- "version": "0.9.6",
3
+ "version": "0.10.0-beta-1",
4
4
  "dependencies": {
5
5
  "chart.js": "4.4.0",
6
6
  "react-window": "1.8.9",
@@ -8,8 +8,8 @@
8
8
  },
9
9
  "peerDependencies": {
10
10
  "@equinor/echo-utils": ">= 0.3.0 < 0.4.0",
11
- "@equinor/eds-core-react": "=0.25.0",
12
- "@equinor/eds-icons": "=0.17.0",
11
+ "@equinor/eds-core-react": "0.32.3",
12
+ "@equinor/eds-icons": "0.19.3",
13
13
  "react": ">= 17.0.2",
14
14
  "react-dom": ">= 17.0.2",
15
15
  "zustand": "4.4.6",
@@ -8,6 +8,8 @@ interface LinkProps {
8
8
  preserveTab?: boolean;
9
9
  /** The text to be displayed in the tooltip. */
10
10
  tooltipText?: string;
11
+ /** The text to be displayed in the tooltip. */
12
+ onClick?: () => void;
11
13
  }
12
- export declare const BlackLink: ({ className, href, linkText, preserveTab, tooltipText, }: LinkProps) => import("react/jsx-runtime").JSX.Element;
14
+ export declare const BlackLink: ({ className, href, linkText, preserveTab, tooltipText, onClick, }: LinkProps) => import("react/jsx-runtime").JSX.Element;
13
15
  export {};
@@ -1,8 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { Tab, TabPanels, TabView, Tabs } from './HorizontalTabView';
3
- declare const EDSPanel: import("react").ForwardRefExoticComponent<{
4
- hidden?: boolean | undefined;
5
- } & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
3
+ declare const EDSPanel: import("react").ForwardRefExoticComponent<import("@equinor/eds-core-react").TabPanelProps & import("react").RefAttributes<HTMLDivElement>>;
6
4
  interface HorizontalTabsProps {
7
5
  HorizontalTabs: typeof TabView;
8
6
  Tabs: typeof Tabs;