@zac-apps/commons 1.2.0 → 1.3.1
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 +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -345,6 +345,8 @@ function NumField(_ref) {
|
|
|
345
345
|
minValue = _ref.minValue,
|
|
346
346
|
maxValue = _ref.maxValue,
|
|
347
347
|
adornment = _ref.adornment,
|
|
348
|
+
label = _ref.label,
|
|
349
|
+
helperText = _ref.helperText,
|
|
348
350
|
size = _ref.size;
|
|
349
351
|
var _useState = useState(""),
|
|
350
352
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -384,6 +386,8 @@ function NumField(_ref) {
|
|
|
384
386
|
},
|
|
385
387
|
value: input,
|
|
386
388
|
error: error,
|
|
389
|
+
label: label,
|
|
390
|
+
helperText: helperText,
|
|
387
391
|
inputProps: {
|
|
388
392
|
inputMode: "numeric"
|
|
389
393
|
},
|