@types/office-js 1.0.532 → 1.0.533
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/README.md +1 -1
- office-js/index.d.ts +19 -10
- office-js/package.json +2 -2
office-js/README.md
CHANGED
|
@@ -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.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 03 Sep 2025 19:32:33 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -611,19 +611,28 @@ declare namespace Office {
|
|
|
611
611
|
*/
|
|
612
612
|
BindingSelectionChanged,
|
|
613
613
|
/**
|
|
614
|
-
*
|
|
614
|
+
* Occurs when a dialog is closed or when dialog navigation failed.
|
|
615
|
+
*
|
|
616
|
+
* For guidance on how to implement a dialog in your add-in, see
|
|
617
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/develop/dialog-api-in-office-add-ins | Use the Office dialog API in Office Add-ins}.
|
|
615
618
|
*/
|
|
616
619
|
DialogEventReceived,
|
|
617
620
|
/**
|
|
618
|
-
*
|
|
621
|
+
* Occurs when a dialog sends a message using `Office.context.ui.messageParent`.
|
|
622
|
+
*
|
|
623
|
+
* For guidance on how to implement a dialog in your add-in, see
|
|
624
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/develop/dialog-api-in-office-add-ins | Use the Office dialog API in Office Add-ins}.
|
|
619
625
|
*/
|
|
620
626
|
DialogMessageReceived,
|
|
621
627
|
/**
|
|
622
|
-
*
|
|
628
|
+
* Occurs when a host page sends a message to a child dialog box with `Dialog.messageChild`.
|
|
629
|
+
*
|
|
630
|
+
* For guidance on how to implement a dialog in your add-in, see
|
|
631
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/develop/dialog-api-in-office-add-ins | Use the Office dialog API in Office Add-ins}.
|
|
623
632
|
*/
|
|
624
633
|
DialogParentMessageReceived,
|
|
625
634
|
/**
|
|
626
|
-
*
|
|
635
|
+
* Occurs when a document-level selection happens in Excel or Word.
|
|
627
636
|
*/
|
|
628
637
|
DocumentSelectionChanged,
|
|
629
638
|
/**
|
|
@@ -699,15 +708,15 @@ declare namespace Office {
|
|
|
699
708
|
*/
|
|
700
709
|
DragAndDropEvent,
|
|
701
710
|
/**
|
|
702
|
-
*
|
|
711
|
+
* Occurs when a `customXmlPart` node is deleted.
|
|
703
712
|
*/
|
|
704
713
|
NodeDeleted,
|
|
705
714
|
/**
|
|
706
|
-
*
|
|
715
|
+
* Occurs when a `customXmlPart` node is inserted.
|
|
707
716
|
*/
|
|
708
717
|
NodeInserted,
|
|
709
718
|
/**
|
|
710
|
-
*
|
|
719
|
+
* Occurs when a `customXmlPart` node is replaced.
|
|
711
720
|
*/
|
|
712
721
|
NodeReplaced,
|
|
713
722
|
/**
|
|
@@ -752,7 +761,7 @@ declare namespace Office {
|
|
|
752
761
|
*/
|
|
753
762
|
RecurrenceChanged,
|
|
754
763
|
/**
|
|
755
|
-
*
|
|
764
|
+
* Occurs when a Resource selection happens in Project.
|
|
756
765
|
*/
|
|
757
766
|
ResourceSelectionChanged,
|
|
758
767
|
/**
|
|
@@ -789,11 +798,11 @@ declare namespace Office {
|
|
|
789
798
|
*/
|
|
790
799
|
SpamReporting,
|
|
791
800
|
/**
|
|
792
|
-
*
|
|
801
|
+
* Occurs when a Task selection happens in Project.
|
|
793
802
|
*/
|
|
794
803
|
TaskSelectionChanged,
|
|
795
804
|
/**
|
|
796
|
-
*
|
|
805
|
+
* Occurs when a View selection happens in Project.
|
|
797
806
|
*/
|
|
798
807
|
ViewSelectionChanged
|
|
799
808
|
}
|
office-js/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.533",
|
|
4
4
|
"description": "TypeScript definitions for office-js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
48
|
"peerDependencies": {},
|
|
49
|
-
"typesPublisherContentHash": "
|
|
49
|
+
"typesPublisherContentHash": "80c5689f8ce2969de9538d9a02436d25f022d29b805d457c9e6cbd3659ce3f0e",
|
|
50
50
|
"typeScriptVersion": "5.2"
|
|
51
51
|
}
|