@syncfusion/ej2-angular-querybuilder 20.2.48-ngcc → 20.2.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (121) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +6 -0
  3. package/esm2020/src/query-builder/columns.directive.mjs +72 -0
  4. package/esm2020/src/query-builder/querybuilder-all.module.mjs +23 -0
  5. package/esm2020/src/query-builder/querybuilder.component.mjs +71 -0
  6. package/esm2020/src/query-builder/querybuilder.module.mjs +34 -0
  7. package/esm2020/syncfusion-ej2-angular-querybuilder.mjs +5 -0
  8. package/fesm2015/syncfusion-ej2-angular-querybuilder.mjs +194 -0
  9. package/fesm2015/syncfusion-ej2-angular-querybuilder.mjs.map +1 -0
  10. package/fesm2020/syncfusion-ej2-angular-querybuilder.mjs +194 -0
  11. package/fesm2020/syncfusion-ej2-angular-querybuilder.mjs.map +1 -0
  12. package/package.json +26 -12
  13. package/schematics/utils/lib-details.ts +2 -2
  14. package/src/query-builder/columns.directive.d.ts +5 -0
  15. package/src/query-builder/querybuilder-all.module.d.ts +6 -0
  16. package/src/query-builder/querybuilder.component.d.ts +3 -0
  17. package/src/query-builder/querybuilder.module.d.ts +7 -0
  18. package/styles/bootstrap-dark.css +2 -0
  19. package/styles/bootstrap.css +2 -0
  20. package/styles/bootstrap4.css +2 -0
  21. package/styles/bootstrap5-dark.css +2 -0
  22. package/styles/bootstrap5.css +2 -0
  23. package/styles/fabric-dark.css +2 -0
  24. package/styles/fabric.css +2 -0
  25. package/styles/fluent-dark.css +2 -0
  26. package/styles/fluent.css +2 -0
  27. package/styles/highcontrast-light.css +5 -0
  28. package/styles/highcontrast.css +5 -0
  29. package/styles/material-dark.css +2 -0
  30. package/styles/material.css +2 -0
  31. package/styles/query-builder/_all.scss +2 -0
  32. package/styles/query-builder/_bootstrap-dark-definition.scss +104 -0
  33. package/styles/query-builder/_bootstrap-definition.scss +104 -0
  34. package/styles/query-builder/_bootstrap4-definition.scss +106 -0
  35. package/styles/query-builder/_bootstrap5-dark-definition.scss +1 -0
  36. package/styles/query-builder/_bootstrap5-definition.scss +108 -0
  37. package/styles/query-builder/_fabric-dark-definition.scss +104 -0
  38. package/styles/query-builder/_fabric-definition.scss +104 -0
  39. package/styles/query-builder/_fluent-dark-definition.scss +1 -0
  40. package/styles/query-builder/_fluent-definition.scss +107 -0
  41. package/styles/query-builder/_fusionnew-definition.scss +108 -0
  42. package/styles/query-builder/_highcontrast-definition.scss +104 -0
  43. package/styles/query-builder/_highcontrast-light-definition.scss +104 -0
  44. package/styles/query-builder/_layout.scss +658 -0
  45. package/styles/query-builder/_material-dark-definition.scss +105 -0
  46. package/styles/query-builder/_material-definition.scss +104 -0
  47. package/styles/query-builder/_material3-definition.scss +108 -0
  48. package/styles/query-builder/_tailwind-dark-definition.scss +1 -0
  49. package/styles/query-builder/_tailwind-definition.scss +107 -0
  50. package/styles/query-builder/_theme.scss +188 -0
  51. package/styles/query-builder/bootstrap-dark.css +2 -0
  52. package/styles/query-builder/bootstrap-dark.scss +15 -1
  53. package/styles/query-builder/bootstrap.css +2 -0
  54. package/styles/query-builder/bootstrap.scss +15 -1
  55. package/styles/query-builder/bootstrap4.css +2 -0
  56. package/styles/query-builder/bootstrap4.scss +15 -1
  57. package/styles/query-builder/bootstrap5-dark.css +2 -0
  58. package/styles/query-builder/bootstrap5-dark.scss +15 -1
  59. package/styles/query-builder/bootstrap5.css +2 -0
  60. package/styles/query-builder/bootstrap5.scss +15 -1
  61. package/styles/query-builder/fabric-dark.css +2 -0
  62. package/styles/query-builder/fabric-dark.scss +15 -1
  63. package/styles/query-builder/fabric.css +2 -0
  64. package/styles/query-builder/fabric.scss +15 -1
  65. package/styles/query-builder/fluent-dark.css +2 -0
  66. package/styles/query-builder/fluent-dark.scss +15 -1
  67. package/styles/query-builder/fluent.css +2 -0
  68. package/styles/query-builder/fluent.scss +15 -1
  69. package/styles/query-builder/highcontrast-light.css +5 -0
  70. package/styles/query-builder/highcontrast-light.scss +15 -1
  71. package/styles/query-builder/highcontrast.css +5 -0
  72. package/styles/query-builder/highcontrast.scss +15 -1
  73. package/styles/query-builder/icons/_bootstrap-dark.scss +7 -0
  74. package/styles/query-builder/icons/_bootstrap.scss +7 -0
  75. package/styles/query-builder/icons/_bootstrap4.scss +7 -0
  76. package/styles/query-builder/icons/_bootstrap5-dark.scss +1 -0
  77. package/styles/query-builder/icons/_bootstrap5.scss +7 -0
  78. package/styles/query-builder/icons/_fabric-dark.scss +7 -0
  79. package/styles/query-builder/icons/_fabric.scss +7 -0
  80. package/styles/query-builder/icons/_fluent-dark.scss +1 -0
  81. package/styles/query-builder/icons/_fluent.scss +7 -0
  82. package/styles/query-builder/icons/_fusionnew.scss +7 -0
  83. package/styles/query-builder/icons/_highcontrast-light.scss +7 -0
  84. package/styles/query-builder/icons/_highcontrast.scss +7 -0
  85. package/styles/query-builder/icons/_material-dark.scss +7 -0
  86. package/styles/query-builder/icons/_material.scss +7 -0
  87. package/styles/query-builder/icons/_material3.scss +7 -0
  88. package/styles/query-builder/icons/_tailwind-dark.scss +7 -0
  89. package/styles/query-builder/icons/_tailwind.scss +7 -0
  90. package/styles/query-builder/material-dark.css +2 -0
  91. package/styles/query-builder/material-dark.scss +15 -1
  92. package/styles/query-builder/material.css +2 -0
  93. package/styles/query-builder/material.scss +15 -1
  94. package/styles/query-builder/tailwind-dark.css +2 -0
  95. package/styles/query-builder/tailwind-dark.scss +15 -1
  96. package/styles/query-builder/tailwind.css +2 -0
  97. package/styles/query-builder/tailwind.scss +15 -1
  98. package/styles/tailwind-dark.css +2 -0
  99. package/styles/tailwind.css +2 -0
  100. package/syncfusion-ej2-angular-querybuilder.d.ts +5 -0
  101. package/@syncfusion/ej2-angular-querybuilder.es5.js +0 -267
  102. package/@syncfusion/ej2-angular-querybuilder.es5.js.map +0 -1
  103. package/@syncfusion/ej2-angular-querybuilder.js +0 -239
  104. package/@syncfusion/ej2-angular-querybuilder.js.map +0 -1
  105. package/CHANGELOG.md +0 -582
  106. package/dist/ej2-angular-querybuilder.umd.js +0 -289
  107. package/dist/ej2-angular-querybuilder.umd.js.map +0 -1
  108. package/dist/ej2-angular-querybuilder.umd.min.js +0 -11
  109. package/dist/ej2-angular-querybuilder.umd.min.js.map +0 -1
  110. package/ej2-angular-querybuilder.d.ts +0 -5
  111. package/ej2-angular-querybuilder.metadata.json +0 -1
  112. package/postinstall/tagchange.js +0 -18
  113. package/schematics/collection.json +0 -10
  114. package/schematics/ng-add/index.d.ts +0 -3
  115. package/schematics/ng-add/index.js +0 -9
  116. package/schematics/ng-add/schema.d.ts +0 -13
  117. package/schematics/ng-add/schema.js +0 -2
  118. package/schematics/ng-add/schema.json +0 -34
  119. package/schematics/tsconfig.json +0 -25
  120. package/schematics/utils/lib-details.d.ts +0 -4
  121. package/schematics/utils/lib-details.js +0 -6
