@synerise/ds-input-number 0.8.24 → 0.8.26

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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.26](https://github.com/Synerise/synerise-design/compare/@synerise/ds-input-number@0.8.25...@synerise/ds-input-number@0.8.26) (2023-10-11)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-input-number
9
+
10
+
11
+
12
+
13
+
14
+ ## [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)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-input-number
17
+
18
+
19
+
20
+
21
+
6
22
  ## [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
23
 
8
24
  **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 | undefined) => string;
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.24",
3
+ "version": "0.8.26",
4
4
  "description": "Input-Number UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -21,6 +21,7 @@
21
21
  "build:js": "babel --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
22
22
  "build:watch": "npm run build:js -- --watch",
23
23
  "defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
24
+ "pack:ci": "npm pack --pack-destination ../../portal/storybook-static/static",
24
25
  "prepublish": "npm run build",
25
26
  "test": "jest",
26
27
  "test:watch": "npm run test -- --watchAll",
@@ -32,10 +33,10 @@
32
33
  ],
33
34
  "types": "dist/index.d.ts",
34
35
  "dependencies": {
35
- "@synerise/ds-data-format": "^0.4.2",
36
- "@synerise/ds-icon": "^0.58.2",
37
- "@synerise/ds-tooltip": "^0.14.4",
38
- "@synerise/ds-utils": "^0.24.16",
36
+ "@synerise/ds-data-format": "^0.4.4",
37
+ "@synerise/ds-icon": "^0.58.4",
38
+ "@synerise/ds-tooltip": "^0.14.6",
39
+ "@synerise/ds-utils": "^0.24.18",
39
40
  "uuid": "^8.3.2"
40
41
  },
41
42
  "peerDependencies": {
@@ -47,7 +48,7 @@
47
48
  "devDependencies": {
48
49
  "@testing-library/react": "10.0.1",
49
50
  "@testing-library/react-hooks": "^8.0.1",
50
- "@types/uuid": "7.0.0"
51
+ "@types/uuid": "9.0.4"
51
52
  },
52
- "gitHead": "f1f520c4c5ef9f90bacb5d5e0b2e778ceb8fdf79"
53
+ "gitHead": "8eb4a3e304406a8dbb9258803c48952461fc5a55"
53
54
  }