@univerjs-pro/engine-pivot 0.8.3-nightly.202507031607 → 0.8.3
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/lib/cjs/index.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/index.js +1 -1
- package/lib/types/index.d.ts +1 -1
- package/lib/types/layout/compact.d.ts +1 -1
- package/lib/types/layout/outline.d.ts +1 -1
- package/lib/umd/index.js +1 -1
- package/package.json +1 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -10,5 +10,5 @@ export { PivotModel } from './pivot/model';
|
|
|
10
10
|
export { cloneLabelFieldToValueField, cloneValueFieldToLabelField, createLabelField, createValueField, PivotTableFieldBase, PivotTableLabelField, PivotTableValueField, } from './pivot/table-field';
|
|
11
11
|
export { DataFieldManager } from './field/data-field-manager';
|
|
12
12
|
export { isErrorValue, isPrefixValue, LabelViewItem, PageViewItem, PivotView, PivotViewItem } from './layout/pivot-view';
|
|
13
|
-
export { excelDateToUnixMilliseconds, generateHexNumber, getAutoDisplayName,
|
|
13
|
+
export { excelDateToUnixMilliseconds, generateHexNumber, getAutoDisplayName, isCustomFilter, isBaseGroupField, isDateGroupField, isDateValue, isManualFilter, isValueFilter, isDateGroupInfo, isDateGroupFieldJSON, } from './util';
|
|
14
14
|
export { setDefaultSortType } from './const';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { PivotTable } from '../pivot/pivot-table';
|
|
2
2
|
import { SummaryManager } from '../summary/summary-manager';
|
|
3
3
|
import { IPivotLayoutCtx, IPivotTableQueryData } from '../types';
|
|
4
|
-
import { PivotView } from './pivot-view';
|
|
5
4
|
import { BaseLayout } from './base-layout';
|
|
5
|
+
import { PivotView } from './pivot-view';
|
|
6
6
|
export declare class CompactLayout extends BaseLayout {
|
|
7
7
|
static layout(pivotTable: PivotTable, SummaryManager: SummaryManager, queryData: IPivotTableQueryData): PivotView;
|
|
8
8
|
static layoutRow(ctx: IPivotLayoutCtx): void;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { PivotTable } from '../pivot/pivot-table';
|
|
2
2
|
import { SummaryManager } from '../summary/summary-manager';
|
|
3
3
|
import { IPivotLayoutCtx, IPivotTableQueryData } from '../types';
|
|
4
|
-
import { PivotView } from './pivot-view';
|
|
5
4
|
import { BaseLayout } from './base-layout';
|
|
5
|
+
import { PivotView } from './pivot-view';
|
|
6
6
|
export declare class OutlineLayout extends BaseLayout {
|
|
7
7
|
static layout(pivotTable: PivotTable, SummaryManager: SummaryManager, queryData: IPivotTableQueryData): PivotView;
|
|
8
8
|
static layoutRow(ctx: IPivotLayoutCtx): void;
|