@types/office-js-preview 1.0.344 → 1.0.346

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.
@@ -8,7 +8,7 @@ This package contains type definitions for Office.js (https://github.com/OfficeD
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: Tue, 11 Oct 2022 17:33:25 GMT
11
+ * Last updated: Thu, 13 Oct 2022 18:03:30 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Excel`, `Office`, `OfficeCore`, `OfficeExtension`, `OneNote`, `PowerPoint`, `Visio`, `Word`
14
14
 
@@ -8933,16 +8933,23 @@ declare namespace Office {
8933
8933
  */
8934
8934
  enum OWAView {
8935
8935
  /**
8936
- * One-column view. Displayed when the screen is narrow. Outlook on the web uses this single-column layout on the entire screen of a smartphone.
8936
+ * Narrow one-column view. Displayed when the screen width is less than 436 pixels.
8937
+ * For example, Outlook on the web uses this view on the entire screen of older smartphones.
8938
+ */
8939
+ OneColumnNarrow = "OneColumnNarrow",
8940
+ /**
8941
+ * One-column view. Displayed when the screen width is greater than or equal to 436 pixels,
8942
+ * but less than 536 pixels. For example, Outlook on the web uses this view on the entire screen of newer smartphones.
8937
8943
  */
8938
8944
  OneColumn = "OneColumn",
8939
8945
  /**
8940
- * Two-column view. Displayed when the screen is wider. Outlook on the web uses this view on most tablets.
8946
+ * Two-column view. Displayed when the screen width is greater than or equal to 536 pixels,
8947
+ * but less than 780 pixels. For example, Outlook on the web uses this view on most tablets.
8941
8948
  */
8942
8949
  TwoColumns = "TwoColumns",
8943
8950
  /**
8944
- Three-column view. Displayed when the screen is wide. For example, Outlook on the web uses this view in a full screen window on a desktop
8945
- computer.
8951
+ * Three-column view. Displayed when the screen width is greater than or equal to 780 pixels.
8952
+ * For example, Outlook on the web uses this view in a full screen window on a desktop computer.
8946
8953
  */
8947
8954
  ThreeColumns = "ThreeColumns"
8948
8955
  }
@@ -14552,7 +14559,7 @@ declare namespace Office {
14552
14559
  /**
14553
14560
  * Gets currently selected messages on which an add-in can activate and perform operations. An add-in can activate on a maximum of 100 messages at a time.
14554
14561
  * To learn more about item multi-select, see
14555
- * [Activate your Outlook add-in on multiple messages (preview)](https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select).
14562
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages (preview)}.
14556
14563
  *
14557
14564
  * @remarks
14558
14565
  * [Api set: Mailbox preview]
@@ -14576,7 +14583,7 @@ declare namespace Office {
14576
14583
  /**
14577
14584
  * Gets currently selected messages on which an add-in can activate and perform operations. An add-in can activate on a maximum of 100 messages at a time.
14578
14585
  * To learn more about item multi-select, see
14579
- * [Activate your Outlook add-in on multiple messages (preview)](https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select).
14586
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages (preview)}.
14580
14587
  *
14581
14588
  * @remarks
14582
14589
  * [Api set: Mailbox preview]
@@ -86950,7 +86957,7 @@ declare namespace Word {
86950
86957
  */
86951
86958
  readonly text: string;
86952
86959
  /**
86953
- * Gets the type of the body. The type can be 'MainDoc', 'Section', 'Header', 'Footer', or 'TableCell'.
86960
+ * Gets the type of the body. The type can be 'MainDoc', 'Section', 'Header', 'Footer', or 'TableCell'. Additional types ‘Footnote’, ‘Endnote’, and ‘NoteItem’ are supported in WordApiOnline 1.1 and later.
86954
86961
  *
86955
86962
  * @remarks
86956
86963
  * [Api set: WordApi 1.3]
@@ -96773,7 +96780,7 @@ declare namespace Word {
96773
96780
  */
96774
96781
  text?: string;
96775
96782
  /**
96776
- * Gets the type of the body. The type can be 'MainDoc', 'Section', 'Header', 'Footer', or 'TableCell'.
96783
+ * Gets the type of the body. The type can be 'MainDoc', 'Section', 'Header', 'Footer', or 'TableCell'. Additional types ‘Footnote’, ‘Endnote’, and ‘NoteItem’ are supported in WordApiOnline 1.1 and later.
96777
96784
  *
96778
96785
  * @remarks
96779
96786
  * [Api set: WordApi 1.3]
@@ -98361,7 +98368,7 @@ declare namespace Word {
98361
98368
  */
98362
98369
  text?: boolean;
98363
98370
  /**
98364
- * Gets the type of the body. The type can be 'MainDoc', 'Section', 'Header', 'Footer', or 'TableCell'.
98371
+ * Gets the type of the body. The type can be 'MainDoc', 'Section', 'Header', 'Footer', or 'TableCell'. Additional types ‘Footnote’, ‘Endnote’, and ‘NoteItem’ are supported in WordApiOnline 1.1 and later.
98365
98372
  *
98366
98373
  * @remarks
98367
98374
  * [Api set: WordApi 1.3]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js-preview",
3
- "version": "1.0.344",
3
+ "version": "1.0.346",
4
4
  "description": "TypeScript definitions for Office.js",
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": "0f62d3659bfc798e0dd6fc089951a2c474e8941003d2e8736d154bf36d55db16",
48
+ "typesPublisherContentHash": "fbc93dfc416aa1473fadfee9c5588f1ca0b866a43944c63c84a7e671779e9681",
49
49
  "typeScriptVersion": "4.1"
50
50
  }