@revolist/revogrid 3.2.18 → 3.3.1
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/custom-element/columnService.js +65 -100
- package/custom-element/revo-grid.js +13 -15
- package/custom-element/revogr-data2.js +5 -1
- package/dist/cjs/revo-grid_11.cjs.entry.js +83 -116
- package/dist/collection/components/revo-grid/revo-grid.js +2 -1
- package/dist/collection/plugins/groupingRow/grouping.const.js +1 -0
- package/dist/collection/plugins/groupingRow/grouping.row.expand.service.js +5 -6
- package/dist/collection/plugins/groupingRow/grouping.row.plugin.js +6 -8
- package/dist/collection/plugins/groupingRow/grouping.row.renderer.js +5 -1
- package/dist/collection/plugins/groupingRow/grouping.service.js +64 -100
- package/dist/esm/revo-grid_11.entry.js +83 -116
- package/dist/esm-es5/revo-grid_11.entry.js +1 -1
- package/dist/revo-grid/revo-grid_11.entry.js +1 -1
- package/dist/revo-grid/revo-grid_11.system.entry.js +1 -1
- package/dist/types/plugins/groupingRow/grouping.const.d.ts +1 -0
- package/dist/types/plugins/groupingRow/grouping.service.d.ts +3 -4
- package/package.json +1 -1
|
@@ -11,123 +11,91 @@ const PSEUDO_GROUP_ITEM_ID = `${GRID_INTERNALS}-id`;
|
|
|
11
11
|
const PSEUDO_GROUP_ITEM_VALUE = `${GRID_INTERNALS}-value`;
|
|
12
12
|
const PSEUDO_GROUP_COLUMN = `${GRID_INTERNALS}-column`;
|
|
13
13
|
const GROUP_EXPANDED = `${GRID_INTERNALS}-expanded`;
|
|
14
|
+
const GROUP_ORIGINAL_INDEX = `${GRID_INTERNALS}-original-index`;
|
|
14
15
|
const GROUP_EXPAND_BTN = `group-expand`;
|
|
15
16
|
const GROUP_EXPAND_EVENT = `groupExpandClick`;
|
|
16
17
|
const GROUPING_ROW_TYPE = 'rgRow';
|
|
17
18
|
|
|
18
|
-
/**
|
|
19
|
-
* Do actual grouping
|
|
20
|
-
* @param array - items to group
|
|
21
|
-
* @param f - function responsible for grouping, returns property to group by
|
|
22
|
-
*/
|
|
23
|
-
function groupBy(array, f) {
|
|
24
|
-
const groupsOrder = [];
|
|
25
|
-
const itemsByGroup = {};
|
|
26
|
-
array.forEach((item, i) => {
|
|
27
|
-
// get grouping values
|
|
28
|
-
const groupKeys = JSON.stringify(f(item));
|
|
29
|
-
// new group identification
|
|
30
|
-
if (!itemsByGroup[groupKeys]) {
|
|
31
|
-
itemsByGroup[groupKeys] = new Map();
|
|
32
|
-
// create group parents
|
|
33
|
-
groupsOrder.push({
|
|
34
|
-
children: itemsByGroup[groupKeys],
|
|
35
|
-
id: groupKeys,
|
|
36
|
-
});
|
|
37
|
-
}
|
|
38
|
-
// save to group with previous index
|
|
39
|
-
itemsByGroup[groupKeys].set(i, item);
|
|
40
|
-
});
|
|
41
|
-
return groupsOrder;
|
|
42
|
-
}
|
|
43
19
|
/**
|
|
44
20
|
* Gather data for grouping
|
|
45
21
|
* @param array - flat data array
|
|
46
|
-
* @param
|
|
22
|
+
* @param groupIds - ids of groups
|
|
47
23
|
* @param expanded - potentially expanded items if present
|
|
48
24
|
*/
|
|
49
|
-
function gatherGrouping(array,
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
25
|
+
function gatherGrouping(array, groupIds, { prevExpanded, expandedAll }) {
|
|
26
|
+
const groupedItems = new Map();
|
|
27
|
+
array.forEach((item, originalIndex) => {
|
|
28
|
+
const groupLevelValues = groupIds.map((groupId) => item[groupId] || null);
|
|
29
|
+
const lastLevelValue = groupLevelValues.pop();
|
|
30
|
+
let currentGroupLevel = groupedItems;
|
|
31
|
+
groupLevelValues.forEach((value) => {
|
|
32
|
+
if (!currentGroupLevel.has(value)) {
|
|
33
|
+
currentGroupLevel.set(value, new Map());
|
|
34
|
+
}
|
|
35
|
+
currentGroupLevel = currentGroupLevel.get(value);
|
|
36
|
+
});
|
|
37
|
+
if (!currentGroupLevel.has(lastLevelValue)) {
|
|
38
|
+
currentGroupLevel.set(lastLevelValue, []);
|
|
39
|
+
}
|
|
40
|
+
item[GROUP_ORIGINAL_INDEX] = originalIndex;
|
|
41
|
+
const lastLevelItems = currentGroupLevel.get(lastLevelValue);
|
|
42
|
+
lastLevelItems.push(item);
|
|
43
|
+
});
|
|
44
|
+
let itemIndex = -1;
|
|
45
|
+
const groupingDepth = groupIds.length;
|
|
58
46
|
// collapse all groups in the beginning
|
|
59
47
|
const trimmed = {};
|
|
60
48
|
// index mapping
|
|
61
49
|
const oldNewIndexMap = {};
|
|
62
|
-
//
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
if (!
|
|
50
|
+
// check if group header exists
|
|
51
|
+
const pseudoGroupTest = {};
|
|
52
|
+
const sourceWithGroups = [];
|
|
53
|
+
function flattenGroupMaps(groupedValues, parentIds, isExpanded) {
|
|
54
|
+
const depth = parentIds.length;
|
|
55
|
+
groupedValues.forEach((innerGroupedValues, groupId) => {
|
|
56
|
+
const levelIds = [...parentIds, groupId];
|
|
57
|
+
const mergedIds = levelIds.join(',');
|
|
58
|
+
const isGroupExpanded = isExpanded && (!!expandedAll || !!(prevExpanded === null || prevExpanded === void 0 ? void 0 : prevExpanded[mergedIds]));
|
|
59
|
+
sourceWithGroups.push({
|
|
60
|
+
[PSEUDO_GROUP_ITEM]: groupId,
|
|
61
|
+
[GROUP_DEPTH]: depth,
|
|
62
|
+
[PSEUDO_GROUP_ITEM_ID]: JSON.stringify(levelIds),
|
|
63
|
+
[PSEUDO_GROUP_ITEM_VALUE]: mergedIds,
|
|
64
|
+
[GROUP_EXPANDED]: isGroupExpanded,
|
|
65
|
+
});
|
|
66
|
+
itemIndex += 1;
|
|
67
|
+
if (!isGroupExpanded && depth) {
|
|
68
|
+
trimmed[itemIndex] = true;
|
|
69
|
+
}
|
|
70
|
+
if (Array.isArray(innerGroupedValues)) {
|
|
71
|
+
innerGroupedValues.forEach((value) => {
|
|
72
|
+
itemIndex += 1;
|
|
73
|
+
if (!isGroupExpanded) {
|
|
86
74
|
trimmed[itemIndex] = true;
|
|
87
75
|
}
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
76
|
+
oldNewIndexMap[value[GROUP_ORIGINAL_INDEX]] = itemIndex;
|
|
77
|
+
const pseudoGroupTestIds = levelIds.map((_value, index) => levelIds.slice(0, index + 1).join(','));
|
|
78
|
+
pseudoGroupTestIds.forEach((pseudoGroupTestId) => {
|
|
79
|
+
if (!pseudoGroupTest[pseudoGroupTestId]) {
|
|
80
|
+
pseudoGroupTest[pseudoGroupTestId] = [];
|
|
81
|
+
}
|
|
82
|
+
pseudoGroupTest[pseudoGroupTestId].push(itemIndex);
|
|
83
|
+
});
|
|
84
|
+
});
|
|
85
|
+
sourceWithGroups.push(...innerGroupedValues);
|
|
91
86
|
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
groupingDepth = depth;
|
|
95
|
-
return prevVal;
|
|
96
|
-
}, []);
|
|
97
|
-
// add regular items
|
|
98
|
-
group.children.forEach((item, oldIndex) => {
|
|
99
|
-
// hide items if group colapsed
|
|
100
|
-
if (!isExpanded && !skipTrim) {
|
|
101
|
-
// collapse rgRow
|
|
102
|
-
trimmed[itemIndex] = true;
|
|
87
|
+
else {
|
|
88
|
+
flattenGroupMaps(innerGroupedValues, levelIds, isGroupExpanded);
|
|
103
89
|
}
|
|
104
|
-
// add items to new source
|
|
105
|
-
itemsMirror.push(item);
|
|
106
|
-
oldNewIndexMap[oldIndex] = itemIndex;
|
|
107
|
-
children.push(itemIndex);
|
|
108
|
-
itemIndex++;
|
|
109
90
|
});
|
|
110
|
-
}
|
|
91
|
+
}
|
|
92
|
+
flattenGroupMaps(groupedItems, [], true);
|
|
111
93
|
return {
|
|
112
|
-
|
|
113
|
-
sourceWithGroups: itemsMirror,
|
|
114
|
-
// largest depth for grouping
|
|
94
|
+
sourceWithGroups,
|
|
115
95
|
depth: groupingDepth,
|
|
116
|
-
// used for expand/collapse grouping values
|
|
117
96
|
trimmed,
|
|
118
|
-
// used for mapping old values to new
|
|
119
97
|
oldNewIndexMap,
|
|
120
|
-
// used to get child items in group
|
|
121
|
-
childrenByGroup: pseudoGroupTest,
|
|
122
|
-
};
|
|
123
|
-
}
|
|
124
|
-
function getPseudoGroup(groupValue, value, depth, id, isExpanded = false) {
|
|
125
|
-
return {
|
|
126
|
-
[PSEUDO_GROUP_ITEM]: groupValue,
|
|
127
|
-
[GROUP_DEPTH]: depth,
|
|
128
|
-
[PSEUDO_GROUP_ITEM_ID]: id,
|
|
129
|
-
[PSEUDO_GROUP_ITEM_VALUE]: value,
|
|
130
|
-
[GROUP_EXPANDED]: isExpanded,
|
|
98
|
+
childrenByGroup: pseudoGroupTest, // used to get child items in group
|
|
131
99
|
};
|
|
132
100
|
}
|
|
133
101
|
function getGroupingName(rgRow) {
|
|
@@ -139,9 +107,6 @@ function isGrouping(rgRow) {
|
|
|
139
107
|
function isGroupingColumn(column) {
|
|
140
108
|
return column && typeof column[PSEUDO_GROUP_COLUMN] !== 'undefined';
|
|
141
109
|
}
|
|
142
|
-
function isArray(data) {
|
|
143
|
-
return typeof data.push !== 'undefined';
|
|
144
|
-
}
|
|
145
110
|
function measureEqualDepth(groupA, groupB) {
|
|
146
111
|
const ln = groupA.length;
|
|
147
112
|
let i = 0;
|
|
@@ -155,7 +120,7 @@ function measureEqualDepth(groupA, groupB) {
|
|
|
155
120
|
function getParsedGroup(id) {
|
|
156
121
|
const parseGroup = JSON.parse(id);
|
|
157
122
|
// extra precaution and type safe guard
|
|
158
|
-
if (!isArray(parseGroup)) {
|
|
123
|
+
if (!Array.isArray(parseGroup)) {
|
|
159
124
|
return null;
|
|
160
125
|
}
|
|
161
126
|
return parseGroup;
|
|
@@ -740,4 +705,4 @@ class ColumnService {
|
|
|
740
705
|
}
|
|
741
706
|
}
|
|
742
707
|
|
|
743
|
-
export { ColumnService as C, EMPTY_INDEX as E, GROUP_EXPANDED as G,
|
|
708
|
+
export { ColumnService as C, EMPTY_INDEX as E, GROUP_EXPANDED as G, PSEUDO_GROUP_ITEM_VALUE as P, SelectionStoreConnector as S, getParsedGroup as a, isSameGroup as b, GROUP_DEPTH as c, PSEUDO_GROUP_ITEM_ID as d, GROUPING_ROW_TYPE as e, PSEUDO_GROUP_COLUMN as f, getGroupingName as g, GROUP_EXPAND_EVENT as h, isGrouping as i, gatherGrouping as j, isGroupingColumn as k, GROUP_EXPAND_BTN as l, PSEUDO_GROUP_ITEM as m, getRange as n, isRangeSingleCell as o };
|
|
@@ -13,7 +13,7 @@ import { t as timeout, g as getScrollbarWidth } from './utils.js';
|
|
|
13
13
|
import { i as isFilterBtn, F as FILTER_PROP } from './filter.button.js';
|
|
14
14
|
import { i as isString_1, d as defineCustomElement$a } from './revogr-edit2.js';
|
|
15
15
|
import { t as toInteger_1 } from './toInteger.js';
|
|
16
|
-
import { i as isGrouping, g as getGroupingName,
|
|
16
|
+
import { i as isGrouping, g as getGroupingName, G as GROUP_EXPANDED, a as getParsedGroup, b as isSameGroup, c as GROUP_DEPTH, P as PSEUDO_GROUP_ITEM_VALUE, d as PSEUDO_GROUP_ITEM_ID, e as GROUPING_ROW_TYPE, f as PSEUDO_GROUP_COLUMN, h as GROUP_EXPAND_EVENT, j as gatherGrouping, k as isGroupingColumn, E as EMPTY_INDEX, S as SelectionStoreConnector } from './columnService.js';
|
|
17
17
|
import { g as getLastCell, H as HEADER_SLOT, C as CONTENT_SLOT, F as FOOTER_SLOT, D as DATA_SLOT, d as defineCustomElement$2 } from './revogr-viewport-scroll2.js';
|
|
18
18
|
import { l as lodash, d as defineCustomElement$3 } from './revogr-temp-range2.js';
|
|
19
19
|
import { d as debounce_1 } from './debounce.js';
|
|
@@ -1936,19 +1936,18 @@ class ExportFilePlugin extends BasePlugin {
|
|
|
1936
1936
|
// provide collapse data
|
|
1937
1937
|
function doCollapse(pIndex, source) {
|
|
1938
1938
|
const model = source[pIndex];
|
|
1939
|
-
const
|
|
1939
|
+
const collapseValue = model[PSEUDO_GROUP_ITEM_VALUE];
|
|
1940
1940
|
const trimmed = {};
|
|
1941
1941
|
let i = pIndex + 1;
|
|
1942
1942
|
const total = source.length;
|
|
1943
1943
|
while (i < total) {
|
|
1944
1944
|
const currentModel = source[i];
|
|
1945
1945
|
if (isGrouping(currentModel)) {
|
|
1946
|
-
|
|
1946
|
+
const currentValue = currentModel[PSEUDO_GROUP_ITEM_VALUE];
|
|
1947
|
+
if (!currentValue.length || !currentValue.startsWith(collapseValue + ',')) {
|
|
1947
1948
|
break;
|
|
1948
1949
|
}
|
|
1949
|
-
|
|
1950
|
-
currentModel[GROUP_EXPANDED] = false;
|
|
1951
|
-
}
|
|
1950
|
+
currentModel[GROUP_EXPANDED] = false;
|
|
1952
1951
|
}
|
|
1953
1952
|
trimmed[i++] = true;
|
|
1954
1953
|
}
|
|
@@ -2188,7 +2187,7 @@ class GroupingRowPlugin extends BasePlugin {
|
|
|
2188
2187
|
* sorting applied need to clear grouping and apply again
|
|
2189
2188
|
* based on new results whole grouping order will changed
|
|
2190
2189
|
*/
|
|
2191
|
-
this.addEventListener('afterSortingApply', () => this.doSourceUpdate());
|
|
2190
|
+
this.addEventListener('afterSortingApply', () => this.doSourceUpdate(Object.assign({}, this.options)));
|
|
2192
2191
|
/**
|
|
2193
2192
|
* Apply logic for focus inside of grouping
|
|
2194
2193
|
* We can't focus on grouping rows, navigation only inside of groups for now
|
|
@@ -2208,6 +2207,7 @@ class GroupingRowPlugin extends BasePlugin {
|
|
|
2208
2207
|
* Initiated when need to reapply grouping
|
|
2209
2208
|
*/
|
|
2210
2209
|
doSourceUpdate(options) {
|
|
2210
|
+
var _a;
|
|
2211
2211
|
if (!this.hasProps) {
|
|
2212
2212
|
return;
|
|
2213
2213
|
}
|
|
@@ -2220,11 +2220,9 @@ class GroupingRowPlugin extends BasePlugin {
|
|
|
2220
2220
|
* Group again
|
|
2221
2221
|
* @param oldNewIndexMap - provides us mapping with new indexes vs old indexes
|
|
2222
2222
|
*/
|
|
2223
|
-
const { sourceWithGroups, depth, trimmed, oldNewIndexMap, childrenByGroup } = gatherGrouping(source,
|
|
2224
|
-
// filter
|
|
2225
|
-
item => { var _a; return (_a = this.options) === null || _a === void 0 ? void 0 : _a.props.map(key => item[key]); }, Object.assign({ prevExpanded }, options));
|
|
2223
|
+
const { sourceWithGroups, depth, trimmed, oldNewIndexMap, childrenByGroup } = gatherGrouping(source, ((_a = this.options) === null || _a === void 0 ? void 0 : _a.props) || [], Object.assign({ prevExpanded }, options));
|
|
2226
2224
|
// setup source
|
|
2227
|
-
this.providers.dataProvider.setData(sourceWithGroups, GROUPING_ROW_TYPE, { depth, customRenderer: options.groupLabelTemplate }, true);
|
|
2225
|
+
this.providers.dataProvider.setData(sourceWithGroups, GROUPING_ROW_TYPE, { depth, customRenderer: options === null || options === void 0 ? void 0 : options.groupLabelTemplate }, true);
|
|
2228
2226
|
this.updateTrimmed(trimmed, childrenByGroup, oldNewIndexes, oldNewIndexMap);
|
|
2229
2227
|
}
|
|
2230
2228
|
/**
|
|
@@ -2233,14 +2231,13 @@ class GroupingRowPlugin extends BasePlugin {
|
|
|
2233
2231
|
* If source came from other plugin
|
|
2234
2232
|
*/
|
|
2235
2233
|
onDataSet(data) {
|
|
2234
|
+
var _a;
|
|
2236
2235
|
if (!this.hasProps || !(data === null || data === void 0 ? void 0 : data.source) || !data.source.length) {
|
|
2237
2236
|
return;
|
|
2238
2237
|
}
|
|
2239
2238
|
const source = data.source.filter(s => !isGrouping(s));
|
|
2240
2239
|
const expanded = this.revogrid.grouping || {};
|
|
2241
|
-
const { sourceWithGroups, depth, trimmed, oldNewIndexMap, childrenByGroup } = gatherGrouping(source,
|
|
2242
|
-
// filter
|
|
2243
|
-
item => { var _a; return (_a = this.options) === null || _a === void 0 ? void 0 : _a.props.map(key => item[key]); }, Object.assign({}, (expanded || {})));
|
|
2240
|
+
const { sourceWithGroups, depth, trimmed, oldNewIndexMap, childrenByGroup } = gatherGrouping(source, ((_a = this.options) === null || _a === void 0 ? void 0 : _a.props) || [], Object.assign({}, (expanded || {})));
|
|
2244
2241
|
data.source = sourceWithGroups;
|
|
2245
2242
|
this.providers.dataProvider.setGrouping({ depth });
|
|
2246
2243
|
this.updateTrimmed(trimmed, childrenByGroup, oldNewIndexMap);
|
|
@@ -3150,7 +3147,8 @@ const RevoGridComponent = /*@__PURE__*/ proxyCustomElement(class extends HTMLEle
|
|
|
3150
3147
|
return;
|
|
3151
3148
|
}
|
|
3152
3149
|
await timeout();
|
|
3153
|
-
|
|
3150
|
+
const colGroup = rgCol.pin || 'rgCol';
|
|
3151
|
+
(_a = this.viewport) === null || _a === void 0 ? void 0 : _a.setEdit(rgRow, this.columnProvider.getColumnIndexByProp(prop, colGroup), colGroup, rowSource);
|
|
3154
3152
|
}
|
|
3155
3153
|
/**
|
|
3156
3154
|
* Register new virtual node inside of grid
|
|
@@ -51,11 +51,15 @@ const GroupingRowRenderer = (props) => {
|
|
|
51
51
|
if (!hasExpand) {
|
|
52
52
|
return h(RowRenderer, Object.assign({}, props, { rowClass: "groupingRow", depth: depth }));
|
|
53
53
|
}
|
|
54
|
+
if (groupingCustomRenderer) {
|
|
55
|
+
return (h(RowRenderer, Object.assign({}, props, { rowClass: "groupingRow", depth: depth }),
|
|
56
|
+
h("div", { onClick: e => expandEvent(e, model, itemIndex) }, groupingCustomRenderer(h, { name, itemIndex, expanded, depth }))));
|
|
57
|
+
}
|
|
54
58
|
return (h(RowRenderer, Object.assign({}, props, { rowClass: "groupingRow", depth: depth }),
|
|
55
59
|
h("button", { class: { [GROUP_EXPAND_BTN]: true }, onClick: e => expandEvent(e, model, itemIndex) },
|
|
56
60
|
h("svg", { "aria-hidden": "true", style: { transform: `rotate(${!expanded ? -90 : 0}deg)` }, focusable: "false", viewBox: "0 0 448 512" },
|
|
57
61
|
h("path", { fill: "currentColor", d: "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" }))),
|
|
58
|
-
|
|
62
|
+
name));
|
|
59
63
|
};
|
|
60
64
|
|
|
61
65
|
const revogrDataStyleCss = ".revo-drag-icon{-webkit-mask-image:url(\"data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg viewBox='0 0 438 383' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%3E%3Cpath d='M421.875,70.40625 C426.432292,70.40625 430.175781,68.9414062 433.105469,66.0117188 C436.035156,63.0820312 437.5,59.3385417 437.5,54.78125 L437.5,54.78125 L437.5,15.71875 C437.5,11.1614583 436.035156,7.41796875 433.105469,4.48828125 C430.175781,1.55859375 426.432292,0.09375 421.875,0.09375 L421.875,0.09375 L15.625,0.09375 C11.0677083,0.09375 7.32421875,1.55859375 4.39453125,4.48828125 C1.46484375,7.41796875 0,11.1614583 0,15.71875 L0,15.71875 L0,54.78125 C0,59.3385417 1.46484375,63.0820312 4.39453125,66.0117188 C7.32421875,68.9414062 11.0677083,70.40625 15.625,70.40625 L15.625,70.40625 L421.875,70.40625 Z M421.875,226.65625 C426.432292,226.65625 430.175781,225.191406 433.105469,222.261719 C436.035156,219.332031 437.5,215.588542 437.5,211.03125 L437.5,211.03125 L437.5,171.96875 C437.5,167.411458 436.035156,163.667969 433.105469,160.738281 C430.175781,157.808594 426.432292,156.34375 421.875,156.34375 L421.875,156.34375 L15.625,156.34375 C11.0677083,156.34375 7.32421875,157.808594 4.39453125,160.738281 C1.46484375,163.667969 0,167.411458 0,171.96875 L0,171.96875 L0,211.03125 C0,215.588542 1.46484375,219.332031 4.39453125,222.261719 C7.32421875,225.191406 11.0677083,226.65625 15.625,226.65625 L15.625,226.65625 L421.875,226.65625 Z M421.875,382.90625 C426.432292,382.90625 430.175781,381.441406 433.105469,378.511719 C436.035156,375.582031 437.5,371.838542 437.5,367.28125 L437.5,367.28125 L437.5,328.21875 C437.5,323.661458 436.035156,319.917969 433.105469,316.988281 C430.175781,314.058594 426.432292,312.59375 421.875,312.59375 L421.875,312.59375 L15.625,312.59375 C11.0677083,312.59375 7.32421875,314.058594 4.39453125,316.988281 C1.46484375,319.917969 0,323.661458 0,328.21875 L0,328.21875 L0,367.28125 C0,371.838542 1.46484375,375.582031 4.39453125,378.511719 C7.32421875,381.441406 11.0677083,382.90625 15.625,382.90625 L15.625,382.90625 L421.875,382.90625 Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg viewBox='0 0 438 383' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%3E%3Cpath d='M421.875,70.40625 C426.432292,70.40625 430.175781,68.9414062 433.105469,66.0117188 C436.035156,63.0820312 437.5,59.3385417 437.5,54.78125 L437.5,54.78125 L437.5,15.71875 C437.5,11.1614583 436.035156,7.41796875 433.105469,4.48828125 C430.175781,1.55859375 426.432292,0.09375 421.875,0.09375 L421.875,0.09375 L15.625,0.09375 C11.0677083,0.09375 7.32421875,1.55859375 4.39453125,4.48828125 C1.46484375,7.41796875 0,11.1614583 0,15.71875 L0,15.71875 L0,54.78125 C0,59.3385417 1.46484375,63.0820312 4.39453125,66.0117188 C7.32421875,68.9414062 11.0677083,70.40625 15.625,70.40625 L15.625,70.40625 L421.875,70.40625 Z M421.875,226.65625 C426.432292,226.65625 430.175781,225.191406 433.105469,222.261719 C436.035156,219.332031 437.5,215.588542 437.5,211.03125 L437.5,211.03125 L437.5,171.96875 C437.5,167.411458 436.035156,163.667969 433.105469,160.738281 C430.175781,157.808594 426.432292,156.34375 421.875,156.34375 L421.875,156.34375 L15.625,156.34375 C11.0677083,156.34375 7.32421875,157.808594 4.39453125,160.738281 C1.46484375,163.667969 0,167.411458 0,171.96875 L0,171.96875 L0,211.03125 C0,215.588542 1.46484375,219.332031 4.39453125,222.261719 C7.32421875,225.191406 11.0677083,226.65625 15.625,226.65625 L15.625,226.65625 L421.875,226.65625 Z M421.875,382.90625 C426.432292,382.90625 430.175781,381.441406 433.105469,378.511719 C436.035156,375.582031 437.5,371.838542 437.5,367.28125 L437.5,367.28125 L437.5,328.21875 C437.5,323.661458 436.035156,319.917969 433.105469,316.988281 C430.175781,314.058594 426.432292,312.59375 421.875,312.59375 L421.875,312.59375 L15.625,312.59375 C11.0677083,312.59375 7.32421875,314.058594 4.39453125,316.988281 C1.46484375,319.917969 0,323.661458 0,328.21875 L0,328.21875 L0,367.28125 C0,371.838542 1.46484375,375.582031 4.39453125,378.511719 C7.32421875,381.441406 11.0677083,382.90625 15.625,382.90625 L15.625,382.90625 L421.875,382.90625 Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E\");width:11px;height:7px;background-size:cover;background-repeat:no-repeat}.revo-alt-icon{-webkit-mask-image:url(\"data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg viewBox='0 0 384 383' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%3E%3Cpath d='M192.4375,383 C197.424479,383 201.663411,381.254557 205.154297,377.763672 L205.154297,377.763672 L264.25,318.667969 C270.234375,312.683594 271.605794,306.075846 268.364258,298.844727 C265.122721,291.613607 259.51237,287.998047 251.533203,287.998047 L251.533203,287.998047 L213.382812,287.998047 L213.382812,212.445312 L288.935547,212.445312 L288.935547,250.595703 C288.935547,258.57487 292.551107,264.185221 299.782227,267.426758 C307.013346,270.668294 313.621094,269.296875 319.605469,263.3125 L319.605469,263.3125 L378.701172,204.216797 C382.192057,200.725911 383.9375,196.486979 383.9375,191.5 C383.9375,186.513021 382.192057,182.274089 378.701172,178.783203 L378.701172,178.783203 L319.605469,119.6875 C313.621094,114.201823 307.013346,112.955078 299.782227,115.947266 C292.551107,118.939453 288.935547,124.42513 288.935547,132.404297 L288.935547,132.404297 L288.935547,170.554688 L213.382812,170.554688 L213.382812,95.0019531 L251.533203,95.0019531 C259.51237,95.0019531 264.998047,91.3863932 267.990234,84.1552734 C270.982422,76.9241536 269.735677,70.3164062 264.25,64.3320312 L264.25,64.3320312 L205.154297,5.23632812 C201.663411,1.74544271 197.424479,0 192.4375,0 C187.450521,0 183.211589,1.74544271 179.720703,5.23632812 L179.720703,5.23632812 L120.625,64.3320312 C114.640625,70.3164062 113.269206,76.9241536 116.510742,84.1552734 C119.752279,91.3863932 125.36263,95.0019531 133.341797,95.0019531 L133.341797,95.0019531 L171.492188,95.0019531 L171.492188,170.554688 L95.9394531,170.554688 L95.9394531,132.404297 C95.9394531,124.42513 92.3238932,118.814779 85.0927734,115.573242 C77.8616536,112.331706 71.2539062,113.703125 65.2695312,119.6875 L65.2695312,119.6875 L6.17382812,178.783203 C2.68294271,182.274089 0.9375,186.513021 0.9375,191.5 C0.9375,196.486979 2.68294271,200.725911 6.17382812,204.216797 L6.17382812,204.216797 L65.2695312,263.3125 C71.2539062,268.798177 77.8616536,270.044922 85.0927734,267.052734 C92.3238932,264.060547 95.9394531,258.57487 95.9394531,250.595703 L95.9394531,250.595703 L95.9394531,212.445312 L171.492188,212.445312 L171.492188,287.998047 L133.341797,287.998047 C125.36263,287.998047 119.876953,291.613607 116.884766,298.844727 C113.892578,306.075846 115.139323,312.683594 120.625,318.667969 L120.625,318.667969 L179.720703,377.763672 C183.211589,381.254557 187.450521,383 192.4375,383 Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg viewBox='0 0 384 383' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%3E%3Cpath d='M192.4375,383 C197.424479,383 201.663411,381.254557 205.154297,377.763672 L205.154297,377.763672 L264.25,318.667969 C270.234375,312.683594 271.605794,306.075846 268.364258,298.844727 C265.122721,291.613607 259.51237,287.998047 251.533203,287.998047 L251.533203,287.998047 L213.382812,287.998047 L213.382812,212.445312 L288.935547,212.445312 L288.935547,250.595703 C288.935547,258.57487 292.551107,264.185221 299.782227,267.426758 C307.013346,270.668294 313.621094,269.296875 319.605469,263.3125 L319.605469,263.3125 L378.701172,204.216797 C382.192057,200.725911 383.9375,196.486979 383.9375,191.5 C383.9375,186.513021 382.192057,182.274089 378.701172,178.783203 L378.701172,178.783203 L319.605469,119.6875 C313.621094,114.201823 307.013346,112.955078 299.782227,115.947266 C292.551107,118.939453 288.935547,124.42513 288.935547,132.404297 L288.935547,132.404297 L288.935547,170.554688 L213.382812,170.554688 L213.382812,95.0019531 L251.533203,95.0019531 C259.51237,95.0019531 264.998047,91.3863932 267.990234,84.1552734 C270.982422,76.9241536 269.735677,70.3164062 264.25,64.3320312 L264.25,64.3320312 L205.154297,5.23632812 C201.663411,1.74544271 197.424479,0 192.4375,0 C187.450521,0 183.211589,1.74544271 179.720703,5.23632812 L179.720703,5.23632812 L120.625,64.3320312 C114.640625,70.3164062 113.269206,76.9241536 116.510742,84.1552734 C119.752279,91.3863932 125.36263,95.0019531 133.341797,95.0019531 L133.341797,95.0019531 L171.492188,95.0019531 L171.492188,170.554688 L95.9394531,170.554688 L95.9394531,132.404297 C95.9394531,124.42513 92.3238932,118.814779 85.0927734,115.573242 C77.8616536,112.331706 71.2539062,113.703125 65.2695312,119.6875 L65.2695312,119.6875 L6.17382812,178.783203 C2.68294271,182.274089 0.9375,186.513021 0.9375,191.5 C0.9375,196.486979 2.68294271,200.725911 6.17382812,204.216797 L6.17382812,204.216797 L65.2695312,263.3125 C71.2539062,268.798177 77.8616536,270.044922 85.0927734,267.052734 C92.3238932,264.060547 95.9394531,258.57487 95.9394531,250.595703 L95.9394531,250.595703 L95.9394531,212.445312 L171.492188,212.445312 L171.492188,287.998047 L133.341797,287.998047 C125.36263,287.998047 119.876953,291.613607 116.884766,298.844727 C113.892578,306.075846 115.139323,312.683594 120.625,318.667969 L120.625,318.667969 L179.720703,377.763672 C183.211589,381.254557 187.450521,383 192.4375,383 Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E\");width:11px;height:11px;background-size:cover;background-repeat:no-repeat}.arrow-down{position:absolute;right:5px;top:0}.arrow-down svg{width:8px;margin-top:5px;margin-left:5px;opacity:0.4}.cell-value-wrapper{margin-right:10px;overflow:hidden;text-overflow:ellipsis}.revo-button{position:relative;overflow:hidden;color:#fff;background-color:#6200ee;height:34px;line-height:34px;padding:0 15px;outline:0;border:0;border-radius:7px;box-sizing:border-box;cursor:pointer}.revo-button.green{background-color:#2ee072;border:1px solid #20d565}.revo-button.red{background-color:#E0662E;border:1px solid #d55920}.revo-button:disabled,.revo-button[disabled]{cursor:not-allowed !important;filter:opacity(0.35) !important}.revo-button.light{border:2px solid #cedefa;line-height:32px;background:none;color:#4876ca;box-shadow:none}revogr-data{display:block;width:100%;position:relative}revogr-data .rgRow{position:absolute;width:100%;left:0}revogr-data .rgRow.groupingRow{font-weight:600}revogr-data .rgRow.groupingRow .group-expand{width:25px;height:100%;max-height:25px;margin-right:2px;background-color:transparent;border-color:transparent}revogr-data .rgRow.groupingRow .group-expand svg{width:7px}revogr-data .revo-draggable{border:none;height:32px;display:inline-flex;outline:0;padding:0;font-size:0.8125rem;box-sizing:border-box;align-items:center;white-space:nowrap;vertical-align:middle;justify-content:center;text-decoration:none;width:24px;height:100%;cursor:pointer}revogr-data .revo-draggable>.revo-drag-icon{vertical-align:middle;display:inline-block;pointer-events:none;transition:background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms}revogr-data .rgCell{top:0;position:absolute;box-sizing:border-box;height:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}revogr-data .rgCell.align-center{text-align:center}revogr-data .rgCell.align-left{text-align:left}revogr-data .rgCell.align-right{text-align:right}";
|