@softheon/armature 8.15.0 → 8.15.1

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.
@@ -4682,6 +4682,7 @@
4682
4682
  function (nav) {
4683
4683
  this.isMobileSubNavOpen = true;
4684
4684
  this.currentMobileNav = nav;
4685
+ this.sidenav.open();
4685
4686
  };
4686
4687
  /**
4687
4688
  * Mobile SubNav - closes the SubNav
@@ -4696,6 +4697,7 @@
4696
4697
  */
4697
4698
  function () {
4698
4699
  this.isMobileSubNavOpen = false;
4700
+ this.sidenav.close();
4699
4701
  };
4700
4702
  /**
4701
4703
  * Sets the theme color
@@ -4731,6 +4733,7 @@
4731
4733
  { type: core$1.TranslateService }
4732
4734
  ]; };
4733
4735
  ArmatureNavigationComponent.propDecorators = {
4736
+ sidenav: [{ type: core.ViewChild, args: ['snav', { static: false },] }],
4734
4737
  navigationData: [{ type: core.Input }],
4735
4738
  settings: [{ type: core.Input }],
4736
4739
  advancedSettings: [{ type: core.Input }],
@@ -4739,6 +4742,11 @@
4739
4742
  return ArmatureNavigationComponent;
4740
4743
  }());
4741
4744
  if (false) {
4745
+ /**
4746
+ * The side mobile nav
4747
+ * @type {?}
4748
+ */
4749
+ ArmatureNavigationComponent.prototype.sidenav;
4742
4750
  /**
4743
4751
  * Component Input - the navigation data
4744
4752
  * @type {?}