@openfin/ui-library 0.19.2-alpha.1687812940 → 0.19.2-alpha.1687871109

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.
@@ -0,0 +1,11 @@
1
+ import { FC, ReactNode } from 'react';
2
+ export type ClickableNavigationButtonProps = {
3
+ onClick?: () => void;
4
+ children?: ReactNode;
5
+ };
6
+ export type ClickableNavigationLinkProps = {
7
+ to?: string;
8
+ children?: ReactNode;
9
+ };
10
+ export declare const ClickableNavigationLink: FC<ClickableNavigationLinkProps>;
11
+ export declare const ClickableNavigationButton: FC<ClickableNavigationButtonProps>;
@@ -0,0 +1 @@
1
+ export * from './clickableNavigation';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@openfin/ui-library",
3
3
  "description": "OpenFin UI Component Library",
4
- "version": "0.19.2-alpha.1687812940",
4
+ "version": "0.19.2-alpha.1687871109",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "repository": "github:openfin/ui-library",