@jobber/components 3.0.3 → 3.0.5
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.
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,25 @@ menu: Changelog
|
|
|
8
8
|
All notable changes to this project will be documented in this file.
|
|
9
9
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
10
10
|
|
|
11
|
+
## [3.0.5](https://github.com/GetJobber/atlantis/compare/@jobber/components@3.0.4...@jobber/components@3.0.5) (2023-02-14)
|
|
12
|
+
|
|
13
|
+
**Note:** Version bump only for package @jobber/components
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## [3.0.4](https://github.com/GetJobber/atlantis/compare/@jobber/components@3.0.3...@jobber/components@3.0.4) (2023-02-14)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **components:** JOB-61635 InputNumber on iOS not allowing decimals ([#1023](https://github.com/GetJobber/atlantis/issues/1023)) ([4ba4923](https://github.com/GetJobber/atlantis/commit/4ba4923ae665611fb83f1ae6ac670e3a4f5ea8b0))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
11
30
|
## [3.0.3](https://github.com/GetJobber/atlantis/compare/@jobber/components@3.0.2...@jobber/components@3.0.3) (2023-02-13)
|
|
12
31
|
|
|
13
32
|
|
|
@@ -99,7 +99,7 @@ export interface FormFieldProps extends CommonFormFieldProps {
|
|
|
99
99
|
/**
|
|
100
100
|
* Determines what kind of keyboard appears on mobile web.
|
|
101
101
|
*/
|
|
102
|
-
readonly keyboard?: "numeric";
|
|
102
|
+
readonly keyboard?: "numeric" | "decimal";
|
|
103
103
|
/**
|
|
104
104
|
* Specifies the maximum numerical or date value that a user can type
|
|
105
105
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { CommonFormFieldProps, FormFieldProps } from "../FormField";
|
|
3
|
-
interface InputNumberProps extends CommonFormFieldProps, Pick<FormFieldProps, "maxLength" | "autocomplete" | "max" | "min" | "onEnter" | "onFocus" | "onBlur" | "inputRef" | "validations" | "readonly" | "defaultValue"> {
|
|
3
|
+
interface InputNumberProps extends CommonFormFieldProps, Pick<FormFieldProps, "maxLength" | "autocomplete" | "max" | "min" | "onEnter" | "onFocus" | "onBlur" | "inputRef" | "validations" | "readonly" | "defaultValue" | "keyboard"> {
|
|
4
4
|
value?: number;
|
|
5
5
|
}
|
|
6
6
|
export interface InputNumberRef {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"dist/*"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@jobber/design": "^0.28.
|
|
21
|
+
"@jobber/design": "^0.28.3",
|
|
22
22
|
"@jobber/formatters": "^0.2.0",
|
|
23
23
|
"@jobber/hooks": "^1.12.1",
|
|
24
24
|
"@popperjs/core": "^2.0.6",
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"> 1%",
|
|
87
87
|
"IE 10"
|
|
88
88
|
],
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "352545921cad94f2129c55389c3880bc7f57ea2e"
|
|
90
90
|
}
|