@inera/ids-angular 3.0.4 → 3.1.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.
Files changed (27) hide show
  1. package/bundles/inera-ids-angular.umd.js +93 -15
  2. package/bundles/inera-ids-angular.umd.js.map +1 -1
  3. package/esm2015/lib/components/button/button.component.js +2 -2
  4. package/esm2015/lib/components/button-group/button-group.component.js +5 -2
  5. package/esm2015/lib/components/card/card.component.js +5 -2
  6. package/esm2015/lib/components/form/base/IDFormBase.js +6 -5
  7. package/esm2015/lib/components/form/input/input.component.js +2 -2
  8. package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +8 -2
  9. package/esm2015/lib/components/header/header.component.js +1 -1
  10. package/esm2015/lib/components/link/link.component.js +26 -5
  11. package/esm2015/lib/components/list/item/list-item.component.js +5 -2
  12. package/esm2015/lib/components/navigation/local/navigation-local.component.js +19 -0
  13. package/esm2015/lib/components/navigation/local/navigation-local.module.js +22 -0
  14. package/esm2015/public-api.js +4 -2
  15. package/fesm2015/inera-ids-angular.js +88 -15
  16. package/fesm2015/inera-ids-angular.js.map +1 -1
  17. package/lib/components/button/button.component.d.ts +1 -1
  18. package/lib/components/button-group/button-group.component.d.ts +2 -1
  19. package/lib/components/card/card.component.d.ts +2 -1
  20. package/lib/components/form/base/IDFormBase.d.ts +1 -1
  21. package/lib/components/form/select-multiple/select-multiple.component.d.ts +3 -1
  22. package/lib/components/link/link.component.d.ts +9 -2
  23. package/lib/components/list/item/list-item.component.d.ts +2 -1
  24. package/lib/components/navigation/local/navigation-local.component.d.ts +7 -0
  25. package/lib/components/navigation/local/navigation-local.module.d.ts +8 -0
  26. package/package.json +2 -2
  27. package/public-api.d.ts +2 -0
@@ -21,7 +21,7 @@ export declare class IDButtonComponent {
21
21
  trigger: string;
22
22
  tabindex: string;
23
23
  iconobject: IDIcon | undefined;
24
- onClicked: EventEmitter<boolean>;
24
+ onClicked: EventEmitter<Event>;
25
25
  static ɵfac: i0.ɵɵFactoryDeclaration<IDButtonComponent, never>;
26
26
  static ɵcmp: i0.ɵɵComponentDeclaration<IDButtonComponent, "id-button", never, { "secondary": "secondary"; "fab": "fab"; "icon": "icon"; "tertiary": "tertiary"; "toggle": "toggle"; "block": "block"; "sblock": "sblock"; "mblock": "mblock"; "active": "active"; "submit": "submit"; "search": "search"; "size": "size"; "disabled": "disabled"; "type": "type"; "color": "color"; "trigger": "trigger"; "tabindex": "tabindex"; "iconobject": "iconobject"; }, { "onClicked": "onClicked"; }, never, ["*"]>;
27
27
  }
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
2
2
  export declare class IDButtonGroupComponent {
3
3
  constructor();
4
4
  rtl: boolean;
5
+ unresponsive: boolean;
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<IDButtonGroupComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<IDButtonGroupComponent, "id-button-group", never, { "rtl": "rtl"; }, {}, never, ["*"]>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDButtonGroupComponent, "id-button-group", never, { "rtl": "rtl"; "unresponsive": "unresponsive"; }, {}, never, ["*"]>;
7
8
  }
@@ -2,7 +2,8 @@ import * as i0 from "@angular/core";
2
2
  export declare class IDCardComponent {
3
3
  constructor();
4
4
  fill: boolean;
5
+ interactive: boolean;
5
6
  lean: boolean;
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<IDCardComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<IDCardComponent, "id-card", never, { "fill": "fill"; "lean": "lean"; }, {}, never, ["*"]>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDCardComponent, "id-card", never, { "fill": "fill"; "interactive": "interactive"; "lean": "lean"; }, {}, never, ["*"]>;
8
9
  }
@@ -5,5 +5,5 @@ export declare class IDFormBase {
5
5
  novalidation: boolean;
6
6
  constructor();
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<IDFormBase, never>;
8
- static ɵprov: i0.ɵɵInjectableDeclaration<IDFormBase>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDFormBase, "ng-component", never, { "valid": "valid"; "light": "light"; "novalidation": "novalidation"; }, {}, never, never>;
9
9
  }
