@equinor/echo-components 0.9.2 → 0.9.3
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
|
@@ -6,6 +6,8 @@ interface LinkProps {
|
|
|
6
6
|
linkText: string;
|
|
7
7
|
/** If true, the link is opened in the same window or tab. */
|
|
8
8
|
preserveTab?: boolean;
|
|
9
|
+
/** The text to be displayed in the tooltip. */
|
|
10
|
+
tooltipText?: string;
|
|
9
11
|
}
|
|
10
|
-
export declare const BlackLink: ({ className, href, linkText, preserveTab }: LinkProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare const BlackLink: ({ className, href, linkText, preserveTab, tooltipText, }: LinkProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
13
|
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
interface SubseaStatusLabelProps {
|
|
2
2
|
isActive: boolean;
|
|
3
|
+
className?: string;
|
|
3
4
|
}
|
|
4
|
-
export declare function SubseaStatusLabel({ isActive }: SubseaStatusLabelProps): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare function SubseaStatusLabel({ isActive, className }: SubseaStatusLabelProps): import("react/jsx-runtime").JSX.Element;
|
|
5
6
|
export {};
|