@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,7 +1,8 @@
1
- import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
2
1
  import { MediaMatcher } from '@angular/cdk/layout';
2
+ import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
3
3
  import { TranslateService } from '@ngx-translate/core';
4
- import { NavNode, NavigationSettings, NavigationAdvancedSettings, NavigationThemeSettings } from '../../models/nav-models-api';
4
+ import { MatSidenav } from '@angular/material';
5
+ import { NavigationAdvancedSettings, NavigationSettings, NavigationThemeSettings, NavNode } from '../../models/nav-models-api';
5
6
  /**
6
7
  * The Navigation Component
7
8
  */
@@ -9,6 +10,8 @@ export declare class ArmatureNavigationComponent implements OnInit, OnDestroy {
9
10
  private changeDetectorRef;
10
11
  private media;
11
12
  private translate;
13
+ /** The side mobile nav */
14
+ sidenav: MatSidenav;
12
15
  /** Component Input - the navigation data */
13
16
  navigationData: NavNode[];
14
17
  /** Component Input - the navigation settings */
@@ -9,6 +9,7 @@
9
9
  * https://github.com/swagger-api/swagger-codegen.git
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { Address } from "../../../forms/forms-api";
12
13
  /**
13
14
  * The person model
14
15
  */
@@ -41,4 +42,12 @@ export interface Person {
41
42
  * Gets or sets the relationship.
42
43
  */
43
44
  relationship?: string;
45
+ /**
46
+ * Gets or sets the address.
47
+ */
48
+ address?: Address;
49
+ /**
50
+ * Gets or sets the SSN.
51
+ */
52
+ ssn?: string;
44
53
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softheon/armature",
3
- "version": "8.15.0",
3
+ "version": "8.16.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^8.2.14",
6
6
  "@angular/core": "^8.2.14",