material-ui-autonumeric
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

Material UI-AutoNumeric: AutoNumeric-Powered Material UI Components

npm version Pipeline GitLab Mirror Demo

AutoNumeric is a powerful library that automatically format numbers and currencies. Material UI-AutoNumeric brings that power to Material UI.

Install

npm install --save material-ui-autonumeric

Usage

The usage examples below use AutoNumericTextField. The usage is similar for:

  • AutoNumericOutlinedInput
  • AutoNumericFilledInput
  • AutoNumericMaterialUIInput (Corresponding to Input)
  • AutoNumericInputBase

Most basic usage

<AutoNumericTextField />

creates an TextField component that is automatically formatted by AutoNumeric.

Customize the input

<AutoNumericTextField
  inputProps={{ defaultValue: "99.99" }}
  autoNumericOptions={{ suffixText: "%" }}
/>

Use predefined AutoNumeric options

<AutoNumericTextField
  inputProps={{ defaultValue: "10000" }}
  autoNumericOptions={
    AutoNumeric.getPredefinedOptions().commaDecimalCharDotSeparator
  }
/>

Interact with AutoNumericTextField via a React state

const [controlledInputState, setControlledInputState] = useState("100000");

<AutoNumericTextField
  valueState={{
    state: controlledInputState,
    stateSetter: setControlledInputState,
  }}
/>
<button
  onClick={() => {
    setControlledInputState(
      (
        Number(AutoNumeric.unformat(controlledInputState)) + 1
      ).toString(),
    );
  }}
>
  Add one
</button>

API References

  • AutoNumericTextField({props, autoNumericOptions, valueState})
  • AutoNumericOutlinedInput({props, autoNumericOptions, valueState})
  • AutoNumericFilledInput({props, autoNumericOptions, valueState})
  • AutoNumericMaterialUIInput({props, autoNumericOptions, valueState})
  • AutoNumericInputBase({props, autoNumericOptions, valueState})

Material UI components integrated with AutoNumeric and permits interaction with a React state. Respectively, they wrap

Parameters

  • props: Options passed to the underlying Material UI component. Same type as the props of the underlying Material UI component.
  • autoNumericOptions: Options passed to AutoNumeric. Same as AutoNumeric options.
  • valueState: The state and state setter from the parent component to be passed into this component.
    • valueState.state: The state from the parent component to be passed in.
    • valueState.stateSetter: The callback function that sets options.valueState.state.

Demo

A Demo is available.

Contributing

Source code is available on GitHub.

To report a bug, visit the issue tracker.

After obtaining the source code, first run npm install within the source directory. To run test, run npm run test-once. To build for production, run npm pack. To build the documentation, run npm run doc.

To send your contribution, open a pull request.

License

Copyright 2024 8 Hobbies, LLC <hong@8hobbies.com>

Licensed under the Apache License, Version 2.0(the "License");
you may not use files in this project except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Package Sidebar

Install

npm i material-ui-autonumeric

Weekly Downloads

53

Version

1.0.1

License

Apache-2.0

Unpacked Size

30.7 kB

Total Files

9

Last publish

Collaborators

  • 8hobbies-bot