UNPKG

@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).

52 lines (51 loc) 1.17 kB
export declare enum positionType { start = "start", end = "end", center = "center" } export declare enum pageContentLayoutType { full = "full", center = "center" } export declare enum decimalCharacterType { point = 0, comma = 1 } export declare enum orientationType { columnwise = 0, rowwise = 1 } export declare enum textSeperatorType { tab = 9, comma = 44, semicolon = 59, space = 32 } export declare enum textMarkerType { quotes = 0, doubleQuotes = 1 } export declare enum notificationType { success = 0, warning = 1, error = 2, surface = 3 } export declare enum FilterOptionsEnum { 'e' = "e",// Equal to 'ne' = "ne",// Not equal to 'gt' = "gt",// Greater than 'lt' = "lt",// Less than 'gte' = "gte",// Greater than or equal to 'lte' = "lte",// Less than or equal to 'c' = "c",// Contains 'nc' = "nc",// Does not contain 'sw' = "sw",// Starts with 'ew' = "ew",// Ends with, 'o' = "o",// On (date) 'sf' = "sf",// Starting from (date) 'a' = "a",// After (date) 'u' = "u",// Until (date) 'b' = "b",// Before (date) 'no' = "no" }