@wavv/ui 1.9.11 → 1.9.13
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/build/cjs/index.js +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/components/Form.d.ts +2 -0
- package/build/cjs/types/components/Input.d.ts +6 -0
- package/build/esm/index.js +2 -2
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/components/Form.d.ts +2 -0
- package/build/esm/types/components/Input.d.ts +6 -0
- package/build/index.d.ts +8 -0
- package/build/types/components/Form.d.ts +2 -0
- package/build/types/components/Input.d.ts +6 -0
- package/package.json +1 -1
|
@@ -44,6 +44,7 @@ declare const Form: {
|
|
|
44
44
|
pointer?: boolean | undefined;
|
|
45
45
|
textOnly?: boolean | undefined;
|
|
46
46
|
search?: boolean | undefined;
|
|
47
|
+
hideControls?: boolean | undefined;
|
|
47
48
|
onFocus?: ((event?: import("./types").InputFocusEvent | undefined) => void) | undefined;
|
|
48
49
|
onBlur?: ((event?: import("./types").InputFocusEvent | undefined) => void) | undefined;
|
|
49
50
|
onClick?: ((event?: import("react").MouseEvent<Element, MouseEvent> | undefined) => void) | undefined;
|
|
@@ -76,6 +77,7 @@ declare const Form: {
|
|
|
76
77
|
pointer?: boolean | undefined;
|
|
77
78
|
textOnly?: boolean | undefined;
|
|
78
79
|
search?: boolean | undefined;
|
|
80
|
+
hideControls?: boolean | undefined;
|
|
79
81
|
onFocus?: ((event?: import("./types").InputFocusEvent | undefined) => void) | undefined;
|
|
80
82
|
onBlur?: ((event?: import("./types").InputFocusEvent | undefined) => void) | undefined;
|
|
81
83
|
onClick?: ((event?: import("react").MouseEvent<Element, MouseEvent> | undefined) => void) | undefined;
|
|
@@ -65,6 +65,8 @@ export type InputProps = {
|
|
|
65
65
|
textOnly?: boolean;
|
|
66
66
|
/** Adds a search icon to the left of the input and a clear icon and functionality to the right */
|
|
67
67
|
search?: boolean;
|
|
68
|
+
/** Hides the arrow controls when input type is 'number' */
|
|
69
|
+
hideControls?: boolean;
|
|
68
70
|
/** Callback run after onFocus event */
|
|
69
71
|
onFocus?: (event?: InputFocusEvent) => void;
|
|
70
72
|
/** Callback run after onBlur event */
|
|
@@ -123,6 +125,8 @@ declare const Input: import("react").ForwardRefExoticComponent<(Omit<{
|
|
|
123
125
|
textOnly?: boolean | undefined;
|
|
124
126
|
/** Adds a search icon to the left of the input and a clear icon and functionality to the right */
|
|
125
127
|
search?: boolean | undefined;
|
|
128
|
+
/** Hides the arrow controls when input type is 'number' */
|
|
129
|
+
hideControls?: boolean | undefined;
|
|
126
130
|
/** Callback run after onFocus event */
|
|
127
131
|
onFocus?: ((event?: InputFocusEvent) => void) | undefined;
|
|
128
132
|
/** Callback run after onBlur event */
|
|
@@ -180,6 +184,8 @@ declare const Input: import("react").ForwardRefExoticComponent<(Omit<{
|
|
|
180
184
|
textOnly?: boolean | undefined;
|
|
181
185
|
/** Adds a search icon to the left of the input and a clear icon and functionality to the right */
|
|
182
186
|
search?: boolean | undefined;
|
|
187
|
+
/** Hides the arrow controls when input type is 'number' */
|
|
188
|
+
hideControls?: boolean | undefined;
|
|
183
189
|
/** Callback run after onFocus event */
|
|
184
190
|
onFocus?: ((event?: InputFocusEvent) => void) | undefined;
|
|
185
191
|
/** Callback run after onBlur event */
|