@jobber/components 4.23.28 → 4.23.29
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/dist/Form/Form.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import React, { ReactNode } from "react";
|
|
|
2
2
|
export interface FormRef {
|
|
3
3
|
submit(): void;
|
|
4
4
|
}
|
|
5
|
-
interface FormProps {
|
|
5
|
+
export interface FormProps {
|
|
6
6
|
readonly children: ReactNode;
|
|
7
7
|
/**
|
|
8
8
|
* Callback for when the form has been sucessfully
|
|
@@ -15,4 +15,3 @@ interface FormProps {
|
|
|
15
15
|
}): void;
|
|
16
16
|
}
|
|
17
17
|
export declare const Form: React.ForwardRefExoticComponent<FormProps & React.RefAttributes<FormRef>>;
|
|
18
|
-
export {};
|
|
@@ -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" | "keyboard" | "prefix" | "suffix"> {
|
|
3
|
+
export interface InputNumberProps extends CommonFormFieldProps, Pick<FormFieldProps, "maxLength" | "autocomplete" | "max" | "min" | "onEnter" | "onFocus" | "onBlur" | "inputRef" | "validations" | "readonly" | "defaultValue" | "keyboard" | "prefix" | "suffix"> {
|
|
4
4
|
value?: number;
|
|
5
5
|
}
|
|
6
6
|
export interface InputNumberRef {
|
|
@@ -8,4 +8,3 @@ export interface InputNumberRef {
|
|
|
8
8
|
focus(): void;
|
|
9
9
|
}
|
|
10
10
|
export declare const InputNumber: React.ForwardRefExoticComponent<InputNumberProps & React.RefAttributes<InputNumberRef>>;
|
|
11
|
-
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components",
|
|
3
|
-
"version": "4.23.
|
|
3
|
+
"version": "4.23.29",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"> 1%",
|
|
84
84
|
"IE 10"
|
|
85
85
|
],
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "130f8e78619847a9834d612adf00ec84d72833c5"
|
|
87
87
|
}
|