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.
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9001,9 +9001,9 @@ var Pagination = function Pagination(_ref4) {
|
|
|
9001
9001
|
onPageChange(page);
|
|
9002
9002
|
};
|
|
9003
9003
|
var handleInputChange = function handleInputChange(e) {
|
|
9004
|
-
var
|
|
9005
|
-
if (/^(0|[1-9][0-9]*)?$/.test(
|
|
9006
|
-
setInputPage(
|
|
9004
|
+
var value = e.target.value;
|
|
9005
|
+
if (/^(0|[1-9][0-9]*)?$/.test(value)) {
|
|
9006
|
+
setInputPage(value);
|
|
9007
9007
|
}
|
|
9008
9008
|
};
|
|
9009
9009
|
var handleGoClick = function handleGoClick() {
|