@types/office-js-preview 1.0.440 → 1.0.442
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 +1 -1
- office-js-preview/index.d.ts +75 -22
- office-js-preview/package.json +2 -2
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: Thu,
|
|
11
|
+
* Last updated: Thu, 25 Jan 2024 17:06:50 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js-preview/index.d.ts
CHANGED
|
@@ -8468,6 +8468,8 @@ declare namespace Office {
|
|
|
8468
8468
|
/**
|
|
8469
8469
|
* Treat the item as personal.
|
|
8470
8470
|
*
|
|
8471
|
+
* **Important**: The Personal sensitivity level is only supported in Outlook on Windows.
|
|
8472
|
+
*
|
|
8471
8473
|
* @remarks
|
|
8472
8474
|
* [Api set: Mailbox preview]
|
|
8473
8475
|
*/
|
|
@@ -8482,6 +8484,8 @@ declare namespace Office {
|
|
|
8482
8484
|
/**
|
|
8483
8485
|
* Treat the item as confidential.
|
|
8484
8486
|
*
|
|
8487
|
+
* **Important**: The Confidential sensitivity level is only supported in Outlook on Windows.
|
|
8488
|
+
*
|
|
8485
8489
|
* @remarks
|
|
8486
8490
|
* [Api set: Mailbox preview]
|
|
8487
8491
|
*/
|
|
@@ -10037,6 +10041,8 @@ declare namespace Office {
|
|
|
10037
10041
|
*
|
|
10038
10042
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Organizer
|
|
10039
10043
|
*
|
|
10044
|
+
* **Important**: Outlook on Mac, Outlook on the web, and the new Outlook on Windows (preview) only support Normal and Private sensitivity levels.
|
|
10045
|
+
*
|
|
10040
10046
|
* @beta
|
|
10041
10047
|
*/
|
|
10042
10048
|
sensitivity: Sensitivity;
|
|
@@ -11532,6 +11538,8 @@ declare namespace Office {
|
|
|
11532
11538
|
*
|
|
11533
11539
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Attendee
|
|
11534
11540
|
*
|
|
11541
|
+
* **Important**: Outlook on Mac, Outlook on the web, and the new Outlook on Windows (preview) only support Normal and Private sensitivity levels.
|
|
11542
|
+
*
|
|
11535
11543
|
* @beta
|
|
11536
11544
|
*/
|
|
11537
11545
|
sensitivity: MailboxEnums.AppointmentSensitivityType;
|
|
@@ -19433,6 +19441,10 @@ declare namespace Office {
|
|
|
19433
19441
|
*
|
|
19434
19442
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
19435
19443
|
*
|
|
19444
|
+
* **Important**: Outlook on Mac, Outlook on the web, and the new Outlook on Windows (preview) only support Normal and Private sensitivity levels.
|
|
19445
|
+
* If you call `getAsync` on an appointment that has a Confidential or Personal sensitivity level from these clients, the Normal sensitivity level
|
|
19446
|
+
* is returned in the `asyncResult.value` property.
|
|
19447
|
+
*
|
|
19436
19448
|
* @param options - An object literal that contains one or more of the following properties:-
|
|
19437
19449
|
* `asyncContext`: Developers can provide any object they wish to access in the callback function.
|
|
19438
19450
|
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
|
|
@@ -19444,9 +19456,6 @@ declare namespace Office {
|
|
|
19444
19456
|
/**
|
|
19445
19457
|
* Gets the sensitivity level of an appointment.
|
|
19446
19458
|
*
|
|
19447
|
-
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
|
|
19448
|
-
* which is an `Office.AsyncResult` object. The sensitivity level of the appointment is returned in the `asyncResult.value` property.
|
|
19449
|
-
*
|
|
19450
19459
|
* @remarks
|
|
19451
19460
|
* [Api set: Mailbox preview]
|
|
19452
19461
|
*
|
|
@@ -19454,6 +19463,13 @@ declare namespace Office {
|
|
|
19454
19463
|
*
|
|
19455
19464
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
19456
19465
|
*
|
|
19466
|
+
* **Important**: Outlook on Mac, Outlook on the web, and the new Outlook on Windows (preview) only support Normal and Private sensitivity levels.
|
|
19467
|
+
* If you call `getAsync` on an appointment that has a Confidential or Personal sensitivity level from these clients, the Normal sensitivity level
|
|
19468
|
+
* is returned in the `asyncResult.value` property.
|
|
19469
|
+
*
|
|
19470
|
+
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
|
|
19471
|
+
* which is an `Office.AsyncResult` object. The sensitivity level of the appointment is returned in the `asyncResult.value` property.
|
|
19472
|
+
*
|
|
19457
19473
|
* @beta
|
|
19458
19474
|
*/
|
|
19459
19475
|
getAsync(callback: (asyncResult: Office.AsyncResult<MailboxEnums.AppointmentSensitivityType>) => void): void;
|
|
@@ -19467,6 +19483,12 @@ declare namespace Office {
|
|
|
19467
19483
|
*
|
|
19468
19484
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
19469
19485
|
*
|
|
19486
|
+
* **Important**: Outlook on Mac, Outlook on the web, and the new Outlook on Windows (preview) only support Normal and Private sensitivity levels.
|
|
19487
|
+
*
|
|
19488
|
+
* **Errors**:
|
|
19489
|
+
*
|
|
19490
|
+
* - `Unsupported API parameter`: Setting the sensitivity level of an appointment isn't supported.
|
|
19491
|
+
*
|
|
19470
19492
|
* @param sensitivity - The sensitivity level as an enum or string.
|
|
19471
19493
|
* @param options - An object literal that contains one or more of the following properties:-
|
|
19472
19494
|
* `asyncContext`: Developers can provide any object they wish to access in the callback function.
|
|
@@ -19486,6 +19508,12 @@ declare namespace Office {
|
|
|
19486
19508
|
*
|
|
19487
19509
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
19488
19510
|
*
|
|
19511
|
+
* **Important**: Outlook on Mac, Outlook on the web, and the new Outlook on Windows (preview) only support Normal and Private sensitivity levels.
|
|
19512
|
+
*
|
|
19513
|
+
* **Errors**:
|
|
19514
|
+
*
|
|
19515
|
+
* - `Unsupported API parameter`: Setting the sensitivity level of an appointment isn't supported.
|
|
19516
|
+
*
|
|
19489
19517
|
* @param sensitivity - The sensitivity level as an enum or string.
|
|
19490
19518
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
|
|
19491
19519
|
* `asyncResult`, which is an `Office.AsyncResult` object.
|
|
@@ -89202,7 +89230,7 @@ declare namespace Word {
|
|
|
89202
89230
|
berry = "Berry",
|
|
89203
89231
|
}
|
|
89204
89232
|
/**
|
|
89205
|
-
* Properties defining the behavior of the pop-up for a given critique.
|
|
89233
|
+
* Properties defining the behavior of the pop-up menu for a given critique.
|
|
89206
89234
|
*
|
|
89207
89235
|
* @remarks
|
|
89208
89236
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -89210,7 +89238,7 @@ declare namespace Word {
|
|
|
89210
89238
|
*/
|
|
89211
89239
|
interface CritiquePopupOptions {
|
|
89212
89240
|
/**
|
|
89213
|
-
* Gets the manifest resource
|
|
89241
|
+
* Gets the manifest resource ID of the string to use for branding. This branding text appears next to your add-in icon in the pop-up menu.
|
|
89214
89242
|
*
|
|
89215
89243
|
* @remarks
|
|
89216
89244
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -89218,7 +89246,7 @@ declare namespace Word {
|
|
|
89218
89246
|
*/
|
|
89219
89247
|
brandingTextResourceId: string;
|
|
89220
89248
|
/**
|
|
89221
|
-
* Gets the manifest resource
|
|
89249
|
+
* Gets the manifest resource ID of the string to use as the subtitle.
|
|
89222
89250
|
*
|
|
89223
89251
|
* @remarks
|
|
89224
89252
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -89226,7 +89254,7 @@ declare namespace Word {
|
|
|
89226
89254
|
*/
|
|
89227
89255
|
subtitleResourceId: string;
|
|
89228
89256
|
/**
|
|
89229
|
-
* Gets the suggestions to display in the critique pop-up.
|
|
89257
|
+
* Gets the suggestions to display in the critique pop-up menu.
|
|
89230
89258
|
*
|
|
89231
89259
|
* @remarks
|
|
89232
89260
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -89234,7 +89262,7 @@ declare namespace Word {
|
|
|
89234
89262
|
*/
|
|
89235
89263
|
suggestions: string[];
|
|
89236
89264
|
/**
|
|
89237
|
-
* Gets the manifest resource
|
|
89265
|
+
* Gets the manifest resource ID of the string to use as the title.
|
|
89238
89266
|
*
|
|
89239
89267
|
* @remarks
|
|
89240
89268
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -89267,7 +89295,7 @@ declare namespace Word {
|
|
|
89267
89295
|
*/
|
|
89268
89296
|
length: number;
|
|
89269
89297
|
/**
|
|
89270
|
-
* Specifies the behavior of the pop-up for the critique.
|
|
89298
|
+
* Specifies the behavior of the pop-up menu for the critique.
|
|
89271
89299
|
*
|
|
89272
89300
|
* @remarks
|
|
89273
89301
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -89553,7 +89581,7 @@ declare namespace Word {
|
|
|
89553
89581
|
id: string;
|
|
89554
89582
|
}
|
|
89555
89583
|
/**
|
|
89556
|
-
*
|
|
89584
|
+
* Represents action information that's passed back on annotation pop-up action event.
|
|
89557
89585
|
*
|
|
89558
89586
|
* @remarks
|
|
89559
89587
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -89561,7 +89589,7 @@ declare namespace Word {
|
|
|
89561
89589
|
*/
|
|
89562
89590
|
interface AnnotationPopupActionEventArgs {
|
|
89563
89591
|
/**
|
|
89564
|
-
* Specifies the chosen action in the pop-up.
|
|
89592
|
+
* Specifies the chosen action in the pop-up menu.
|
|
89565
89593
|
*
|
|
89566
89594
|
* @remarks
|
|
89567
89595
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -90411,6 +90439,14 @@ declare namespace Word {
|
|
|
90411
90439
|
select?: string;
|
|
90412
90440
|
expand?: string;
|
|
90413
90441
|
}): Word.CheckboxContentControl;
|
|
90442
|
+
/**
|
|
90443
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you're using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
90444
|
+
*/
|
|
90445
|
+
track(): Word.CheckboxContentControl;
|
|
90446
|
+
/**
|
|
90447
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
90448
|
+
*/
|
|
90449
|
+
untrack(): Word.CheckboxContentControl;
|
|
90414
90450
|
/**
|
|
90415
90451
|
* Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
|
|
90416
90452
|
* Whereas the original Word.CheckboxContentControl object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CheckboxContentControlData`) that contains shallow copies of any loaded child properties from the original object.
|
|
@@ -90880,7 +90916,7 @@ declare namespace Word {
|
|
|
90880
90916
|
toJSON(): Word.Interfaces.CommentReplyCollectionData;
|
|
90881
90917
|
}
|
|
90882
90918
|
/**
|
|
90883
|
-
* Represents a content control. Content controls are bounded and potentially labeled regions in a document that serve as containers for specific types of content. Individual content controls may contain contents such as images, tables, or paragraphs of formatted text. Currently, only rich text
|
|
90919
|
+
* Represents a content control. Content controls are bounded and potentially labeled regions in a document that serve as containers for specific types of content. Individual content controls may contain contents such as images, tables, or paragraphs of formatted text. Currently, only rich text, plain text, and checkbox content controls are supported.
|
|
90884
90920
|
*
|
|
90885
90921
|
* @remarks
|
|
90886
90922
|
* [Api set: WordApi 1.1]
|
|
@@ -91076,7 +91112,7 @@ declare namespace Word {
|
|
|
91076
91112
|
*/
|
|
91077
91113
|
styleBuiltIn: Word.BuiltInStyleName | "Other" | "Normal" | "Heading1" | "Heading2" | "Heading3" | "Heading4" | "Heading5" | "Heading6" | "Heading7" | "Heading8" | "Heading9" | "Toc1" | "Toc2" | "Toc3" | "Toc4" | "Toc5" | "Toc6" | "Toc7" | "Toc8" | "Toc9" | "FootnoteText" | "Header" | "Footer" | "Caption" | "FootnoteReference" | "EndnoteReference" | "EndnoteText" | "Title" | "Subtitle" | "Hyperlink" | "Strong" | "Emphasis" | "NoSpacing" | "ListParagraph" | "Quote" | "IntenseQuote" | "SubtleEmphasis" | "IntenseEmphasis" | "SubtleReference" | "IntenseReference" | "BookTitle" | "Bibliography" | "TocHeading" | "TableGrid" | "PlainTable1" | "PlainTable2" | "PlainTable3" | "PlainTable4" | "PlainTable5" | "TableGridLight" | "GridTable1Light" | "GridTable1Light_Accent1" | "GridTable1Light_Accent2" | "GridTable1Light_Accent3" | "GridTable1Light_Accent4" | "GridTable1Light_Accent5" | "GridTable1Light_Accent6" | "GridTable2" | "GridTable2_Accent1" | "GridTable2_Accent2" | "GridTable2_Accent3" | "GridTable2_Accent4" | "GridTable2_Accent5" | "GridTable2_Accent6" | "GridTable3" | "GridTable3_Accent1" | "GridTable3_Accent2" | "GridTable3_Accent3" | "GridTable3_Accent4" | "GridTable3_Accent5" | "GridTable3_Accent6" | "GridTable4" | "GridTable4_Accent1" | "GridTable4_Accent2" | "GridTable4_Accent3" | "GridTable4_Accent4" | "GridTable4_Accent5" | "GridTable4_Accent6" | "GridTable5Dark" | "GridTable5Dark_Accent1" | "GridTable5Dark_Accent2" | "GridTable5Dark_Accent3" | "GridTable5Dark_Accent4" | "GridTable5Dark_Accent5" | "GridTable5Dark_Accent6" | "GridTable6Colorful" | "GridTable6Colorful_Accent1" | "GridTable6Colorful_Accent2" | "GridTable6Colorful_Accent3" | "GridTable6Colorful_Accent4" | "GridTable6Colorful_Accent5" | "GridTable6Colorful_Accent6" | "GridTable7Colorful" | "GridTable7Colorful_Accent1" | "GridTable7Colorful_Accent2" | "GridTable7Colorful_Accent3" | "GridTable7Colorful_Accent4" | "GridTable7Colorful_Accent5" | "GridTable7Colorful_Accent6" | "ListTable1Light" | "ListTable1Light_Accent1" | "ListTable1Light_Accent2" | "ListTable1Light_Accent3" | "ListTable1Light_Accent4" | "ListTable1Light_Accent5" | "ListTable1Light_Accent6" | "ListTable2" | "ListTable2_Accent1" | "ListTable2_Accent2" | "ListTable2_Accent3" | "ListTable2_Accent4" | "ListTable2_Accent5" | "ListTable2_Accent6" | "ListTable3" | "ListTable3_Accent1" | "ListTable3_Accent2" | "ListTable3_Accent3" | "ListTable3_Accent4" | "ListTable3_Accent5" | "ListTable3_Accent6" | "ListTable4" | "ListTable4_Accent1" | "ListTable4_Accent2" | "ListTable4_Accent3" | "ListTable4_Accent4" | "ListTable4_Accent5" | "ListTable4_Accent6" | "ListTable5Dark" | "ListTable5Dark_Accent1" | "ListTable5Dark_Accent2" | "ListTable5Dark_Accent3" | "ListTable5Dark_Accent4" | "ListTable5Dark_Accent5" | "ListTable5Dark_Accent6" | "ListTable6Colorful" | "ListTable6Colorful_Accent1" | "ListTable6Colorful_Accent2" | "ListTable6Colorful_Accent3" | "ListTable6Colorful_Accent4" | "ListTable6Colorful_Accent5" | "ListTable6Colorful_Accent6" | "ListTable7Colorful" | "ListTable7Colorful_Accent1" | "ListTable7Colorful_Accent2" | "ListTable7Colorful_Accent3" | "ListTable7Colorful_Accent4" | "ListTable7Colorful_Accent5" | "ListTable7Colorful_Accent6";
|
|
91078
91114
|
/**
|
|
91079
|
-
* Gets the content control subtype. The subtype can be 'RichTextInline', 'RichTextParagraphs', 'RichTextTableCell', 'RichTextTableRow' and 'RichTextTable' for rich text content controls, or 'PlainTextInline' and 'PlainTextParagraph' for plain text content controls.
|
|
91115
|
+
* Gets the content control subtype. The subtype can be 'RichTextInline', 'RichTextParagraphs', 'RichTextTableCell', 'RichTextTableRow' and 'RichTextTable' for rich text content controls, or 'PlainTextInline' and 'PlainTextParagraph' for plain text content controls, or 'CheckBox' for checkbox content controls.
|
|
91080
91116
|
*
|
|
91081
91117
|
* @remarks
|
|
91082
91118
|
* [Api set: WordApi 1.3]
|
|
@@ -91104,7 +91140,7 @@ declare namespace Word {
|
|
|
91104
91140
|
*/
|
|
91105
91141
|
title: string;
|
|
91106
91142
|
/**
|
|
91107
|
-
* Gets the content control type. Only rich text
|
|
91143
|
+
* Gets the content control type. Only rich text, plain text, and checkbox content controls are supported currently.
|
|
91108
91144
|
*
|
|
91109
91145
|
* @remarks
|
|
91110
91146
|
* [Api set: WordApi 1.1]
|
|
@@ -92535,7 +92571,7 @@ declare namespace Word {
|
|
|
92535
92571
|
*/
|
|
92536
92572
|
readonly onAnnotationInserted: OfficeExtension.EventHandlers<Word.AnnotationInsertedEventArgs>;
|
|
92537
92573
|
/**
|
|
92538
|
-
* Occurs when the user performs an action in an annotation pop-up.
|
|
92574
|
+
* Occurs when the user performs an action in an annotation pop-up menu.
|
|
92539
92575
|
*
|
|
92540
92576
|
* @remarks
|
|
92541
92577
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -95780,6 +95816,15 @@ declare namespace Word {
|
|
|
95780
95816
|
* [Api set: WordApi 1.6]
|
|
95781
95817
|
*/
|
|
95782
95818
|
getTrackedChanges(): Word.TrackedChangeCollection;
|
|
95819
|
+
/**
|
|
95820
|
+
* Highlights the range temporarily without changing document content.
|
|
95821
|
+
To highlight the text permanently, set the range's Font.HighlightColor.
|
|
95822
|
+
*
|
|
95823
|
+
* @remarks
|
|
95824
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
95825
|
+
* @beta
|
|
95826
|
+
*/
|
|
95827
|
+
highlight(): void;
|
|
95783
95828
|
/**
|
|
95784
95829
|
* Inserts a bookmark on the range. If a bookmark of the same name exists somewhere, it is deleted first.
|
|
95785
95830
|
*
|
|
@@ -95984,6 +96029,14 @@ declare namespace Word {
|
|
|
95984
96029
|
* @param range Required. Another range.
|
|
95985
96030
|
*/
|
|
95986
96031
|
intersectWithOrNullObject(range: Word.Range): Word.Range;
|
|
96032
|
+
/**
|
|
96033
|
+
* Removes the highlight added by the Highlight function if any.
|
|
96034
|
+
*
|
|
96035
|
+
* @remarks
|
|
96036
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
96037
|
+
* @beta
|
|
96038
|
+
*/
|
|
96039
|
+
removeHighlight(): void;
|
|
95987
96040
|
/**
|
|
95988
96041
|
* Performs a search with the specified SearchOptions on the scope of the range object. The search results are a collection of range objects.
|
|
95989
96042
|
*
|
|
@@ -104685,7 +104738,7 @@ declare namespace Word {
|
|
|
104685
104738
|
*/
|
|
104686
104739
|
styleBuiltIn?: Word.BuiltInStyleName | "Other" | "Normal" | "Heading1" | "Heading2" | "Heading3" | "Heading4" | "Heading5" | "Heading6" | "Heading7" | "Heading8" | "Heading9" | "Toc1" | "Toc2" | "Toc3" | "Toc4" | "Toc5" | "Toc6" | "Toc7" | "Toc8" | "Toc9" | "FootnoteText" | "Header" | "Footer" | "Caption" | "FootnoteReference" | "EndnoteReference" | "EndnoteText" | "Title" | "Subtitle" | "Hyperlink" | "Strong" | "Emphasis" | "NoSpacing" | "ListParagraph" | "Quote" | "IntenseQuote" | "SubtleEmphasis" | "IntenseEmphasis" | "SubtleReference" | "IntenseReference" | "BookTitle" | "Bibliography" | "TocHeading" | "TableGrid" | "PlainTable1" | "PlainTable2" | "PlainTable3" | "PlainTable4" | "PlainTable5" | "TableGridLight" | "GridTable1Light" | "GridTable1Light_Accent1" | "GridTable1Light_Accent2" | "GridTable1Light_Accent3" | "GridTable1Light_Accent4" | "GridTable1Light_Accent5" | "GridTable1Light_Accent6" | "GridTable2" | "GridTable2_Accent1" | "GridTable2_Accent2" | "GridTable2_Accent3" | "GridTable2_Accent4" | "GridTable2_Accent5" | "GridTable2_Accent6" | "GridTable3" | "GridTable3_Accent1" | "GridTable3_Accent2" | "GridTable3_Accent3" | "GridTable3_Accent4" | "GridTable3_Accent5" | "GridTable3_Accent6" | "GridTable4" | "GridTable4_Accent1" | "GridTable4_Accent2" | "GridTable4_Accent3" | "GridTable4_Accent4" | "GridTable4_Accent5" | "GridTable4_Accent6" | "GridTable5Dark" | "GridTable5Dark_Accent1" | "GridTable5Dark_Accent2" | "GridTable5Dark_Accent3" | "GridTable5Dark_Accent4" | "GridTable5Dark_Accent5" | "GridTable5Dark_Accent6" | "GridTable6Colorful" | "GridTable6Colorful_Accent1" | "GridTable6Colorful_Accent2" | "GridTable6Colorful_Accent3" | "GridTable6Colorful_Accent4" | "GridTable6Colorful_Accent5" | "GridTable6Colorful_Accent6" | "GridTable7Colorful" | "GridTable7Colorful_Accent1" | "GridTable7Colorful_Accent2" | "GridTable7Colorful_Accent3" | "GridTable7Colorful_Accent4" | "GridTable7Colorful_Accent5" | "GridTable7Colorful_Accent6" | "ListTable1Light" | "ListTable1Light_Accent1" | "ListTable1Light_Accent2" | "ListTable1Light_Accent3" | "ListTable1Light_Accent4" | "ListTable1Light_Accent5" | "ListTable1Light_Accent6" | "ListTable2" | "ListTable2_Accent1" | "ListTable2_Accent2" | "ListTable2_Accent3" | "ListTable2_Accent4" | "ListTable2_Accent5" | "ListTable2_Accent6" | "ListTable3" | "ListTable3_Accent1" | "ListTable3_Accent2" | "ListTable3_Accent3" | "ListTable3_Accent4" | "ListTable3_Accent5" | "ListTable3_Accent6" | "ListTable4" | "ListTable4_Accent1" | "ListTable4_Accent2" | "ListTable4_Accent3" | "ListTable4_Accent4" | "ListTable4_Accent5" | "ListTable4_Accent6" | "ListTable5Dark" | "ListTable5Dark_Accent1" | "ListTable5Dark_Accent2" | "ListTable5Dark_Accent3" | "ListTable5Dark_Accent4" | "ListTable5Dark_Accent5" | "ListTable5Dark_Accent6" | "ListTable6Colorful" | "ListTable6Colorful_Accent1" | "ListTable6Colorful_Accent2" | "ListTable6Colorful_Accent3" | "ListTable6Colorful_Accent4" | "ListTable6Colorful_Accent5" | "ListTable6Colorful_Accent6" | "ListTable7Colorful" | "ListTable7Colorful_Accent1" | "ListTable7Colorful_Accent2" | "ListTable7Colorful_Accent3" | "ListTable7Colorful_Accent4" | "ListTable7Colorful_Accent5" | "ListTable7Colorful_Accent6";
|
|
104687
104740
|
/**
|
|
104688
|
-
* Gets the content control subtype. The subtype can be 'RichTextInline', 'RichTextParagraphs', 'RichTextTableCell', 'RichTextTableRow' and 'RichTextTable' for rich text content controls, or 'PlainTextInline' and 'PlainTextParagraph' for plain text content controls.
|
|
104741
|
+
* Gets the content control subtype. The subtype can be 'RichTextInline', 'RichTextParagraphs', 'RichTextTableCell', 'RichTextTableRow' and 'RichTextTable' for rich text content controls, or 'PlainTextInline' and 'PlainTextParagraph' for plain text content controls, or 'CheckBox' for checkbox content controls.
|
|
104689
104742
|
*
|
|
104690
104743
|
* @remarks
|
|
104691
104744
|
* [Api set: WordApi 1.3]
|
|
@@ -104713,7 +104766,7 @@ declare namespace Word {
|
|
|
104713
104766
|
*/
|
|
104714
104767
|
title?: string;
|
|
104715
104768
|
/**
|
|
104716
|
-
* Gets the content control type. Only rich text
|
|
104769
|
+
* Gets the content control type. Only rich text, plain text, and checkbox content controls are supported currently.
|
|
104717
104770
|
*
|
|
104718
104771
|
* @remarks
|
|
104719
104772
|
* [Api set: WordApi 1.1]
|
|
@@ -107044,7 +107097,7 @@ declare namespace Word {
|
|
|
107044
107097
|
id?: boolean;
|
|
107045
107098
|
}
|
|
107046
107099
|
/**
|
|
107047
|
-
* Represents a content control. Content controls are bounded and potentially labeled regions in a document that serve as containers for specific types of content. Individual content controls may contain contents such as images, tables, or paragraphs of formatted text. Currently, only rich text
|
|
107100
|
+
* Represents a content control. Content controls are bounded and potentially labeled regions in a document that serve as containers for specific types of content. Individual content controls may contain contents such as images, tables, or paragraphs of formatted text. Currently, only rich text, plain text, and checkbox content controls are supported.
|
|
107048
107101
|
*
|
|
107049
107102
|
* @remarks
|
|
107050
107103
|
* [Api set: WordApi 1.1]
|
|
@@ -107184,7 +107237,7 @@ declare namespace Word {
|
|
|
107184
107237
|
*/
|
|
107185
107238
|
styleBuiltIn?: boolean;
|
|
107186
107239
|
/**
|
|
107187
|
-
* Gets the content control subtype. The subtype can be 'RichTextInline', 'RichTextParagraphs', 'RichTextTableCell', 'RichTextTableRow' and 'RichTextTable' for rich text content controls, or 'PlainTextInline' and 'PlainTextParagraph' for plain text content controls.
|
|
107240
|
+
* Gets the content control subtype. The subtype can be 'RichTextInline', 'RichTextParagraphs', 'RichTextTableCell', 'RichTextTableRow' and 'RichTextTable' for rich text content controls, or 'PlainTextInline' and 'PlainTextParagraph' for plain text content controls, or 'CheckBox' for checkbox content controls.
|
|
107188
107241
|
*
|
|
107189
107242
|
* @remarks
|
|
107190
107243
|
* [Api set: WordApi 1.3]
|
|
@@ -107212,7 +107265,7 @@ declare namespace Word {
|
|
|
107212
107265
|
*/
|
|
107213
107266
|
title?: boolean;
|
|
107214
107267
|
/**
|
|
107215
|
-
* Gets the content control type. Only rich text
|
|
107268
|
+
* Gets the content control type. Only rich text, plain text, and checkbox content controls are supported currently.
|
|
107216
107269
|
*
|
|
107217
107270
|
* @remarks
|
|
107218
107271
|
* [Api set: WordApi 1.1]
|
|
@@ -107360,7 +107413,7 @@ declare namespace Word {
|
|
|
107360
107413
|
*/
|
|
107361
107414
|
styleBuiltIn?: boolean;
|
|
107362
107415
|
/**
|
|
107363
|
-
* For EACH ITEM in the collection: Gets the content control subtype. The subtype can be 'RichTextInline', 'RichTextParagraphs', 'RichTextTableCell', 'RichTextTableRow' and 'RichTextTable' for rich text content controls, or 'PlainTextInline' and 'PlainTextParagraph' for plain text content controls.
|
|
107416
|
+
* For EACH ITEM in the collection: Gets the content control subtype. The subtype can be 'RichTextInline', 'RichTextParagraphs', 'RichTextTableCell', 'RichTextTableRow' and 'RichTextTable' for rich text content controls, or 'PlainTextInline' and 'PlainTextParagraph' for plain text content controls, or 'CheckBox' for checkbox content controls.
|
|
107364
107417
|
*
|
|
107365
107418
|
* @remarks
|
|
107366
107419
|
* [Api set: WordApi 1.3]
|
|
@@ -107388,7 +107441,7 @@ declare namespace Word {
|
|
|
107388
107441
|
*/
|
|
107389
107442
|
title?: boolean;
|
|
107390
107443
|
/**
|
|
107391
|
-
* For EACH ITEM in the collection: Gets the content control type. Only rich text
|
|
107444
|
+
* For EACH ITEM in the collection: Gets the content control type. Only rich text, plain text, and checkbox content controls are supported currently.
|
|
107392
107445
|
*
|
|
107393
107446
|
* @remarks
|
|
107394
107447
|
* [Api set: WordApi 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.442",
|
|
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,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
|
-
"typesPublisherContentHash": "
|
|
48
|
+
"typesPublisherContentHash": "37207b61719bbef9a9f54b7a59ac799761812bae6eba83e022e12aca50a79482",
|
|
49
49
|
"typeScriptVersion": "4.6"
|
|
50
50
|
}
|