|
@@ -1483,7 +1483,19 @@ export const conditionBuilder = {
|
|
|
category: 'number',
|
|
|
},
|
|
|
{ id: 'cnt', name: 'Contains', needValue: true, category: 'text' },
|
|
|
+ {
|
|
|
+ id: 'cni',
|
|
|
+ name: 'Contains (case insensitive)',
|
|
|
+ needValue: true,
|
|
|
+ category: 'text',
|
|
|
+ },
|
|
|
{ id: 'nct', name: 'Not contains', needValue: true, category: 'text' },
|
|
|
+ {
|
|
|
+ id: 'nci',
|
|
|
+ name: 'Not contains (case insensitive)',
|
|
|
+ needValue: true,
|
|
|
+ category: 'text',
|
|
|
+ },
|
|
|
{ id: 'stw', name: 'Starts with', needValue: true, category: 'text' },
|
|
|
{ id: 'enw', name: 'Ends with', needValue: true, category: 'text' },
|
|
|
{ id: 'rgx', name: 'Match with RegEx', needValue: true, category: 'text' },
|