@univerjs-pro/collaboration 0.4.1-nightly.202410281606 → 0.4.1-nightly.202410291249
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/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-custom.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-custom.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-col-data/__tests__/set-col-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-col-data/set-col-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-row-data/__tests__/set-row-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-row-data/set-row-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-auto-height/__tests__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-auto-height/set-worksheet-row-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-height/__tests__/set-worksheet-row-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-height/set-worksheet-row-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-is-auto-height/__tests__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-is-auto-height/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
- package/lib/umd/index.js +1 -1
- package/package.json +15 -15
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IInsertColMutationParams, ISetColDataMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const insertColMutationWithSetColData: IMutationTransformAlgorithm<IInsertColMutationParams, ISetColDataMutationParams>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IInsertRowMutationParams, ISetRowDataMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const insertRowMutationWithSetRowData: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetRowDataMutationParams>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IInsertRowMutationParams, ISetWorksheetRowAutoHeightMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const insertRowMutationWithSetWorksheetRowAutoHeight: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetWorksheetRowAutoHeightMutationParams>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IInsertRowMutationParams, ISetWorksheetRowHeightMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const insertRowMutationWithSetWorksheetRowHeight: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetWorksheetRowHeightMutationParams>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IInsertRowMutationParams, ISetWorksheetRowIsAutoHeightMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const insertRowMutationWithSetWorksheetRowIsAutoHeight: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetWorksheetRowIsAutoHeightMutationParams>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IMoveColumnsMutationParams, ISetColDataMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const moveColMutationWithSetColData: IMutationTransformAlgorithm<IMoveColumnsMutationParams, ISetColDataMutationParams>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IMoveRowsMutationParams, ISetRowDataMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const moveRowMutationWithSetRowData: IMutationTransformAlgorithm<IMoveRowsMutationParams, ISetRowDataMutationParams>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IMoveRowsMutationParams, ISetWorksheetRowAutoHeightMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const moveRowMutationWithSetWorksheetRowAutoHeight: IMutationTransformAlgorithm<IMoveRowsMutationParams, ISetWorksheetRowAutoHeightMutationParams>;
|
package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-height.algo.d.ts
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IMoveRowsMutationParams, ISetWorksheetRowHeightMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const moveRowMutationWithSetWorksheetRowHeight: IMutationTransformAlgorithm<IMoveRowsMutationParams, ISetWorksheetRowHeightMutationParams>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IMoveRowsMutationParams, ISetWorksheetRowIsAutoHeightMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const moveRowMutationWithSetWorksheetRowIsAutoHeight: IMutationTransformAlgorithm<IMoveRowsMutationParams, ISetWorksheetRowIsAutoHeightMutationParams>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IRemoveColMutationParams, ISetColDataMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const removeColMutationWithSetColData: IMutationTransformAlgorithm<IRemoveColMutationParams, ISetColDataMutationParams>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IRemoveRowsMutationParams, ISetRowDataMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const removeRowMutationWithSetRowData: IMutationTransformAlgorithm<IRemoveRowsMutationParams, ISetRowDataMutationParams>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IRemoveRowsMutationParams, ISetWorksheetRowAutoHeightMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const removeRowMutationWithSetWorksheetRowAutoHeight: IMutationTransformAlgorithm<IRemoveRowsMutationParams, ISetWorksheetRowAutoHeightMutationParams>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IRemoveRowsMutationParams, ISetWorksheetRowHeightMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const removeRowMutationWithSetWorksheetRowHeight: IMutationTransformAlgorithm<IRemoveRowsMutationParams, ISetWorksheetRowHeightMutationParams>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IRemoveRowsMutationParams, ISetWorksheetRowIsAutoHeightMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const removeRowMutationWithSetWorksheetRowIsAutoHeight: IMutationTransformAlgorithm<IRemoveRowsMutationParams, ISetWorksheetRowIsAutoHeightMutationParams>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ISetColDataMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const setColDataMutationWithSelf: IMutationTransformAlgorithm<ISetColDataMutationParams, ISetColDataMutationParams>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ISetRowDataMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const setRowDataMutationWithSelf: IMutationTransformAlgorithm<ISetRowDataMutationParams, ISetRowDataMutationParams>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ISetWorksheetRowAutoHeightMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const setWorksheetRowAutoHeightMutationWithSelf: IMutationTransformAlgorithm<ISetWorksheetRowAutoHeightMutationParams, ISetWorksheetRowAutoHeightMutationParams>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ISetWorksheetRowHeightMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const setWorksheetRowHeightMutationWithSelf: IMutationTransformAlgorithm<ISetWorksheetRowHeightMutationParams, ISetWorksheetRowHeightMutationParams>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ISetWorksheetRowIsAutoHeightMutationParams } from '@univerjs/sheets';
|
|
2
|
+
import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
|
|
3
|
+
export declare const setWorksheetRowIsAutoHeightMutationWithSelf: IMutationTransformAlgorithm<ISetWorksheetRowIsAutoHeightMutationParams, ISetWorksheetRowIsAutoHeightMutationParams>;
|