office-viewer 0.3.10 → 0.3.11
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/esm/excel/render/Consts.d.ts +1 -1
- package/esm/excel/render/Consts.js +1 -1
- package/lib/excel/lang/lang.d.ts +1 -1
- package/lib/excel/render/Consts.d.ts +1 -1
- package/lib/excel/render/Consts.js +1 -1
- package/lib/excel/render/autoFilter/sortState/getColumnSortOrder.d.ts +1 -1
- package/lib/excel/render/dnd/mousedownColHeader.d.ts +1 -1
- package/lib/excel/render/dnd/mousedownRowHeader.d.ts +1 -1
- package/package.json +1 -1
package/lib/excel/lang/lang.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ declare const languages: {
|
|
|
23
23
|
count: string;
|
|
24
24
|
sum: string;
|
|
25
25
|
};
|
|
26
|
-
zh_CN: Record<"
|
|
26
|
+
zh_CN: Record<"autoFilter.sortAscending" | "autoFilter.sortDescending" | "checkBox.selectAll" | "checkBox.search" | "customFilter.equal" | "customFilter.notEqual" | "customFilter.greaterThan" | "customFilter.greaterThanOrEqual" | "customFilter.lessThan" | "customFilter.lessThanOrEqual" | "customFilter.beginsWith" | "customFilter.notBeginsWith" | "customFilter.endsWith" | "customFilter.notEndsWith" | "customFilter.contains" | "customFilter.notContains" | "customFilter.and" | "customFilter.or" | "average" | "count" | "sum", string>;
|
|
27
27
|
};
|
|
28
28
|
export type Language = keyof typeof languages;
|
|
29
29
|
export declare function getTranslate(language: string): (key: EnKeys) => string;
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { CT_SortState } from '../../../../openxml/ExcelTypes';
|
|
5
5
|
import { RangeRef } from '../../../types/RangeRef';
|
|
6
|
-
export declare function getColumnSortOrder(colIndex: number, rangeRef: RangeRef, sortState?: CT_SortState): "
|
|
6
|
+
export declare function getColumnSortOrder(colIndex: number, rangeRef: RangeRef, sortState?: CT_SortState): "none" | "asc" | "desc";
|
|
@@ -10,7 +10,7 @@ import { HitTestResult } from '../selection/hitTest';
|
|
|
10
10
|
export declare function mousedownColHeader(workbook: Workbook, hitTestResult: HitTestResult): {
|
|
11
11
|
user: string;
|
|
12
12
|
region: import("../../sheet/ViewRange").Region;
|
|
13
|
-
selectType: "
|
|
13
|
+
selectType: "drawing" | "corner" | "cell" | "row-header" | "col-header" | "row-grid" | "col-grid";
|
|
14
14
|
activeCell: RangeRef;
|
|
15
15
|
sheetIndex: number;
|
|
16
16
|
cellRanges: {
|
|
@@ -10,7 +10,7 @@ import { HitTestResult } from '../selection/hitTest';
|
|
|
10
10
|
export declare function mousedownRowHeader(workbook: Workbook, hitTestResult: HitTestResult): {
|
|
11
11
|
user: string;
|
|
12
12
|
region: import("../../sheet/ViewRange").Region;
|
|
13
|
-
selectType: "
|
|
13
|
+
selectType: "drawing" | "corner" | "cell" | "row-header" | "col-header" | "row-grid" | "col-grid";
|
|
14
14
|
activeCell: RangeRef;
|
|
15
15
|
sheetIndex: number;
|
|
16
16
|
cellRanges: {
|