@univerjs-pro/sheets-pivot 0.2.12 → 0.2.14
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/index.d.ts +1 -1
- package/lib/types/plugin.d.ts +1 -1
- package/lib/umd/index.js +1 -1
- package/package.json +15 -15
package/lib/types/index.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export { SheetsPivotTableConfigModel } from './models/sheets-pivot-config-model'
|
|
|
23
23
|
export type { IAddPivotTableCommandParams, IPivotTableConfig, ISetPivotSortMutationParams, ISetPivotOptionMutationParams, ISetPivotSubtotalTypeMutationParams, IUpdateFieldPositionMutationParams, IUpdateValuePositionMutationParams, IRenamePivotFieldMutationParams, IRemovePivotFieldMutationParams, IRangePosition, ISetPivotFilterMutationParams, IPivotRangesInfo, IPivotRenderCache, IPivotTableCellData, ISetPivotPositionMutationParams, IPivotCellPositionInfo, IAddPivotFieldMutationParams, ISetPivotCollapseMutation, ISetPivotFieldFormatMutationParams, IPivotPanelTableListItemBase, IPivotPanelSourceList, IPivotPanelDataInfo, IUpdatePivotFieldSourceInfoMutationParams, IUnitRangeNameWithSubUnitId, IRemovePivotTableMutationParams, } from './const/type';
|
|
24
24
|
export { PivotTableOperationEnum } from './const/type';
|
|
25
25
|
export { SheetsPivotTableAdaptorModel } from './models/sheets-pivot-table-adaptor-model';
|
|
26
|
-
export { getPivotCellInfo, getPivotTableInfo } from './util';
|
|
26
|
+
export { getPivotCellInfo, getPivotTableInfo, unionPivotViewRange } from './util';
|
|
27
27
|
export { defaultThemeStyle, transFromCellValue } from './const/const';
|
|
28
28
|
export { applyChangeSet } from './commands/command/util';
|
|
29
29
|
export { getFieldListByArea } from './commands/mutations/change-apply-util';
|
package/lib/types/plugin.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare class UniverSheetsPivotTablePlugin extends Plugin {
|
|
|
9
9
|
private readonly _dataSyncPrimaryController?;
|
|
10
10
|
static pluginName: string;
|
|
11
11
|
static type: UniverInstanceType;
|
|
12
|
-
constructor(_config: IUniverSheetsPivotConfig, _injector: Injector, _commandService: ICommandService, _configService: IConfigService, _dataSyncPrimaryController?: DataSyncPrimaryController | undefined);
|
|
12
|
+
constructor(_config: IUniverSheetsPivotConfig | undefined, _injector: Injector, _commandService: ICommandService, _configService: IConfigService, _dataSyncPrimaryController?: DataSyncPrimaryController | undefined);
|
|
13
13
|
_initConfig(): void;
|
|
14
14
|
onStarting(): void;
|
|
15
15
|
private _initRegisterCommand;
|