Skip to content

Commit

Permalink
Revert color lib bump (#1666)
Browse files Browse the repository at this point in the history
  • Loading branch information
piitaya authored Mar 1, 2025
1 parent 2ce7f08 commit b29aadf
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 85 deletions.
133 changes: 52 additions & 81 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"dependencies": {
"@material/mwc-select": "^0.27.0",
"@material/mwc-textfield": "^0.27.0",
"color": "^5.0.0",
"color": "^4.2.3",
"hammerjs": "^2.0.8",
"home-assistant-js-websocket": "^9.4.0",
"lit": "^3.2.1",
Expand Down
2 changes: 1 addition & 1 deletion src/cards/light-card/controls/light-color-control.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Color from "color";
import * as Color from "color";
import { HassEntity } from "home-assistant-js-websocket";
import {
css,
Expand Down
2 changes: 1 addition & 1 deletion src/cards/light-card/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Color from "color";
import * as Color from "color";
import {
LightColorMode,
LightEntity,
Expand Down
2 changes: 1 addition & 1 deletion src/utils/colors.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { css } from "lit";
import Color from "color";
import * as Color from "color";

export const COLORS = [
"primary",
Expand Down

0 comments on commit b29aadf

Please sign in to comment.