labsense-ui-kit 1.2.71 → 1.2.72

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.
@@ -8997,9 +8997,9 @@ var Pagination = function Pagination(_ref4) {
8997
8997
  onPageChange(page);
8998
8998
  };
8999
8999
  var handleInputChange = function handleInputChange(e) {
9000
- var cleaned = e.target.value.replace(/[+-]/g, '');
9001
- if (/^(0|[1-9][0-9]*)?$/.test(cleaned)) {
9002
- setInputPage(cleaned);
9000
+ var value = e.target.value;
9001
+ if (/^(0|[1-9][0-9]*)?$/.test(value)) {
9002
+ setInputPage(value);
9003
9003
  }
9004
9004
  };
9005
9005
  var handleGoClick = function handleGoClick() {