@syncfusion/ej2-vue-grids 19.3.46 → 19.3.54

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-grids@*",
3
- "_id": "@syncfusion/ej2-vue-grids@19.3.45",
3
+ "_id": "@syncfusion/ej2-vue-grids@19.3.53",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-uJ+NlTANLefFVmp0OtRhx37eJcJvYQN8B/p36QY/AriZ3hqrInJ7ZRvDP04bPndhZBS0telC7cT2sCU2Kx3oEQ==",
5
+ "_integrity": "sha512-c/HPWWCzPY1rKVrLEXPEM24/Hka/rxno6i+4+ItwQ+D3ign89LBQzKZPD100o/gyqnpVHxUmW/NoSkfXZH7maQ==",
6
6
  "_location": "/@syncfusion/ej2-vue-grids",
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-hotfix/@syncfusion/ej2-vue-grids/-/ej2-vue-grids-19.3.45.tgz",
23
- "_shasum": "4e5e414e078a7d5c3d762a88624750fd2a3ff417",
22
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-vue-grids/-/ej2-vue-grids-19.3.53.tgz",
23
+ "_shasum": "0fb443400f6d330fd90470af03477ea819e76ed3",
24
24
  "_spec": "@syncfusion/ej2-vue-grids@*",
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-grids": "19.3.46",
36
- "@syncfusion/ej2-vue-base": "~19.3.43"
34
+ "@syncfusion/ej2-base": "~19.3.54",
35
+ "@syncfusion/ej2-grids": "19.3.54",
36
+ "@syncfusion/ej2-vue-base": "~19.3.53"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue",
@@ -65,6 +65,6 @@
65
65
  "type": "git",
66
66
  "url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
67
67
  },
68
- "version": "19.3.46",
68
+ "version": "19.3.54",
69
69
  "sideEffects": false
70
70
  }
@@ -21,6 +21,7 @@ import { isUndefined } from '@syncfusion/ej2-base';
21
21
  import { ComponentBase, EJComponentDecorator, getProps, gh } from '@syncfusion/ej2-vue-base';
22
22
  import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
23
23
  import { Grid } from '@syncfusion/ej2-grids';
24
+ import { StackedColumnsDirective, StackedColumnDirective, StackedColumnsPlugin, StackedColumnPlugin } from './stacked-column.directive';
24
25
  import { ColumnsDirective, ColumnDirective, ColumnsPlugin, ColumnPlugin } from './columns.directive';
25
26
  import { AggregateColumnsDirective, AggregateColumnDirective, AggregateColumnsPlugin, AggregateColumnPlugin } from './aggregate-columns.directive';
26
27
  import { AggregatesDirective, AggregateDirective, AggregatesPlugin, AggregatePlugin } from './aggregates.directive';
