@orangelogic/design-system 2.21.0-ci.4 → 2.21.0-ci.5

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orangelogic/design-system",
3
3
  "type": "module",
4
- "version": "2.21.0-ci.4",
4
+ "version": "2.21.0-ci.5",
5
5
  "license": "UNLICENSED",
6
6
  "types": "library/types.d.ts",
7
7
  "scripts": {
@@ -75,6 +75,18 @@ export default class CxVideo extends ResizableElement {
75
75
  * Determines if the controls should be shown.
76
76
  */
77
77
  showControls: boolean;
78
+ /**
79
+ * Determines if picture-in-picture should be disabled.
80
+ */
81
+ disablePictureInPicture: boolean;
82
+ /**
83
+ * Determines if remote playback should be disabled.
84
+ */
85
+ disableRemotePlayback: boolean;
86
+ /**
87
+ * Determines if the volume panel should be disabled.
88
+ */
89
+ disableVolumePanel: boolean;
78
90
  isLoaded: boolean;
79
91
  isPlaying: boolean;
80
92
  isError: boolean;
@@ -121,6 +133,9 @@ export default class CxVideo extends ResizableElement {
121
133
  handleLoopChange(): Promise<void>;
122
134
  handleMutedChange(): Promise<void>;
123
135
  handleControlsChange(): Promise<void>;
136
+ handleDisablePictureInPictureChange(): Promise<void>;
137
+ handleDisableRemotePlaybackChange(): Promise<void>;
138
+ handleDisableVolumePanelChange(): Promise<void>;
124
139
  handlePosterChange(): Promise<void>;
125
140
  handleSrcChange(): Promise<void>;
126
141
  handleParsedNameChange(): Promise<void>;
@@ -4771,6 +4771,18 @@
4771
4771
  * Determines if the controls should be shown.
4772
4772
  */
4773
4773
  showControls?: boolean;
4774
+ /**
4775
+ * Determines if picture-in-picture should be disabled.
4776
+ */
4777
+ disablePictureInPicture?: boolean;
4778
+ /**
4779
+ * Determines if remote playback should be disabled.
4780
+ */
4781
+ disableRemotePlayback?: boolean;
4782
+ /**
4783
+ * Determines if the volume panel should be disabled.
4784
+ */
4785
+ disableVolumePanel?: boolean;
4774
4786
  /**
4775
4787
  * The width of the image.
4776
4788
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orangelogic/design-system",
3
3
  "type": "module",
4
- "version": "2.21.0-ci.4",
4
+ "version": "2.21.0-ci.5",
5
5
  "license": "UNLICENSED",
6
6
  "types": "library/types.d.ts",
7
7
  "scripts": {