-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: [SC-24987] create LoadingReportIcon #282
base: main
Are you sure you want to change the base?
Changes from 24 commits
e7c7b16
83a63d5
cf7e287
6c1d66e
8567c33
bb13f87
ded3181
1984de5
6dc768a
d229db6
9667053
13b08b1
1e785c0
0b8f598
06f1706
b643ecf
9afae03
63d4e55
ef0f788
a038605
0cc2a45
f6a54b8
4f82840
f9621b3
5e1d864
3b7a92e
cb60d00
15c15e8
ea54703
766e4c6
1ceabfe
bc4192d
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 @@ | ||
--- | ||
"@namehash/nameguard-react": minor | ||
--- | ||
|
||
Add onIcon, onTooltip and onBadge click handlers for Report components |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@namehash/nameguard-react": minor | ||
"@namehash/nameguard": minor | ||
--- | ||
|
||
Use new function getNameGuardURLForENSname from @namehash/nameguard where possible |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@namehash/nameguard-react": minor | ||
"@namehash/ens-utils": minor | ||
--- | ||
|
||
Move NameGuard URL related logic to NameGuard React url.ts |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
declare module "@namehash/nameguard-react"; | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
declare module "@namehash/nameguard-react"; | ||
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. @FrancoAguzzi Please help me understand why we added this file and this line of code. Is this actually needed? If so, why? If it is needed, then are we doing something special to cause it to be needed in the examples.nameguard.io app? If we aren't doing anything special but still need this then shouldn't we be adding some documentation in the readme files for the related packages instructing everyone to do this when making use of the package? |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
"noEmit": true, | ||
"esModuleInterop": true, | ||
"module": "esnext", | ||
"moduleResolution": "bundler", | ||
"moduleResolution": "node", | ||
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. Please coordinate any changes to tsconfig.json files with Jamie. Thanks 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. @FrancoAguzzi Whenever you make any changes to any build configuration files, please proactively add a comment about that change inside the PR in GitHub that explains:
|
||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"jsx": "preserve", | ||
|
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.
@FrancoAguzzi Please help me understand why we added this file and this line of code.
Is this actually needed? If so, why? If it is needed, then are we doing something special to cause it to be needed in the examples.nameguard.io app? If we aren't doing anything special but still need this then shouldn't we be adding some documentation in the readme files for the related packages instructing everyone to do this when making use of the package?