package/CHANGELOG.md DELETED
@@ -1,582 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### QueryBuilder
6
-
7
- #### Bug Fixes
8
-
9
- - `#I375472` - Issue with Change event not trigger for changing field for default column to rule template column in query builder has been fixed.
10
-
11
- ## 20.2.46 (2022-08-30)
12
-
13
- ### QueryBuilder
14
-
15
- #### Bug Fixes
16
-
17
- - `#I394878` - Issue with Date type Between value not render properly while using `setRulesFromSql` method has been fixed.
18
-
19
- ## 20.2.43 (2022-08-08)
20
-
21
- ### QueryBuilder
22
-
23
- #### Bug Fixes
24
-
25
- - `#I391922` - Issue with Show Buttons option in query builder has been fixed.
26
-
27
- ## 20.2.40 (2022-07-26)
28
-
29
- ### QueryBuilder
30
-
31
- #### Bug Fixes
32
-
33
- - `#I375472` - Issue with Rule template default rendered while add condition/group in query builder, if first column as rule template has been fixed.
34
- - `#I388333` - Issue with Value template not destroy properly when we use complex data source in query builder has been fixed.
35
-
36
- ## 20.2.36 (2022-06-30)
37
-
38
- ### QueryBuilder
39
-
40
- #### Bug Fixes
41
-
42
- - Issue with Dynamically changing the columns with complex data source of query builder has been fixed.
43
- - `I379818` - Issue with Getting change event as undefined for fields having custom value template of query builder has been fixed.
44
-
45
- ## 19.3.45 (2021-10-12)
46
-
47
- ### QueryBuilder
48
-
49
- #### Bug Fixes
50
-
51
- - `F169401`, `F169406` - Issue with SQL importing with boolean values has been fixed.
52
- - `F168982` - Issue with placing Query Builder inside a form has been fixed.
53
-
54
- ## 19.3.44 (2021-10-05)
55
-
56
- ### QueryBuilder
57
-
58
- #### New Features
59
-
60
- - Provided Dropdown Tree component support in Complex data binding.
61
-
62
- ## 19.2.59 (2021-08-31)
63
-
64
- ### QueryBuilder
65
-
66
- #### Bug Fixes
67
-
68
- - Improvements in Header Template support.
69
-
70
- ## 19.2.51 (2021-08-03)
71
-
72
- ### QueryBuilder
73
-
74
- #### Bug Fixes
75
-
76
- - `#I337055` - The issue with Tooltip not destroyed while applying reset after validation been fixed.
77
-
78
- ## 19.2.46 (2021-07-06)
79
-
80
- ### QueryBuilder
81
-
82
- #### Bug Fixes
83
-
84
- - `#I333679` - The issue with setRules method not works in header template has been fixed.
85
-
86
- ## 19.1.57 (2021-04-20)
87
-
88
- ### QueryBuilder
89
-
90
- #### Bug Fixes
91
-
92
- - `#F163698` - The issue with 'getRulesFromSql' method for date is fixed.
93
-
94
- ## 19.1.55 (2021-04-06)
95
-
96
- ### QueryBuilder
97
-
98
- #### Bug Fixes
99
-
100
- - `#317381` - The issue with predicate generation for date is fixed.
101
-
102
- ## 19.1.54 (2021-03-30)
103
-
104
- ### QueryBuilder
105
-
106
- #### New Features
107
-
108
- - Provided Complex data binding Support.
109
- - Provided Header Template Support.
110
- - Provided model support for fields, operators and values.
111
-
112
- - Provided Complex data binding Support
113
- - Provided Header Template Support
114
-
115
- #### Bug Fixes
116
-
117
- - `#F162988` - The issue when field has space is fixed.
118
- - `#317355` - The issue with disable the condition option when that group has single
119
-
120
- ## 18.4.42 (2021-02-09)
121
-
122
- ### QueryBuilder
123
-
124
- #### Bug Fixes
125
-
126
- - Issue with angular template is fixed.
127
-
128
- ## 18.4.33 (2021-01-05)
129
-
130
- ### QueryBuilder
131
-
132
- #### Bug Fixes
133
-
134
- - Issue with template destroy is fixed.
135
-
136
- ## 18.4.32 (2020-12-29)
137
-
138
- ### QueryBuilder
139
-
140
- #### Bug Fixes
141
-
142
- - Issue with validation is fixed.
143
-
144
- ## 18.3.52 (2020-12-01)
145
-
146
- ### QueryBuilder
147
-
148
- #### Bug Fixes
149
-
150
- - Issue with Date Picker with null value is fixed.
151
-
152
- ## 18.3.51 (2020-11-24)
153
-
154
- ### QueryBuilder
155
-
156
- #### Bug Fixes
157
-
158
- - `#290596` - Validation working improperly with column template issue resolved.
159
- - Issue with template destroy is fixed
160
-
161
- ## 18.3.50 (2020-11-17)
162
-
163
- ### QueryBuilder
164
-
165
- #### Bug Fixes
166
-
167
- - Issue with setting HTML element id start with number is fixed
168
-
169
- ## 18.3.42 (2020-10-20)
170
-
171
- ### QueryBuilder
172
-
173
- #### Bug Fixes
174
-
175
- - Issue with 'setRulesFromSql' method is fixed.
176
- - Issue with changing value field width is fixed.
177
-
178
- ## 18.3.40 (2020-10-13)
179
-
180
- ### QueryBuilder
181
-
182
- #### Bug Fixes
183
-
184
- - Issue with 'getValues' method is fixed.
185
-
186
- ## 18.2.57 (2020-09-08)
187
-
188
- ### QueryBuilder
189
-
190
- #### Bug Fixes
191
-
192
- - Issue with 'setRulesFromSql' method is fixed.
193
-
194
- ## 18.2.55 (2020-08-25)
195
-
196
- ### QueryBuilder
197
-
198
- #### Bug Fixes
199
-
200
- - Issue with 'getColumn' method is fixed.
201
- - Issue with persistence is fixed.
202
-
203
- ## 18.2.46 (2020-07-21)
204
-
205
- ### QueryBuilder
206
-
207
- #### Bug Fixes
208
-
209
- - Issue with 'boolean' type value is fixed.
210
-
211
- ## 18.2.45 (2020-07-14)
212
-
213
- ### QueryBuilder
214
-
215
- #### Bug Fixes
216
-
217
- - Issue with 'locale' is fixed.
218
-
219
- ## 18.2.44 (2020-07-07)
220
-
221
- ### QueryBuilder
222
-
223
- #### New Features
224
-
225
- - Provided `Rule Template` support.
226
-
227
- #### Bug Fixes
228
-
229
- - Issue with 'addGroups' method is fixed.
230
-
231
- ## 18.1.55 (2020-06-02)
232
-
233
- ### QueryBuilder
234
-
235
- #### Bug Fixes
236
-
237
- - Issue with 'setRulesFromSql' method is fixed.
238
-
239
- ## 18.1.53 (2020-05-19)
240
-
241
- ### QueryBuilder
242
-
243
- #### Bug Fixes
244
-
245
- - Issue with boolean value has been resolved.
246
-
247
- ## 18.1.48 (2020-05-05)
248
-
249
- ### QueryBuilder
250
-
251
- #### Bug Fixes
252
-
253
- - Issue with SQL parsing has been resolved.
254
-
255
- ## 18.1.45 (2020-04-21)
256
-
257
- ### QueryBuilder
258
-
259
- #### Bug Fixes
260
-
261
- - Issue with grouping after refreshing QueryBuilder has been resolved.
262
-
263
- ## 18.1.44 (2020-04-14)
264
-
265
- ### QueryBuilder
266
-
267
- #### Bug Fixes
268
-
269
- - Compatibility with EJ1 issues has been resolved.
270
-
271
- ## 18.1.43 (2020-04-07)
272
-
273
- ### QueryBuilder
274
-
275
- #### New Features
276
-
277
- - Provided `readonly` support.
278
-
279
- ## 18.1.36-beta (2020-03-19)
280
-
281
- ### QueryBuilder
282
-
283
- #### Bug Fixes
284
-
285
- - Improvements in Value Template support.
286
-
287
- ## 17.4.49 (2020-02-11)
288
-
289
- ### QueryBuilder
290
-
291
- #### Bug Fixes
292
-
293
- - CSS validation issues has been resolved.
294
-
295
- ## 17.4.47 (2020-02-05)
296
-
297
- ### QueryBuilder
298
-
299
- #### Bug Fixes
300
-
301
- - Issue with predicate generation for date type is fixed.
302
-
303
- #### Breaking Changes
304
-
305
- | Property Name | Previous Type | Current Type |
306
- |---|---|---|
307
- | format | string | string | FormatObject |
308
-
309
- ## 17.4.46 (2020-01-30)
310
-
311
- ### QueryBuilder
312
-
313
- #### New Features
314
-
315
- - Provided the support to disable the combinator if only one rule is present.
316
-
317
- ## 17.4.43 (2020-01-14)
318
-
319
- ### QueryBuilder
320
-
321
- #### Bug Fixes
322
-
323
- - Issue with predicate generation for between operator is fixed.
324
-
325
- ## 17.4.41 (2020-01-07)
326
-
327
- ### QueryBuilder
328
-
329
- #### Bug Fixes
330
-
331
- - Issue with 'setRulesFromSql' method is fixed.
332
-
333
- ## 17.4.39 (2019-12-17)
334
-
335
- ### QueryBuilder
336
-
337
- #### New Features
338
-
339
- - Provided `NOT` Condition support.
340
- - Provided Template support for Time Picker.
341
-
342
- #### Bug Fixes
343
-
344
- - Tooltip is not destroyed while using destroy method.
345
- - Predicate is not created for Date type when between operator is fixed.
346
-
347
- ## 17.3.27 (2019-11-12)
348
-
349
- ### QueryBuilder
350
-
351
- #### Bug Fixes
352
-
353
- - Issue with changing 'number' type field is fixed.
354
-
355
- ## 17.3.26 (2019-11-05)
356
-
357
- ### QueryBuilder
358
-
359
- #### New Features
360
-
361
- - Provided Not Contains, Not Starts With and Not Ends With operator support.
362
-
363
- ## 17.3.21 (2019-10-30)
364
-
365
- ### QueryBuilder
366
-
367
- #### Bug Fixes
368
-
369
- - Value not updated properly while changing 'Between' operator.
370
-
371
- ## 17.3.19 (2019-10-22)
372
-
373
- ### QueryBuilder
374
-
375
- #### Bug Fixes
376
-
377
- - Value not updated properly while changing operator.
378
-
379
- ## 17.2.46 (2019-08-22)
380
-
381
- ### QueryBuilder
382
-
383
- #### New Features
384
-
385
- - Provided Null and Empty operator support.
386
-
387
- ## 17.2.36 (2019-07-24)
388
-
389
- ### QueryBuilder
390
-
391
- #### Bug Fixes
392
-
393
- - Date values are not properly filtered using DataManager.
394
-
395
- ## 17.2.35 (2019-07-17)
396
-
397
- ### QueryBuilder
398
-
399
- #### Bug Fixes
400
-
401
- - SQL Parsing issue when the rule contains 'Greater Than Or Equal', 'Less Than Or Equal' operator.
402
- - Condition is not updated properly in the root while using 'setRules' method.
403
-
404
- ## 17.2.28-beta (2019-06-27)
405
-
406
- ### QueryBuilder
407
-
408
- #### New Features
409
-
410
- - Provided localization support for 'AND/OR' conditions.
411
-
412
- ## 17.1.50 (2019-06-04)
413
-
414
- ### QueryBuilder
415
-
416
- #### Bug Fixes
417
-
418
- - Selected value not maintained properly for radiobutton field.
419
-
420
- ## 17.1.49 (2019-05-29)
421
-
422
- ### QueryBuilder
423
-
424
- #### Bug Fixes
425
-
426
- - DataManager related issue resolved.
427
-
428
- ## 17.1.48 (2019-05-21)
429
-
430
- ### QueryBuilder
431
-
432
- #### Bug Fixes
433
-
434
- - Provided public method for get the rule by the rule Id.
435
- - Date format issue in dd/mm/yyyy format.
436
- - Selected value not maintained properly for radiobutton field.
437
-
438
- ## 17.1.47 (2019-05-14)
439
-
440
- ### QueryBuilder
441
-
442
- #### New Features
443
-
444
- - Provided `case sensitive` support.
445
- - Provided default value option support for column fields.
446
- - Provided groupBy support for columns.
447
-
448
- #### Bug Fixes
449
-
450
- - Updating conditions throws script error after using 'setRules' method.
451
- - Rule with AND operator is not properly updated in ASP.NET MVC and Core.
452
- - Multiselect datasource not properly updated for in and notin operators.
453
- - Provided option for handling data source request on demand.
454
-
455
- ## 17.1.43 (2019-04-30)
456
-
457
- ### QueryBuilder
458
-
459
- #### Bug Fixes
460
-
461
- - Multiselect datasource not properly updated for in and notin operators.
462
-
463
- ## 17.1.42 (2019-04-23)
464
-
465
- ### QueryBuilder
466
-
467
- #### Bug Fixes
468
-
469
- - Rule with AND operator is not properly updated in ASP.NET MVC and Core.
470
-
471
- ## 17.1.40 (2019-04-09)
472
-
473
- ### QueryBuilder
474
-
475
- #### Bug Fixes
476
-
477
- - Updating conditions throws script error after using 'setRules' method.
478
-
479
- ## 17.1.38 (2019-03-29)
480
-
481
- ### QueryBuilder
482
-
483
- #### Breaking Changes
484
-
485
- - The following events are renamed.
486
-
487
- | Existing Event Name | New Event Name |
488
- |---|---|
489
- | beforeConditionChange | beforeChange |
490
- | beforeFieldChange | beforeChange |
491
- | beforeOperatorChange | beforeChange |
492
- | beforeValueChange | beforeChange |
493
- | conditionChanged | change |
494
- | fieldChanged | change |
495
- | operatorChanged | change |
496
- | valueChanged | change |
497
- | groupDelete | change |
498
- | groupInsert | change |
499
- | ruleDelete | change |
500
- | ruleInsert | change |
501
-
502
- - Modified the return type of 'getFilteredRecords' method from object collection to promise.
503
- - Renamed the 'RulesModel' class to 'RuleModel' and removed the 'RulesModel' class.
504
-
505
- #### Bug Fixes
506
-
507
- - Between Operator produces incorrect SQL is fixed.
508
- - Issue with binding boolean values to radio button is fixed.
509
- - Introduced new event 'RuleChange' which triggers once the current Rule is different from the older Rule.
510
-
511
- ## 17.1.32-beta (2019-03-13)
512
-
513
- ### QueryBuilder
514
-
515
- #### Breaking Changes
516
-
517
- - The following events are renamed.
518
-
519
- | Existing Event Name | New Event Name |
520
- |---|---|
521
- | beforeConditionChange | beforeChange |
522
- | beforeFieldChange | beforeChange |
523
- | beforeOperatorChange | beforeChange |
524
- | beforeValueChange | beforeChange |
525
- | conditionChanged | change |
526
- | fieldChanged | change |
527
- | operatorChanged | change |
528
- | valueChanged | change |
529
- | groupDelete | change |
530
- | groupInsert | change |
531
- | ruleDelete | change |
532
- | ruleInsert | change |
533
-
534
- #### Bug Fixes
535
-
536
- - Between Operator produces incorrect SQL is fixed.
537
-
538
- ## 16.4.54 (2019-02-19)
539
-
540
- ### QueryBuilder
541
-
542
- #### Bug Fixes
543
-
544
- - 'Add Group' option is not disabled while setting groupInsert as false is fixed.
545
-
546
- ## 16.4.52 (2019-02-05)
547
-
548
- ### QueryBuilder
549
-
550
- #### New Features
551
-
552
- - Provided `Summary view` support.
553
-
554
- ## 16.4.44 (2018-12-24)
555
-
556
- ### QueryBuilder
557
-
558
- #### Bug Fixes
559
-
560
- - Introduced validateFields method for validation.
561
-
562
- ## 16.4.40-beta (2018-12-10)
563
-
564
- ### QueryBuilder
565
-
566
- The Query Builder component is a graphical user interface that allows users to create and edit filters. It outputs a structured JSON of filters which that can be easily parsed to create SQL. It is integrated with Data Manager to communicates with data sources and returns the desired result based on the provided filter. It supports data binding, templates, validation, and horizontal and vertical orientation.
567
-
568
-
569
- - **Data binding**: It auto populates the data source and maps the data to the appropriate fields.
570
- - **Template**: Supports templates and it is applicable for all input components.
571
- - **Queries**: Queries supports JSON/SQL rules.
572
-
573
-
574
- ## 18.2.47 (2020-07-28)
575
-
576
- ### QueryBuilder
577
-
578
- #### Bug Fixes
579
-
580
- `#F156190` - Not able to select value field using 'IN' operator in production mode issue fixed.
581
-
582
-