Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(pie-webc-core): WCP-000 upgrade [email protected] #1996

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@justeattakeaway/pie-webc-core": patch
---
dependencies updates:
- Updated dependency [`[email protected]` ↗︎](https://www.npmjs.com/package/lit/v/3.2.1) (from `3.2.0`, in `dependencies`)
5 changes: 5 additions & 0 deletions .changeset/big-dragons-fail.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@justeattakeaway/pie-icon-button": patch
---

[Fixed] - Updated ComponentDefaultProps to fix build warning
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,7 @@
"yarn": "3.8.1"
},
"resolutions": {
"@babel/traverse": "7.22.5",
"lit": "3.2.0",
"lit": "3.2.1",
"tar": "6.2.1",
"@playwright/experimental-ct-core": "1.41.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/components/pie-icon-button/src/defs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export interface IconButtonProps {
isLoading?: boolean;
}

export type DefaultProps = ComponentDefaultProps<IconButtonProps>;
export type DefaultProps = ComponentDefaultProps<IconButtonProps, keyof Omit<IconButtonProps, 'aria'>>;

export const defaultProps: DefaultProps = {
size: 'medium',
Expand Down
2 changes: 1 addition & 1 deletion packages/components/pie-webc-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"test:watch": "run -T vitest"
},
"dependencies": {
"lit": "3.2.0"
"lit": "3.2.1"
},
"devDependencies": {
"@justeattakeaway/pie-components-config": "0.18.0"
Expand Down
Loading
Loading