@bexis2/bexis2-core-ui
Version:
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
62 lines (61 loc) • 2.69 kB
JavaScript
export var positionType;
(function (positionType) {
positionType["start"] = "start";
positionType["end"] = "end";
positionType["center"] = "center";
})(positionType || (positionType = {}));
export var pageContentLayoutType;
(function (pageContentLayoutType) {
pageContentLayoutType["full"] = "full";
pageContentLayoutType["center"] = "center";
})(pageContentLayoutType || (pageContentLayoutType = {}));
export var decimalCharacterType;
(function (decimalCharacterType) {
decimalCharacterType[decimalCharacterType["point"] = 0] = "point";
decimalCharacterType[decimalCharacterType["comma"] = 1] = "comma";
})(decimalCharacterType || (decimalCharacterType = {}));
export var orientationType;
(function (orientationType) {
orientationType[orientationType["columnwise"] = 0] = "columnwise";
orientationType[orientationType["rowwise"] = 1] = "rowwise";
})(orientationType || (orientationType = {}));
export var textSeperatorType;
(function (textSeperatorType) {
textSeperatorType[textSeperatorType["tab"] = 9] = "tab";
textSeperatorType[textSeperatorType["comma"] = 44] = "comma";
textSeperatorType[textSeperatorType["semicolon"] = 59] = "semicolon";
textSeperatorType[textSeperatorType["space"] = 32] = "space";
})(textSeperatorType || (textSeperatorType = {}));
export var textMarkerType;
(function (textMarkerType) {
textMarkerType[textMarkerType["quotes"] = 0] = "quotes";
textMarkerType[textMarkerType["doubleQuotes"] = 1] = "doubleQuotes";
})(textMarkerType || (textMarkerType = {}));
//types for the notification styling
export var notificationType;
(function (notificationType) {
notificationType[notificationType["success"] = 0] = "success";
notificationType[notificationType["warning"] = 1] = "warning";
notificationType[notificationType["error"] = 2] = "error";
notificationType[notificationType["surface"] = 3] = "surface";
})(notificationType || (notificationType = {}));
// Server-side table fitler types
export var FilterOptionsEnum;
(function (FilterOptionsEnum) {
FilterOptionsEnum["e"] = "e";
FilterOptionsEnum["ne"] = "ne";
FilterOptionsEnum["gt"] = "gt";
FilterOptionsEnum["lt"] = "lt";
FilterOptionsEnum["gte"] = "gte";
FilterOptionsEnum["lte"] = "lte";
FilterOptionsEnum["c"] = "c";
FilterOptionsEnum["nc"] = "nc";
FilterOptionsEnum["sw"] = "sw";
FilterOptionsEnum["ew"] = "ew";
FilterOptionsEnum["o"] = "o";
FilterOptionsEnum["sf"] = "sf";
FilterOptionsEnum["a"] = "a";
FilterOptionsEnum["u"] = "u";
FilterOptionsEnum["b"] = "b";
FilterOptionsEnum["no"] = "no"; // Not on (date)
})(FilterOptionsEnum || (FilterOptionsEnum = {}));