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

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,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",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "repository": "github:openfin/ui-library",
@@ -1,6 +0,0 @@
1
- import { FC, ReactNode } from 'react';
2
- export type CardContainerProps = {
3
- maxHeight: number | string;
4
- children: ReactNode;
5
- };
6
- export declare const CardContainer: FC<CardContainerProps>;
@@ -1,10 +0,0 @@
1
- import { FC, ReactNode } from 'react';
2
- export type CollapsibleCardProps = {
3
- title: string | ReactNode;
4
- badgeText?: number;
5
- maxHeight?: number;
6
- fixedHeader?: boolean;
7
- children: ReactNode;
8
- expanded?: boolean;
9
- };
10
- export declare const CollapsibleCard: FC<CollapsibleCardProps>;
@@ -1 +0,0 @@
1
- export * from './collapsibleCard';
@@ -1,7 +0,0 @@
1
- import * as React from 'react';
2
- import { UnitPxType } from '../../system/ThemeProvider';
3
- export type CheckboxGroupProps = React.InputHTMLAttributes<HTMLInputElement> & {
4
- gap?: UnitPxType;
5
- message?: string;
6
- };
7
- export declare const CheckboxGroup: React.FC<CheckboxGroupProps>;
@@ -1 +0,0 @@
1
- export * from './checkboxGroup';
@@ -1 +0,0 @@
1
- export * from './textArea';
@@ -1,8 +0,0 @@
1
- import { InputHTMLAttributes, ChangeEvent } from 'react';
2
- import { WithStatusProps } from '../../system/HOC';
3
- export type TextAreaProps = InputHTMLAttributes<HTMLTextAreaElement> & {
4
- onChange?: (e?: ChangeEvent<HTMLTextAreaElement>) => void;
5
- } & WithStatusProps;
6
- export declare const TextArea: import("react").ForwardRefExoticComponent<InputHTMLAttributes<HTMLTextAreaElement> & {
7
- onChange?: ((e?: ChangeEvent<HTMLTextAreaElement>) => void) | undefined;
8
- } & WithStatusProps & import("react").RefAttributes<HTMLTextAreaElement>>;
@@ -1,13 +0,0 @@
1
- import { FC, ReactNode } from 'react';
2
- export type HamburgerNavigationProps = {
3
- children: (closeFunction: () => void) => ReactNode;
4
- document?: Document;
5
- };
6
- export type HamburgerIconProps = {
7
- open?: boolean;
8
- };
9
- /**
10
- * - Sidebar Menu opens and closes on Hamburger Icon click and when the user selects items from sidebar menu
11
- */
12
- export declare const HamburgerNavigation: FC<HamburgerNavigationProps>;
13
- export declare const StyledHamburgerIcon: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, HamburgerIconProps, never>;
@@ -1,2 +0,0 @@
1
- export * from './hamburgerNavigation';
2
- export * from './sidebarMenu';
@@ -1,12 +0,0 @@
1
- import { ReactNode } from 'react';
2
- export type SidebarMenuProps = {
3
- open?: boolean;
4
- children: ReactNode;
5
- document?: Document;
6
- };
7
- export type SidebarMenuContainerProps = {
8
- open?: boolean;
9
- };
10
- export declare const SidebarMenu: ({ open, children, document }: SidebarMenuProps) => JSX.Element;
11
- export declare const StyledSidebarMenuContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, SidebarMenuContainerProps, never>;
12
- export declare const StyledMenuItemContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;