@@ -51,8 +52,8 @@ var GridComponent = /** @class */ (function (_super) {
51
52
  _this.models = modelProps;
52
53
  _this.hasChildDirective = true;
53
54
  _this.hasInjectedModules = true;
54
- _this.tagMapper = { "e-columns": "e-column", "e-aggregates": { "e-aggregate": { "e-columns": "e-column" } } };
55
- _this.tagNameMapper = {};
55
+ _this.tagMapper = { "e-columns": { "e-column": { "e-stacked-columns": "e-stacked-column" } }, "e-aggregates": { "e-aggregate": { "e-columns": "e-column" } } };
56
+ _this.tagNameMapper = { "e-stacked-columns": "e-columns" };
56
57
  _this.isVue3 = !isExecute;
57
58
  _this.ej2Instances = new Grid({});
58
59
  _this.ej2Instances._trigger = _this.ej2Instances.trigger;
@@ -560,6 +561,8 @@ export var GridPlugin = {
560
561
  Vue.component(GridPlugin.name, GridComponent);
561
562
  Vue.component(ColumnPlugin.name, ColumnDirective);
562
563
  Vue.component(ColumnsPlugin.name, ColumnsDirective);
564
+ Vue.component(StackedColumnPlugin.name, StackedColumnDirective);
565
+ Vue.component(StackedColumnsPlugin.name, StackedColumnsDirective);
563
566
  Vue.component(AggregatePlugin.name, AggregateDirective);
564
567
  Vue.component(AggregatesPlugin.name, AggregatesDirective);
565
568
  Vue.component(AggregateColumnPlugin.name, AggregateColumnDirective);
@@ -1,3 +1,4 @@
1
+ export { StackedColumnsDirective, StackedColumnDirective, StackedColumnsPlugin, StackedColumnPlugin } from './stacked-column.directive';
1
2
  export { ColumnsDirective, ColumnDirective, ColumnsPlugin, ColumnPlugin } from './columns.directive';
2
3
  export { AggregateColumnsDirective, AggregateColumnDirective, AggregateColumnsPlugin, AggregateColumnPlugin } from './aggregate-columns.directive';
3
4
  export { AggregatesDirective, AggregateDirective, AggregatesPlugin, AggregatePlugin } from './aggregates.directive';
package/src/grid/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ export { StackedColumnsDirective, StackedColumnDirective, StackedColumnsPlugin, StackedColumnPlugin } from './stacked-column.directive';
1
2
  export { ColumnsDirective, ColumnDirective, ColumnsPlugin, ColumnPlugin } from './columns.directive';
2
3
  export { AggregateColumnsDirective, AggregateColumnDirective, AggregateColumnsPlugin, AggregateColumnPlugin } from './aggregate-columns.directive';
3
4
  export { AggregatesDirective, AggregateDirective, AggregatesPlugin, AggregatePlugin } from './aggregates.directive';
@@ -0,0 +1,19 @@
1
+ export declare const isExecute: any;
2
+ declare let vueImport: any;
3
+ export declare class StackedColumnsDirective extends vueImport {
4
+ render(): void;
5
+ getTag(): string;
6
+ }
7
+ export declare const StackedColumnsPlugin: {
8
+ name: string;
9
+ install(Vue: any): void;
10
+ };
11
+ export declare class StackedColumnDirective extends vueImport {
12
+ render(): void;
13
+ getTag(): string;
14
+ }
15
+ export declare const StackedColumnPlugin: {
16
+ name: string;
17
+ install(Vue: any): void;
18
+ };
19
+ export {};
@@ -0,0 +1,76 @@
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
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
+ import { EJComponentDecorator, allVue, gh } from '@syncfusion/ej2-vue-base';
21
+ import * as Vue3 from 'vue-class-component';
22
+ import Vue from 'vue';
23
+ export var isExecute = gh ? false : true;
24
+ var vueImport;
25
+ if (!isExecute || parseInt(allVue.version) < 3) {
26
+ vueImport = Vue3.Vue;
27
+ }
28
+ else {
29
+ vueImport = Vue;
30
+ }
31
+ var StackedColumnsDirective = /** @class */ (function (_super) {
32
+ __extends(StackedColumnsDirective, _super);
33
+ function StackedColumnsDirective() {
34
+ return _super !== null && _super.apply(this, arguments) || this;
35
+ }
36
+ StackedColumnsDirective.prototype.render = function () {
37
+ return;
38
+ };
39
+ StackedColumnsDirective.prototype.getTag = function () {
40
+ return 'e-stacked-columns';
41
+ };
42
+ StackedColumnsDirective = __decorate([
43
+ EJComponentDecorator({}, isExecute)
44
+ ], StackedColumnsDirective);
45
+ return StackedColumnsDirective;
46
+ }(vueImport));
47
+ export { StackedColumnsDirective };
48
+ export var StackedColumnsPlugin = {
49
+ name: 'e-stacked-columns',
50
+ install: function (Vue) {
51
+ Vue.component(StackedColumnsPlugin.name, StackedColumnsDirective);
52
+ }
53
+ };
54
+ var StackedColumnDirective = /** @class */ (function (_super) {
55
+ __extends(StackedColumnDirective, _super);
56
+ function StackedColumnDirective() {
57
+ return _super !== null && _super.apply(this, arguments) || this;
58
+ }
59
+ StackedColumnDirective.prototype.render = function () {
60
+ return;
61
+ };
62
+ StackedColumnDirective.prototype.getTag = function () {
63
+ return 'e-stacked-column';
64
+ };
65
+ StackedColumnDirective = __decorate([
66
+ EJComponentDecorator({}, isExecute)
67
+ ], StackedColumnDirective);
68
+ return StackedColumnDirective;
69
+ }(vueImport));
70
+ export { StackedColumnDirective };
71
+ export var StackedColumnPlugin = {
72
+ name: 'e-stacked-column',
73
+ install: function (Vue) {
74
+ Vue.component(StackedColumnPlugin.name, StackedColumnDirective);
75
+ }
76
+ };
package/src/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from '@syncfusion/ej2-grids';
2
+ export { StackedColumnsDirective, StackedColumnDirective, StackedColumnsPlugin, StackedColumnPlugin } from './grid/stacked-column.directive';
2
3
  export { ColumnsDirective, ColumnDirective, ColumnsPlugin, ColumnPlugin } from './grid/columns.directive';
3
4
  export { AggregateColumnsDirective, AggregateColumnDirective, AggregateColumnsPlugin, AggregateColumnPlugin } from './grid/aggregate-columns.directive';
4
5
  export { AggregatesDirective, AggregateDirective, AggregatesPlugin, AggregatePlugin } from './grid/aggregates.directive';
package/src/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from '@syncfusion/ej2-grids';
2
+ export { StackedColumnsDirective, StackedColumnDirective, StackedColumnsPlugin, StackedColumnPlugin } from './grid/stacked-column.directive';
2
3
  export { ColumnsDirective, ColumnDirective, ColumnsPlugin, ColumnPlugin } from './grid/columns.directive';
3
4
  export { AggregateColumnsDirective, AggregateColumnDirective, AggregateColumnsPlugin, AggregateColumnPlugin } from './grid/aggregate-columns.directive';
4
5
  export { AggregatesDirective, AggregateDirective, AggregatesPlugin, AggregatePlugin } from './grid/aggregates.directive';
@@ -842,6 +842,7 @@
842
842
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
843
843
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
844
844
  background: transparent;
845
+ color: inherit;
845
846
  }
846
847
 
847
848
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -1971,14 +1972,14 @@ li.e-separator.e-menu-item.e-excel-separator {
1971
1972
  font-size: 9px;
1972
1973
  height: 17px;
1973
1974
  line-height: 16px;
1974
- margin: 4px 18px 0 2px;
1975
+ margin: 4px 1px 0 2px;
1975
1976
  text-align: center;
1976
1977
  width: 17px;
1977
1978
  }
1978
1979
 
1979
1980
  .e-bigger .e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv,
1980
1981
  .e-grid.e-bigger .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
1981
- margin: -32px -20px 0 2px;
1982
+ margin: -32px -20px 0 -4px;
1982
1983
  }
1983
1984
 
1984
1985
  .e-bigger .e-grid.e-rtl .e-headercell .e-sortfilterdiv,
@@ -3215,7 +3216,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3215
3216
  }
