catchup-library-web 2.2.6 → 2.2.8

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/index.js CHANGED
@@ -4188,7 +4188,9 @@ var InputGroup = ({
4188
4188
  value,
4189
4189
  onChange: handleTextOnChange,
4190
4190
  onFocus,
4191
- onKeyDown
4191
+ onKeyDown,
4192
+ min: minValue,
4193
+ max: maxValue
4192
4194
  }
4193
4195
  )
4194
4196
  }
package/dist/index.mjs CHANGED
@@ -3965,7 +3965,9 @@ var InputGroup = ({
3965
3965
  value,
3966
3966
  onChange: handleTextOnChange,
3967
3967
  onFocus,
3968
- onKeyDown
3968
+ onKeyDown,
3969
+ min: minValue,
3970
+ max: maxValue
3969
3971
  }
3970
3972
  )
3971
3973
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "catchup-library-web",
3
- "version": "2.2.6",
3
+ "version": "2.2.8",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -505,6 +505,8 @@ const InputGroup = ({
505
505
  onChange={handleTextOnChange}
506
506
  onFocus={onFocus}
507
507
  onKeyDown={onKeyDown}
508
+ min={minValue}
509
+ max={maxValue}
508
510
  />
509
511
  </div>
510
512