@playkit-js/playkit-js-ui 0.78.2-canary.0-b39a888 → 0.78.2
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
|
@@ -6468,6 +6468,15 @@ declare class Shell extends Component<any, any> {
|
|
|
6468
6468
|
* @memberof Shell
|
|
6469
6469
|
*/
|
|
6470
6470
|
componentDidMount(): void;
|
|
6471
|
+
/**
|
|
6472
|
+
* handler to click outside the component event listener.
|
|
6473
|
+
* if not mobile device and clicked outside the component, update nav state
|
|
6474
|
+
*
|
|
6475
|
+
* @param {*} e click event
|
|
6476
|
+
* @returns {void}
|
|
6477
|
+
* @memberof Menu
|
|
6478
|
+
*/
|
|
6479
|
+
_handleClickOutside: ({ target }: MouseEvent) => void;
|
|
6471
6480
|
/**
|
|
6472
6481
|
* window resize handler
|
|
6473
6482
|
*
|