@synerise/ds-input-number 0.8.24 → 0.8.25
Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,14 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [0.8.25](https://github.com/Synerise/synerise-design/compare/@synerise/ds-input-number@0.8.24...@synerise/ds-input-number@0.8.25) (2023-10-02)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @synerise/ds-input-number
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
6
14
|
## [0.8.24](https://github.com/Synerise/synerise-design/compare/@synerise/ds-input-number@0.8.23...@synerise/ds-input-number@0.8.24) (2023-09-26)
|
7
15
|
|
8
16
|
**Note:** Version bump only for package @synerise/ds-input-number
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { ReactText } from 'react';
|
2
2
|
import { NumberToFormatOptions, Delimiter } from '@synerise/ds-data-format';
|
3
|
-
export declare const formatNumber: (value: string | number | undefined | null, formatValue: (value: number, options: NumberToFormatOptions) => string, notationThousandDelimiter: Delimiter, notationDecimalDelimiter: Delimiter, valueFormatOptions?: NumberToFormatOptions
|
3
|
+
export declare const formatNumber: (value: string | number | undefined | null, formatValue: (value: number, options: NumberToFormatOptions) => string, notationThousandDelimiter: Delimiter, notationDecimalDelimiter: Delimiter, valueFormatOptions?: NumberToFormatOptions) => string;
|
4
4
|
export declare const parseFormattedNumber: (value: string | undefined, formatValue: (value: number, options: NumberToFormatOptions) => string, notationThousandDelimiter: Delimiter, notationDecimalDelimiter: Delimiter) => ReactText;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@synerise/ds-input-number",
|
3
|
-
"version": "0.8.
|
3
|
+
"version": "0.8.25",
|
4
4
|
"description": "Input-Number UI Component for the Synerise Design System",
|
5
5
|
"license": "ISC",
|
6
6
|
"repository": "Synerise/synerise-design",
|
@@ -32,10 +32,10 @@
|
|
32
32
|
],
|
33
33
|
"types": "dist/index.d.ts",
|
34
34
|
"dependencies": {
|
35
|
-
"@synerise/ds-data-format": "^0.4.
|
36
|
-
"@synerise/ds-icon": "^0.58.
|
37
|
-
"@synerise/ds-tooltip": "^0.14.
|
38
|
-
"@synerise/ds-utils": "^0.24.
|
35
|
+
"@synerise/ds-data-format": "^0.4.3",
|
36
|
+
"@synerise/ds-icon": "^0.58.3",
|
37
|
+
"@synerise/ds-tooltip": "^0.14.5",
|
38
|
+
"@synerise/ds-utils": "^0.24.17",
|
39
39
|
"uuid": "^8.3.2"
|
40
40
|
},
|
41
41
|
"peerDependencies": {
|
@@ -47,7 +47,7 @@
|
|
47
47
|
"devDependencies": {
|
48
48
|
"@testing-library/react": "10.0.1",
|
49
49
|
"@testing-library/react-hooks": "^8.0.1",
|
50
|
-
"@types/uuid": "
|
50
|
+
"@types/uuid": "9.0.4"
|
51
51
|
},
|
52
|
-
"gitHead": "
|
52
|
+
"gitHead": "1c1adf344f447e404a1d6320ad1d3f8486f29f67"
|
53
53
|
}
|