baseui 0.0.0-next-71e5a1a → 0.0.0-next-efb3d7f

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/input/index.d.ts CHANGED
@@ -69,7 +69,7 @@ export interface BaseInputProps<T> {
69
69
  rows?: number;
70
70
  min?: number;
71
71
  max?: number;
72
- step?: number;
72
+ step?: number | 'any';
73
73
  }
74
74
 
75
75
  export interface State {
@@ -140,7 +140,7 @@ export type BaseInputPropsT<T> = {|
140
140
  /** max value when used as input type=number */
141
141
  max?: number,
142
142
  /** step value when used as input type=number */
143
- step?: number,
143
+ step?: number | 'any',
144
144
  |};
145
145
 
146
146
  export type InputPropsT = {|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "baseui",
3
- "version": "0.0.0-next-71e5a1a",
3
+ "version": "0.0.0-next-efb3d7f",
4
4
  "description": "A React Component library implementing the Base design language",
5
5
  "keywords": [
6
6
  "react",