woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
45 lines • 1.18 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Specifies a type of an option.
*/
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 = exports.OptionType || (exports.OptionType = {}));
//# sourceMappingURL=OptionType.js.map