Skip to content

Commit b0f3115

Browse files
authored
Merge pull request finos#159 from aaronreed708/update-dependencies
finos/a11y-theme-builder#983, finos/a11y-theme-builder/issues/988. R…
2 parents 480cf47 + cc1f5d3 commit b0f3115

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@
1919
"prepare": "tsc"
2020
},
2121
"devDependencies": {
22-
"@babel/preset-env": "^7.20.2",
23-
"@types/jest": "^29.5.1",
24-
"babel-jest": "^29.5.0",
22+
"@babel/preset-env": "^7.25.3",
23+
"@types/jest": "^29.5.12",
24+
"babel-jest": "^29.7.0",
2525
"jest": "^29.5.0",
26-
"ts-jest": "^29.0.5",
27-
"ts-node": "^10.9.1",
28-
"typedoc": "^0.23.28",
29-
"typescript": "^4.9.4"
26+
"ts-jest": "^29.2.4",
27+
"ts-node": "^10.9.2",
28+
"typedoc": "^0.26.5",
29+
"typescript": "^5.5.4"
3030
},
3131
"dependencies": {
32-
"@types/chroma-js": "^2.1.5",
33-
"chroma-js": "^2.4.2"
32+
"@types/chroma-js": "^2.4.4",
33+
"chroma-js": "^2.6.0"
3434
}
3535
}

src/atoms/colorPalette.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* Copyright (c) 2023 Discover Financial Services
33
* Licensed under Apache-2.0 License. See License.txt in the project root for license information
44
*/
5-
import * as chroma from "chroma-js";
65
import { Node } from "../common/node";
76
import { Atom } from "./atom";
87
import { MyMap } from "../util/myMap";

src/atoms/colorThemes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under Apache-2.0 License. See License.txt in the project root for license information
44
*/
55
/* eslint-disable */
6-
import * as chroma from "chroma-js";
6+
import chroma from "chroma-js";
77
import { Atom } from "./atom";
88
import { ColorPalette } from "./colorPalette";
99
import { Node } from "../common/node";

src/atoms/inputBackground.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* Copyright (c) 2023 Discover Financial Services
33
* Licensed under Apache-2.0 License. See License.txt in the project root for license information
44
*/
5-
import * as chroma from "chroma-js";
65
import { TitledShade, PropertyTitledShade } from "../common/props";
76
import { ColorTheme } from "./colorThemes";
87
import { Atom } from "./atom";

src/common/shade.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (c) 2023 Discover Financial Services
33
* Licensed under Apache-2.0 License. See License.txt in the project root for license information
44
*/
5-
import * as chroma from "chroma-js";
5+
import chroma from "chroma-js";
66
import { Logger } from "../util/logger";
77
import { Util } from "../util/util";
88

0 commit comments

Comments
 (0)