3216
3217
 
3217
3218
  .e-grid .e-gridheader .e-sortfilter .e-fltr-icon .e-headercelldiv {
3218
- margin: -5px;
3219
+ margin: -5px 15px -5px -12px;
3219
3220
  }
3220
3221
 
3221
3222
  .e-grid .e-gridheader .e-sortfilter .e-headercelldiv,
@@ -3279,7 +3280,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3279
3280
  font-size: 11px;
3280
3281
  height: 17px;
3281
3282
  line-height: 16px;
3282
- margin: 3px 2px 0 8px;
3283
+ margin: 3px 8px 0 8px;
3283
3284
  text-align: center;
3284
3285
  width: 17px;
3285
3286
  }
@@ -3290,7 +3291,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3290
3291
  }
3291
3292
 
3292
3293
  .e-grid .e-gridheader .e-fltr-icon .e-sortfilterdiv {
3293
- margin: -29px 34px -29px 0;
3294
+ margin: -29px 29px -29px 0;
3294
3295
  }
3295
3296
 
3296
3297
  .e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
@@ -842,6 +842,7 @@
842
842
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
843
843
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
844
844
  background: transparent;
845
+ color: inherit;
845
846
  }
846
847
 
847
848
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -1971,14 +1972,14 @@ li.e-separator.e-menu-item.e-excel-separator {
1971
1972
  font-size: 9px;
1972
1973
  height: 17px;
1973
1974
  line-height: 16px;
1974
- margin: 4px 18px 0 2px;
1975
+ margin: 4px 1px 0 2px;
1975
1976
  text-align: center;
1976
1977
  width: 17px;
1977
1978
  }
1978
1979
 
1979
1980
  .e-bigger .e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv,
1980
1981
  .e-grid.e-bigger .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
1981
- margin: -32px -20px 0 2px;
1982
+ margin: -32px -20px 0 -4px;
1982
1983
  }
1983
1984
 
1984
1985
  .e-bigger .e-grid.e-rtl .e-headercell .e-sortfilterdiv,
@@ -3215,7 +3216,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3215
3216
  }
3216
3217
 
3217
3218
  .e-grid .e-gridheader .e-sortfilter .e-fltr-icon .e-headercelldiv {
3218
- margin: -5px;
3219
+ margin: -5px 15px -5px -12px;
3219
3220
  }
3220
3221
 
3221
3222
  .e-grid .e-gridheader .e-sortfilter .e-headercelldiv,
@@ -3279,7 +3280,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3279
3280
  font-size: 11px;
3280
3281
  height: 17px;
3281
3282
  line-height: 16px;
3282
- margin: 3px 2px 0 8px;
3283
+ margin: 3px 8px 0 8px;
3283
3284
  text-align: center;
3284
3285
  width: 17px;
3285
3286
  }
