@syncfusion/ej2-angular-querybuilder 25.2.4-ngcc → 25.2.7-ngcc
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.
- package/CHANGELOG.md +8 -0
- package/dist/ej2-angular-querybuilder.umd.js +69 -22
- package/dist/ej2-angular-querybuilder.umd.min.js +1 -1
- package/package.json +8 -8
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#I887637` - Issue with Script error thrown in QueryBuilder when `clicking` the button group component in header template has been fixed.
|
|
10
|
+
|
|
11
|
+
## 25.2.4 (2024-05-14)
|
|
12
|
+
|
|
13
|
+
### QueryBuilder
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
9
17
|
- `#I585876` - Removing the isLocked property from query builder rules when the rule/group is not locked / unlocked.
|
|
10
18
|
|
|
11
19
|
## 25.2.3 (2024-05-08)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-querybuilder.umd.js
|
|
3
|
-
* version : 25.2.
|
|
3
|
+
* version : 25.2.7
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -39,10 +39,23 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
39
39
|
};
|
|
40
40
|
var input = ['category', 'columns', 'field', 'format', 'label', 'operators', 'ruleTemplate', 'step', 'template', 'type', 'validation', 'value', 'values'];
|
|
41
41
|
var outputs = [];
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
/**
|
|
43
|
+
* `e-column` directive represent a column of the Angular QueryBuilder.
|
|
44
|
+
* It must be contained in a QueryBuilder component(`ejs-querybuilder`).
|
|
45
|
+
* ```html
|
|
46
|
+
* <ejs-querybuilder [dataSource]='data'>
|
|
47
|
+
* <e-columns>
|
|
48
|
+
* <e-column field='ID' label='ID' type='number'></e-column>
|
|
49
|
+
* <e-column field='Date' label='Date' type='date' format='dd/MM/yyyy'></e-column>
|
|
50
|
+
* </e-columns>
|
|
51
|
+
* </ejs-querybuilder>
|
|
52
|
+
* ```
|
|
53
|
+
*/
|
|
54
|
+
var ColumnDirective = /** @class */ (function (_super) {
|
|
44
55
|
__extends(ColumnDirective, _super);
|
|
45
|
-
|
|
56
|
+
/**
|
|
57
|
+
* @param {?} viewContainerRef
|
|
58
|
+
*/
|
|
46
59
|
function ColumnDirective(viewContainerRef) {
|
|
47
60
|
var _this = _super.call(this) || this;
|
|
48
61
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -61,7 +74,9 @@ ColumnDirective.decorators = [
|
|
|
61
74
|
queries: {}
|
|
62
75
|
},] },
|
|
63
76
|
];
|
|
64
|
-
|
|
77
|
+
/**
|
|
78
|
+
* @nocollapse
|
|
79
|
+
*/
|
|
65
80
|
ColumnDirective.ctorParameters = function () { return [
|
|
66
81
|
{ type: core.ViewContainerRef, },
|
|
67
82
|
]; };
|
|
@@ -77,8 +92,10 @@ __decorate([
|
|
|
77
92
|
ej2AngularBase.Template(),
|
|
78
93
|
__metadata("design:type", Object)
|
|
79
94
|
], ColumnDirective.prototype, "template", void 0);
|
|
80
|
-
|
|
81
|
-
|
|
95
|
+
/**
|
|
96
|
+
* Column Array Directive
|
|
97
|
+
*/
|
|
98
|
+
var ColumnsDirective = /** @class */ (function (_super) {
|
|
82
99
|
__extends(ColumnsDirective, _super);
|
|
83
100
|
function ColumnsDirective() {
|
|
84
101
|
return _super.call(this, 'columns') || this;
|
|
@@ -93,7 +110,9 @@ ColumnsDirective.decorators = [
|
|
|
93
110
|
},
|
|
94
111
|
},] },
|
|
95
112
|
];
|
|
96
|
-
|
|
113
|
+
/**
|
|
114
|
+
* @nocollapse
|
|
115
|
+
*/
|
|
97
116
|
ColumnsDirective.ctorParameters = function () { return []; };
|
|
98
117
|
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
99
118
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -112,10 +131,20 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
|
112
131
|
var inputs = ['addRuleToNewGroups', 'allowValidation', 'autoSelectField', 'autoSelectOperator', 'columns', 'cssClass', 'dataSource', 'displayMode', 'enableNotCondition', 'enablePersistence', 'enableRtl', 'fieldMode', 'fieldModel', 'headerTemplate', 'height', 'immediateModeDelay', 'locale', 'matchCase', 'maxGroupCount', 'operatorModel', 'readonly', 'rule', 'separator', 'showButtons', 'sortDirection', 'summaryView', 'valueModel', 'width'];
|
|
113
132
|
var outputs$1 = ['actionBegin', 'beforeChange', 'change', 'created', 'dataBound', 'ruleChange'];
|
|
114
133
|
var twoWays = [''];
|
|
115
|
-
|
|
116
|
-
|
|
134
|
+
/**
|
|
135
|
+
* Represents the EJ2 Angular QueryBuilder Component.
|
|
136
|
+
* ```html
|
|
137
|
+
* <ejs-querybuilder></ejs-querybuilder>
|
|
138
|
+
* ```
|
|
139
|
+
*/
|
|
140
|
+
exports.QueryBuilderComponent = /** @class */ (function (_super) {
|
|
117
141
|
__extends(QueryBuilderComponent, _super);
|
|
118
|
-
|
|
142
|
+
/**
|
|
143
|
+
* @param {?} ngEle
|
|
144
|
+
* @param {?} srenderer
|
|
145
|
+
* @param {?} viewContainerRef
|
|
146
|
+
* @param {?} injector
|
|
147
|
+
*/
|
|
119
148
|
function QueryBuilderComponent(ngEle, srenderer, viewContainerRef, injector) {
|
|
120
149
|
var _this = _super.call(this) || this;
|
|
121
150
|
_this.ngEle = ngEle;
|
|
@@ -138,19 +167,27 @@ exports.QueryBuilderComponent = (function (_super) {
|
|
|
138
167
|
_this.context = new ej2AngularBase.ComponentBase();
|
|
139
168
|
return _this;
|
|
140
169
|
}
|
|
141
|
-
|
|
170
|
+
/**
|
|
171
|
+
* @return {?}
|
|
172
|
+
*/
|
|
142
173
|
QueryBuilderComponent.prototype.ngOnInit = function () {
|
|
143
174
|
this.context.ngOnInit(this);
|
|
144
175
|
};
|
|
145
|
-
|
|
176
|
+
/**
|
|
177
|
+
* @return {?}
|
|
178
|
+
*/
|
|
146
179
|
QueryBuilderComponent.prototype.ngAfterViewInit = function () {
|
|
147
180
|
this.context.ngAfterViewInit(this);
|
|
148
181
|
};
|
|
149
|
-
|
|
182
|
+
/**
|
|
183
|
+
* @return {?}
|
|
184
|
+
*/
|
|
150
185
|
QueryBuilderComponent.prototype.ngOnDestroy = function () {
|
|
151
186
|
this.context.ngOnDestroy(this);
|
|
152
187
|
};
|
|
153
|
-
|
|
188
|
+
/**
|
|
189
|
+
* @return {?}
|
|
190
|
+
*/
|
|
154
191
|
QueryBuilderComponent.prototype.ngAfterContentChecked = function () {
|
|
155
192
|
this.tagObjects[0].instance = this.childColumns;
|
|
156
193
|
this.context.ngAfterContentChecked(this);
|
|
@@ -169,7 +206,9 @@ exports.QueryBuilderComponent.decorators = [
|
|
|
169
206
|
}
|
|
170
207
|
},] },
|
|
171
208
|
];
|
|
172
|
-
|
|
209
|
+
/**
|
|
210
|
+
* @nocollapse
|
|
211
|
+
*/
|
|
173
212
|
exports.QueryBuilderComponent.ctorParameters = function () { return [
|
|
174
213
|
{ type: core.ElementRef, },
|
|
175
214
|
{ type: core.Renderer2, },
|
|
@@ -190,8 +229,10 @@ exports.QueryBuilderComponent = __decorate$1([
|
|
|
190
229
|
core.ViewContainerRef,
|
|
191
230
|
core.Injector])
|
|
192
231
|
], exports.QueryBuilderComponent);
|
|
193
|
-
|
|
194
|
-
|
|
232
|
+
/**
|
|
233
|
+
* NgModule definition for the QueryBuilder component.
|
|
234
|
+
*/
|
|
235
|
+
var QueryBuilderModule = /** @class */ (function () {
|
|
195
236
|
function QueryBuilderModule() {
|
|
196
237
|
}
|
|
197
238
|
return QueryBuilderModule;
|
|
@@ -211,11 +252,15 @@ QueryBuilderModule.decorators = [
|
|
|
211
252
|
]
|
|
212
253
|
},] },
|
|
213
254
|
];
|
|
214
|
-
|
|
255
|
+
/**
|
|
256
|
+
* @nocollapse
|
|
257
|
+
*/
|
|
215
258
|
QueryBuilderModule.ctorParameters = function () { return []; };
|
|
216
259
|
var QueryLibraryService = { provide: 'QueryBuilderQueryLibrary', useValue: ej2Querybuilder.QueryLibrary };
|
|
217
|
-
|
|
218
|
-
|
|
260
|
+
/**
|
|
261
|
+
* NgModule definition for the QueryBuilder component with providers.
|
|
262
|
+
*/
|
|
263
|
+
var QueryBuilderAllModule = /** @class */ (function () {
|
|
219
264
|
function QueryBuilderAllModule() {
|
|
220
265
|
}
|
|
221
266
|
return QueryBuilderAllModule;
|
|
@@ -231,7 +276,9 @@ QueryBuilderAllModule.decorators = [
|
|
|
231
276
|
]
|
|
232
277
|
},] },
|
|
233
278
|
];
|
|
234
|
-
|
|
279
|
+
/**
|
|
280
|
+
* @nocollapse
|
|
281
|
+
*/
|
|
235
282
|
QueryBuilderAllModule.ctorParameters = function () { return []; };
|
|
236
283
|
|
|
237
284
|
exports.ColumnDirective = ColumnDirective;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-querybuilder.umd.min.js
|
|
3
|
-
* version : 25.2.
|
|
3
|
+
* version : 25.2.7
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-querybuilder@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-querybuilder@25.2.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-querybuilder@25.2.4",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-PfCn9qgw0N25H4mJR2TyDyrZoLap0lKPnjOUh1U48nWYvXEky1NWNVNeqfjo+KXgkwGS9hcy4BqR14jh/pTmcA==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-angular-querybuilder",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-querybuilder/-/ej2-angular-querybuilder-25.2.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-querybuilder/-/ej2-angular-querybuilder-25.2.4.tgz",
|
|
23
|
+
"_shasum": "71b5a0d13923d863f79f06570de0971c7aceb707",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-querybuilder@*",
|
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~25.2.
|
|
35
|
-
"@syncfusion/ej2-base": "~25.2.
|
|
36
|
-
"@syncfusion/ej2-querybuilder": "25.2.
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~25.2.6",
|
|
35
|
+
"@syncfusion/ej2-base": "~25.2.7",
|
|
36
|
+
"@syncfusion/ej2-querybuilder": "25.2.7"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 QueryBuilder for Angular",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"schematics": "./schematics/collection.json",
|
|
62
62
|
"sideEffects": false,
|
|
63
63
|
"typings": "ej2-angular-querybuilder.d.ts",
|
|
64
|
-
"version": "25.2.
|
|
64
|
+
"version": "25.2.7-ngcc"
|
|
65
65
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-querybuilder";
|
|
2
|
-
export declare const pkgVer = "^25.2.
|
|
2
|
+
export declare const pkgVer = "^25.2.4";
|
|
3
3
|
export declare const moduleName = "QueryBuilderModule";
|
|
4
|
-
export declare const themeVer = "~25.2.
|
|
4
|
+
export declare const themeVer = "~25.2.4";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-querybuilder';
|
|
4
|
-
exports.pkgVer = '^25.2.
|
|
4
|
+
exports.pkgVer = '^25.2.7';
|
|
5
5
|
exports.moduleName = 'QueryBuilderModule';
|
|
6
|
-
exports.themeVer = '~25.2.
|
|
6
|
+
exports.themeVer = '~25.2.7';
|