@synerise/ds-input-number 0.8.14 → 0.8.16

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
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.16](https://github.com/Synerise/synerise-design/compare/@synerise/ds-input-number@0.8.15...@synerise/ds-input-number@0.8.16) (2023-07-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **input-number:** allow minus sign as valid value ([a04e032](https://github.com/Synerise/synerise-design/commit/a04e0322df969ac1f199ab2448b0a50dc550a2cc))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.8.15](https://github.com/Synerise/synerise-design/compare/@synerise/ds-input-number@0.8.14...@synerise/ds-input-number@0.8.15) (2023-07-17)
18
+
19
+ **Note:** Version bump only for package @synerise/ds-input-number
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.8.14](https://github.com/Synerise/synerise-design/compare/@synerise/ds-input-number@0.8.13...@synerise/ds-input-number@0.8.14) (2023-07-12)
7
26
 
8
27
 
@@ -12,6 +12,7 @@ export var formatNumber = function formatNumber(value, formatValue, notationThou
12
12
  var _value$match, _value$match2;
13
13
 
14
14
  if (value === undefined || value === '') return '';
15
+ if (value === '-') return '-';
15
16
 
16
17
  var formatOptions = _objectSpread({
17
18
  maximumFractionDigits: MAXIMUM_FRACTION_DIGITS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-input-number",
3
- "version": "0.8.14",
3
+ "version": "0.8.16",
4
4
  "description": "Input-Number UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -33,8 +33,8 @@
33
33
  "types": "dist/index.d.ts",
34
34
  "dependencies": {
35
35
  "@synerise/ds-icon": "^0.53.0",
36
- "@synerise/ds-tooltip": "^0.13.7",
37
- "@synerise/ds-utils": "^0.24.10",
36
+ "@synerise/ds-tooltip": "^0.14.0",
37
+ "@synerise/ds-utils": "^0.24.11",
38
38
  "uuid": "^7.0.2"
39
39
  },
40
40
  "peerDependencies": {
@@ -45,5 +45,5 @@
45
45
  "devDependencies": {
46
46
  "@types/uuid": "7.0.0"
47
47
  },
48
- "gitHead": "9bbc4614a5e2cee2d9de07ee190fd4b467310d7a"
48
+ "gitHead": "283730ca9bb63422391388fbc020906edf942b57"
49
49
  }