@playkit-js/playkit-js-ui 0.79.2 → 0.79.3-canary.0-8efc902

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.
@@ -2032,6 +2032,7 @@ declare namespace Components {
2032
2032
  VideoArea,
2033
2033
  GuiArea,
2034
2034
  InteractiveArea,
2035
+ SidePanel,
2035
2036
  Keyboard as KeyboardControl,
2036
2037
  Cast,
2037
2038
  Cast as CastControl,
@@ -6677,6 +6678,32 @@ declare interface ShellState {
6677
6678
  documentWidth?: number;
6678
6679
  }
6679
6680
 
6681
+ /**
6682
+ * SidePanel component
6683
+ *
6684
+ * @class SidePanel
6685
+ * @example <SidePanel>...</SidePanel>
6686
+ * @extends {Component}
6687
+ */
6688
+ declare class SidePanel extends Component<any, any> {
6689
+ /**
6690
+ * this component should not render itself when player object changes.
6691
+ *
6692
+ * @param {Object} nextProps - next props of the component
6693
+ * @returns {void}
6694
+ * @memberof VideoPlayer
6695
+ */
6696
+ shouldComponentUpdate(nextProps: any): boolean;
6697
+ /**
6698
+ * render component
6699
+ *
6700
+ * @param {object} props - the component props
6701
+ * @returns {React$Element} - component element
6702
+ * @memberof SidePanel
6703
+ */
6704
+ render(props: any): VNode<any>;
6705
+ }
6706
+
6680
6707
  export declare const SidePanelModes: {
6681
6708
  ALONGSIDE: string;
6682
6709
  HIDDEN: string;