-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: create a delegation popup logic (#8082)
* feat: add Delegation view UI Co-authored-by: evavirseda <evavirseda@users.noreply.github.com> * feat: add header translations * fix: styles * style: make tbody scrollable * feat: create a delegation popup UI * feat: create a delegation popup logic WIP * fix: styles * fix: add fixed height in the table tag * fix: verify inputs * feat: update literals * fix: minor improvements * feat: create a delegation popup logic * fix: add TODO comment * fix: error type and form reactivity --------- Co-authored-by: evavirseda <evavirseda@users.noreply.github.com> Co-authored-by: Begoña Alvarez <balvarez@boxfish.studio>
- Loading branch information
1 parent
9d7586e
commit fd3ac60
Showing
8 changed files
with
75 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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,5 @@ | ||
import { OutputData, OutputType } from '@iota/sdk/out/types' | ||
|
||
export function isDelegationOutput(output: OutputData): boolean { | ||
return output?.output?.type === OutputType.Delegation | ||
} |