Skip to content

Commit f15a387

Browse files
committed
updated to qwik release candidate
1 parent 7b36a9e commit f15a387

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"test": "echo \"no tests 4 now\""
5454
},
5555
"devDependencies": {
56-
"@builder.io/qwik": "0.15.2",
56+
"@builder.io/qwik": "^0.15.2",
5757
"@types/eslint": "8.4.10",
5858
"@types/node": "latest",
5959
"@typescript-eslint/eslint-plugin": "5.45.0",

src/lib/icon-props.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { createContext } from "@builder.io/qwik";
1+
import { createContextId } from "@builder.io/qwik";
22

33
export interface IconProps {
44
size?: number,
@@ -9,7 +9,7 @@ export interface IconProps {
99
class?: string
1010
}
1111

12-
export const IconContext = createContext<IconProps>("icon-context");
12+
export const IconContext = createContextId<IconProps>("icon-context");
1313

1414
export const defaultIconProps: IconProps = {
1515
size: 24,

0 commit comments

Comments
 (0)