@openfin/ui-library 0.15.3-alpha.1683311775 → 0.15.3

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,7 @@
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;
@@ -0,0 +1 @@
1
+ export {};
@@ -81,4 +81,4 @@ export declare const SpatialLink: import("styled-components").StyledComponent<"a
81
81
  target: "_blank";
82
82
  rel: "noreferrer";
83
83
  title: "Spatial";
84
- }, "title" | "target" | "href" | "rel">;
84
+ }, "title" | "href" | "target" | "rel">;
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@openfin/ui-library",
3
3
  "description": "OpenFin UI Component Library",
4
- "version": "0.15.3-alpha.1683311775",
4
+ "version": "0.15.3",
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,
9
10
  "files": [
10
11
  "dist/**/*"
11
12
  ],
@@ -175,7 +176,11 @@
175
176
  },
176
177
  "testEnvironment": "jsdom",
177
178
  "testMatch": [
178
- "<rootDir>/src/**/*.test.tsx"
179
+ "<rootDir>/src/**/*.test.tsx",
180
+ "<rootDir>/src/**/*.test.ts",
181
+ "<rootDir>/src/**/*.spec.ts",
182
+ "<rootDir>/src/**/*.spec.tsx"
183
+
179
184
  ]
180
185
  }
181
186
  }