@@ -3290,7 +3291,7 @@ li.e-separator.e-menu-item.e-excel-separator {
3290
3291
  }
3291
3292
 
3292
3293
  .e-grid .e-gridheader .e-fltr-icon .e-sortfilterdiv {
3293
- margin: -29px 34px -29px 0;
3294
+ margin: -29px 29px -29px 0;
3294
3295
  }
3295
3296
 
3296
3297
  .e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
@@ -62,6 +62,7 @@
62
62
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
63
63
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
64
64
  background: transparent;
65
+ color: inherit;
65
66
  }
66
67
 
67
68
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -62,6 +62,7 @@
62
62
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
63
63
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
64
64
  background: transparent;
65
+ color: inherit;
65
66
  }
66
67
 
67
68
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -62,6 +62,7 @@
62
62
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
63
63
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
64
64
  background: transparent;
65
+ color: inherit;
65
66
  }
66
67
 
67
68
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -714,14 +715,14 @@
714
715
  font-size: 9px;
715
716
  height: 17px;
716
717
  line-height: 16px;
717
- margin: 4px 18px 0 2px;
718
+ margin: 4px 1px 0 2px;
718
719
  text-align: center;
719
720
  width: 17px;
720
721
  }
721
722
 
722
723
  .e-bigger .e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv,
723
724
  .e-grid.e-bigger .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
724
- margin: -32px -20px 0 2px;
725
+ margin: -32px -20px 0 -4px;
725
726
  }
726
727
 
727
728
  .e-bigger .e-grid.e-rtl .e-headercell .e-sortfilterdiv,
@@ -1958,7 +1959,7 @@
1958
1959
  }
1959
1960
 
1960
1961
  .e-grid .e-gridheader .e-sortfilter .e-fltr-icon .e-headercelldiv {
1961
- margin: -5px;
1962
+ margin: -5px 15px -5px -12px;
1962
1963
  }
1963
1964
 
1964
1965
  .e-grid .e-gridheader .e-sortfilter .e-headercelldiv,
@@ -2022,7 +2023,7 @@
2022
2023
  font-size: 11px;
2023
2024
  height: 17px;
2024
2025
  line-height: 16px;
2025
- margin: 3px 2px 0 8px;
2026
+ margin: 3px 8px 0 8px;
2026
2027
  text-align: center;
2027
2028
  width: 17px;
2028
2029
  }
@@ -2033,7 +2034,7 @@
2033
2034
  }
2034
2035
 
2035
2036
  .e-grid .e-gridheader .e-fltr-icon .e-sortfilterdiv {
2036
- margin: -29px 34px -29px 0;
2037
+ margin: -29px 29px -29px 0;
2037
2038
  }
2038
2039
 
2039
2040
  .e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
@@ -62,6 +62,7 @@
62
62
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
63
63
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
64
64
  background: transparent;
65
+ color: inherit;
65
66
  }
66
67
 
67
68
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -714,14 +715,14 @@
714
715
  font-size: 9px;
715
716
  height: 17px;
716
717
  line-height: 16px;
717
- margin: 4px 18px 0 2px;
718
+ margin: 4px 1px 0 2px;
718
719
  text-align: center;
719
720
  width: 17px;
720
721
  }
721
722
 
722
723
  .e-bigger .e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv,
723
724
  .e-grid.e-bigger .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
724
- margin: -32px -20px 0 2px;
725
+ margin: -32px -20px 0 -4px;
725
726
  }
726
727
 
727
728
  .e-bigger .e-grid.e-rtl .e-headercell .e-sortfilterdiv,
@@ -1958,7 +1959,7 @@
1958
1959
  }
1959
1960
 
1960
1961
  .e-grid .e-gridheader .e-sortfilter .e-fltr-icon .e-headercelldiv {
1961
- margin: -5px;
1962
+ margin: -5px 15px -5px -12px;
1962
1963
  }
1963
1964
 
1964
1965
  .e-grid .e-gridheader .e-sortfilter .e-headercelldiv,
@@ -2022,7 +2023,7 @@
2022
2023
  font-size: 11px;
2023
2024
  height: 17px;
2024
2025
  line-height: 16px;
2025
- margin: 3px 2px 0 8px;
2026
+ margin: 3px 8px 0 8px;
2026
2027
  text-align: center;
2027
2028
  width: 17px;
2028
2029
  }
@@ -2033,7 +2034,7 @@
2033
2034
  }
2034
2035
 
2035
2036
  .e-grid .e-gridheader .e-fltr-icon .e-sortfilterdiv {
2036
- margin: -29px 34px -29px 0;
2037
+ margin: -29px 29px -29px 0;
2037
2038
  }
2038
2039
 
2039
2040
  .e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {