@jobber/components 6.107.1 → 6.107.2
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.
|
@@ -6,7 +6,7 @@ import type { Clearable } from "@jobber/hooks";
|
|
|
6
6
|
import type { IconNames } from "../Icon";
|
|
7
7
|
export type FormFieldTypes = "text" | "password" | "number" | "time" | "textarea" | "select" | "tel" | "email";
|
|
8
8
|
export type KeyBoardTypes = "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
9
|
-
export type AutocompleteTypes = "one-time-code" | "address-line1" | "address-line2";
|
|
9
|
+
export type AutocompleteTypes = "on" | "one-time-code" | "address-line1" | "address-line2";
|
|
10
10
|
export interface FieldActionsRef {
|
|
11
11
|
setValue(value: string | number): void;
|
|
12
12
|
}
|
|
@@ -119,6 +119,8 @@ export interface FormFieldProps extends CommonFormFieldProps {
|
|
|
119
119
|
* Note that "one-time-code" is experimental and should not be used without
|
|
120
120
|
* consultation. "address-line1" and "address-line2" are
|
|
121
121
|
* used for billing address information.
|
|
122
|
+
*
|
|
123
|
+
* Prefer the **on** option over the boolean **true** value to explicitly indicate auto-completion behavior.
|
|
122
124
|
*/
|
|
123
125
|
readonly autocomplete?: boolean | AutocompleteTypes;
|
|
124
126
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components",
|
|
3
|
-
"version": "6.107.
|
|
3
|
+
"version": "6.107.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -538,5 +538,5 @@
|
|
|
538
538
|
"> 1%",
|
|
539
539
|
"IE 10"
|
|
540
540
|
],
|
|
541
|
-
"gitHead": "
|
|
541
|
+
"gitHead": "fab61b9fab49e4a4aec72472893c389ddb77e19f"
|
|
542
542
|
}
|