@syncfusion/ej2-querybuilder 20.1.59 → 20.2.36
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 +2 -25
- package/dist/ej2-querybuilder.umd.min.js +2 -2
- package/dist/ej2-querybuilder.umd.min.js.map +1 -1
- package/dist/es6/ej2-querybuilder.es2015.js +1 -0
- package/dist/es6/ej2-querybuilder.es2015.js.map +1 -1
- package/dist/es6/ej2-querybuilder.es5.js +1 -0
- package/dist/es6/ej2-querybuilder.es5.js.map +1 -1
- package/dist/global/ej2-querybuilder.min.js +2 -2
- package/dist/global/ej2-querybuilder.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/helpers/e2e/index.js +8 -6
- package/helpers/e2e/querybuilderHelper.js +52 -35
- package/package.json +11 -11
- package/src/query-builder/query-builder-model.d.ts +248 -248
- package/src/query-builder/query-builder.js +1 -0
- package/styles/fluent-dark.css +4 -4
- package/styles/fluent.css +4 -4
- package/styles/query-builder/_fluent-definition.scss +2 -2
- package/styles/query-builder/_fusionnew-definition.scss +108 -0
- package/styles/query-builder/_material3-definition.scss +108 -0
- package/styles/query-builder/fluent-dark.css +4 -4
- package/styles/query-builder/fluent.css +4 -4
- package/styles/query-builder/icons/_fusionnew.scss +8 -0
- package/styles/query-builder/icons/_material3.scss +8 -0
- package/styles/query-builder/_definition.scss +0 -60
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 20.
|
|
3
|
+
* version : 20.2.36
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. 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/helpers/e2e/index.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
"
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
define(["require", "exports", "./querybuilderHelper"], function (require, exports, querybuilderHelper_1) {
|
|
2
|
+
"use strict";
|
|
3
|
+
function __export(m) {
|
|
4
|
+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
5
|
+
}
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
__export(querybuilderHelper_1);
|
|
8
|
+
});
|
|
@@ -1,36 +1,53 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
|
|
15
|
+
"use strict";
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
var QueryBuilderHelper = (function (_super) {
|
|
18
|
+
__extends(QueryBuilderHelper, _super);
|
|
19
|
+
function QueryBuilderHelper(id, wrapperFn) {
|
|
20
|
+
var _this = _super.call(this) || this;
|
|
21
|
+
_this.id = id;
|
|
22
|
+
if (wrapperFn !== undefined) {
|
|
23
|
+
_this.wrapperFn = wrapperFn;
|
|
24
|
+
}
|
|
25
|
+
return _this;
|
|
10
26
|
}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
}
|
|
36
|
-
exports.QueryBuilderHelper = QueryBuilderHelper;
|
|
27
|
+
QueryBuilderHelper.prototype.getElement = function () {
|
|
28
|
+
return this.selector('#' + this.id);
|
|
29
|
+
};
|
|
30
|
+
QueryBuilderHelper.prototype.setModel = function (property, value) {
|
|
31
|
+
var cy;
|
|
32
|
+
return cy.get('#' + this.id).then(function (ele) {
|
|
33
|
+
return ele[0].ej2_instances[0][property] = value;
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
|
+
QueryBuilderHelper.prototype.getModel = function (property) {
|
|
37
|
+
var cy;
|
|
38
|
+
return cy.get('#' + this.id).then(function (ele) {
|
|
39
|
+
return ele[0].ej2_instances[0][property];
|
|
40
|
+
});
|
|
41
|
+
};
|
|
42
|
+
QueryBuilderHelper.prototype.invoke = function (fName, args) {
|
|
43
|
+
if (args === void 0) { args = []; }
|
|
44
|
+
var cy;
|
|
45
|
+
return cy.get('#' + this.id).then(function (ele) {
|
|
46
|
+
var inst = ele[0].ej2_instances[0];
|
|
47
|
+
return inst[fName].apply(inst, args);
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
return QueryBuilderHelper;
|
|
51
|
+
}(e2e_1.TestHelper));
|
|
52
|
+
exports.QueryBuilderHelper = QueryBuilderHelper;
|
|
53
|
+
});
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-querybuilder@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-querybuilder@
|
|
3
|
+
"_id": "@syncfusion/ej2-querybuilder@18.19.1",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-APhmNGZRpyjaMA1zBhSnlWbbR9WtFlQXL+0Nk0EFBb2rRHmafGLi0TXFTEIbkgCDmEoIclz24gdU/GrTaJ6UqA==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-querybuilder",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"/@syncfusion/ej2-react-querybuilder",
|
|
24
24
|
"/@syncfusion/ej2-vue-querybuilder"
|
|
25
25
|
],
|
|
26
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-
|
|
27
|
-
"_shasum": "
|
|
26
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-querybuilder/-/ej2-querybuilder-18.19.1.tgz",
|
|
27
|
+
"_shasum": "c1921a9403be90063029dcb58e60ec846faf8e65",
|
|
28
28
|
"_spec": "@syncfusion/ej2-querybuilder@*",
|
|
29
29
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
30
30
|
"author": {
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
},
|
|
33
33
|
"bundleDependencies": false,
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@syncfusion/ej2-base": "~20.
|
|
36
|
-
"@syncfusion/ej2-buttons": "~20.
|
|
37
|
-
"@syncfusion/ej2-calendars": "~20.
|
|
38
|
-
"@syncfusion/ej2-dropdowns": "~20.
|
|
39
|
-
"@syncfusion/ej2-inputs": "~20.
|
|
40
|
-
"@syncfusion/ej2-splitbuttons": "~20.
|
|
35
|
+
"@syncfusion/ej2-base": "~20.2.36",
|
|
36
|
+
"@syncfusion/ej2-buttons": "~20.2.36",
|
|
37
|
+
"@syncfusion/ej2-calendars": "~20.2.36",
|
|
38
|
+
"@syncfusion/ej2-dropdowns": "~20.2.36",
|
|
39
|
+
"@syncfusion/ej2-inputs": "~20.2.36",
|
|
40
|
+
"@syncfusion/ej2-splitbuttons": "~20.2.36"
|
|
41
41
|
},
|
|
42
42
|
"deprecated": false,
|
|
43
43
|
"description": "Essential JS 2 QueryBuilder",
|
|
@@ -69,6 +69,6 @@
|
|
|
69
69
|
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls/tree/master/controls/querybuilder"
|
|
70
70
|
},
|
|
71
71
|
"typings": "index.d.ts",
|
|
72
|
-
"version": "20.
|
|
72
|
+
"version": "20.2.36",
|
|
73
73
|
"sideEffects": false
|
|
74
74
|
}
|