@univerjs-pro/engine-pivot 0.25.0 → 0.25.2
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/pivot/model.d.ts +5 -2
- package/lib/types/util.d.ts +6 -2
- package/lib/umd/index.js +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import {
|
|
1
|
+
import type { PivotSubtotalTypeEnum } from '../types/enum';
|
|
2
|
+
import type { IPivotTableFilterInfo, IPivotTableQueryData, IPivotTableSortInfo, IPivotTableValueFilter, IValueFilterInfoItem } from '../types/interface';
|
|
3
|
+
import type { IPivotTableChangeSet, IPivotTableSnapshot } from '../types/json-types';
|
|
4
|
+
import type { IPivotTableOptions } from '../types/layout-type';
|
|
5
|
+
import { PivotLayoutTypeEnum, PivotTableFiledAreaEnum, PivotTableValuePositionEnum } from '../types/enum';
|
|
3
6
|
import { PivotTableLabelField, PivotTableValueField } from './table-field';
|
|
4
7
|
/**
|
|
5
8
|
* @class PivotModel represents a config model for a pivot table.
|
package/lib/types/util.d.ts
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import type { BaseGroupField } from './field/base-group-field';
|
|
2
2
|
import type { DataField } from './field/data-field';
|
|
3
3
|
import type { DateGroupField } from './field/date-group-field';
|
|
4
|
-
import type {
|
|
4
|
+
import type { PivotErrorTypeEnum, ST_PivotFilterOperatorEnum } from './types/enum';
|
|
5
|
+
import type { IDataFieldValue, IDateValue, IPivotTableCustomFilter, IPivotTableDateGroupInfo, IPivotTableFilterInfo, IPivotTableGroupInfo, IPivotTableLabelCustomSortInfo, IPivotTableManualFilter, IPivotTableSortInfo, IValueFilterInfoItem } from './types/interface';
|
|
6
|
+
import type { IBaseGroupFieldJSON, IDataFieldJSON, IDateGroupFieldJSON } from './types/json-types';
|
|
7
|
+
import type { IMeasuresMapItem, ITupleItem } from './types/summary-type';
|
|
5
8
|
import { PivotTuple } from './summary/pivot-tuple';
|
|
6
|
-
import {
|
|
9
|
+
import { PivotDataFieldDataTypeEnum, PivotDateGroupFieldDateTypeEnum, PivotSubtotalTypeEnum, PivotTableFiledAreaEnum } from './types/enum';
|
|
10
|
+
import { PivotCellStyleTypeEnum } from './types/layout-type';
|
|
7
11
|
/**
|
|
8
12
|
* - judge the value is date like type
|
|
9
13
|
* @param {IDataFieldValue} value the date like value
|