-
Notifications
You must be signed in to change notification settings - Fork 241
fix(card): added missing sp-popover dependency #5449
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
Changes from all commits
75bab5a
f9dae90
53e5bcc
bc09b51
c8d6038
da1a070
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@spectrum-web-components/card': patch | ||
| --- | ||
|
|
||
| - **Fixed**: `sp-card` component relies on `sp-popover` for certain toggle interactive behaviors, but this dependency was missing from its dependency tree. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -69,6 +69,7 @@ | |
| "@spectrum-web-components/checkbox": "1.6.0", | ||
| "@spectrum-web-components/divider": "1.6.0", | ||
| "@spectrum-web-components/icons-workflow": "1.6.0", | ||
| "@spectrum-web-components/popover": "1.6.0", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does every card require a popover? It almost seems like this should be an optional dependency? When does a card use a popover?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It should be a regular dependency, not an optional one. The component needs to be available when the |
||
| "@spectrum-web-components/shared": "1.6.0", | ||
| "@spectrum-web-components/styles": "1.6.0" | ||
| }, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice description.