@ionic/react 8.3.3-dev.11728518847.1ef16a63 → 8.3.3-dev.11728581904.17739cf7
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/index.js
CHANGED
|
@@ -1364,6 +1364,13 @@ if (typeof window !== 'undefined' && window.customElements) {
|
|
|
1364
1364
|
const IonTabs = /*@__PURE__*/ (() => class extends React.Component {
|
|
1365
1365
|
constructor(props) {
|
|
1366
1366
|
super(props);
|
|
1367
|
+
/**
|
|
1368
|
+
* `routerOutletRef` allows users to add a `ref` to `IonRouterOutlet`.
|
|
1369
|
+
* Without this, `ref.current` will be `undefined` in the user's app,
|
|
1370
|
+
* breaking their ability to access the `IonRouterOutlet` instance.
|
|
1371
|
+
* Do not remove this ref.
|
|
1372
|
+
*/
|
|
1373
|
+
this.routerOutletRef = React.createRef();
|
|
1367
1374
|
this.tabBarRef = React.createRef();
|
|
1368
1375
|
this.ionTabContextState = {
|
|
1369
1376
|
activeTab: undefined,
|