Uh oh!
There was an error while loading. Please reload this page.
ref(feedback): Refactor to better support multiple dialogs - #9305
Merged
billyvg merged 15 commits intoOct 25, 2023
Merged
Conversation
Contributor
size-limit report 📦
|
billyvg
commented
Oct 23, 2023
| const cENS = document.createElementNS.bind(document, XMLNS); | ||
| const cENS = <K extends keyof SVGElementTagNameMap>(tagName: K): SVGElementTagNameMap[K] => | ||
| // eslint-disable-next-line no-restricted-globals | ||
| document.createElementNS(XMLNS, tagName); |
MemberAuthor
There was a problem hiding this comment.
@mydea is there a good way to use document? getGlobalObj seems to be deprecated
Member
There was a problem hiding this comment.
What about WINDOW from @sentry/browser? WINDOW.document should work I guess?
mydea
reviewed
Oct 24, 2023
Uh oh!
There was an error while loading. Please reload this page.
mydea
reviewed
Oct 24, 2023
Uh oh!
There was an error while loading. Please reload this page.
billyvg
marked this pull request as ready for review
October 24, 2023 15:48
billyvgforce-pushed
the
feat-feedback-refactor-api-multiple-widgets
branch
from
October 24, 2023 15:54
9e01127 to
b3373b7Comparebillyvgforce-pushed
the
feat-feedback-implement-widget-api
branch
from
October 24, 2023 15:55
1b4b74a to
6ef6f29Comparebillyvgforce-pushed
the
feat-feedback-refactor-api-multiple-widgets
branch
from
October 24, 2023 15:55
b3373b7 to
e0dbb83Comparemydea
approved these changes
Oct 25, 2023
billyvg
commented
Oct 25, 2023
MemberAuthor
Going to merge this into #9217 so i'm not juggling multiple git stacks |
billyvgforce-pushed
the
feat-feedback-implement-widget-api
branch
from
October 25, 2023 16:12
6ef6f29 to
21454dcComparebillyvgforce-pushed
the
feat-feedback-refactor-api-multiple-widgets
branch
from
October 25, 2023 16:18
e0037f1 to
267ba37Comparebillyvg added a commit
that referenced
this pull request
Oct 26, 2023
- refactor to support multiple widgets - add `attachTo` and `createWidget` public methods to create respective components.
billyvg added a commit
that referenced
this pull request
Oct 31, 2023
- refactor to support multiple widgets - add `attachTo` and `createWidget` public methods to create respective components.
billyvg added a commit
that referenced
this pull request
Oct 31, 2023
- refactor to support multiple widgets - add `attachTo` and `createWidget` public methods to create respective components.
billyvg added a commit
that referenced
this pull request
Nov 1, 2023
- refactor to support multiple widgets - add `attachTo` and `createWidget` public methods to create respective components.
billyvg added a commit
that referenced
this pull request
Nov 1, 2023
- refactor to support multiple widgets - add `attachTo` and `createWidget` public methods to create respective components.
billyvg added a commit
that referenced
this pull request
Nov 6, 2023
- refactor to support multiple widgets - add `attachTo` and `createWidget` public methods to create respective components.
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
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
attachToandcreateWidgetpublic methods to create respective components.Requires #9217