Skip to content

Commit 1f51266

Browse files
committed
chore: bump Qwik deps 🚀
1 parent 7a6281d commit 1f51266

File tree

3 files changed

+12000
-9790
lines changed

3 files changed

+12000
-9790
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
},
1111
"private": false,
1212
"devDependencies": {
13-
"@builder.io/qwik": "1.4.1",
14-
"@builder.io/qwik-city": "1.4.1",
13+
"@builder.io/qwik": "1.9.0",
14+
"@builder.io/qwik-city": "1.9.0",
1515
"@commitlint/cli": "17.6.5",
1616
"@commitlint/config-angular": "17.6.5",
1717
"@commitlint/config-conventional": "17.6.5",
@@ -47,7 +47,7 @@
4747
"eslint": "8.42.0",
4848
"eslint-config-prettier": "8.8.0",
4949
"eslint-plugin-cypress": "2.15.1",
50-
"eslint-plugin-qwik": "1.4.1",
50+
"eslint-plugin-qwik": "1.9.0",
5151
"husky": "^8.0.0",
5252
"instantsearch.css": "8.1.0",
5353
"jsdom": "22.1.0",

packages/qwik-storefront-ui/src/components/SfRatingButton/SfRatingButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ export const SfRatingButton = component$<SfRatingButtonProps>(
6363
const isIconFilled = (ratingValue: number) =>
6464
ratingValue <= hover.value || (hover.value === 0 && ratingValue <= value);
6565

66-
const handleChange = $((event: QwikChangeEvent<HTMLInputElement>) => {
67-
onChange$?.(Number(event.target.value));
66+
const handleChange = $((_: Event, element: HTMLInputElement) => {
67+
onChange$?.(Number(element.value));
6868
});
6969

7070
const handleHoverIn = (ratingValue: number) =>

0 commit comments

Comments
 (0)