@univerjs-pro/engine-pivot 0.3.0 → 0.4.0-alpha.0

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.
@@ -1,7 +1,7 @@
1
- import { FieldsCollection } from '../field/fields-collection';
2
- import { PivotDataFieldDataTypeEnum, PivotSubtotalTypeEnum, IPivotTableChangeSet, IPivotTableFilterInfo, IPivotTableOptions, IPivotTableQueryData, IPivotTableSnapshot, IPivotTableSortInfo, PivotTableFiledAreaEnum, PivotTableValuePositionEnum } from '../types';
3
1
  import { DataField } from '../field/data-field';
2
+ import { FieldsCollection } from '../field/fields-collection';
4
3
  import { PivotView } from '../layout/pivot-view';
4
+ import { IPivotTableChangeSet, IPivotTableFilterInfo, IPivotTableOptions, IPivotTableQueryData, IPivotTableSnapshot, IPivotTableSortInfo, PivotTableFiledAreaEnum, PivotTableValuePositionEnum, PivotDataFieldDataTypeEnum, PivotSubtotalTypeEnum } from '../types';
5
5
  import { PivotModel } from './model';
6
6
  import { PivotTableLabelField, PivotTableValueField } from './table-field';
7
7
  /**
@@ -225,6 +225,7 @@ export declare class PivotTable {
225
225
  * @returns {number[]} -Sorted row numbers
226
226
  */
227
227
  getIndexesByPathStr(tuple: string[][]): number[];
228
+ setDirty(dirty: boolean): void;
228
229
  query(config?: IPivotTableQueryData): PivotView;
229
230
  toJSON(): IPivotTableSnapshot;
230
231
  fromJSON(data: IPivotTableSnapshot): void;