Skip to content
This repository was archived by the owner on May 19, 2023. It is now read-only.

Commit 85e727e

Browse files
committed
chore: adds dist folder
1 parent 497b8c0 commit 85e727e

File tree

90 files changed

+7955
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+7955
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ npm-debug.log*
2121
yarn-debug.log*
2222
yarn-error.log*
2323

24-
dist
24+
# dist
2525
src/react-app-env.d.ts
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import metaMaskIconImg from './metaMask.svg';
2+
import nameServiceImg from './nameService.svg';
3+
import niftyIconImg from './nifty.png';
4+
import rifComImg from './rifCom.png';
5+
import rifDirImg from './rifDir.png';
6+
import rifGatImg from './rifGat.png';
7+
import rifMarImg from './rifMar.png';
8+
import rifPayImg from './rifPay.png';
9+
import rifStoImg from './rifSto.png';
10+
import storageImg from './storage.svg';
11+
export { metaMaskIconImg, nameServiceImg, niftyIconImg, rifComImg, rifDirImg, rifGatImg, rifMarImg, rifPayImg, rifStoImg, storageImg, };

dist/assets/images/index.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import doneThumbsUpImg from './doneThumbsUp.svg';
2+
import footerTongueImg from './footerTongue.svg';
3+
import headerTongueImg from './headerTongue.svg';
4+
import tickWideImg from './tickWide.svg';
5+
export { doneThumbsUpImg, footerTongueImg, headerTongueImg, tickWideImg, };
6+
export * from './icons';
7+
export * from './logos';
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import logoBlackAndBlue from './logoBlackAndBlue.svg';
2+
import logoBlueIcon from './logoBlueIcon.svg';
3+
import logoFullWhite from './logoFullWhite.svg';
4+
import rskLogo from './rskLogo.svg';
5+
export { logoBlackAndBlue, logoBlueIcon, logoFullWhite, rskLogo, };

dist/components/atoms/Button.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { FC } from 'react';
2+
import { ButtonProps as MUIButtonProps } from '@material-ui/core';
3+
export interface ButtonProps extends MUIButtonProps {
4+
block?: boolean;
5+
shadow?: boolean;
6+
rounded?: boolean;
7+
}
8+
declare const Button: FC<ButtonProps>;
9+
export default Button;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { FC } from 'react';
2+
import { CheckboxProps as MUICheckboxProps } from '@material-ui/core';
3+
export declare type CheckboxProps = MUICheckboxProps;
4+
declare const Checkbox: FC<CheckboxProps>;
5+
export default Checkbox;
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { FC } from 'react';
2+
import ProviderInfo from '../../models/ProviderInfo';
3+
export interface LoginOptionProps {
4+
className?: string;
5+
onClick?: () => void;
6+
providerInfo?: ProviderInfo;
7+
}
8+
/**
9+
* If not providerInfo is received, we assume there's no provider available and so suggest to install Nifty wallet
10+
* Same happens when no onClick is provided. We open the Nifty page on a new tab
11+
*/
12+
declare const LoginOption: FC<LoginOptionProps>;
13+
export default LoginOption;

dist/components/atoms/Logo.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import React, { FC } from 'react';
2+
declare const Logo: FC<React.ImgHTMLAttributes<HTMLImageElement>>;
3+
export default Logo;
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import React, { FC } from 'react';
2+
interface LogoProps extends React.Props<HTMLImageElement> {
3+
alt?: string;
4+
height?: string | number;
5+
style?: React.CSSProperties;
6+
}
7+
declare const LogoNavbar: FC<LogoProps>;
8+
export default LogoNavbar;
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { FC } from 'react';
2+
export interface NetworkIndicatorProps {
3+
iconClassName?: string;
4+
currentNetworkId?: number;
5+
requiredNetworkId?: number;
6+
onCorrectNetworkMessage?: string;
7+
onNetworkMismatchMessage?: string;
8+
noNetworkMessage?: string;
9+
}
10+
export declare enum NetworkStatus {
11+
NO_NETWORK = 1,
12+
NETWORK_MISSMATCH = 2,
13+
CORRECT_NETWORK = 3
14+
}
15+
declare const NetworkIndicator: FC<NetworkIndicatorProps>;
16+
export default NetworkIndicator;

0 commit comments

Comments
 (0)