-
Notifications
You must be signed in to change notification settings - Fork 9
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
ui: Update ember-{basic-dropdown,power-select} #1088
Conversation
This does include a patch to change the element type for the dropdown content element.
This was causing a peer dependency conflict.
This should fix the peer dependency build problem?
What happened???
# Conflicts: # packages/boxel-motion-test-app/package.json # packages/boxel-motion/package.json # packages/boxel-motion/test-app/package.json # pnpm-lock.yaml
# Conflicts: # pnpm-lock.yaml
Needed as a peer dependency of ember-power-select?
2f04348
to
305edb4
Compare
import type { Dropdown } from './basic-dropdown.ts'; | ||
export interface BasicDropdownContentSignature { | ||
- Element: Element; | ||
+ Element: HTMLElement; |
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.
I chose to patch this because our types expect HTMLElement
(does Element
even make sense?) but I didn’t want to have to override the whole type for this one line.
Will this fix the Percy weirdness?
This reverts commit 6c14b2f.
I think the other one is the crux!
@@ -1,4 +1,5 @@ | |||
{{page-title 'Boxel Components'}} | |||
<BasicDropdownWormhole /> |
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.
According to the migration documentation this should also happen in host
but doing so resulted in strange Percy diffs like this:

When I used the application I didn’t see anything like this but since the existing setup worked fine with dropdowns, I left it.
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.
So we r not following the recommendation of the migration docs?
Perhaps this is a bug tht can be handled in another ticket.
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.
@backspace try moving the <BasicDropdownWormhole/>
after {{outlet}}
I think that works
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.
When I put it there I still get the strange Percy diffs, also when I put it after CardPrerender
. I don’t love deviating from the documentation but I think <BasicDropdownWormhole />
is just emitting that container so it’s probably fine?
Did you build The dropdown works in the preview deployment so I think all is well? |
Related to what #1088 (comment). I think once you add the component there are 2 divs with the same id 'ember-basic-dropdown-wormhole". Because this code is still hanging around -- leading to unexpected behaviour. References Funnily. The issue I faced is when the wormhole div was somewhat missing but I really dont know why this happened. I can recreate by removing the div with the id in the html EDIT: Owh nvm. I can see you actually tried it 4f7680f |
The new versions include types which lets us remove our custom ones. This cascaded into updating some other dependencies to fix peer dependency resolution and various other build problems:
@babel/core
@ember/test-helpers
ember-cli-babel
ember-concurrency
ember-page-title