@zac-apps/commons 1.3.0 → 1.3.2
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 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -345,6 +345,7 @@ function NumField(_ref) {
|
|
|
345
345
|
minValue = _ref.minValue,
|
|
346
346
|
maxValue = _ref.maxValue,
|
|
347
347
|
adornment = _ref.adornment,
|
|
348
|
+
label = _ref.label,
|
|
348
349
|
helperText = _ref.helperText,
|
|
349
350
|
size = _ref.size;
|
|
350
351
|
var _useState = useState(""),
|
|
@@ -385,6 +386,7 @@ function NumField(_ref) {
|
|
|
385
386
|
},
|
|
386
387
|
value: input,
|
|
387
388
|
error: error,
|
|
389
|
+
label: label,
|
|
388
390
|
helperText: helperText,
|
|
389
391
|
inputProps: {
|
|
390
392
|
inputMode: "numeric"
|
|
@@ -671,4 +673,4 @@ function AppDrawer(_ref) {
|
|
|
671
673
|
});
|
|
672
674
|
}
|
|
673
675
|
|
|
674
|
-
export {
|
|
676
|
+
export { AppCard, AppDrawer, AppGrid, AppMenu, AppTable, AppTheme, AppWrapper, DivTitle, ErrorAlert, Footer, MenuButton, NextListMenu, NumField, Percentage, Progress, PublicFetch, RespGrid, SpecSwitch, Start, TableHeadCell, useFetch };
|