@univerjs-pro/sheets-pivot-ui 0.7.0 → 0.8.0-beta.1
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/cjs/locale/en-US.js +1 -1
- package/lib/cjs/locale/fa-IR.js +1 -1
- package/lib/cjs/locale/fr-FR.js +1 -1
- package/lib/cjs/locale/ru-RU.js +1 -1
- package/lib/cjs/locale/vi-VN.js +1 -1
- package/lib/cjs/locale/zh-CN.js +1 -1
- package/lib/cjs/locale/zh-TW.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/es/locale/en-US.js +1 -1
- package/lib/es/locale/fa-IR.js +1 -1
- package/lib/es/locale/fr-FR.js +1 -1
- package/lib/es/locale/ru-RU.js +1 -1
- package/lib/es/locale/vi-VN.js +1 -1
- package/lib/es/locale/zh-CN.js +1 -1
- package/lib/es/locale/zh-TW.js +1 -1
- package/lib/index.css +1 -1
- package/lib/index.js +1 -1
- package/lib/locale/en-US.js +1 -1
- package/lib/locale/fa-IR.js +1 -1
- package/lib/locale/fr-FR.js +1 -1
- package/lib/locale/ru-RU.js +1 -1
- package/lib/locale/vi-VN.js +1 -1
- package/lib/locale/zh-CN.js +1 -1
- package/lib/locale/zh-TW.js +1 -1
- package/lib/types/locale/en-US.d.ts +101 -2
- package/lib/types/locale/fa-IR.d.ts +2 -2
- package/lib/types/locale/fr-FR.d.ts +2 -2
- package/lib/types/locale/ru-RU.d.ts +2 -2
- package/lib/types/locale/vi-VN.d.ts +2 -2
- package/lib/types/locale/zh-CN.d.ts +2 -101
- package/lib/types/locale/zh-TW.d.ts +2 -2
- package/lib/types/views/components/util.d.ts +1 -5
- package/lib/umd/index.js +1 -1
- package/lib/umd/locale/en-US.js +1 -1
- package/lib/umd/locale/fa-IR.js +1 -1
- package/lib/umd/locale/fr-FR.js +1 -1
- package/lib/umd/locale/ru-RU.js +1 -1
- package/lib/umd/locale/vi-VN.js +1 -1
- package/lib/umd/locale/zh-CN.js +1 -1
- package/lib/umd/locale/zh-TW.js +1 -1
- package/package.json +15 -15
@@ -1,6 +1,6 @@
|
|
1
|
-
import { ICommandService, IRange, Nullable, Worksheet } from '@univerjs/core';
|
2
1
|
import { IPivotTableFilterInfo, PivotSubtotalTypeEnum, PivotTableFiledAreaEnum, PivotTableValuePositionEnum } from '@univerjs-pro/engine-pivot';
|
3
2
|
import { IPivotPanelDataInfo, IUnitRangeNameWithSubUnitId } from '@univerjs-pro/sheets-pivot';
|
3
|
+
import { ICommandService, IRange, Nullable, Worksheet } from '@univerjs/core';
|
4
4
|
import { DraggingStyle, NotDraggingStyle } from 'react-beautiful-dnd';
|
5
5
|
import { PivotFilterStatus } from '../../const';
|
6
6
|
export declare const PivotDropId = "PivotDropId";
|
@@ -51,10 +51,6 @@ interface ISummarizeListItem {
|
|
51
51
|
}
|
52
52
|
export declare const SummarizeByList: ISummarizeListItem[];
|
53
53
|
export declare const getDecimalFromPattern: (pattern: string, defaultValue?: number) => number;
|
54
|
-
/**
|
55
|
-
* Determines whether two pattern are equal, excluding differences in decimal places
|
56
|
-
*/
|
57
|
-
export declare const isPatternEqualWithoutDecimal: (patternA: string, patternB: string) => boolean;
|
58
54
|
export declare const getDecimalString: (length: number) => string;
|
59
55
|
export declare const setPatternDecimal: (patterns: string, decimalLength: number) => string;
|
60
56
|
export declare const isPatternHasDecimal: (pattern: string) => boolean;
|