@syncfusion/ej2-vue-pivotview 20.4.54 → 21.1.37
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 +15 -31
- package/dist/ej2-vue-pivotview.umd.min.js +2 -2
- package/dist/ej2-vue-pivotview.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-pivotview.es2015.js +178 -220
- package/dist/es6/ej2-vue-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-pivotview.es5.js +201 -253
- package/dist/es6/ej2-vue-pivotview.es5.js.map +1 -1
- package/dist/global/ej2-vue-pivotview.min.js +2 -2
- package/package.json +11 -10
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -24
- package/src/pivotfieldlist/pivotfieldlist.component.js +90 -119
- package/src/pivotview/pivotview.component.d.ts +4 -33
- package/src/pivotview/pivotview.component.js +114 -143
- package/styles/bootstrap-dark.css +81 -5
- package/styles/bootstrap.css +82 -5
- package/styles/bootstrap4.css +82 -15
- package/styles/bootstrap5-dark.css +95 -18
- package/styles/bootstrap5.css +95 -18
- package/styles/fabric-dark.css +84 -13
- package/styles/fabric.css +83 -10
- package/styles/fluent-dark.css +101 -20
- package/styles/fluent.css +101 -20
- package/styles/highcontrast-light.css +84 -9
- package/styles/highcontrast.css +84 -9
- package/styles/material-dark.css +81 -5
- package/styles/material.css +81 -11
- package/styles/pivotfieldlist/bootstrap-dark.css +58 -2
- package/styles/pivotfieldlist/bootstrap.css +58 -2
- package/styles/pivotfieldlist/bootstrap4.css +58 -2
- package/styles/pivotfieldlist/bootstrap5-dark.css +66 -9
- package/styles/pivotfieldlist/bootstrap5.css +66 -9
- package/styles/pivotfieldlist/fabric-dark.css +58 -2
- package/styles/pivotfieldlist/fabric.css +58 -2
- package/styles/pivotfieldlist/fluent-dark.css +72 -11
- package/styles/pivotfieldlist/fluent.css +72 -11
- package/styles/pivotfieldlist/highcontrast-light.css +58 -2
- package/styles/pivotfieldlist/highcontrast.css +58 -2
- package/styles/pivotfieldlist/material-dark.css +58 -2
- package/styles/pivotfieldlist/material.css +58 -2
- package/styles/pivotfieldlist/tailwind-dark.css +64 -7
- package/styles/pivotfieldlist/tailwind.css +64 -7
- package/styles/pivotview/bootstrap-dark.css +23 -3
- package/styles/pivotview/bootstrap.css +24 -3
- package/styles/pivotview/bootstrap4.css +24 -13
- package/styles/pivotview/bootstrap5-dark.css +29 -9
- package/styles/pivotview/bootstrap5.css +29 -9
- package/styles/pivotview/fabric-dark.css +26 -11
- package/styles/pivotview/fabric.css +25 -8
- package/styles/pivotview/fluent-dark.css +29 -9
- package/styles/pivotview/fluent.css +29 -9
- package/styles/pivotview/highcontrast-light.css +26 -7
- package/styles/pivotview/highcontrast.css +26 -7
- package/styles/pivotview/material-dark.css +23 -3
- package/styles/pivotview/material.css +23 -9
- package/styles/pivotview/tailwind-dark.css +26 -10
- package/styles/pivotview/tailwind.css +26 -10
- package/styles/tailwind-dark.css +90 -17
- package/styles/tailwind.css +90 -17
|
@@ -1,169 +1,140 @@
|
|
|
1
|
-
|
|
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 { ComponentBase, EJComponentDecorator, getProps, gh, isExecute } from '@syncfusion/ej2-vue-base';
|
|
1
|
+
import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';
|
|
21
2
|
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
|
|
22
3
|
import { PivotView } from '@syncfusion/ej2-pivotview';
|
|
23
|
-
import { Options } from 'vue-class-component';
|
|
24
4
|
export var properties = ['isLazyUpdate', 'plugins', 'aggregateTypes', 'allowCalculatedField', 'allowConditionalFormatting', 'allowDataCompression', 'allowDeferLayoutUpdate', 'allowDrillThrough', 'allowExcelExport', 'allowGrouping', 'allowNumberFormatting', 'allowPdfExport', 'cellTemplate', 'chartSettings', 'chartTypes', 'cssClass', 'dataSourceSettings', 'displayOption', 'editSettings', 'enableFieldSearching', 'enableHtmlSanitizer', 'enablePaging', 'enablePersistence', 'enableRtl', 'enableValueSorting', 'enableVirtualization', 'exportAllPages', 'gridSettings', 'groupingBarSettings', 'height', 'hyperlinkSettings', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'maxRowsInDrillThrough', 'pageSettings', 'pagerSettings', 'pivotValues', 'showFieldList', 'showGroupingBar', 'showToolbar', 'showTooltip', 'showValuesButton', 'spinnerTemplate', 'toolbar', 'toolbarTemplate', 'tooltipTemplate', 'width', 'actionBegin', 'actionComplete', 'actionFailure', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeExport', 'beforeServiceInvoke', 'beginDrillThrough', 'calculatedFieldCreate', 'cellClick', 'cellSelected', 'cellSelecting', 'chartSeriesCreated', 'conditionalFormatting', 'created', 'dataBound', 'destroyed', 'drill', 'drillThrough', 'editCompleted', 'enginePopulated', 'enginePopulating', 'exportComplete', 'fetchReport', 'fieldDragStart', 'fieldDrop', 'fieldListRefreshed', 'fieldRemove', 'hyperlinkCellClick', 'load', 'loadReport', 'memberEditorOpen', 'memberFiltering', 'newReport', 'numberFormatting', 'onFieldDropped', 'onHeadersSort', 'onPdfCellRender', 'removeReport', 'renameReport', 'saveReport', 'toolbarClick', 'toolbarRender'];
|
|
25
5
|
export var modelProps = [];
|
|
26
6
|
export var testProp = getProps({ props: properties });
|
|
27
|
-
export var props = testProp[0];
|
|
28
|
-
export var watch = testProp[1];
|
|
29
|
-
export var emitProbs = Object.keys(watch);
|
|
7
|
+
export var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);
|
|
30
8
|
emitProbs.push('modelchanged', 'update:modelValue');
|
|
31
9
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
32
10
|
var props_1 = modelProps_1[_i];
|
|
33
11
|
emitProbs.push('update:' + props_1);
|
|
34
12
|
}
|
|
35
13
|
/**
|
|
36
|
-
* `ejs-pivotview` represents the VueJS
|
|
14
|
+
* `ejs-pivotview` represents the VueJS Pivot Table Component.
|
|
37
15
|
* ```vue
|
|
38
16
|
* <ejs-pivotview></ejs-pivotview>
|
|
39
17
|
* ```
|
|
40
18
|
*/
|
|
41
|
-
var PivotViewComponent =
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
19
|
+
export var PivotViewComponent = vueDefineComponent({
|
|
20
|
+
name: 'PivotViewComponent',
|
|
21
|
+
mixins: [ComponentBase],
|
|
22
|
+
props: props,
|
|
23
|
+
watch: watch,
|
|
24
|
+
emits: emitProbs,
|
|
25
|
+
provide: function () { return { custom: this.custom }; },
|
|
26
|
+
data: function () {
|
|
27
|
+
return {
|
|
28
|
+
ej2Instances: new PivotView({}),
|
|
29
|
+
propKeys: properties,
|
|
30
|
+
models: modelProps,
|
|
31
|
+
hasChildDirective: false,
|
|
32
|
+
hasInjectedModules: true,
|
|
33
|
+
tagMapper: {},
|
|
34
|
+
tagNameMapper: {},
|
|
35
|
+
isVue3: !isExecute,
|
|
36
|
+
templateCollection: {},
|
|
37
|
+
};
|
|
38
|
+
},
|
|
39
|
+
created: function () {
|
|
40
|
+
this.bindProperties();
|
|
41
|
+
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
|
|
42
|
+
this.ej2Instances.setProperties = this.setProperties;
|
|
43
|
+
this.ej2Instances.clearTemplate = this.clearTemplate;
|
|
44
|
+
this.updated = this.updated;
|
|
45
|
+
},
|
|
46
|
+
render: function (createElement) {
|
|
47
|
+
var h = !isExecute ? gh : createElement;
|
|
48
|
+
var slots = null;
|
|
49
|
+
if (!isNullOrUndefined(this.$slots.default)) {
|
|
50
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
63
51
|
}
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
52
|
+
return h('div', slots);
|
|
53
|
+
},
|
|
54
|
+
methods: {
|
|
55
|
+
clearTemplate: function (templateNames) {
|
|
56
|
+
if (!templateNames) {
|
|
57
|
+
templateNames = Object.keys(this.templateCollection || {});
|
|
58
|
+
}
|
|
59
|
+
if (templateNames.length && this.templateCollection) {
|
|
60
|
+
for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {
|
|
61
|
+
var tempName = templateNames_1[_i];
|
|
62
|
+
var elementCollection = this.templateCollection[tempName];
|
|
63
|
+
if (elementCollection && elementCollection.length) {
|
|
64
|
+
for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {
|
|
65
|
+
var ele = elementCollection_1[_a];
|
|
66
|
+
var destroy = getValue('__vue__.$destroy', ele);
|
|
67
|
+
if (destroy) {
|
|
68
|
+
ele.__vue__.$destroy();
|
|
69
|
+
}
|
|
70
|
+
if (ele.innerHTML) {
|
|
71
|
+
ele.innerHTML = '';
|
|
72
|
+
}
|
|
77
73
|
}
|
|
74
|
+
delete this.templateCollection[tempName];
|
|
78
75
|
}
|
|
79
|
-
delete this.templateCollection[tempName];
|
|
80
76
|
}
|
|
81
77
|
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
78
|
+
},
|
|
79
|
+
setProperties: function (prop, muteOnChange) {
|
|
80
|
+
var _this = this;
|
|
81
|
+
if (this.isVue3) {
|
|
82
|
+
this.models = !this.models ? this.ej2Instances.referModels : this.models;
|
|
83
|
+
}
|
|
84
|
+
if (this.ej2Instances && this.ej2Instances._setProperties) {
|
|
85
|
+
this.ej2Instances._setProperties(prop, muteOnChange);
|
|
86
|
+
}
|
|
87
|
+
if (prop && this.models && this.models.length) {
|
|
88
|
+
Object.keys(prop).map(function (key) {
|
|
89
|
+
_this.models.map(function (model) {
|
|
90
|
+
if ((key === model) && !(/datasource/i.test(key))) {
|
|
91
|
+
if (_this.isVue3) {
|
|
92
|
+
_this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);
|
|
93
|
+
}
|
|
94
|
+
else {
|
|
95
|
+
_this.$emit('update:' + key, prop[key]);
|
|
96
|
+
_this.$emit('modelchanged', prop[key]);
|
|
97
|
+
}
|
|
102
98
|
}
|
|
103
|
-
}
|
|
99
|
+
});
|
|
104
100
|
});
|
|
105
|
-
});
|
|
106
|
-
}
|
|
107
|
-
};
|
|
108
|
-
PivotViewComponent.prototype.render = function (createElement) {
|
|
109
|
-
var h = !isExecute ? gh : createElement;
|
|
110
|
-
var slots = null;
|
|
111
|
-
if (!isNullOrUndefined(this.$slots.default)) {
|
|
112
|
-
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
113
|
-
}
|
|
114
|
-
return h('div', slots);
|
|
115
|
-
};
|
|
116
|
-
PivotViewComponent.prototype.custom = function () {
|
|
117
|
-
this.updated();
|
|
118
|
-
};
|
|
119
|
-
PivotViewComponent.prototype.chartExport = function (type, pdfExportProperties, isMultipleExport, pdfDoc, isBlob) {
|
|
120
|
-
return this.ej2Instances.chartExport(type, pdfExportProperties, isMultipleExport, pdfDoc, isBlob);
|
|
121
|
-
};
|
|
122
|
-
PivotViewComponent.prototype.createCalculatedFieldDialog = function () {
|
|
123
|
-
return this.ej2Instances.createCalculatedFieldDialog();
|
|
124
|
-
};
|
|
125
|
-
PivotViewComponent.prototype.csvExport = function (excelExportProperties, isMultipleExport, workbook, isBlob) {
|
|
126
|
-
return this.ej2Instances.csvExport(excelExportProperties, isMultipleExport, workbook, isBlob);
|
|
127
|
-
};
|
|
128
|
-
PivotViewComponent.prototype.excelExport = function (excelExportProperties, isMultipleExport, workbook, isBlob) {
|
|
129
|
-
return this.ej2Instances.excelExport(excelExportProperties, isMultipleExport, workbook, isBlob);
|
|
130
|
-
};
|
|
131
|
-
PivotViewComponent.prototype.loadPersistData = function (persistData) {
|
|
132
|
-
return this.ej2Instances.loadPersistData(persistData);
|
|
133
|
-
};
|
|
134
|
-
PivotViewComponent.prototype.pdfExport = function (pdfExportProperties, isMultipleExport, pdfDoc, isBlob, exportBothTableAndChart) {
|
|
135
|
-
return this.ej2Instances.pdfExport(pdfExportProperties, isMultipleExport, pdfDoc, isBlob, exportBothTableAndChart);
|
|
136
|
-
};
|
|
137
|
-
PivotViewComponent.prototype.printChart = function () {
|
|
138
|
-
return this.ej2Instances.printChart();
|
|
139
|
-
};
|
|
140
|
-
PivotViewComponent.prototype.refresh = function () {
|
|
141
|
-
return this.ej2Instances.refresh();
|
|
142
|
-
};
|
|
143
|
-
PivotViewComponent.prototype.showConditionalFormattingDialog = function () {
|
|
144
|
-
return this.ej2Instances.showConditionalFormattingDialog();
|
|
145
|
-
};
|
|
146
|
-
PivotViewComponent.prototype.showNumberFormattingDialog = function () {
|
|
147
|
-
return this.ej2Instances.showNumberFormattingDialog();
|
|
148
|
-
};
|
|
149
|
-
PivotViewComponent = __decorate([
|
|
150
|
-
EJComponentDecorator({
|
|
151
|
-
props: properties
|
|
152
|
-
}, isExecute)
|
|
153
|
-
,Options({
|
|
154
|
-
props: props,
|
|
155
|
-
watch: watch,
|
|
156
|
-
emits: emitProbs,
|
|
157
|
-
provide: function provide() {
|
|
158
|
-
return {
|
|
159
|
-
custom: this.custom
|
|
160
|
-
};
|
|
161
101
|
}
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
}
|
|
166
|
-
|
|
102
|
+
},
|
|
103
|
+
custom: function () {
|
|
104
|
+
this.updated();
|
|
105
|
+
},
|
|
106
|
+
chartExport: function (type, pdfExportProperties, isMultipleExport, pdfDoc, isBlob) {
|
|
107
|
+
return this.ej2Instances.chartExport(type, pdfExportProperties, isMultipleExport, pdfDoc, isBlob);
|
|
108
|
+
},
|
|
109
|
+
createCalculatedFieldDialog: function () {
|
|
110
|
+
return this.ej2Instances.createCalculatedFieldDialog();
|
|
111
|
+
},
|
|
112
|
+
csvExport: function (excelExportProperties, isMultipleExport, workbook, isBlob) {
|
|
113
|
+
return this.ej2Instances.csvExport(excelExportProperties, isMultipleExport, workbook, isBlob);
|
|
114
|
+
},
|
|
115
|
+
excelExport: function (excelExportProperties, isMultipleExport, workbook, isBlob) {
|
|
116
|
+
return this.ej2Instances.excelExport(excelExportProperties, isMultipleExport, workbook, isBlob);
|
|
117
|
+
},
|
|
118
|
+
loadPersistData: function (persistData) {
|
|
119
|
+
return this.ej2Instances.loadPersistData(persistData);
|
|
120
|
+
},
|
|
121
|
+
pdfExport: function (pdfExportProperties, isMultipleExport, pdfDoc, isBlob, exportBothTableAndChart) {
|
|
122
|
+
return this.ej2Instances.pdfExport(pdfExportProperties, isMultipleExport, pdfDoc, isBlob, exportBothTableAndChart);
|
|
123
|
+
},
|
|
124
|
+
printChart: function () {
|
|
125
|
+
return this.ej2Instances.printChart();
|
|
126
|
+
},
|
|
127
|
+
refresh: function () {
|
|
128
|
+
return this.ej2Instances.refresh();
|
|
129
|
+
},
|
|
130
|
+
showConditionalFormattingDialog: function () {
|
|
131
|
+
return this.ej2Instances.showConditionalFormattingDialog();
|
|
132
|
+
},
|
|
133
|
+
showNumberFormattingDialog: function () {
|
|
134
|
+
return this.ej2Instances.showNumberFormattingDialog();
|
|
135
|
+
},
|
|
136
|
+
}
|
|
137
|
+
});
|
|
167
138
|
export var PivotViewPlugin = {
|
|
168
139
|
name: 'ejs-pivotview',
|
|
169
140
|
install: function (Vue) {
|
|
@@ -788,6 +788,10 @@
|
|
|
788
788
|
.e-bigger.e-pivotview .e-value-field-settings {
|
|
789
789
|
max-height: 510px !important;
|
|
790
790
|
}
|
|
791
|
+
.e-bigger .e-pivotview .e-value-field-settings .e-dlg-content,
|
|
792
|
+
.e-bigger.e-pivotview .e-value-field-settings .e-dlg-content {
|
|
793
|
+
padding: 0;
|
|
794
|
+
}
|
|
791
795
|
.e-bigger .e-pivotview .e-pivot-format-dialog .e-pivot-format-dialog-outer,
|
|
792
796
|
.e-bigger.e-pivotview .e-pivot-format-dialog .e-pivot-format-dialog-outer {
|
|
793
797
|
padding: 0 20px 10px;
|
|
@@ -950,6 +954,9 @@
|
|
|
950
954
|
.e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
|
|
951
955
|
width: 100%;
|
|
952
956
|
}
|
|
957
|
+
.e-pivotview .e-toolbar .e-tbar-btn {
|
|
958
|
+
background-color: transparent;
|
|
959
|
+
}
|
|
953
960
|
.e-pivotview .e-grid .e-rowsheader.e-active,
|
|
954
961
|
.e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
|
|
955
962
|
.e-pivotview .e-grid .e-columnsheader.e-active,
|
|
@@ -1379,6 +1386,7 @@
|
|
|
1379
1386
|
height: 18px;
|
|
1380
1387
|
margin-left: 4px;
|
|
1381
1388
|
width: 18px;
|
|
1389
|
+
padding-top: 3px;
|
|
1382
1390
|
}
|
|
1383
1391
|
.e-pivotview .e-grouping-bar .e-pivot-button .e-sort:hover,
|
|
1384
1392
|
.e-pivotview .e-grouping-bar .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1416,6 +1424,7 @@
|
|
|
1416
1424
|
}
|
|
1417
1425
|
.e-pivotview .e-grouping-bar .e-pivot-button .e-sort.e-descend,
|
|
1418
1426
|
.e-pivotview .e-group-rows .e-pivot-button .e-sort.e-descend {
|
|
1427
|
+
margin-top: 5px;
|
|
1419
1428
|
transform: rotateX(180deg);
|
|
1420
1429
|
}
|
|
1421
1430
|
.e-pivotview .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
@@ -1500,7 +1509,6 @@
|
|
|
1500
1509
|
height: 18px;
|
|
1501
1510
|
margin-left: 4px !important;
|
|
1502
1511
|
width: 18px;
|
|
1503
|
-
padding-top: 2px;
|
|
1504
1512
|
}
|
|
1505
1513
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1506
1514
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1523,7 +1531,6 @@
|
|
|
1523
1531
|
width: 18px;
|
|
1524
1532
|
}
|
|
1525
1533
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1526
|
-
margin-top: 3px;
|
|
1527
1534
|
transform: rotateX(180deg);
|
|
1528
1535
|
}
|
|
1529
1536
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1601,6 +1608,9 @@
|
|
|
1601
1608
|
.e-pivotview .e-pivot-pager {
|
|
1602
1609
|
padding: 4px 12px;
|
|
1603
1610
|
}
|
|
1611
|
+
.e-pivotview .e-pivot-pager.sf-pager .e-pivot-pager-info-container.e-pagercontainer {
|
|
1612
|
+
font-size: unset;
|
|
1613
|
+
}
|
|
1604
1614
|
.e-pivotview .e-pivot-pager.e-pivot-pager-bottom {
|
|
1605
1615
|
border-top: 0;
|
|
1606
1616
|
}
|
|
@@ -1712,6 +1722,12 @@
|
|
|
1712
1722
|
-ms-flex: none;
|
|
1713
1723
|
flex: none;
|
|
1714
1724
|
}
|
|
1725
|
+
.e-pivotview .e-pivot-pager .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivot-row-pager-settings.e-pivot-pager-axis-container,
|
|
1726
|
+
.e-pivotview .e-pivot-pager .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivot-column-pager-settings.e-pivot-pager-axis-container,
|
|
1727
|
+
.e-pivotview .e-pivot-pager .e-pivot-pager-maindiv .e-pivot-pager-column-maindiv .e-pivot-row-pager-settings.e-pivot-pager-axis-container,
|
|
1728
|
+
.e-pivotview .e-pivot-pager .e-pivot-pager-maindiv .e-pivot-pager-column-maindiv .e-pivot-column-pager-settings.e-pivot-pager-axis-container {
|
|
1729
|
+
display: inline-table;
|
|
1730
|
+
}
|
|
1715
1731
|
.e-pivotview .e-pivot-pager .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivot-row-pager-settings .e-numeric,
|
|
1716
1732
|
.e-pivotview .e-pivot-pager .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivot-column-pager-settings .e-numeric,
|
|
1717
1733
|
.e-pivotview .e-pivot-pager .e-pivot-pager-maindiv .e-pivot-pager-column-maindiv .e-pivot-row-pager-settings .e-numeric,
|
|
@@ -1830,7 +1846,7 @@
|
|
|
1830
1846
|
}
|
|
1831
1847
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
|
|
1832
1848
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
|
|
1833
|
-
width:
|
|
1849
|
+
width: 50%;
|
|
1834
1850
|
}
|
|
1835
1851
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
|
|
1836
1852
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
|
|
@@ -2040,6 +2056,10 @@
|
|
|
2040
2056
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button {
|
|
2041
2057
|
width: 155px;
|
|
2042
2058
|
}
|
|
2059
|
+
.e-pivotview.e-device .e-scrollbar .e-movablescrollbar {
|
|
2060
|
+
min-height: 1px !important;
|
|
2061
|
+
visibility: hidden;
|
|
2062
|
+
}
|
|
2043
2063
|
.e-pivotview .e-component-disable {
|
|
2044
2064
|
display: none !important;
|
|
2045
2065
|
}
|
|
@@ -3399,6 +3419,8 @@
|
|
|
3399
3419
|
}
|
|
3400
3420
|
.e-pivot-calc-dialog-div.e-rtl .e-treeview ul li .e-text-content {
|
|
3401
3421
|
padding: 0 24px 0 0;
|
|
3422
|
+
display: -ms-flexbox;
|
|
3423
|
+
display: flex;
|
|
3402
3424
|
}
|
|
3403
3425
|
.e-pivot-calc-dialog-div .e-pivot-calc-input.e-empty-field::-webkit-input-placeholder {
|
|
3404
3426
|
color: #ac2a2a !important;
|
|
@@ -3626,6 +3648,15 @@
|
|
|
3626
3648
|
.e-bigger .e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-icons {
|
|
3627
3649
|
font-size: 16px;
|
|
3628
3650
|
}
|
|
3651
|
+
.e-bigger.e-pivot-calc-dialog-div .e-treeview .e-list-item .e-remove-report,
|
|
3652
|
+
.e-bigger.e-pivot-calc-dialog-div .e-treeview .e-list-item .e-edit,
|
|
3653
|
+
.e-bigger.e-pivot-calc-dialog-div .e-treeview .e-list-item .e-edited,
|
|
3654
|
+
.e-bigger .e-pivot-calc-dialog-div .e-treeview .e-list-item .e-remove-report,
|
|
3655
|
+
.e-bigger .e-pivot-calc-dialog-div .e-treeview .e-list-item .e-edit,
|
|
3656
|
+
.e-bigger .e-pivot-calc-dialog-div .e-treeview .e-list-item .e-edited {
|
|
3657
|
+
/* stylelint-disable */
|
|
3658
|
+
/* stylelint-enable */
|
|
3659
|
+
}
|
|
3629
3660
|
.e-bigger.e-pivot-calc-dialog-div .e-treeview .e-list-item span.e-icons,
|
|
3630
3661
|
.e-bigger .e-pivot-calc-dialog-div .e-treeview .e-list-item span.e-icons {
|
|
3631
3662
|
font-size: 16px;
|
|
@@ -3725,6 +3756,7 @@
|
|
|
3725
3756
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog:not(.e-member-editor-dialog):not(.e-olap-field-list-tree) ul li:not(.e-pivot-parent):not(.e-pivot-child) .e-text-content,
|
|
3726
3757
|
.e-pivotfieldlist-container .e-member-editor-dialog:not(.e-member-editor-dialog):not(.e-olap-field-list-tree) ul li:not(.e-pivot-parent):not(.e-pivot-child) .e-text-content {
|
|
3727
3758
|
padding-left: 0;
|
|
3759
|
+
margin-left: 15px;
|
|
3728
3760
|
}
|
|
3729
3761
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3730
3762
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
@@ -3841,9 +3873,10 @@
|
|
|
3841
3873
|
}
|
|
3842
3874
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter {
|
|
3843
3875
|
padding-top: 20px;
|
|
3876
|
+
/* stylelint-disable */
|
|
3844
3877
|
}
|
|
3845
3878
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
3846
|
-
height: 140px;
|
|
3879
|
+
height: 140px !important;
|
|
3847
3880
|
}
|
|
3848
3881
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter,
|
|
3849
3882
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter {
|
|
@@ -3851,7 +3884,6 @@
|
|
|
3851
3884
|
overflow: auto;
|
|
3852
3885
|
padding: 20px;
|
|
3853
3886
|
padding-bottom: 0;
|
|
3854
|
-
/* stylelint-disable */
|
|
3855
3887
|
/* stylelint-enable */
|
|
3856
3888
|
}
|
|
3857
3889
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
@@ -4453,6 +4485,50 @@
|
|
|
4453
4485
|
/* stylelint-enable */
|
|
4454
4486
|
/* stylelint-enable */
|
|
4455
4487
|
}
|
|
4488
|
+
.e-pivotfieldlist-container.sf-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list {
|
|
4489
|
+
display: block;
|
|
4490
|
+
overflow-y: auto;
|
|
4491
|
+
}
|
|
4492
|
+
.e-pivotfieldlist-container.sf-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-olap-field-list-tree.e-treeview ul:first-child {
|
|
4493
|
+
padding-right: 0;
|
|
4494
|
+
}
|
|
4495
|
+
.e-pivotfieldlist-container.sf-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-olap-field-list-tree.e-treeview li.e-no-checkbox > .e-text-content > .e-checkbox-wrapper, .e-pivotfieldlist-container.sf-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-olap-field-list-tree.e-treeview li .e-measure-icon {
|
|
4496
|
+
display: none;
|
|
4497
|
+
}
|
|
4498
|
+
.e-pivotfieldlist-container.sf-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-olap-field-list-tree.e-treeview li.e-rtl ul:first-child {
|
|
4499
|
+
padding-left: 0;
|
|
4500
|
+
padding-right: 10px;
|
|
4501
|
+
}
|
|
4502
|
+
.e-pivotfieldlist-container.sf-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list li .e-drag {
|
|
4503
|
+
padding: revert;
|
|
4504
|
+
margin: revert;
|
|
4505
|
+
width: auto;
|
|
4506
|
+
height: auto;
|
|
4507
|
+
}
|
|
4508
|
+
.e-pivotfieldlist-container.sf-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list li .e-draggable {
|
|
4509
|
+
display: contents;
|
|
4510
|
+
}
|
|
4511
|
+
.e-pivotfieldlist-container.sf-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list li .e-text-content {
|
|
4512
|
+
display: -ms-flexbox;
|
|
4513
|
+
display: flex;
|
|
4514
|
+
-ms-flex-align: center;
|
|
4515
|
+
align-items: center;
|
|
4516
|
+
}
|
|
4517
|
+
.e-pivotfieldlist-container.sf-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list li .e-list-text {
|
|
4518
|
+
text-overflow: ellipsis;
|
|
4519
|
+
overflow-x: hidden;
|
|
4520
|
+
width: 100%;
|
|
4521
|
+
white-space: nowrap;
|
|
4522
|
+
}
|
|
4523
|
+
.e-pivotfieldlist-container.sf-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-treeview:not(.e-rtl) .e-list-text {
|
|
4524
|
+
padding-right: revert;
|
|
4525
|
+
}
|
|
4526
|
+
.e-pivotfieldlist-container.sf-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-treeview.e-rtl .e-list-text {
|
|
4527
|
+
padding-left: revert;
|
|
4528
|
+
}
|
|
4529
|
+
.e-pivotfieldlist-container.sf-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container li.e-no-checkbox > .e-text-content > .e-checkbox-wrapper, .e-pivotfieldlist-container.sf-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container li .e-measure-icon {
|
|
4530
|
+
display: none;
|
|
4531
|
+
}
|
|
4456
4532
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
4457
4533
|
display: -ms-flexbox;
|
|
4458
4534
|
display: flex;
|