This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.tsx
More file actions
6 lines (6 loc) · 1.68 KB
/
config.tsx
File metadata and controls
6 lines (6 loc) · 1.68 KB
1
2
3
4
5
6
export const NumericTextBoxOrder:Object = [
{ 'path': 'numerictextbox/default', 'component':'Default', 'name': 'Default Functionalities', 'order': '01', 'category': 'NumericTextBox', 'description': 'The NumericTextBox component is used to get the number inputs from the user. Also it can be act as the currency textbox and percentage textbox to get the currency and percentage inputs.' , 'api':'{"NumericTextBoxComponent":["value","format","min","max","step"] }'},
{ 'path': 'numerictextbox/range-validation', 'component':'Range', 'name': 'Range Validation', 'order': '01', 'category': 'NumericTextBox', 'description': 'The NumericTextBox has the options to restrict the input value between a specific range using the min, max, and strictMode properties. In this demo, numeric textbox is restricted between 10 to 100 through the min and max properties.', 'api':'{"NumericTextBoxComponent":["value","min","max","step"] }' },
{ 'path': 'numerictextbox/custom-format', 'component':'Format', 'name': 'Custom Format', 'order': '01', 'category': 'NumericTextBox', 'description': 'The NumericTextBox provides an option to customize the display format of the numeric value using the format property.', 'api':'{"NumericTextBoxComponent":["value","format","min","max"] }' },
{ 'path': 'numerictextbox/restrict-decimals', 'component':'Restrict', 'name': 'Restrict Decimals', 'order': '01', 'category': 'NumericTextBox', 'description': 'The NumericTextBox provides an option to restrict the number of decimal values, by using the decimals property. So we can make it to accept the integer value alone.','api':'{"NumericTextBoxComponent":["value","format","min","max","step","decimals","validateDecimalOnType"] }' }
]