@inera/ids-angular 4.1.2 → 4.3.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.
@@ -9,4 +9,5 @@ export declare class IDHeaderAvatar {
9
9
  get linkRight(): IDLink | undefined;
10
10
  get unit(): string | undefined;
11
11
  get linkMobile(): IDLink | undefined;
12
+ get hide(): boolean | undefined;
12
13
  }
@@ -6,4 +6,5 @@ export interface IDHeaderAvatarProps {
6
6
  linkRight?: IDLink;
7
7
  linkMobile?: IDLink;
8
8
  unit?: string;
9
+ hide?: boolean;
9
10
  }
@@ -3,6 +3,7 @@ export declare abstract class IDLink {
3
3
  protected _props: IDLinkProps;
4
4
  constructor(_props: IDLinkProps);
5
5
  get label(): string;
6
+ get arialabel(): string | undefined;
6
7
  get id(): string | undefined;
7
8
  get classes(): string[] | undefined;
8
9
  set label(label: string);
@@ -1,6 +1,7 @@
1
1
  import { Router } from "@angular/router";
2
2
  export interface IDLinkProps {
3
3
  label: string;
4
+ arialabel?: string;
4
5
  id?: string;
5
6
  classes?: string[];
6
7
  action?: () => any;
@@ -2,8 +2,9 @@ import * as i0 from "@angular/core";
2
2
  export declare class IDCardComponent {
3
3
  constructor();
4
4
  fill: boolean;
5
+ fill2: boolean;
5
6
  interactive: boolean;
6
7
  lean: boolean;
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<IDCardComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<IDCardComponent, "id-card", never, { "fill": "fill"; "interactive": "interactive"; "lean": "lean"; }, {}, never, ["*"]>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDCardComponent, "id-card", never, { "fill": "fill"; "fill2": "fill2"; "interactive": "interactive"; "lean": "lean"; }, {}, never, ["*"]>;
9
10
  }
@@ -2,11 +2,12 @@ import { IDFormBase } from '../base/IDFormBase';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class IDSelectMultipleComponent extends IDFormBase {
4
4
  label: string | undefined;
5
+ disabled: boolean;
5
6
  errormessage: string | undefined;
6
7
  maxHeight: string | undefined;
7
8
  placeholder: string;
8
9
  selectedlabel: string;
9
10
  multiselectedlabel: string;
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<IDSelectMultipleComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<IDSelectMultipleComponent, "id-select-multiple", never, { "label": "label"; "errormessage": "errormessage"; "maxHeight": "maxHeight"; "placeholder": "placeholder"; "selectedlabel": "selectedlabel"; "multiselectedlabel": "multiselectedlabel"; }, {}, never, ["*"]>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDSelectMultipleComponent, "id-select-multiple", never, { "label": "label"; "disabled": "disabled"; "errormessage": "errormessage"; "maxHeight": "maxHeight"; "placeholder": "placeholder"; "selectedlabel": "selectedlabel"; "multiselectedlabel": "multiselectedlabel"; }, {}, never, ["*"]>;
12
13
  }
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@inera/ids-angular",
3
- "version": "4.1.2",
3
+ "version": "4.3.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "*",
6
6
  "@angular/core": "*",
7
- "@inera/ids-core": "4.1.x"
7
+ "@inera/ids-core": "4.3.x"
8
8
  },
9
9
  "publishConfig": {
10
10
  "access": "public"