@@ -5,6 +5,8 @@ export declare class IDSelectMultipleComponent extends IDFormBase {
5
5
  errormessage: string | undefined;
6
6
  maxHeight: string | undefined;
7
7
  placeholder: string;
8
+ selectedlabel: string;
9
+ multiselectedlabel: string;
8
10
  static ɵfac: i0.ɵɵFactoryDeclaration<IDSelectMultipleComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<IDSelectMultipleComponent, "id-select-multiple", never, { "label": "label"; "errormessage": "errormessage"; "maxHeight": "maxHeight"; "placeholder": "placeholder"; }, {}, never, ["*"]>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDSelectMultipleComponent, "id-select-multiple", never, { "label": "label"; "errormessage": "errormessage"; "maxHeight": "maxHeight"; "placeholder": "placeholder"; "selectedlabel": "selectedlabel"; "multiselectedlabel": "multiselectedlabel"; }, {}, never, ["*"]>;
10
12
  }
@@ -11,13 +11,20 @@ export declare class IDLinkComponent {
11
11
  underlined: boolean;
12
12
  padding: string | null;
13
13
  outline: string | null;
14
- block: boolean;
15
14
  color: string | undefined;
15
+ active: boolean;
16
+ colorpreset: number;
17
+ hovercolor: string | null;
18
+ light: string | null;
19
+ bold: boolean;
20
+ appendicongap: string | null;
21
+ prependicongap: string | null;
22
+ block: boolean;
16
23
  size: string | undefined;
17
24
  activeicon: boolean;
18
25
  activeiconbackground: string | undefined;
19
26
  external: boolean;
20
27
  slot: string | undefined;
21
28
  static ɵfac: i0.ɵɵFactoryDeclaration<IDLinkComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<IDLinkComponent, "id-link", never, { "link": "link"; "notificationbadge": "notificationbadge"; "prependicon": "prependicon"; "appendicon": "appendicon"; "underlined": "underlined"; "padding": "padding"; "outline": "outline"; "block": "block"; "color": "color"; "size": "size"; "activeicon": "activeicon"; "activeiconbackground": "activeiconbackground"; "external": "external"; "slot": "slot"; }, {}, never, ["*"]>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDLinkComponent, "id-link", never, { "link": "link"; "notificationbadge": "notificationbadge"; "prependicon": "prependicon"; "appendicon": "appendicon"; "underlined": "underlined"; "padding": "padding"; "outline": "outline"; "color": "color"; "active": "active"; "colorpreset": "colorpreset"; "hovercolor": "hovercolor"; "light": "light"; "bold": "bold"; "appendicongap": "appendicongap"; "prependicongap": "prependicongap"; "block": "block"; "size": "size"; "activeicon": "activeicon"; "activeiconbackground": "activeiconbackground"; "external": "external"; "slot": "slot"; }, {}, never, ["*"]>;
23
30
  }
@@ -7,7 +7,8 @@ export declare class IDListItemComponent {
7
7
  monthlabel: string | null;
8
8
  day: string | null;
9
9
  showdatelabel: boolean;
10
+ interactive: boolean;
10
11
  constructor();
11
12
  static ɵfac: i0.ɵɵFactoryDeclaration<IDListItemComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<IDListItemComponent, "id-list-item", never, { "headline": "headline"; "date": "date"; "year": "year"; "month": "month"; "monthlabel": "monthlabel"; "day": "day"; "showdatelabel": "showdatelabel"; }, {}, never, ["*"]>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDListItemComponent, "id-list-item", never, { "headline": "headline"; "date": "date"; "year": "year"; "month": "month"; "monthlabel": "monthlabel"; "day": "day"; "showdatelabel": "showdatelabel"; "interactive": "interactive"; }, {}, never, ["*"]>;
13
14
  }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDNavigationLocalComponent {
3
+ constructor();
4
+ headline: string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDNavigationLocalComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDNavigationLocalComponent, "id-navigation-local", never, { "headline": "headline"; }, {}, never, ["*"]>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/navigation/local/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./navigation-local.component";
4
+ export declare class IDNavigationLocalModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDNavigationLocalModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDNavigationLocalModule, [typeof i1.IDNavigationLocalComponent], never, [typeof i1.IDNavigationLocalComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDNavigationLocalModule>;
8
+ }
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@inera/ids-angular",
3
- "version": "3.0.4",
3
+ "version": "3.1.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "*",
6
6
  "@angular/core": "*",
7
- "@inera/ids-core": "3.0.x"
7
+ "@inera/ids-core": "3.1.x"
8
8
  },
9
9
  "publishConfig": {
10
10
  "access": "public"
package/public-api.d.ts CHANGED
@@ -72,6 +72,8 @@ export * from './lib/components/list/item/info/list-item-info.component';
72
72
  export * from './lib/components/list/item/info/list-item-info.module';
73
73
  export * from './lib/components/navigation/content/navigation-content.component';
74
74
  export * from './lib/components/navigation/content/navigation-content.module';
75
+ export * from './lib/components/navigation/local/navigation-local.component';
76
+ export * from './lib/components/navigation/local/navigation-local.module';
75
77
  export * from './lib/components/notification/badge/notification-badge.component';
76
78
  export * from './lib/components/notification/badge/notification-badge.module';
77
79
  export * from './lib/classes/notification-badge';