@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.
- package/dist/playkit-js-ui.d.ts +27 -0
- package/dist/playkit-ui.js +1 -1
- package/dist/playkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/src/components/index.ts +2 -0
- package/src/components/picture-in-picture/picture-in-picture.tsx +2 -3
- package/translations/ar.i18n.json +0 -1
- package/translations/de.i18n.json +0 -1
- package/translations/en.i18n.json +0 -1
- package/translations/es.i18n.json +0 -1
- package/translations/fi.i18n.json +0 -1
- package/translations/fr.i18n.json +0 -1
- package/translations/fr_ca.i18n.json +0 -1
- package/translations/he.i18n.json +0 -1
- package/translations/hi_in.i18n.json +0 -1
- package/translations/it.i18n.json +0 -1
- package/translations/ja.i18n.json +0 -1
- package/translations/ko.i18n.json +0 -1
- package/translations/nl.i18n.json +0 -1
- package/translations/pt_br.i18n.json +0 -1
- package/translations/ru.i18n.json +0 -1
- package/translations/zh_cn.i18n.json +0 -1
- package/translations/zh_tw.i18n.json +0 -1
package/dist/playkit-js-ui.d.ts
CHANGED
|
@@ -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;
|