@openfin/ui-library 0.15.3 → 0.15.6-alpha.1683577857
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/dist/components/templates/utils/name.d.ts +1 -0
- package/dist/components/typography/Heading/heading.d.ts +36 -36
- package/dist/index.d.ts +1 -1
- package/dist/index.js +39 -14
- package/dist/storybookHelpers.d.ts +1 -1
- package/package.json +2 -7
- package/dist/lib/color-generator.d.ts +0 -7
- package/dist/lib/color-generator.spec.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfin/ui-library",
|
|
3
3
|
"description": "OpenFin UI Component Library",
|
|
4
|
-
"version": "0.15.
|
|
4
|
+
"version": "0.15.6-alpha.1683577857",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"repository": "github:openfin/ui-library",
|
|
8
8
|
"homepage": "https://openfin-ui.netlify.app",
|
|
9
|
-
"sideEffects": false,
|
|
10
9
|
"files": [
|
|
11
10
|
"dist/**/*"
|
|
12
11
|
],
|
|
@@ -176,11 +175,7 @@
|
|
|
176
175
|
},
|
|
177
176
|
"testEnvironment": "jsdom",
|
|
178
177
|
"testMatch": [
|
|
179
|
-
"<rootDir>/src/**/*.test.tsx"
|
|
180
|
-
"<rootDir>/src/**/*.test.ts",
|
|
181
|
-
"<rootDir>/src/**/*.spec.ts",
|
|
182
|
-
"<rootDir>/src/**/*.spec.tsx"
|
|
183
|
-
|
|
178
|
+
"<rootDir>/src/**/*.test.tsx"
|
|
184
179
|
]
|
|
185
180
|
}
|
|
186
181
|
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generate a color based on a string.
|
|
3
|
-
* @param str The string to generate a color from.
|
|
4
|
-
* @param saturation The saturation of the color.
|
|
5
|
-
* @param lightness The lightness of the color.
|
|
6
|
-
*/
|
|
7
|
-
export declare function generateColorFromString(str?: string, saturation?: number, lightness?: number): string;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|