@playkit-js/playkit-js-ui 0.80.0-canary.0-ebd4c32 → 0.80.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.
@@ -8310,7 +8310,7 @@ declare class Watermark extends Component<any, any> {
8310
8310
  * Creates an instance of Watermark.
8311
8311
  * @memberof Watermark
8312
8312
  */
8313
- constructor();
8313
+ constructor(props: any);
8314
8314
  /**
8315
8315
  * After component mounted, listen to relevant player event for updating the state of the component
8316
8316
  * @method componentDidMount
@@ -8318,6 +8318,21 @@ declare class Watermark extends Component<any, any> {
8318
8318
  * @memberof Watermark
8319
8319
  */
8320
8320
  componentDidMount(): void;
8321
+ /**
8322
+ * handles the watermark url
8323
+ * if the url contains ${entryId}, then replace it with the played entry id
8324
+ *
8325
+ * @returns {void}
8326
+ * @memberof Watermark
8327
+ */
8328
+ private _handleWatermarkUrl;
8329
+ /**
8330
+ * sets the url with the entry id
8331
+ * @param {string} url - the url configured on the watermark
8332
+ * @returns {boolean} - whether the url was set with entry id or not
8333
+ * @memberof Watermark
8334
+ */
8335
+ private _setWatermarkUrlWithEntryId;
8321
8336
  /**
8322
8337
  * componentWillUnmount
8323
8338
  *