@inera/ids-angular 1.8.0 → 1.9.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.
Files changed (27) hide show
  1. package/bundles/inera-ids-angular.umd.js +81 -21
  2. package/bundles/inera-ids-angular.umd.js.map +1 -1
  3. package/esm2015/lib/classes/header/IDHeaderAvatar.js +4 -1
  4. package/esm2015/lib/classes/header/IDHeaderAvatarProps.js +1 -1
  5. package/esm2015/lib/classes/header/IDHeaderNavItem.js +4 -1
  6. package/esm2015/lib/classes/header/IDHeaderNavItemProps.js +1 -1
  7. package/esm2015/lib/components/button/button.component.js +11 -5
  8. package/esm2015/lib/components/card/card.component.js +2 -2
  9. package/esm2015/lib/components/card/card.module.js +1 -1
  10. package/esm2015/lib/components/dialog/actions/dialog-actions.component.js +2 -2
  11. package/esm2015/lib/components/dialog/dialog.component.js +2 -2
  12. package/esm2015/lib/components/dialog/dialog.module.js +1 -1
  13. package/esm2015/lib/components/grid/column/column.component.js +24 -7
  14. package/esm2015/lib/components/grid/container/container.component.js +5 -2
  15. package/esm2015/lib/components/grid/row/row.component.js +18 -6
  16. package/esm2015/lib/components/header/header.component.js +2 -2
  17. package/fesm2015/inera-ids-angular.js +63 -19
  18. package/fesm2015/inera-ids-angular.js.map +1 -1
  19. package/lib/classes/header/IDHeaderAvatar.d.ts +1 -0
  20. package/lib/classes/header/IDHeaderAvatarProps.d.ts +1 -0
  21. package/lib/classes/header/IDHeaderNavItem.d.ts +1 -0
  22. package/lib/classes/header/IDHeaderNavItemProps.d.ts +1 -0
  23. package/lib/components/button/button.component.d.ts +4 -2
  24. package/lib/components/grid/column/column.component.d.ts +10 -3
  25. package/lib/components/grid/container/container.component.d.ts +2 -1
  26. package/lib/components/grid/row/row.component.d.ts +7 -2
  27. package/package.json +2 -2
@@ -7,4 +7,5 @@ export declare class IDHeaderAvatar {
7
7
  get linkLeft(): IDLink | undefined;
8
8
  get linkRight(): IDLink | undefined;
9
9
  get serviceName(): string | undefined;
10
+ get linkMobile(): IDLink | undefined;
10
11
  }
@@ -3,5 +3,6 @@ export interface IDHeaderAvatarProps {
3
3
  username?: string;
4
4
  linkLeft?: IDLink;
5
5
  linkRight?: IDLink;
6
+ linkMobile?: IDLink;
6
7
  serviceName?: string;
7
8
  }
@@ -11,4 +11,5 @@ export declare class IDHeaderNavItem {
11
11
  get paragraph(): string | undefined;
12
12
  get link(): IDLink | undefined;
13
13
  get paragraphLink(): IDLink | undefined;
14
+ get active(): boolean | undefined;
14
15
  }
@@ -8,4 +8,5 @@ export interface IDHeaderNavItemProps {
8
8
  paragraph?: string;
9
9
  link?: IDLink;
10
10
  pragraphLink?: IDLink;
11
+ active?: boolean;
11
12
  }
@@ -3,12 +3,14 @@ export declare class IDButtonComponent {
3
3
  constructor();
4
4
  secondary: boolean;
5
5
  toggle: boolean;
6
- responsive: boolean;
6
+ block: boolean;
7
+ sBlock: boolean;
8
+ mBlock: boolean;
7
9
  active: boolean;
8
10
  submit: boolean;
9
11
  search: boolean;
10
12
  disabled: boolean;
11
13
  type: string | undefined;
12
14
  static ɵfac: i0.ɵɵFactoryDeclaration<IDButtonComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<IDButtonComponent, "id-button", never, { "secondary": "secondary"; "toggle": "toggle"; "responsive": "responsive"; "active": "active"; "submit": "submit"; "search": "search"; "disabled": "disabled"; "type": "type"; }, {}, never, ["*"]>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDButtonComponent, "id-button", never, { "secondary": "secondary"; "toggle": "toggle"; "block": "block"; "sBlock": "sBlock"; "mBlock": "mBlock"; "active": "active"; "submit": "submit"; "search": "search"; "disabled": "disabled"; "type": "type"; }, {}, never, ["*"]>;
14
16
  }
@@ -1,9 +1,16 @@
1
+ import { ElementRef } from '@angular/core';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class IDColumnComponent {
4
+ private _elementRef;
3
5
  cols: String;
4
- mobile: String;
6
+ offset: String | null;
7
+ m: String;
8
+ mOffset: String | null;
9
+ s: String;
10
+ sOffset: String | null;
5
11
  align: String;
6
- constructor();
12
+ style: String | null;
13
+ constructor(_elementRef: ElementRef);
7
14
  static ɵfac: i0.ɵɵFactoryDeclaration<IDColumnComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<IDColumnComponent, "id-col", never, { "cols": "cols"; "mobile": "mobile"; "align": "align"; }, {}, never, ["*"]>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDColumnComponent, "id-col", never, { "cols": "cols"; "offset": "offset"; "m": "m"; "mOffset": "mOffset"; "s": "s"; "sOffset": "sOffset"; "align": "align"; "style": "style"; }, {}, never, ["*"]>;
9
16
  }
@@ -1,7 +1,8 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class IDContainerComponent {
3
3
  fluid: Boolean;
4
+ gutterless: Boolean;
4
5
  constructor();
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<IDContainerComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<IDContainerComponent, "id-container", never, { "fluid": "fluid"; }, {}, never, ["*"]>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDContainerComponent, "id-container", never, { "fluid": "fluid"; "gutterless": "gutterless"; }, {}, never, ["*"]>;
7
8
  }
@@ -1,6 +1,11 @@
1
+ import { ElementRef } from '@angular/core';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class IDRowComponent {
3
- constructor();
4
+ private _elementRef;
5
+ align: string | null;
6
+ justify: string | null;
7
+ style: string | null;
8
+ constructor(_elementRef: ElementRef);
4
9
  static ɵfac: i0.ɵɵFactoryDeclaration<IDRowComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<IDRowComponent, "id-row", never, {}, {}, never, ["*"]>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDRowComponent, "id-row", never, { "align": "align"; "justify": "justify"; "style": "style"; }, {}, never, ["*"]>;
6
11
  }
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@inera/ids-angular",
3
- "version": "1.8.0",
3
+ "version": "1.9.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^12.2.0",
6
6
  "@angular/core": "^12.2.0",
7
- "@inera/ids-core": "1.8.x"
7
+ "@inera/ids-core": "1.9.x"
8
8
  },
9
9
  "publishConfig": {
10
10
  "access": "public"