-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIO-9173: Allow Scientific Notations (#5878)
* FIO-9173: Allow Scientific Notations * FIO-9173: Fixing index * FIO-9173: Adding more tests & using parseFloat instead of Number
- Loading branch information
1 parent
cd4ba4b
commit d14937e
Showing
4 changed files
with
55 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
export comp1 from './comp1'; | ||
export comp2 from './comp2'; | ||
export comp3 from './comp3'; | ||
export comp4 from './comp4'; | ||
export comp5 from './comp5'; | ||
export comp6 from './comp6'; | ||
export comp7 from './comp7'; | ||
export comp8 from './comp8'; | ||
export comp9 from './comp9'; | ||
import comp1 from './comp1'; | ||
import comp2 from './comp2'; | ||
import comp3 from './comp3'; | ||
import comp4 from './comp4'; | ||
import comp5 from './comp5'; | ||
import comp6 from './comp6'; | ||
import comp7 from './comp7'; | ||
import comp8 from './comp8'; | ||
import comp9 from './comp9'; | ||
import scientificNotation from './scientificNotation'; | ||
export { comp1, comp2, comp3, comp4, comp5, comp6, comp7, comp8, comp9, scientificNotation }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export default { | ||
'label': 'Number', | ||
'mask': false, | ||
'spellcheck': true, | ||
'tableView': true, | ||
'delimiter': true, | ||
'requireDecimal': true, | ||
'inputFormat': 'plain', | ||
'key': 'number', | ||
'type': 'number', | ||
'decimalLimit': 2, | ||
'input': true | ||
}; |