1mpacto-react-ui 0.0.109 → 0.0.110

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.
@@ -1,6 +1,6 @@
1
1
  import { TDateType, TKeyLocale } from '../interfaces/components/Calendar';
2
2
  import { IMergeState } from '../interfaces/components/FilterContainer';
3
- import { TypeBigNumber } from '../config/bigNumber';
3
+ import { TBigNumber, TypeBigNumber } from '../config/bigNumber';
4
4
 
5
5
  export declare const isAccurateBigNumber: (value: unknown) => boolean;
6
6
  export declare const isAccurateNumber: (value: unknown) => boolean;
@@ -49,3 +49,6 @@ export declare function transformSecondTime(secs: number, option?: {
49
49
  minute: string | number;
50
50
  second: string | number;
51
51
  };
52
+ export declare const transformNumber: (val: string) => number;
53
+ export declare const transformBigNumber: (val: TBigNumber) => string;
54
+ export declare const transfromIsNan: (value: number) => number | undefined;
@@ -7,4 +7,5 @@ interface FormatCurrencyOptions {
7
7
  currencyDisplay?: 'symbol' | 'code' | 'name';
8
8
  }
9
9
  export declare function formatBigNumber(number: number | string, options?: FormatCurrencyOptions): string;
10
+ export declare function removeTrailingZeros(value: string | number): string;
10
11
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "1mpacto-react-ui",
3
3
  "private": false,
4
- "version": "0.0.109",
4
+ "version": "0.0.110",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "copy:toastify-css": "cp ./node_modules/react-toastify/dist/ReactToastify.css ./dist/assets/toast.css",