@playkit-js/playkit-js-ui 0.78.0-canary.0-b615ac6 → 0.78.0

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.
@@ -4534,11 +4534,31 @@ declare type LogLevelType = {
4534
4534
  * @extends {Component}
4535
4535
  */
4536
4536
  declare class Logo extends Component<any, any> {
4537
+ /**
4538
+ * @constructor
4539
+ * @param {*} props props
4540
+ */
4541
+ constructor(props: any);
4542
+ /**
4543
+ * when component did mount
4544
+ *
4545
+ * @returns {void}
4546
+ * @memberof Logo
4547
+ */
4548
+ componentDidMount(): void;
4549
+ /**
4550
+ * handles the logo url
4551
+ * if the url contains ${entryId}, then replace it with the played entry id
4552
+ *
4553
+ * @returns {void}
4554
+ * @memberof Logo
4555
+ */
4556
+ private _handleLogoUrl;
4537
4557
  /**
4538
4558
  * should render component
4539
4559
  * @returns {boolean} - whether to render the component
4540
4560
  */
4541
- _shouldRender(): boolean;
4561
+ private _shouldRender;
4542
4562
  /**
4543
4563
  * render component
4544
4564
  *