UNPKG

cspace-ui

Version:
27 lines (26 loc) 1.43 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OP_RANGE = exports.OP_OR = exports.OP_NULL = exports.OP_NOT_RANGE = exports.OP_NOT_NULL = exports.OP_NOT_MATCH = exports.OP_NOT_EQ = exports.OP_NOT_CONTAIN = exports.OP_NOT_COMPLETE = exports.OP_MATCH = exports.OP_LTE = exports.OP_LTC = exports.OP_LT = exports.OP_GTE = exports.OP_GTC = exports.OP_GT = exports.OP_GROUP = exports.OP_EQ = exports.OP_CONTAIN = exports.OP_COMPLETE = exports.OP_AND = void 0; const OP_AND = exports.OP_AND = 'and'; const OP_OR = exports.OP_OR = 'or'; const OP_CONTAIN = exports.OP_CONTAIN = 'cont'; const OP_EQ = exports.OP_EQ = 'eq'; const OP_GT = exports.OP_GT = 'gt'; const OP_GTE = exports.OP_GTE = 'gte'; const OP_LT = exports.OP_LT = 'lt'; const OP_LTE = exports.OP_LTE = 'lte'; const OP_MATCH = exports.OP_MATCH = 'match'; const OP_RANGE = exports.OP_RANGE = 'range'; const OP_NULL = exports.OP_NULL = 'null'; const OP_NOT_CONTAIN = exports.OP_NOT_CONTAIN = 'ncont'; const OP_NOT_EQ = exports.OP_NOT_EQ = 'neq'; const OP_NOT_MATCH = exports.OP_NOT_MATCH = 'nmatch'; const OP_NOT_RANGE = exports.OP_NOT_RANGE = 'nrange'; const OP_NOT_NULL = exports.OP_NOT_NULL = 'nnull'; const OP_GTC = exports.OP_GTC = 'gtc'; const OP_LTC = exports.OP_LTC = 'ltc'; const OP_COMPLETE = exports.OP_COMPLETE = 'cmpl'; const OP_NOT_COMPLETE = exports.OP_NOT_COMPLETE = 'ncmpl'; const OP_GROUP = exports.OP_GROUP = 'grp';