@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.
@@ -1,5 +1,5 @@
1
1
  import { __values, __spread, __awaiter, __generator, __extends } from 'tslib';
2
- import { InjectionToken, Injectable, Optional, Inject, ɵɵdefineInjectable, ɵɵinject, Component, Input, NgModule, Directive, ElementRef, HostListener, EventEmitter, Output, ChangeDetectorRef, Injector, ViewChild, TemplateRef, ViewContainerRef, INJECTOR, ErrorHandler } from '@angular/core';
2
+ import { InjectionToken, Injectable, Optional, Inject, ɵɵdefineInjectable, ɵɵinject, Component, Input, NgModule, Directive, ElementRef, HostListener, EventEmitter, Output, ChangeDetectorRef, ViewChild, Injector, TemplateRef, ViewContainerRef, INJECTOR, ErrorHandler } from '@angular/core';
3
3
  import { HttpHeaders, HttpClient, HttpClientModule } from '@angular/common/http';
4
4
  import { OAuthService, OAuthModule } from 'angular-oauth2-oidc';
5
5
  import { of, BehaviorSubject, Observable, ReplaySubject, Subscription } from 'rxjs';
@@ -3688,6 +3688,16 @@ if (false) {
3688
3688
  * @type {?|undefined}
3689
3689
  */
3690
3690
  Person.prototype.relationship;
3691
+ /**
3692
+ * Gets or sets the address.
3693
+ * @type {?|undefined}
3694
+ */
3695
+ Person.prototype.address;
3696
+ /**
3697
+ * Gets or sets the SSN.
3698
+ * @type {?|undefined}
3699
+ */
3700
+ Person.prototype.ssn;
3691
3701
  }
3692
3702
 
3693
3703
  /**
@@ -4496,6 +4506,7 @@ var ArmatureNavigationComponent = /** @class */ (function () {
4496
4506
  function (nav) {
4497
4507
  this.isMobileSubNavOpen = true;
4498
4508
  this.currentMobileNav = nav;
4509
+ this.sidenav.open();
4499
4510
  };
4500
4511
  /**
4501
4512
  * Mobile SubNav - closes the SubNav
@@ -4510,6 +4521,7 @@ var ArmatureNavigationComponent = /** @class */ (function () {
4510
4521
  */
4511
4522
  function () {
4512
4523
  this.isMobileSubNavOpen = false;
4524
+ this.sidenav.close();
4513
4525
  };
4514
4526
  /**
4515
4527
  * Sets the theme color
@@ -4545,6 +4557,7 @@ var ArmatureNavigationComponent = /** @class */ (function () {
4545
4557
  { type: TranslateService }
4546
4558
  ]; };
4547
4559
  ArmatureNavigationComponent.propDecorators = {
4560
+ sidenav: [{ type: ViewChild, args: ['snav', { static: false },] }],
4548
4561
  navigationData: [{ type: Input }],
4549
4562
  settings: [{ type: Input }],
4550
4563
  advancedSettings: [{ type: Input }],
@@ -4553,6 +4566,11 @@ var ArmatureNavigationComponent = /** @class */ (function () {
4553
4566
  return ArmatureNavigationComponent;
4554
4567
  }());
4555
4568
  if (false) {
4569
+ /**
4570
+ * The side mobile nav
4571
+ * @type {?}
4572
+ */
4573
+ ArmatureNavigationComponent.prototype.sidenav;
4556
4574
  /**
4557
4575
  * Component Input - the navigation data
4558
4576
  * @type {?}