Skip to content

Commit

Permalink
feat: neutron big dipper [web-neutron] (#1309)
Browse files Browse the repository at this point in the history
## Description

Closes: [BDU-831](https://forbole.atlassian.net/browse/BDU-831)



---

### Author Checklist

_All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues._

I have...

- [x] ran linting via `yarn lint`
- [x] wrote tests where necessary
- [x] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
- [x] targeted the correct branch
- [x] provided a link to the relevant issue or specification
- [x] reviewed "Files changed" and left comments if necessary
- [x] confirmed all CI checks have passed
- [x] added a changeset via [`yarn && yarn changeset`](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md)


[BDU-831]: https://forbole.atlassian.net/browse/BDU-831?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
  • Loading branch information
MonikaCat authored Oct 10, 2023
1 parent 457c92e commit 4037aca
Show file tree
Hide file tree
Showing 156 changed files with 48,683 additions and 229 deletions.
7 changes: 7 additions & 0 deletions .changeset/young-deers-poke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'shared-utils': minor
'web-neutron': minor
'ui': minor
---

add neutron big dipper
132 changes: 132 additions & 0 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion apps/web-multiversx/src/components/avatar_name/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ import useStyles from '@/components/avatar_name/styles';
import { ACCOUNT_DETAILS } from '@/utils/go_to_page';
import Link from 'next/link';
import { FC } from 'react';
import { AvatarNameProps } from '@/components/avatar_name/types';

const AvatarName: FC<AvatarName> = ({
const AvatarName: FC<AvatarNameProps> = ({
className,
address,
name,
Expand Down
3 changes: 2 additions & 1 deletion apps/web-multiversx/src/components/name/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ import useStyles from '@/components/name/styles';
import { ACCOUNT_DETAILS } from '@/utils/go_to_page';
import Link from 'next/link';
import { FC } from 'react';
import { AvatarNameProps } from '@/components/avatar_name/types';

const AvatarName: FC<AvatarName> = ({
const AvatarName: FC<AvatarNameProps> = ({
className,
address,
name,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ exports[`screen: Transactions/List matches snapshot 1`] = `
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
Expand Down
17 changes: 17 additions & 0 deletions apps/web-neutron/.codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# https://docs.codecov.io/docs/commit-status
coverage:
status:
project:
default:
# basic
target: 0
threshold: 0%
base: 0%
# advanced
branches: []
if_no_uploads: error
if_not_found: success
if_ci_failed: error
only_pulls: false
flags: []
paths: []
9 changes: 9 additions & 0 deletions apps/web-neutron/.eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root: true
extends:
- custom
ignorePatterns:
- '**/node_modules/*'
- '**/out/*'
- '**/.next/*'
- '**/dist/*'
- '**/src/graphql/*'
Loading

1 comment on commit 4037aca

@vercel
Copy link

@vercel vercel bot commented on 4037aca Oct 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

cosmos – ./

cosmos-git-main-bigdipper.vercel.app
cosmos-bigdipper.vercel.app
bigdipper.vercel.app

Please sign in to comment.