@univerjs-pro/engine-pivot 0.15.5 → 0.16.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.
- 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/util.d.ts +1 -1
- package/lib/umd/index.js +1 -1
- package/package.json +1 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -11,4 +11,4 @@ export { cloneLabelFieldToValueField, cloneValueFieldToLabelField, createLabelFi
|
|
|
11
11
|
export { PivotTuple } from './summary/pivot-tuple';
|
|
12
12
|
export { SummaryManager } from './summary/summary-manager';
|
|
13
13
|
export * from './types';
|
|
14
|
-
export { excelDateToUnixMilliseconds, generateHexNumber, getAutoDisplayName, isBaseGroupField, isCustomFilter, isDateGroupField, isDateGroupFieldJSON, isDateGroupInfo, isDateValue,
|
|
14
|
+
export { excelDateToUnixMilliseconds, generateHexNumber, getAutoDisplayName, isBaseGroupField, isCustomFilter, isDateGroupField, isDateGroupFieldJSON, isDateGroupInfo, isDateValue, isManualPivotFilter, isValueFilter, } from './util';
|
package/lib/types/util.d.ts
CHANGED
|
@@ -56,7 +56,7 @@ export declare function getCollapse(collapseInfo: Record<string, boolean | Recor
|
|
|
56
56
|
* @param {IPivotTableFilterInfo} filterInfo - the dimension filter info
|
|
57
57
|
* @returns {boolean} return true if the filter info is manual filter
|
|
58
58
|
*/
|
|
59
|
-
export declare function
|
|
59
|
+
export declare function isManualPivotFilter(filterInfo: IPivotTableFilterInfo): filterInfo is IPivotTableManualFilter;
|
|
60
60
|
/**
|
|
61
61
|
* -judge the filter info is customFilter filter
|
|
62
62
|
* @param {IPivotTableFilterInfo} filterInfo - the dimension filter info
|