@playkit-js/playkit-js-ui 0.83.7-canary.0-9447019 → 0.83.8
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
CHANGED
|
@@ -7589,7 +7589,7 @@ declare class Tooltip extends Component<TooltipProps & WithEventManagerProps, an
|
|
|
7589
7589
|
* @memberof Tooltip
|
|
7590
7590
|
* @returns {void}
|
|
7591
7591
|
*/
|
|
7592
|
-
handleFocusOnChildren: (
|
|
7592
|
+
handleFocusOnChildren: () => void;
|
|
7593
7593
|
/**
|
|
7594
7594
|
* handle blur on wrapped element
|
|
7595
7595
|
* @memberof Tooltip
|
|
@@ -8595,12 +8595,12 @@ declare class Watermark extends Component<any, any> {
|
|
|
8595
8595
|
*/
|
|
8596
8596
|
componentDidMount(): void;
|
|
8597
8597
|
/**
|
|
8598
|
-
* After component updated,
|
|
8598
|
+
* After component updated, reload image dimensions only when the image URL changes
|
|
8599
8599
|
* @method componentDidUpdate
|
|
8600
8600
|
* @returns {void}
|
|
8601
8601
|
* @memberof Watermark
|
|
8602
8602
|
*/
|
|
8603
|
-
componentDidUpdate(prevProps: any): void;
|
|
8603
|
+
componentDidUpdate(prevProps: any, prevState: any): void;
|
|
8604
8604
|
/**
|
|
8605
8605
|
* handles the watermark url
|
|
8606
8606
|
* if the url contains ${entryId}, then replace it with the played entry id
|