@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
66 lines (65 loc) • 3.99 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.VelcronDataTypes = exports.VelcronComponentPropertyEditors = exports.VelcronDescriptorTypes = exports.VerticalAlignments = exports.VelcronHorizontalAlignments = exports.VelcronIconTypes = exports.VelcronActionTypes = exports.AssignOperators = void 0;
var AssignOperators;
(function (AssignOperators) {
AssignOperators["equals"] = "=";
AssignOperators["plusEquals"] = "+=";
AssignOperators["equalsPlus"] = "=+";
AssignOperators["equalsQuestion"] = "=?";
AssignOperators["plusPlus"] = "++";
AssignOperators["minusMinus"] = "--";
AssignOperators["equalsExclamation"] = "=!";
})(AssignOperators = exports.AssignOperators || (exports.AssignOperators = {}));
var VelcronActionTypes;
(function (VelcronActionTypes) {
VelcronActionTypes[VelcronActionTypes["getOrSetValue"] = 0] = "getOrSetValue";
VelcronActionTypes[VelcronActionTypes["promise"] = 1] = "promise";
VelcronActionTypes[VelcronActionTypes["condition"] = 2] = "condition";
VelcronActionTypes[VelcronActionTypes["returnsValue"] = 3] = "returnsValue";
})(VelcronActionTypes = exports.VelcronActionTypes || (exports.VelcronActionTypes = {}));
var VelcronIconTypes;
(function (VelcronIconTypes) {
VelcronIconTypes["fontAwesome"] = "fa";
})(VelcronIconTypes = exports.VelcronIconTypes || (exports.VelcronIconTypes = {}));
var VelcronHorizontalAlignments;
(function (VelcronHorizontalAlignments) {
VelcronHorizontalAlignments["left"] = "left";
VelcronHorizontalAlignments["center"] = "center";
VelcronHorizontalAlignments["right"] = "right";
})(VelcronHorizontalAlignments = exports.VelcronHorizontalAlignments || (exports.VelcronHorizontalAlignments = {}));
var VerticalAlignments;
(function (VerticalAlignments) {
VerticalAlignments["top"] = "top";
VerticalAlignments["center"] = "center";
VerticalAlignments["bottom"] = "bottom";
})(VerticalAlignments = exports.VerticalAlignments || (exports.VerticalAlignments = {}));
var VelcronDescriptorTypes;
(function (VelcronDescriptorTypes) {
VelcronDescriptorTypes[VelcronDescriptorTypes["component"] = 0] = "component";
VelcronDescriptorTypes[VelcronDescriptorTypes["subComponent"] = 1] = "subComponent";
VelcronDescriptorTypes[VelcronDescriptorTypes["appData"] = 2] = "appData";
VelcronDescriptorTypes[VelcronDescriptorTypes["dataMember"] = 3] = "dataMember";
})(VelcronDescriptorTypes = exports.VelcronDescriptorTypes || (exports.VelcronDescriptorTypes = {}));
var VelcronComponentPropertyEditors;
(function (VelcronComponentPropertyEditors) {
VelcronComponentPropertyEditors[VelcronComponentPropertyEditors["text"] = 0] = "text";
VelcronComponentPropertyEditors[VelcronComponentPropertyEditors["colorSchemaPicker"] = 1] = "colorSchemaPicker";
VelcronComponentPropertyEditors[VelcronComponentPropertyEditors["slider"] = 2] = "slider";
VelcronComponentPropertyEditors[VelcronComponentPropertyEditors["colorPicker"] = 3] = "colorPicker";
VelcronComponentPropertyEditors[VelcronComponentPropertyEditors["typographyPicker"] = 4] = "typographyPicker";
VelcronComponentPropertyEditors[VelcronComponentPropertyEditors["ratioPicker"] = 5] = "ratioPicker";
VelcronComponentPropertyEditors[VelcronComponentPropertyEditors["booleanPicker"] = 6] = "booleanPicker";
})(VelcronComponentPropertyEditors = exports.VelcronComponentPropertyEditors || (exports.VelcronComponentPropertyEditors = {}));
var VelcronDataTypes;
(function (VelcronDataTypes) {
//Unknown = null
VelcronDataTypes["unknown"] = "unknown";
VelcronDataTypes["object"] = "object";
VelcronDataTypes["text"] = "text";
VelcronDataTypes["number"] = "number";
VelcronDataTypes["boolean"] = "boolean";
VelcronDataTypes["array"] = "array";
VelcronDataTypes["componentArray"] = "componentArray";
VelcronDataTypes["bind"] = "bind";
})(VelcronDataTypes = exports.VelcronDataTypes || (exports.VelcronDataTypes = {}));