@types/office-js-preview 1.0.449 → 1.0.450
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.
office-js-preview/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for office-js-preview (https://github.com
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 06 Feb 2024 20:35:18 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js-preview/index.d.ts
CHANGED
|
@@ -30738,7 +30738,7 @@ declare namespace Excel {
|
|
|
30738
30738
|
*/
|
|
30739
30739
|
lowerBound?: string;
|
|
30740
30740
|
/**
|
|
30741
|
-
* The substring used for `beginsWith`, `endsWith`, and `contains` filter conditions.
|
|
30741
|
+
* The substring used for the `beginsWith`, `endsWith`, and `contains` filter conditions.
|
|
30742
30742
|
*
|
|
30743
30743
|
* @remarks
|
|
30744
30744
|
* [Api set: ExcelApi 1.12]
|
|
@@ -35859,7 +35859,7 @@ declare namespace Excel {
|
|
|
35859
35859
|
* @param skipBlanks True if to skip blank cells in the source range. Default is false.
|
|
35860
35860
|
* @param transpose True if to transpose the cells in the destination range. Default is false.
|
|
35861
35861
|
*/
|
|
35862
|
-
copyFrom(sourceRange: Range | RangeAreas | string, copyType?: "All" | "Formulas" | "Values" | "Formats" | "Link", skipBlanks?: boolean, transpose?: boolean): void;
|
|
35862
|
+
copyFrom(sourceRange: Range | RangeAreas | string, copyType?: "All" | "Formulas" | "Values" | "Formats" | "Link" | "ColumnWidths", skipBlanks?: boolean, transpose?: boolean): void;
|
|
35863
35863
|
/**
|
|
35864
35864
|
* Deletes the cells associated with the range.
|
|
35865
35865
|
*
|
|
@@ -36762,7 +36762,7 @@ declare namespace Excel {
|
|
|
36762
36762
|
* @param skipBlanks True if to skip blank cells in the source range or `RangeAreas`. Default is false.
|
|
36763
36763
|
* @param transpose True if to transpose the cells in the destination `RangeAreas`. Default is false.
|
|
36764
36764
|
*/
|
|
36765
|
-
copyFrom(sourceRange: Range | RangeAreas | string, copyType?: "All" | "Formulas" | "Values" | "Formats" | "Link", skipBlanks?: boolean, transpose?: boolean): void;
|
|
36765
|
+
copyFrom(sourceRange: Range | RangeAreas | string, copyType?: "All" | "Formulas" | "Values" | "Formats" | "Link" | "ColumnWidths", skipBlanks?: boolean, transpose?: boolean): void;
|
|
36766
36766
|
/**
|
|
36767
36767
|
* Returns a `RangeAreas` object that represents the entire columns of the `RangeAreas` (for example, if the current `RangeAreas` represents cells "B4:E11, H2", it returns a `RangeAreas` that represents columns "B:E, H:H").
|
|
36768
36768
|
*
|
|
@@ -58369,6 +58369,8 @@ declare namespace Excel {
|
|
|
58369
58369
|
textAsNumber = "TextAsNumber"
|
|
58370
58370
|
}
|
|
58371
58371
|
/**
|
|
58372
|
+
* Represents the ordering method to be used when sorting Chinese characters.
|
|
58373
|
+
*
|
|
58372
58374
|
* @remarks
|
|
58373
58375
|
* [Api set: ExcelApi 1.2]
|
|
58374
58376
|
*/
|
|
@@ -58856,6 +58858,13 @@ declare namespace Excel {
|
|
|
58856
58858
|
* @beta
|
|
58857
58859
|
*/
|
|
58858
58860
|
worksheetRowHeightChanged = "WorksheetRowHeightChanged",
|
|
58861
|
+
/**
|
|
58862
|
+
* WorkbookFormulaReferenceStyleChanged represents the type of event registered when the formula reference style has changed on a workbook.
|
|
58863
|
+
* @remarks
|
|
58864
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
58865
|
+
* @beta
|
|
58866
|
+
*/
|
|
58867
|
+
workbookFormulaReferenceStyleChanged = "WorkbookFormulaReferenceStyleChanged",
|
|
58859
58868
|
/**
|
|
58860
58869
|
* RangeValuesPreviewDismissed represents the type of event registered when a RangeValuePreview is dismissed.
|
|
58861
58870
|
* @remarks
|
|
@@ -59824,11 +59833,16 @@ declare namespace Excel {
|
|
|
59824
59833
|
* [Api set: ExcelApi 1.9]
|
|
59825
59834
|
*/
|
|
59826
59835
|
formats = "Formats",
|
|
59836
|
+
/**
|
|
59837
|
+
* @remarks
|
|
59838
|
+
* [Api set: ExcelApiOnline 1.1]
|
|
59839
|
+
*/
|
|
59840
|
+
link = "Link",
|
|
59827
59841
|
/**
|
|
59828
59842
|
* @remarks
|
|
59829
59843
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
59830
59844
|
*/
|
|
59831
|
-
|
|
59845
|
+
columnWidths = "ColumnWidths"
|
|
59832
59846
|
}
|
|
59833
59847
|
/**
|
|
59834
59848
|
* @remarks
|
|
@@ -61601,7 +61615,7 @@ declare namespace Excel {
|
|
|
61601
61615
|
/**
|
|
61602
61616
|
* Creates and activates a new temporary sheet view.
|
|
61603
61617
|
Temporary views are removed when closing the application, exiting the temporary view with the exit method, or switching to another sheet view.
|
|
61604
|
-
The temporary sheet view can also be
|
|
61618
|
+
The temporary sheet view can also be accessed with the empty string (""), if the temporary view exists.
|
|
61605
61619
|
*
|
|
61606
61620
|
* @remarks
|
|
61607
61621
|
* [Api set: ExcelApiOnline 1.1]
|
office-js-preview/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js-preview",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.450",
|
|
4
4
|
"description": "TypeScript definitions for office-js-preview",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
|
-
"typesPublisherContentHash": "
|
|
48
|
+
"typesPublisherContentHash": "2bdb3cdfc8687f9b2439d3d639ebcf7bad69c4bdd63a16b4059ebb9482ea4d8b",
|
|
49
49
|
"typeScriptVersion": "4.6",
|
|
50
50
|
"nonNpm": true
|
|
51
51
|
}
|