@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
43 lines • 1.05 kB
JavaScript
/**
* Specifies a type of an option.
*/
export var OptionType;
(function (OptionType) {
/**
* Indicates a checkbox.
*/
OptionType["CheckBox"] = "boolean";
/**
* Indicates a list of check-boxes.
*/
OptionType["CheckBoxes"] = "checkboxes";
/**
* Indicates a text-box.
*/
OptionType["TextBox"] = "text";
/**
* Indicates a big text-box.
*/
OptionType["TextArea"] = "textarea";
/**
* Indicates a big text-box which is localizable.
*/
OptionType["LocalizableTextArea"] = "textareaI18n";
/**
* Indicates a secure text-box.
*/
OptionType["PasswordTextBox"] = "password";
/**
* Indicates a combo-box.
*/
OptionType["ComboBox"] = "select";
/**
* Indicates a set of radio-buttons.
*/
OptionType["RadioButton"] = "radioButton";
/**
* Indicates a multi-select list.
*/
OptionType["MultiSelect"] = "multiSelect";
})(OptionType = OptionType || (OptionType = {}));
//# sourceMappingURL=OptionType.js.map