@syncfusion/ej2-vue-grids 19.3.47 → 19.3.55
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 +40 -0
- package/dist/ej2-vue-grids.umd.min.js +1 -1
- package/dist/es6/ej2-vue-grids.es2015.js +97 -46
- package/dist/es6/ej2-vue-grids.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-grids.es5.js +132 -58
- package/dist/es6/ej2-vue-grids.es5.js.map +1 -1
- package/dist/global/ej2-vue-grids.min.js +2 -2
- package/package.json +8 -8
- package/src/grid/grid.component.js +5 -2
- package/src/grid/index.d.ts +1 -0
- package/src/grid/index.js +1 -0
- package/src/grid/stacked-column.directive.d.ts +19 -0
- package/src/grid/stacked-column.directive.js +76 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/styles/bootstrap5-dark.css +1 -0
- package/styles/bootstrap5.css +1 -0
- package/styles/excel-filter/bootstrap5-dark.css +1 -0
- package/styles/excel-filter/bootstrap5.css +1 -0
- package/styles/grid/bootstrap5-dark.css +1 -0
- package/styles/grid/bootstrap5.css +1 -0
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.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-grids@19.3.54",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512
|
|
5
|
+
"_integrity": "sha512-5WgD9ZVbwkwR8a6UgQb9ZiVTc9ewt/wxtCtvFegaXvRmEWWvU/m58ltomowuyoE+AogFNfWjPL5CpirufLK7ww==",
|
|
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.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-vue-grids/-/ej2-vue-grids-19.3.54.tgz",
|
|
23
|
+
"_shasum": "65ca378ffe36a1bf989ba5d9bbebe1d0e68e0d1e",
|
|
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.
|
|
35
|
-
"@syncfusion/ej2-grids": "19.3.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~19.3.
|
|
34
|
+
"@syncfusion/ej2-base": "~19.3.54",
|
|
35
|
+
"@syncfusion/ej2-grids": "19.3.55",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~19.3.55"
|
|
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.
|
|
68
|
+
"version": "19.3.55",
|
|
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);
|
package/src/grid/index.d.ts
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';
|
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],
|
package/styles/bootstrap5.css
CHANGED
|
@@ -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],
|