@openfin/ui-library 0.21.0-alpha.1691699863 → 0.21.0

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.
@@ -6,7 +6,7 @@
6
6
  * @returns A number in the range [min, max]
7
7
  * @type Number
8
8
  */
9
- export declare const clamp: (num: number, min: number | undefined, max: number | undefined) => number;
9
+ export declare const clamp: (num: number, min?: number, max?: number) => number;
10
10
  /**
11
11
  * Generates a random integer.
12
12
  */
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.21.0-alpha.1691699863",
4
+ "version": "0.21.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "repository": "github:openfin/ui-library",
@@ -1,11 +0,0 @@
1
- /// <reference types="react" />
2
- import { IconType } from '../../system/ThemeProvider';
3
- interface LabelProps {
4
- icon?: IconType | (() => JSX.Element);
5
- text?: string;
6
- htmlFor?: string;
7
- helperText?: string;
8
- inline?: boolean;
9
- }
10
- export declare const Label: ({ icon, text, helperText, htmlFor, inline }: LabelProps) => JSX.Element;
11
- export {};