@syncfusion/ej2-querybuilder
Advanced tools
Comparing version 17.3.21 to 17.3.26
@@ -7,2 +7,10 @@ # Changelog | ||
#### New Features | ||
- Provided Not Contains, Not Starts With and Not Ends With operator support. | ||
## 17.3.21 (2019-10-30) | ||
### QueryBuilder | ||
#### Bug Fixes | ||
@@ -9,0 +17,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 17.3.21 | ||
* version : 17.3.26 | ||
* Copyright Syncfusion Inc. 2001 - 2019. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-querybuilder@*", | ||
"_id": "@syncfusion/ej2-querybuilder@17.3.19", | ||
"_id": "@syncfusion/ej2-querybuilder@17.3.21", | ||
"_inBundle": false, | ||
"_integrity": "sha512-02YSBK0XQyiVN4hntaM6PSVV2ediNeZEtiUJZ1mjMgaMfvnNoLsPNQSabczCMTyKRcRSGI/EQdy1A4yaVe7G7g==", | ||
"_integrity": "sha512-pysXZ+wLlNGHO1MzMO8L6fphIPD9se1mjXDq8ZSRrgoUqU3pLbjo7B+vokIREJEpXhC7VAr4WAjNVOELsrWzvA==", | ||
"_location": "/@syncfusion/ej2-querybuilder", | ||
@@ -26,4 +26,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-querybuilder/-/ej2-querybuilder-17.3.19.tgz", | ||
"_shasum": "406808d7c76384e530b2b756b24fa668b835bb03", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-querybuilder/-/ej2-querybuilder-17.3.21.tgz", | ||
"_shasum": "f5084daf0873b985fec90cd18808edcc8f5cac4b", | ||
"_spec": "@syncfusion/ej2-querybuilder@*", | ||
@@ -36,8 +36,8 @@ "_where": "/jenkins/workspace/ation_hotfix_17.2.0.34_Vol2-DDPJ6C2YEWTWLLKKNA7AG2JBE6DYTCTNGMHGORWGAYAVCL6L7OLQ/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~17.3.19", | ||
"@syncfusion/ej2-buttons": "~17.3.19", | ||
"@syncfusion/ej2-calendars": "~17.3.19", | ||
"@syncfusion/ej2-dropdowns": "~17.3.21", | ||
"@syncfusion/ej2-inputs": "~17.3.21", | ||
"@syncfusion/ej2-splitbuttons": "~17.3.19" | ||
"@syncfusion/ej2-base": "~17.3.26", | ||
"@syncfusion/ej2-buttons": "~17.3.26", | ||
"@syncfusion/ej2-calendars": "~17.3.26", | ||
"@syncfusion/ej2-dropdowns": "~17.3.26", | ||
"@syncfusion/ej2-inputs": "~17.3.26", | ||
"@syncfusion/ej2-splitbuttons": "~17.3.26" | ||
}, | ||
@@ -74,4 +74,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "17.3.21", | ||
"version": "17.3.26", | ||
"sideEffects": false | ||
} |
@@ -269,2 +269,8 @@ import { Component, INotifyPropertyChanged, NotifyPropertyChanges, getComponent, MouseEventArgs, Browser } from '@syncfusion/ej2-base';import { Property, ChildProperty, Complex, L10n, closest, extend, isNullOrUndefined, Collection } from '@syncfusion/ej2-base';import { getInstance, addClass, removeClass, rippleEffect, detach, classList, isBlazor } from '@syncfusion/ej2-base';import { Internationalization, DateFormatOptions } from '@syncfusion/ej2-base';import { Button, RadioButton, ChangeEventArgs as ButtonChangeEventArgs } from '@syncfusion/ej2-buttons';import { DropDownList, ChangeEventArgs as DropDownChangeEventArgs, FieldSettingsModel, CheckBoxSelection } from '@syncfusion/ej2-dropdowns';import { MultiSelect, MultiSelectChangeEventArgs, PopupEventArgs } from '@syncfusion/ej2-dropdowns';import { EmitType, Event, EventHandler, getValue, Animation, BaseEventArgs } from '@syncfusion/ej2-base';import { Query, Predicate, DataManager, Deferred, UrlAdaptor } from '@syncfusion/ej2-data';import { TextBox, NumericTextBox, InputEventArgs, ChangeEventArgs as InputChangeEventArgs } from '@syncfusion/ej2-inputs';import { DatePicker, ChangeEventArgs as CalendarChangeEventArgs } from '@syncfusion/ej2-calendars';import { DropDownButton, ItemModel, MenuEventArgs } from '@syncfusion/ej2-splitbuttons';import { Tooltip, createSpinner, showSpinner, hideSpinner } from '@syncfusion/ej2-popups'; | ||
/** | ||
* If immediateModeDelay is set by particular number, the rule Change event is triggered after that period. | ||
* @default 0 | ||
*/ | ||
immediateModeDelay?: number; | ||
/** | ||
* Defines rules in the QueryBuilder. | ||
@@ -271,0 +277,0 @@ * Specifies the initial rule, which is JSON data. |
@@ -165,2 +165,3 @@ /** | ||
private isInitialLoad; | ||
private timer; | ||
/** | ||
@@ -261,2 +262,7 @@ * Triggers when the component is created. | ||
/** | ||
* If immediateModeDelay is set by particular number, the rule Change event is triggered after that period. | ||
* @default 0 | ||
*/ | ||
immediateModeDelay: number; | ||
/** | ||
* Defines rules in the QueryBuilder. | ||
@@ -296,2 +302,3 @@ * Specifies the initial rule, which is JSON data. | ||
private changeValue; | ||
private filterValue; | ||
private changeValueSuccessCallBack; | ||
@@ -437,3 +444,3 @@ private changeField; | ||
*/ | ||
getSqlFromRules(rule: RuleModel): string; | ||
getSqlFromRules(rule: RuleModel, allowEscape?: boolean): string; | ||
private sqlParser; | ||
@@ -440,0 +447,0 @@ private parseSqlStrings; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
2054668
22396