@blockscout/ui-toolkit 2.5.1-alpha → 2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1627 -1649
- package/dist/package/src/index.d.ts +0 -1
- package/dist/utils/consts.d.ts +3 -0
- package/package.json +1 -1
- package/dist/components/truncation/TruncatedText.d.ts +0 -11
|
@@ -50,7 +50,6 @@ export * from '../../components/forms/utils';
|
|
|
50
50
|
export * from '../../components/forms/validators';
|
|
51
51
|
export * from '../../components/loaders/ContentLoader';
|
|
52
52
|
export * from '../../components/truncation/TruncatedTextTooltip';
|
|
53
|
-
export * from '../../components/truncation/TruncatedText';
|
|
54
53
|
export { default as getComponentDisplayName } from '../../utils/getComponentDisplayName';
|
|
55
54
|
export * as html from '../../utils/htmlEntities';
|
|
56
55
|
export * as consts from '../../utils/consts';
|
package/dist/utils/consts.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { default as BigNumber } from 'bignumber.js';
|
|
2
|
+
export declare const WEI: BigNumber;
|
|
3
|
+
export declare const GWEI: BigNumber;
|
|
4
|
+
export declare const WEI_IN_GWEI: BigNumber;
|
|
2
5
|
export declare const ZERO: BigNumber;
|
|
3
6
|
export declare const SECOND = 1000;
|
|
4
7
|
export declare const MINUTE: number;
|
package/package.json
CHANGED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Placement } from '@floating-ui/dom';
|
|
2
|
-
import { default as React } from 'react';
|
|
3
|
-
import { SkeletonTextProps } from '../../chakra/skeleton';
|
|
4
|
-
export interface TruncatedTextProps extends Omit<SkeletonTextProps, 'loading'> {
|
|
5
|
-
text: string;
|
|
6
|
-
loading?: boolean;
|
|
7
|
-
tooltipContent?: string;
|
|
8
|
-
tooltipPlacement?: Placement;
|
|
9
|
-
tooltipInteractive?: boolean;
|
|
10
|
-
}
|
|
11
|
-
export declare const TruncatedText: ({ text, tooltipPlacement, tooltipInteractive, tooltipContent, loading, ...rest }: TruncatedTextProps) => React.JSX.Element;
|