@nativescript-community/ui-material-bottom-navigation 6.2.5 → 6.2.9

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/CHANGELOG.md CHANGED
@@ -3,6 +3,38 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [6.2.9](https://github.com/nativescript-community/ui-material-components/tree/master/packages/bottom-navigation/compare/v6.2.8...v6.2.9) (2022-01-19)
7
+
8
+ **Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
9
+
10
+
11
+
12
+
13
+
14
+ ## [6.2.8](https://github.com/nativescript-community/ui-material-components/tree/master/packages/bottom-navigation/compare/v6.2.7...v6.2.8) (2022-01-19)
15
+
16
+ **Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
17
+
18
+
19
+
20
+
21
+
22
+ ## [6.2.7](https://github.com/nativescript-community/ui-material-components/tree/master/packages/bottom-navigation/compare/v6.2.6...v6.2.7) (2022-01-19)
23
+
24
+ **Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
25
+
26
+
27
+
28
+
29
+
30
+ ## [6.2.6](https://github.com/nativescript-community/ui-material-components/tree/master/packages/bottom-navigation/compare/v6.2.5...v6.2.6) (2022-01-15)
31
+
32
+ **Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
33
+
34
+
35
+
36
+
37
+
6
38
  ## [6.2.5](https://github.com/nativescript-community/ui-material-components/tree/master/packages/bottom-navigation/compare/v6.2.4...v6.2.5) (2021-12-02)
7
39
 
8
40
  **Note:** Version bump only for package @nativescript-community/ui-material-bottom-navigation
package/index.android.js CHANGED
@@ -409,6 +409,7 @@ let BottomNavigation = class BottomNavigation extends TabNavigationBase {
409
409
  this.fragments.push(fragment);
410
410
  this.attachFragment(fragment, container.getId(), name);
411
411
  }
412
+ this.items[position].callLoaded();
412
413
  return fragment;
413
414
  }
414
415
  setPrimaryItem(position, fragment, force = false) {
@@ -448,6 +449,7 @@ let BottomNavigation = class BottomNavigation extends TabNavigationBase {
448
449
  if (this.items && this.items[position]) {
449
450
  this.items[position].canBeLoaded = false;
450
451
  }
452
+ this.items[position].callUnloaded();
451
453
  }
452
454
  hideFragment(fragment, fragmentManager) {
453
455
  if (!fragmentManager) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript-community/ui-material-bottom-navigation",
3
- "version": "6.2.5",
3
+ "version": "6.2.9",
4
4
  "description": "Material Design Bottom Navigation bars allow movement between primary destinations in an app. Tapping on a bottom navigation icon takes you directly to the associated view or refreshes the currently active view.",
5
5
  "main": "bottomnavigation",
6
6
  "sideEffects": false,
@@ -50,7 +50,7 @@
50
50
  },
51
51
  "readmeFilename": "README.md",
52
52
  "dependencies": {
53
- "@nativescript-community/ui-material-core": "^6.2.5"
53
+ "@nativescript-community/ui-material-core": "^6.2.9"
54
54
  },
55
- "gitHead": "915f166acab2efafc182d410758db0eef5ae95eb"
55
+ "gitHead": "963fb154a4fd6a182b9b5a069c8357c8c408a1ec"
56
56
  }