@syncfusion/ej2-querybuilder 26.2.10 → 26.2.11
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/dist/ej2-querybuilder.min.js +2 -2
- 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 -2
- package/dist/es6/ej2-querybuilder.es2015.js.map +1 -1
- package/dist/es6/ej2-querybuilder.es5.js +1 -2
- 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/package.json +8 -8
- package/src/query-builder/query-builder.js +1 -2
- package/hotfix/26.1.35_Vol2.txt +0 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 26.2.
|
|
3
|
+
* version : 26.2.11
|
|
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-querybuilder@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-querybuilder@26.2.
|
|
3
|
+
"_id": "@syncfusion/ej2-querybuilder@26.2.10",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-oYHrkWsuWKLr6jSq11fKf3GKCVOlsEi/317K1FTtIf1l3wcDSJk4I5FfsXZEEQqeJxUaMT2qJ3IqvTXIu98m6g==",
|
|
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": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-querybuilder/-/ej2-querybuilder-26.2.
|
|
27
|
-
"_shasum": "
|
|
26
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-querybuilder/-/ej2-querybuilder-26.2.10.tgz",
|
|
27
|
+
"_shasum": "a4d84d5b23e470c5bda68d76fd29b40d55bbf35a",
|
|
28
28
|
"_spec": "@syncfusion/ej2-querybuilder@*",
|
|
29
29
|
"_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included",
|
|
30
30
|
"author": {
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@syncfusion/ej2-base": "~26.2.10",
|
|
36
36
|
"@syncfusion/ej2-buttons": "~26.2.10",
|
|
37
|
-
"@syncfusion/ej2-calendars": "~26.2.
|
|
38
|
-
"@syncfusion/ej2-dropdowns": "~26.2.
|
|
39
|
-
"@syncfusion/ej2-inputs": "~26.2.
|
|
37
|
+
"@syncfusion/ej2-calendars": "~26.2.11",
|
|
38
|
+
"@syncfusion/ej2-dropdowns": "~26.2.11",
|
|
39
|
+
"@syncfusion/ej2-inputs": "~26.2.11",
|
|
40
40
|
"@syncfusion/ej2-splitbuttons": "~26.2.10"
|
|
41
41
|
},
|
|
42
42
|
"deprecated": false,
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls/tree/master/controls/querybuilder"
|
|
67
67
|
},
|
|
68
68
|
"typings": "index.d.ts",
|
|
69
|
-
"version": "26.2.
|
|
69
|
+
"version": "26.2.11",
|
|
70
70
|
"sideEffects": false,
|
|
71
71
|
"homepage": "https://www.syncfusion.com/javascript-ui-controls"
|
|
72
72
|
}
|
|
@@ -2305,8 +2305,7 @@ var QueryBuilder = /** @class */ (function (_super) {
|
|
|
2305
2305
|
var numericTextBoxObj = getInstance(elem, NumericTextBox);
|
|
2306
2306
|
var decimalSeparator = getValue('decimal', getNumericObject(this.locale));
|
|
2307
2307
|
if (isNaN(value) && elem.value.indexOf(decimalSeparator) !== -1) {
|
|
2308
|
-
|
|
2309
|
-
value = numberValue;
|
|
2308
|
+
value = this.intl.getNumberParser({ format: 'n' })(elem.value);
|
|
2310
2309
|
}
|
|
2311
2310
|
numericTextBoxObj.value = value;
|
|
2312
2311
|
this.isNumInput = true;
|
package/hotfix/26.1.35_Vol2.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
hotfix/26.1.35_Vol2
|