-
-
Notifications
You must be signed in to change notification settings - Fork 324
Ensures key is properly propagated to importedElements #1271
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
35c7e8d
Ensures key is properly passed to importedElements
shawncrawley fc6c001
Add semicolons
shawncrawley 22a1de8
Update reactpy-vdom.tsx
shawncrawley 88c3ce6
Merge remote-tracking branch 'upstream/develop' into pr/1271
Archmonger a41adbe
Format via `hatch run javascript:fix`
Archmonger b1e01cc
Add changelog item
Archmonger e1ff1ce
Test written
shawncrawley 8285d56
Merge branch 'develop' into patch-1
shawncrawley 1cc3502
Delete unnecessary, commented out lines
shawncrawley 7a7dca2
Update keys-properly-propagated.js
shawncrawley 60345a5
Update test_module.py
shawncrawley b9f50da
Adds docstring and tweaks changelog
shawncrawley 4ab15d4
Update docstring in test_module.py
Archmonger 35f9e7d
Handles fix on server-side rather than client-side
shawncrawley 7591d1f
Update tests per maintaing "key" in vdom attrs
shawncrawley d457f61
Alternate solution for expensive any on attributes
shawncrawley File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from "https://esm.sh/react@19.0" | ||
import ReactDOM from "https://esm.sh/react-dom@19.0/client" | ||
import GridLayout from "https://esm.sh/react-grid-layout@1.5.0"; | ||
export {GridLayout}; | ||
|
||
export function bind(node, config) { | ||
const root = ReactDOM.createRoot(node); | ||
return { | ||
create: (type, props, children) => | ||
React.createElement(type, props, children), | ||
render: (element) => root.render(element, node), | ||
unmount: () => root.unmount() | ||
}; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.