Big Number
Big Number is a component for entering numbers that require precision (BigNumber). In the action, the property value corresponds to an object of type BigNumber. To make it a BigNumber type, the object must be created as BigNumber(number). Since BigNumber uses library bignumber.js internally, please refer to the official documentation of bignumber.js for each API, including the four arithmetic operations.
Properties
| No | Item | Input Value | Default Value | Action Property | Type | Action Default Value | Description |
|---|---|---|---|---|---|---|---|
| 1 | ID | String | Auto-generated | id | string | Auto-generated | The [id] property cannot be set by action. |
| 2 | Label L | String | Big Number | label | string | Big Number | Component label |
| 3 | Width | String | 222 | width | string | 222 | Component width |
| 4 | Height | String | 55 | height | string | 55 | Component height |
| 5 | X | String | x | string | X coordinate position | ||
| 6 | Y | String | y | string | Y coordinate position | ||
| 7 | Lock | Boolean | OFF | lock | boolean | false | When ON, the component stays fixed even when the screen is scrolled. When OFF, the component moves along with the screen scroll. Added in v4.1.0. |
| 8 | Variant | Selection 1. Outline 2. Fill 3. Standard | Outline | variant | string | outlined | Component style |
| 9 | Legacy Design | Boolean | OFF | This is only effective when the Variant is set to Standard. When ON, the component is displayed with the legacy design. When OFF, the component is displayed with the new design. Added in v4.1.0 | |||
| 10 | Color | String Color Picker | color | string | Component color | ||
| 11 | Background Color | String Color Picker | backgroundColor | string | Component background color | ||
| 12 | Label Color | String Color Picker | labelColor | string | Label color | ||
| 13 | Input Text Color | String Color Picker | inputColor | string | Input text color | ||
| 14 | Disabled | Boolean | OFF | disabled | boolean | false | Component disabled state |
| 15 | Read Only | Boolean | OFF | readOnly | boolean | false | Component read-only state |
| 16 | Required | Boolean | OFF | required | boolean | false | Required input field setting |
| 17 | Visibility | Boolean | ON | visibility | boolean | true | Component visibility state |
| 18 | Format L | Selection[Details 1] | [Details 1] | format | string | [Details 1] | Number format setting |
| 19 | Symbol and Unit Position | Selection 1. None 2. Start 3. End | None | inputAdornmentsPosition | string | none | Symbol/unit display position |
| 20 | Symbol and Unit | String | inputAdornments | string | Symbol/unit text to display | ||
| 21 | Placeholder | String | placeholder | string | Placeholder text | ||
| 22 | Helper Text | String | helperText | string | Help description text | ||
| 23 | Value | String | value | BigNumber | |||
| 24 | Change Event | Selection 1. None 2. Action 3. Detached Action | None | Event setting when value changes Detached Action became selectable in v4.1.0. | |||
| 25 | Error | error | boolean | false | Error state display | ||
| 26 | Detached Action | Selection 1. [Detached Action ID] | detachedAction | string | Set a detached action Added in v4.1.0. | ||
| 27 | Tab Focus | Selection 1.[Component ID] | tabFocus | string | Next focus component specification Added in v3.3.0 |
[Details 1] Format
Dialog Property
| Language | Format |
|---|---|
| Default | 1. None (default) 2. #,# 3. #,#.00 |
| English | 1. None (default) 2. #,# 3. #,#.00 |
| Japanese | 1. None (default) 2. #,# 3. #,#.00 |
Action Property
| lang | format |
|---|---|
| Default | 1. None (default) 2. #,# 3. #,#.00 |
| English | 1. None (default) 2. #,# 3. #,#.00 |
| Japanese | 1. None (default) 2. #,# 3. #,#.00 |
Event
| Event name | Description |
|---|---|
| onchange | Occurs when a value change is made and the cursor is moved out of the way. |