@univerjs-pro/sheets-pivot-ui 0.2.8 → 0.2.9
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/types/plugin.d.ts +1 -1
- package/lib/types/services/sheets-pivot-ui.service.d.ts +1 -1
- package/lib/types/type.d.ts +1 -1
- package/lib/types/util.d.ts +1 -1
- package/lib/types/views/components/util.d.ts +1 -1
- package/lib/types/views/widgets/pivot-button.shape.d.ts +1 -1
- package/lib/umd/index.js +1 -1
- package/package.json +21 -21
package/lib/types/plugin.d.ts
CHANGED
@@ -12,7 +12,7 @@ export declare class UniverSheetsPivotTableUIPlugin extends Plugin {
|
|
12
12
|
static pluginName: string;
|
13
13
|
static type: UniverInstanceType;
|
14
14
|
constructor(_config: Partial<IUniverSheetsPivotTableUIConfig>, _injector: Injector, _commandService: ICommandService, _renderManagerService: IRenderManagerService);
|
15
|
-
onStarting(
|
15
|
+
onStarting(): void;
|
16
16
|
onReady(): void;
|
17
17
|
private _registerRenderModules;
|
18
18
|
private _initRegisterCommand;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { PivotView } from '@univerjs-pro/pivot
|
1
|
+
import { PivotView } from '@univerjs-pro/engine-pivot';
|
2
2
|
import { IPivotCellPositionInfo, SheetsPivotTableConfigModel } from '@univerjs-pro/sheets-pivot';
|
3
3
|
import { IMutationInfo, IRange, Disposable, Injector, IUniverInstanceService, LocaleService } from '@univerjs/core';
|
4
4
|
import { ISetRangeValuesMutationParams, SheetInterceptorService } from '@univerjs/sheets';
|
package/lib/types/type.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { IPivotTableFilterInfo, IPivotTableSortInfo, PivotDataFieldDataTypeEnum, PivotSubtotalTypeEnum, PivotTableFiledAreaEnum, PivotTableValuePositionEnum } from '@univerjs-pro/pivot
|
1
|
+
import { IPivotTableFilterInfo, IPivotTableSortInfo, PivotDataFieldDataTypeEnum, PivotSubtotalTypeEnum, PivotTableFiledAreaEnum, PivotTableValuePositionEnum } from '@univerjs-pro/engine-pivot';
|
2
2
|
import { IPivotPanelSourceList, IPivotPanelTableListItemBase, IUnitRangeNameWithSubUnitId } from '@univerjs-pro/sheets-pivot';
|
3
3
|
export interface IOpenPivotTablePanelOperationParams {
|
4
4
|
pivotTableId: string;
|
package/lib/types/util.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { LabelViewItem, PivotView, PivotViewItem } from '@univerjs-pro/pivot
|
1
|
+
import { LabelViewItem, PivotView, PivotViewItem } from '@univerjs-pro/engine-pivot';
|
2
2
|
export declare function getPivotRowColCount(view: PivotView, startCell: {
|
3
3
|
row: number;
|
4
4
|
col: number;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { IPivotTableFilterInfo, PivotSubtotalTypeEnum, PivotTableFiledAreaEnum, PivotTableValuePositionEnum } from '@univerjs-pro/pivot
|
1
|
+
import { IPivotTableFilterInfo, PivotSubtotalTypeEnum, PivotTableFiledAreaEnum, PivotTableValuePositionEnum } from '@univerjs-pro/engine-pivot';
|
2
2
|
import { ICommandService, IRange, Nullable, Worksheet } from '@univerjs/core';
|
3
3
|
import { IPivotPanelDataInfo, IUnitRangeNameWithSubUnitId } from '@univerjs-pro/sheets-pivot';
|
4
4
|
import { PivotFilterStatus } from '../../const';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { PivotCellStyleTypeEnum } from '@univerjs-pro/pivot
|
1
|
+
import { PivotCellStyleTypeEnum } from '@univerjs-pro/engine-pivot';
|
2
2
|
import { ICommandService, IContextService, ThemeService } from '@univerjs/core';
|
3
3
|
import { IMouseEvent, IPointerEvent, IShapeProps, UniverRenderingContext2D, Shape } from '@univerjs/engine-render';
|
4
4
|
export declare const PIVOT_ICON_SIZE = 16;
|