@syncfusion/ej2-vue-querybuilder 19.3.43 → 19.4.38

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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-vue-querybuilder@*",
3
- "_id": "@syncfusion/ej2-vue-querybuilder@18.17.0",
3
+ "_id": "@syncfusion/ej2-vue-querybuilder@18.18.0",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-zwyGkVL3ZWZUO6t6pMuFv0SzRkUJyWG/TIwoh4hRKTldcynDj1JVQo5TNekUfpbTL+wr3UbLlJ6GWUXBRjE91Q==",
5
+ "_integrity": "sha512-RcDTvZLIVow0J2AUvApjRRiqebPlLQLA602e3S2QvvATwR0WWJi+I8FWV0JLRSWTrpPr7GRBcUwi3nYS86Nqdg==",
6
6
  "_location": "/@syncfusion/ej2-vue-querybuilder",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-vue-querybuilder/-/ej2-vue-querybuilder-18.17.0.tgz",
23
- "_shasum": "735acb9e18bc89435504c34c3402097806b6c337",
22
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-vue-querybuilder/-/ej2-vue-querybuilder-18.18.0.tgz",
23
+ "_shasum": "f365f4a8153169724358f26ab0fdec17ab1e9c50",
24
24
  "_spec": "@syncfusion/ej2-vue-querybuilder@*",
25
25
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~19.3.43",
35
- "@syncfusion/ej2-querybuilder": "19.3.43",
36
- "@syncfusion/ej2-vue-base": "~19.3.43"
34
+ "@syncfusion/ej2-base": "~19.4.38",
35
+ "@syncfusion/ej2-querybuilder": "19.4.38",
36
+ "@syncfusion/ej2-vue-base": "~19.4.38"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 QueryBuilder for Vue",
@@ -64,6 +64,6 @@
64
64
  "type": "git",
65
65
  "url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
66
66
  },
67
- "version": "19.3.43",
67
+ "version": "19.4.38",
68
68
  "sideEffects": false
69
69
  }
@@ -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 = ['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'];
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];
@@ -69,6 +69,11 @@
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
+
72
77
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
73
78
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
74
79
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
@@ -65,6 +65,11 @@
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
+
68
73
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
69
74
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
70
75
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
@@ -65,6 +65,11 @@
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
+
68
73
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
69
74
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
70
75
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
@@ -69,6 +69,11 @@
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
+
72
77
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
73
78
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
74
79
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
@@ -65,6 +65,11 @@
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
+
68
73
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
69
74
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
70
75
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
@@ -65,6 +65,11 @@
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
+
68
73
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
69
74
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
70
75
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,