Skip to content

Commit 183851e

Browse files
authored
Merge pull request #32 from make-software/bugfix/fixed-import-errors
Fixed import errors
2 parents 340d1e7 + abd68d1 commit 183851e

108 files changed

Lines changed: 2708 additions & 5 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ yarn-error.log*
2525
/src/stories/
2626

2727
*storybook.log
28-
/dist/
28+
#/dist/
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { ActionIdentificationHashesType } from '../deploy-actions/deploy-action-row';
2+
import { AccountInfoResult, ContractResult, Deploy, DeployContractPackageResult } from '../../types/types';
3+
interface ActivityFeedItemProps {
4+
deploy: Deploy;
5+
loading: boolean;
6+
actionIdentificationHashes: ActionIdentificationHashesType;
7+
csprLiveDomainPath: string;
8+
getAccountInfo: <T = AccountInfoResult>(publicKey: string) => T | null | undefined;
9+
getContractInfoByHash: (contractHash: string) => ContractResult | null | undefined;
10+
getContractPackageInfoByHash?: (contractPackageHash: string) => DeployContractPackageResult | null | undefined;
11+
}
12+
export declare const ActivityFeedItem: ({ deploy, loading, actionIdentificationHashes, getAccountInfo, getContractPackageInfoByHash, getContractInfoByHash, csprLiveDomainPath, }: ActivityFeedItemProps) => import("react/jsx-runtime").JSX.Element;
13+
export default ActivityFeedItem;
14+
//# sourceMappingURL=activity-feed-item.d.ts.map

dist/lib/components/activity-feed-item/activity-feed-item.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { BadgeProps } from '../badge/badge';
2+
export declare const WasmProxyBadge: ({ lineHeight, }: {
3+
lineHeight?: Pick<BadgeProps, "lineHeight">["lineHeight"];
4+
}) => import("react/jsx-runtime").JSX.Element;
5+
//# sourceMappingURL=wasm-proxy-badge.d.ts.map

dist/lib/components/activity-feed-item/wasm-proxy-badge.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { PrecisionCase } from '../../utils/currency';
2+
import { DeployContractPackageResult } from '../../types/types';
3+
export interface Cep18Props {
4+
symbol?: string;
5+
amount?: string | null;
6+
precisionCase?: PrecisionCase;
7+
contractPackage: DeployContractPackageResult;
8+
}
9+
export declare function Cep18FormattedAmount({ amount, symbol, contractPackage, precisionCase, }: Cep18Props): import("react/jsx-runtime").JSX.Element;
10+
export default Cep18FormattedAmount;
11+
//# sourceMappingURL=cep18-formatted-amount.d.ts.map

dist/lib/components/cep18-formatted-amount/cep18-formatted-amount.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { AvatarProps } from '../avatar/avatar';
2+
export interface ContractIconProps {
3+
src?: string | null;
4+
size?: AvatarProps['size'];
5+
loading?: boolean;
6+
contractTypeId: number | undefined | null;
7+
}
8+
export declare const ContractIcon: ({ src, size, loading, contractTypeId, }: ContractIconProps) => import("react/jsx-runtime").JSX.Element;
9+
export default ContractIcon;
10+
//# sourceMappingURL=contract-icon.d.ts.map

dist/lib/components/contract-icon/contract-icon.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { AvatarProps } from '../avatar/avatar';
2+
import { DeployContractPackageResult } from '../../types/types';
3+
import { HashLength } from '../../utils/formatters.ts';
4+
import { HashFontSize } from './default-contract-identifier';
5+
interface ContractIdentifierWithNameProps {
6+
hash: string;
7+
contractPackage: DeployContractPackageResult;
8+
hashLength?: HashLength;
9+
avatarSize?: AvatarProps['size'];
10+
hashFontSize?: HashFontSize;
11+
loading?: boolean;
12+
path: string;
13+
}
14+
export declare const ContractIdentifierWithName: ({ hash, contractPackage, avatarSize, hashLength, loading, path, }: ContractIdentifierWithNameProps) => import("react/jsx-runtime").JSX.Element;
15+
export {};
16+
//# sourceMappingURL=contract-identifier-with-name.d.ts.map

0 commit comments

Comments
 (0)