@synerise/ds-input-number 0.8.15 → 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,17 @@
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
+
6
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)
7
18
 
8
19
  **Note:** Version bump only for package @synerise/ds-input-number
@@ -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.15",
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,7 +33,7 @@
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",
36
+ "@synerise/ds-tooltip": "^0.14.0",
37
37
  "@synerise/ds-utils": "^0.24.11",
38
38
  "uuid": "^7.0.2"
39
39
  },
@@ -45,5 +45,5 @@
45
45
  "devDependencies": {
46
46
  "@types/uuid": "7.0.0"
47
47
  },
48
- "gitHead": "b2df0b45094602990b6ef46e20fb0eb655baf126"
48
+ "gitHead": "283730ca9bb63422391388fbc020906edf942b57"
49
49
  }