@softheon/armature 8.15.0 → 8.16.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.
@@ -3874,6 +3874,16 @@
3874
3874
  * @type {?|undefined}
3875
3875
  */
3876
3876
  Person.prototype.relationship;
3877
+ /**
3878
+ * Gets or sets the address.
3879
+ * @type {?|undefined}
3880
+ */
3881
+ Person.prototype.address;
3882
+ /**
3883
+ * Gets or sets the SSN.
3884
+ * @type {?|undefined}
3885
+ */
3886
+ Person.prototype.ssn;
3877
3887
  }
3878
3888
 
3879
3889
  /**
@@ -4682,6 +4692,7 @@
4682
4692
  function (nav) {
4683
4693
  this.isMobileSubNavOpen = true;
4684
4694
  this.currentMobileNav = nav;
4695
+ this.sidenav.open();
4685
4696
  };
4686
4697
  /**
4687
4698
  * Mobile SubNav - closes the SubNav
@@ -4696,6 +4707,7 @@
4696
4707
  */
4697
4708
  function () {
4698
4709
  this.isMobileSubNavOpen = false;
4710
+ this.sidenav.close();
4699
4711
  };
4700
4712
  /**
4701
4713
  * Sets the theme color
@@ -4731,6 +4743,7 @@
4731
4743
  { type: core$1.TranslateService }
4732
4744
  ]; };
4733
4745
  ArmatureNavigationComponent.propDecorators = {
4746
+ sidenav: [{ type: core.ViewChild, args: ['snav', { static: false },] }],
4734
4747
  navigationData: [{ type: core.Input }],
4735
4748
  settings: [{ type: core.Input }],
4736
4749
  advancedSettings: [{ type: core.Input }],
@@ -4739,6 +4752,11 @@
4739
4752
  return ArmatureNavigationComponent;
4740
4753
  }());
4741
4754
  if (false) {
4755
+ /**
4756
+ * The side mobile nav
4757
+ * @type {?}
4758
+ */
4759
+ ArmatureNavigationComponent.prototype.sidenav;
4742
4760
  /**
4743
4761
  * Component Input - the navigation data
4744
4762
  * @type {?}