@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.
Files changed (42) hide show
  1. package/lib/cjs/index.js +1 -1
  2. package/lib/cjs/locale/en-US.js +1 -1
  3. package/lib/cjs/locale/fa-IR.js +1 -1
  4. package/lib/cjs/locale/fr-FR.js +1 -1
  5. package/lib/cjs/locale/ru-RU.js +1 -1
  6. package/lib/cjs/locale/vi-VN.js +1 -1
  7. package/lib/cjs/locale/zh-CN.js +1 -1
  8. package/lib/cjs/locale/zh-TW.js +1 -1
  9. package/lib/es/index.js +1 -1
  10. package/lib/es/locale/en-US.js +1 -1
  11. package/lib/es/locale/fa-IR.js +1 -1
  12. package/lib/es/locale/fr-FR.js +1 -1
  13. package/lib/es/locale/ru-RU.js +1 -1
  14. package/lib/es/locale/vi-VN.js +1 -1
  15. package/lib/es/locale/zh-CN.js +1 -1
  16. package/lib/es/locale/zh-TW.js +1 -1
  17. package/lib/index.css +1 -1
  18. package/lib/index.js +1 -1
  19. package/lib/locale/en-US.js +1 -1
  20. package/lib/locale/fa-IR.js +1 -1
  21. package/lib/locale/fr-FR.js +1 -1
  22. package/lib/locale/ru-RU.js +1 -1
  23. package/lib/locale/vi-VN.js +1 -1
  24. package/lib/locale/zh-CN.js +1 -1
  25. package/lib/locale/zh-TW.js +1 -1
  26. package/lib/types/locale/en-US.d.ts +101 -2
  27. package/lib/types/locale/fa-IR.d.ts +2 -2
  28. package/lib/types/locale/fr-FR.d.ts +2 -2
  29. package/lib/types/locale/ru-RU.d.ts +2 -2
  30. package/lib/types/locale/vi-VN.d.ts +2 -2
  31. package/lib/types/locale/zh-CN.d.ts +2 -101
  32. package/lib/types/locale/zh-TW.d.ts +2 -2
  33. package/lib/types/views/components/util.d.ts +1 -5
  34. package/lib/umd/index.js +1 -1
  35. package/lib/umd/locale/en-US.js +1 -1
  36. package/lib/umd/locale/fa-IR.js +1 -1
  37. package/lib/umd/locale/fr-FR.js +1 -1
  38. package/lib/umd/locale/ru-RU.js +1 -1
  39. package/lib/umd/locale/vi-VN.js +1 -1
  40. package/lib/umd/locale/zh-CN.js +1 -1
  41. package/lib/umd/locale/zh-TW.js +1 -1
  42. 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;