obi-sdk 0.19.50-beta.11 → 0.19.50-beta.13

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.
@@ -41,6 +41,16 @@ export type CourseDialogContentProps = {
41
41
  * enabling chat or other messaging content.
42
42
  */
43
43
  rightPanel?: React.ReactNode;
44
+ /**
45
+ * When true, indicates that the course outline is currently being shown.
46
+ * Used to determine when to show the return to PiP button.
47
+ */
48
+ isCourseOutlineOpen?: boolean;
49
+ /**
50
+ * Called when the return to PiP button is clicked.
51
+ * The button is only shown when isCourseOutlineOpen is true and this callback is provided.
52
+ */
53
+ onReturnToPiP?: () => void;
44
54
  className?: string;
45
55
  };
46
56
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obi-sdk",
3
- "version": "0.19.50-beta.11",
3
+ "version": "0.19.50-beta.13",
4
4
  "description": "JavaScript SDK for Obi",
5
5
  "type": "module",
6
6
  "main": "dist/obi-sdk.umd.js",