eru-grid 0.0.22-c → 0.0.22-e
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/fesm2022/eru-grid.mjs +88 -385
- package/fesm2022/eru-grid.mjs.map +1 -1
- package/index.d.ts +1 -29
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -312,22 +312,10 @@ declare class PivotTransformService {
|
|
|
312
312
|
* Generate all possible dimension paths at a specific level
|
|
313
313
|
*/
|
|
314
314
|
private generateCombinationsAtLevel;
|
|
315
|
-
/**
|
|
316
|
-
* Generate columns with properly positioned subtotal columns
|
|
317
|
-
*/
|
|
318
|
-
private generateColumnsWithInterleavedSubtotals;
|
|
319
|
-
/**
|
|
320
|
-
* Group combinations by dimension levels for subtotal insertion
|
|
321
|
-
*/
|
|
322
|
-
private groupCombinationsByDimensions;
|
|
323
315
|
/**
|
|
324
316
|
* Add interleaved subtotals within column groups
|
|
325
317
|
*/
|
|
326
318
|
private addInterleavedSubtotals;
|
|
327
|
-
/**
|
|
328
|
-
* Group pivot columns by dimension prefixes for subtotal insertion
|
|
329
|
-
*/
|
|
330
|
-
private groupPivotColumnsByDimensions;
|
|
331
319
|
/**
|
|
332
320
|
* Create a subtotal column for a specific dimension prefix
|
|
333
321
|
*/
|
|
@@ -412,7 +400,7 @@ declare class PivotTransformService {
|
|
|
412
400
|
parentSpan: number;
|
|
413
401
|
}>;
|
|
414
402
|
/**
|
|
415
|
-
* Insert column subtotal headers at the correct positions within each
|
|
403
|
+
* Insert column subtotal headers at the correct positions within each dimension group
|
|
416
404
|
*/
|
|
417
405
|
private insertColumnSubtotalHeaders;
|
|
418
406
|
/**
|
|
@@ -435,22 +423,6 @@ declare class PivotTransformService {
|
|
|
435
423
|
* Extract all dimension values arrays from headers or source data
|
|
436
424
|
*/
|
|
437
425
|
private extractAllDimensionValues;
|
|
438
|
-
/**
|
|
439
|
-
* Group rating headers by their priority parent - GENERIC VERSION
|
|
440
|
-
*/
|
|
441
|
-
private groupRatingHeadersByPriority;
|
|
442
|
-
/**
|
|
443
|
-
* Group subtotals by their priority
|
|
444
|
-
*/
|
|
445
|
-
private groupSubtotalsByPriority;
|
|
446
|
-
/**
|
|
447
|
-
* Group status headers by their rating parent (combination) - GENERIC VERSION
|
|
448
|
-
*/
|
|
449
|
-
private groupStatusHeadersByRating;
|
|
450
|
-
/**
|
|
451
|
-
* Group subtotals by their rating (Priority+Rating combination)
|
|
452
|
-
*/
|
|
453
|
-
private groupSubtotalsByRating;
|
|
454
426
|
/**
|
|
455
427
|
* Add parent group keys to headers based on their position and row level - GENERIC VERSION
|
|
456
428
|
*/
|