babylonjs-accessibility 5.35.1 → 5.37.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.
@@ -51,13 +51,19 @@ declare module BABYLON.Accessibility {
51
51
  export class HTMLTwinHostComponent extends React.Component<IHTMLTwinHostComponentProps, IHTMLTwinHostComponentState> {
52
52
  private _observersMap;
53
53
  constructor(props: IHTMLTwinHostComponentProps);
54
+ componentDidUpdate(prevProps: Readonly<IHTMLTwinHostComponentProps>, prevState: Readonly<IHTMLTwinHostComponentState>, snapshot?: any): void;
55
+ /**
56
+ * Adds observables to update the tree if any of the scene's nodes or GUI controls change.
57
+ */
58
+ _addSceneObservers: () => void;
54
59
  componentDidMount(): void;
55
60
  componentWillUnmount(): void;
56
61
  render(): JSX.Element;
57
62
  private _updateHTMLTwinItems;
58
63
  private _getHTMLTwinItemsFromNodes;
59
64
  private _getHTMLTwinItemsFromGUI;
60
- private _isGUI;
65
+ private _isFullscreenGUI;
66
+ private _isMeshGUI;
61
67
  }
62
68
 
63
69