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.js
More file actions
7 lines (7 loc) · 1.37 KB
/
config.js
File metadata and controls
7 lines (7 loc) · 1.37 KB
1
2
3
4
5
6
7
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MaskedTextBoxOrder = [
{ 'path': 'maskedtextbox/default', 'component': 'Default', 'name': 'Default Functionalities', 'order': '01', 'category': 'MaskedTextBox', 'description': 'The Masked Textbox allows the user to enter only the valid input based on the provided mask format. The mask format can be any Phone number, Country ISO code, Date, Time, Social security number, product key and so on.', 'api': '{"MaskedTextBoxComponent":["mask"] }' },
{ 'path': 'maskedtextbox/custom-mask', 'component': 'CustomMask', 'name': 'Custom Mask', 'order': '01', 'category': 'MaskedTextBox', 'description': 'The custom mask can be done by using custom characters as mask elements and using regular expressions. In this demo the time format and IP address fields are achieved by using the custom mask literals and regex.', 'api': '{"MaskedTextBoxComponent":["mask","customCharacters","floatLabelType"] }' },
{ 'path': 'maskedtextbox/formats', 'component': 'Formats', 'name': 'Formats', 'order': '01', 'category': 'MaskedTextBox', 'description': 'This sample demonstrates the usage of different mask formats through the properties panel. You can also get the value and raw value of the masked textbox.', 'api': '{"MaskedTextBoxComponent":["mask","floatLabelType","change","promptChar","getMaskedValue","value"] }' }
];