@equinor/echo-components 0.9.6 → 0.9.8
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/1dd428dbc8752224.svg +19 -0
- package/246374c510469011.svg +142 -0
- package/8ddc7d44de9795fc.svg +112 -0
- package/README.md +64 -0
- package/c283d1a6c49e1d97.svg +82 -0
- package/index.cjs.js +1 -1
- package/package.json +1 -1
- package/src/components/blackLink/BlackLink.d.ts +3 -1
- package/src/components/dropdown/Dropdown.d.ts +1 -0
- package/src/icons/appIcons/external/index.d.ts +8 -0
- package/src/icons/appIcons/index.d.ts +6 -0
- package/src/icons/appIcons/microsoft/index.d.ts +10 -0
- package/src/icons/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -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 {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { ReactComponent as Semi } from './semi.svg';
|
|
2
|
+
export { ReactComponent as Evision } from './evision.svg';
|
|
3
|
+
export { ReactComponent as Fusion } from './fusion.svg';
|
|
4
|
+
export { ReactComponent as ProCoSys } from './procosys.svg';
|
|
5
|
+
export { ReactComponent as Stid } from './stid.svg';
|
|
6
|
+
export { ReactComponent as TR2000 } from './tr2000.svg';
|
|
7
|
+
export { ReactComponent as Yammer } from './yammer.svg';
|
|
8
|
+
export { ReactComponent as SAP } from './sap.svg';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export { ReactComponent as Teams } from './teams.svg';
|
|
2
|
+
export { ReactComponent as PowerPoint } from './powerpoint.svg';
|
|
3
|
+
export { ReactComponent as Word } from './word.svg';
|
|
4
|
+
export { ReactComponent as Excel } from './excel.svg';
|
|
5
|
+
export { ReactComponent as OneNote } from './onenote.svg';
|
|
6
|
+
export { ReactComponent as SharePoint } from './powerpoint.svg';
|
|
7
|
+
export { ReactComponent as Skype } from './skype.svg';
|
|
8
|
+
export { ReactComponent as Yammer } from './yammer.svg';
|
|
9
|
+
export { ReactComponent as Outlook } from './outlook.svg';
|
|
10
|
+
export { ReactComponent as OneDrive } from './onedrive.svg';
|
package/src/icons/index.d.ts
CHANGED