@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.
@@ -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 */
package/build/index.d.ts CHANGED
@@ -1477,6 +1477,8 @@ type InputProps = {
1477
1477
  textOnly?: boolean;
1478
1478
  /** Adds a search icon to the left of the input and a clear icon and functionality to the right */
1479
1479
  search?: boolean;
1480
+ /** Hides the arrow controls when input type is 'number' */
1481
+ hideControls?: boolean;
1480
1482
  /** Callback run after onFocus event */
1481
1483
  onFocus?: (event?: InputFocusEvent) => void;
1482
1484
  /** Callback run after onBlur event */
@@ -1535,6 +1537,8 @@ declare const Input: react.ForwardRefExoticComponent<(Omit<{
1535
1537
  textOnly?: boolean | undefined;
1536
1538
  /** Adds a search icon to the left of the input and a clear icon and functionality to the right */
1537
1539
  search?: boolean | undefined;
1540
+ /** Hides the arrow controls when input type is 'number' */
1541
+ hideControls?: boolean | undefined;
1538
1542
  /** Callback run after onFocus event */
1539
1543
  onFocus?: ((event?: InputFocusEvent) => void) | undefined;
1540
1544
  /** Callback run after onBlur event */
@@ -1592,6 +1596,8 @@ declare const Input: react.ForwardRefExoticComponent<(Omit<{
1592
1596
  textOnly?: boolean | undefined;
1593
1597
  /** Adds a search icon to the left of the input and a clear icon and functionality to the right */
1594
1598
  search?: boolean | undefined;
1599
+ /** Hides the arrow controls when input type is 'number' */
1600
+ hideControls?: boolean | undefined;
1595
1601
  /** Callback run after onFocus event */
1596
1602
  onFocus?: ((event?: InputFocusEvent) => void) | undefined;
1597
1603
  /** Callback run after onBlur event */
@@ -1853,6 +1859,7 @@ declare const Form: {
1853
1859
  pointer?: boolean | undefined;
1854
1860
  textOnly?: boolean | undefined;
1855
1861
  search?: boolean | undefined;
1862
+ hideControls?: boolean | undefined;
1856
1863
  onFocus?: ((event?: InputFocusEvent | undefined) => void) | undefined;
1857
1864
  onBlur?: ((event?: InputFocusEvent | undefined) => void) | undefined;
1858
1865
  onClick?: ((event?: react.MouseEvent<Element, MouseEvent> | undefined) => void) | undefined;
@@ -1885,6 +1892,7 @@ declare const Form: {
1885
1892
  pointer?: boolean | undefined;
1886
1893
  textOnly?: boolean | undefined;
1887
1894
  search?: boolean | undefined;
1895
+ hideControls?: boolean | undefined;
1888
1896
  onFocus?: ((event?: InputFocusEvent | undefined) => void) | undefined;
1889
1897
  onBlur?: ((event?: InputFocusEvent | undefined) => void) | undefined;
1890
1898
  onClick?: ((event?: react.MouseEvent<Element, MouseEvent> | undefined) => void) | undefined;
@@ -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 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavv/ui",
3
- "version": "1.9.11",
3
+ "version": "1.9.13",
4
4
  "files": [
5
5
  "build/**/*"
6
6
  ],