px-react-ui-components 1.0.17 → 1.0.18

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.
@@ -63,6 +63,8 @@ function MyInput({
63
63
  uppercase = false,
64
64
  lowercase = false,
65
65
  firstUppercase = false,
66
+ min = null,
67
+ max = null,
66
68
  onChange = null,
67
69
  onBlur = null,
68
70
  onFocus = null,
@@ -499,6 +501,8 @@ function MyInput({
499
501
  onChange: handleChange,
500
502
  placeholder: placeholder,
501
503
  autoComplete: "off",
504
+ min: min,
505
+ max: max,
502
506
  style: style,
503
507
  onBlur: onMyBlur,
504
508
  onFocus: onMyFocus,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "px-react-ui-components",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "type": "commonjs",