@microsoft/teams-js 2.17.0-beta.0 → 2.17.0-beta.1
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/dist/MicrosoftTeams.d.ts
CHANGED
@@ -7745,6 +7745,29 @@ export namespace stageView {
|
|
7745
7745
|
* The entity ID of the Teams application content being opened.
|
7746
7746
|
*/
|
7747
7747
|
entityId?: string;
|
7748
|
+
/**
|
7749
|
+
* The open mode for stage content.
|
7750
|
+
* Optional param: if not passed, hosts can choose their default openMode.
|
7751
|
+
* If a host does not support any specific openMode, It will fallback to StageViewOpenMode.modal.
|
7752
|
+
*/
|
7753
|
+
openMode?: StageViewOpenMode;
|
7754
|
+
}
|
7755
|
+
/**
|
7756
|
+
* The open mode for stage content.
|
7757
|
+
*/
|
7758
|
+
enum StageViewOpenMode {
|
7759
|
+
/**
|
7760
|
+
* Open the content in a modal.
|
7761
|
+
*/
|
7762
|
+
modal = "modal",
|
7763
|
+
/**
|
7764
|
+
* Open the content in a popped-out window.
|
7765
|
+
*/
|
7766
|
+
popout = "popout",
|
7767
|
+
/**
|
7768
|
+
* Open the content in a popped-out window with chat collaboration.
|
7769
|
+
*/
|
7770
|
+
popoutWithChat = "popoutWithChat"
|
7748
7771
|
}
|
7749
7772
|
/**
|
7750
7773
|
* @hidden
|
package/dist/MicrosoftTeams.js
CHANGED
@@ -2249,7 +2249,7 @@ var _minRuntimeConfigToUninitialize = {
|
|
2249
2249
|
* @hidden
|
2250
2250
|
* Package version.
|
2251
2251
|
*/
|
2252
|
-
var version = "2.17.0-beta.
|
2252
|
+
var version = "2.17.0-beta.1";
|
2253
2253
|
|
2254
2254
|
;// CONCATENATED MODULE: ./src/internal/internalAPIs.ts
|
2255
2255
|
|
@@ -9716,6 +9716,24 @@ var sharing;
|
|
9716
9716
|
*/
|
9717
9717
|
var stageView;
|
9718
9718
|
(function (stageView) {
|
9719
|
+
/**
|
9720
|
+
* The open mode for stage content.
|
9721
|
+
*/
|
9722
|
+
var StageViewOpenMode;
|
9723
|
+
(function (StageViewOpenMode) {
|
9724
|
+
/**
|
9725
|
+
* Open the content in a modal.
|
9726
|
+
*/
|
9727
|
+
StageViewOpenMode["modal"] = "modal";
|
9728
|
+
/**
|
9729
|
+
* Open the content in a popped-out window.
|
9730
|
+
*/
|
9731
|
+
StageViewOpenMode["popout"] = "popout";
|
9732
|
+
/**
|
9733
|
+
* Open the content in a popped-out window with chat collaboration.
|
9734
|
+
*/
|
9735
|
+
StageViewOpenMode["popoutWithChat"] = "popoutWithChat";
|
9736
|
+
})(StageViewOpenMode = stageView.StageViewOpenMode || (stageView.StageViewOpenMode = {}));
|
9719
9737
|
/**
|
9720
9738
|
* @hidden
|
9721
9739
|
* Feature is under development
|