Skip to content

Commit abdd999

Browse files
committed
fix exporting types
Signed-off-by: Evgeniy Bilov <eugenebelov@users.noreply.github.com>
1 parent 0642db4 commit abdd999

8 files changed

Lines changed: 21 additions & 18 deletions

File tree

dist/cspr-design.es.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45168,6 +45168,7 @@ export {
4516845168
CS as KeyIcon,
4516945169
Jf as KeybaseIcon,
4517045170
B8 as Label,
45171+
Wo as LabelFontSize,
4517145172
SS as LightModeIcon,
4517245173
vr as Link,
4517345174
_S as LinkIcon,

dist/cspr-design.umd.js

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { PrecisionCase } from '../../utils/currency';
2-
export interface CsprProps {
2+
export interface CsprAmountProps {
33
motes?: string | number | null;
44
precisionCase?: PrecisionCase;
55
hideCsprCurrency?: boolean;
66
}
7-
export declare function CsprAmount({ motes, precisionCase, hideCsprCurrency, }: CsprProps): import("react/jsx-runtime").JSX.Element;
7+
export declare function CsprAmount({ motes, precisionCase, hideCsprCurrency, }: CsprAmountProps): import("react/jsx-runtime").JSX.Element;
88
export default CsprAmount;
99
//# sourceMappingURL=cspr-amount.d.ts.map

dist/lib/components/cspr-amount/cspr-amount.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lib/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ export * from './utils/guards';
9696
export * from './utils/currency';
9797
export * from './utils/md5';
9898
export * from './theme-config';
99+
export * from './types';
99100
export * from './types/types';
100101
export * from './types/NFTToken';
101102
export * from './types/FTToken';

dist/lib/index.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/components/cspr-amount/cspr-amount.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
} from '../../utils/currency';
77
import TokenAmount from '../token-amount/token-amount';
88

9-
export interface CsprProps {
9+
export interface CsprAmountProps {
1010
motes?: string | number | null;
1111
precisionCase?: PrecisionCase;
1212
hideCsprCurrency?: boolean;
@@ -16,7 +16,7 @@ export function CsprAmount({
1616
motes,
1717
precisionCase,
1818
hideCsprCurrency,
19-
}: CsprProps) {
19+
}: CsprAmountProps) {
2020
const precision = currencyPrecisionByCase(precisionCase);
2121

2222
return (

src/lib/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ export * from './utils/guards';
9696
export * from './utils/currency';
9797
export * from './utils/md5';
9898
export * from './theme-config';
99+
export * from './types';
99100
export * from './types/types';
100101
export * from './types/NFTToken';
101102
export * from './types/FTToken';

0 commit comments

Comments
 (0)