@syncfusion/ej2-vue-querybuilder 19.4.38 → 19.4.40
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 +0 -2
- package/dist/ej2-vue-querybuilder.umd.min.js +10 -1
- package/dist/es6/ej2-vue-querybuilder.es2015.js +1 -1
- package/dist/es6/ej2-vue-querybuilder.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-querybuilder.es5.js +1 -1
- package/dist/es6/ej2-vue-querybuilder.es5.js.map +1 -1
- package/dist/global/ej2-vue-querybuilder.min.js +11 -2
- package/package.json +12 -9
- package/src/query-builder/querybuilder.component.js +1 -1
- package/styles/bootstrap4.css +0 -5
- package/styles/bootstrap5-dark.css +0 -5
- package/styles/bootstrap5.css +0 -5
- package/styles/query-builder/bootstrap4.css +0 -5
- package/styles/query-builder/bootstrap5-dark.css +0 -5
- package/styles/query-builder/bootstrap5.css +0 -5
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-querybuilder@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-querybuilder@
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-querybuilder@19.3.53",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-6kJYqdUAvXTT1C0+Q07fnehYDQYe7L2oGxn922hTuU/Nktour8aTTFQChgCKdWOO3jFSI0WR+acyK22dy1H23g==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-querybuilder",
|
|
7
|
-
"_phantomChildren": {
|
|
7
|
+
"_phantomChildren": {
|
|
8
|
+
"@syncfusion/ej2-icons": "19.4.38",
|
|
9
|
+
"glob": "7.2.0"
|
|
10
|
+
},
|
|
8
11
|
"_requested": {
|
|
9
12
|
"type": "range",
|
|
10
13
|
"registry": true,
|
|
@@ -19,8 +22,8 @@
|
|
|
19
22
|
"_requiredBy": [
|
|
20
23
|
"/"
|
|
21
24
|
],
|
|
22
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
25
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-querybuilder/-/ej2-vue-querybuilder-19.3.53.tgz",
|
|
26
|
+
"_shasum": "47aa5cae1996f6593bf24c0c2eb99d86574b3d7e",
|
|
24
27
|
"_spec": "@syncfusion/ej2-vue-querybuilder@*",
|
|
25
28
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
26
29
|
"author": {
|
|
@@ -32,8 +35,8 @@
|
|
|
32
35
|
"bundleDependencies": false,
|
|
33
36
|
"dependencies": {
|
|
34
37
|
"@syncfusion/ej2-base": "~19.4.38",
|
|
35
|
-
"@syncfusion/ej2-querybuilder": "19.4.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~19.4.
|
|
38
|
+
"@syncfusion/ej2-querybuilder": "19.4.40",
|
|
39
|
+
"@syncfusion/ej2-vue-base": "~19.4.40"
|
|
37
40
|
},
|
|
38
41
|
"deprecated": false,
|
|
39
42
|
"description": "Essential JS 2 QueryBuilder for Vue",
|
|
@@ -64,6 +67,6 @@
|
|
|
64
67
|
"type": "git",
|
|
65
68
|
"url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
|
|
66
69
|
},
|
|
67
|
-
"
|
|
68
|
-
"
|
|
70
|
+
"sideEffects": false,
|
|
71
|
+
"version": "19.4.40"
|
|
69
72
|
}
|
|
@@ -22,7 +22,7 @@ import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
|
|
|
22
22
|
import { QueryBuilder } from '@syncfusion/ej2-querybuilder';
|
|
23
23
|
import { ColumnsDirective, ColumnDirective, ColumnsPlugin, ColumnPlugin } from './columns.directive';
|
|
24
24
|
import { Options } from 'vue-class-component';
|
|
25
|
-
export var properties = ['
|
|
25
|
+
export var properties = ['islazyUpdate', 'allowValidation', 'columns', 'cssClass', 'dataSource', 'displayMode', 'enableNotCondition', 'enablePersistence', 'enableRtl', 'fieldMode', 'fieldModel', 'headerTemplate', 'height', 'immediateModeDelay', 'locale', 'matchCase', 'maxGroupCount', 'operatorModel', 'readonly', 'rule', 'separator', 'showButtons', 'sortDirection', 'summaryView', 'valueModel', 'width', 'actionBegin', 'beforeChange', 'change', 'created', 'dataBound', 'ruleChange'];
|
|
26
26
|
export var modelProps = [];
|
|
27
27
|
export var testProp = getProps({ props: properties });
|
|
28
28
|
export var props = testProp[0];
|
package/styles/bootstrap4.css
CHANGED
|
@@ -69,11 +69,6 @@
|
|
|
69
69
|
background: transparent;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
73
|
-
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
74
|
-
background: #e9ecef;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
72
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
78
73
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
79
74
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -65,11 +65,6 @@
|
|
|
65
65
|
background: transparent;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
69
|
-
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
70
|
-
background: #343a40;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
68
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
74
69
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
75
70
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
package/styles/bootstrap5.css
CHANGED
|
@@ -65,11 +65,6 @@
|
|
|
65
65
|
background: transparent;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
69
|
-
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
70
|
-
background: #e9ecef;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
68
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
74
69
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
75
70
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -69,11 +69,6 @@
|
|
|
69
69
|
background: transparent;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
73
|
-
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
74
|
-
background: #e9ecef;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
72
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
78
73
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
79
74
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -65,11 +65,6 @@
|
|
|
65
65
|
background: transparent;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
69
|
-
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
70
|
-
background: #343a40;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
68
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
74
69
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
75
70
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -65,11 +65,6 @@
|
|
|
65
65
|
background: transparent;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
69
|
-
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
70
|
-
background: #e9ecef;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
68
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
74
69
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
75
70
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|