@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.
@@ -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';
@@ -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,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockscout/ui-toolkit",
3
- "version": "2.5.1-alpha",
3
+ "version": "2.5.1",
4
4
  "description": "A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -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;