@inera/ids-angular 3.0.1 → 3.0.3

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 (28) hide show
  1. package/bundles/inera-ids-angular.umd.js +47 -17
  2. package/bundles/inera-ids-angular.umd.js.map +1 -1
  3. package/esm2015/lib/classes/icon/IDIcon.js +4 -1
  4. package/esm2015/lib/classes/icon/IDIconProps.js +1 -1
  5. package/esm2015/lib/classes/mobile/MobileMenuItem.js +7 -1
  6. package/esm2015/lib/classes/mobile/MobileMenuItemProps.js +1 -1
  7. package/esm2015/lib/components/agent/agent.component.js +3 -3
  8. package/esm2015/lib/components/alert-global/alert-global.component.js +3 -3
  9. package/esm2015/lib/components/breadcrumbs/breadcrumbs.component.js +1 -1
  10. package/esm2015/lib/components/card/card.component.js +5 -2
  11. package/esm2015/lib/components/footer/footer.component.js +1 -1
  12. package/esm2015/lib/components/grid/row/row.component.js +5 -2
  13. package/esm2015/lib/components/header/header.component.js +1 -1
  14. package/esm2015/lib/components/icon/icon.component.js +1 -1
  15. package/esm2015/lib/components/mobile/menu/mobile-menu.component.js +2 -2
  16. package/esm2015/lib/components/notification/badge/notification-badge.component.js +3 -6
  17. package/esm2015/lib/internals/anchor.component.js +9 -3
  18. package/fesm2015/inera-ids-angular.js +35 -17
  19. package/fesm2015/inera-ids-angular.js.map +1 -1
  20. package/lib/classes/icon/IDIcon.d.ts +1 -0
  21. package/lib/classes/icon/IDIconProps.d.ts +1 -0
  22. package/lib/classes/mobile/MobileMenuItem.d.ts +3 -0
  23. package/lib/classes/mobile/MobileMenuItemProps.d.ts +3 -0
  24. package/lib/components/card/card.component.d.ts +2 -1
  25. package/lib/components/grid/row/row.component.d.ts +2 -1
  26. package/lib/components/notification/badge/notification-badge.component.d.ts +1 -2
  27. package/lib/internals/anchor.component.d.ts +2 -1
  28. package/package.json +1 -1
@@ -4,6 +4,7 @@ export declare class IDIcon {
4
4
  constructor(_props: IDIconProps);
5
5
  get name(): string | undefined;
6
6
  get title(): string | undefined;
7
+ get inline(): boolean | undefined;
7
8
  get color(): string | undefined;
8
9
  get color2(): string | undefined;
9
10
  get size(): string | undefined;
@@ -9,4 +9,5 @@ export interface IDIconProps {
9
9
  colorpreset?: string;
10
10
  padding?: string;
11
11
  rotate?: string;
12
+ inline?: boolean;
12
13
  }
@@ -1,3 +1,4 @@
1
+ import { IDIcon } from "../icon/IDIcon";
1
2
  import { IDLink } from "../link/IDLink";
2
3
  import { IDMobileMenuItemProps } from "./MobileMenuItemProps";
3
4
  export declare class IDMobileMenuItem {
@@ -5,6 +6,8 @@ export declare class IDMobileMenuItem {
5
6
  constructor(_props: IDMobileMenuItemProps);
6
7
  get headline(): string | undefined;
7
8
  get link(): IDLink | undefined;
9
+ get prependIcon(): IDIcon | undefined;
10
+ get appendIcon(): IDIcon | undefined;
8
11
  get items(): IDMobileMenuItem[] | undefined;
9
12
  get expanded(): boolean | undefined;
10
13
  get secondary(): boolean | undefined;
@@ -1,8 +1,11 @@
1
+ import { IDIcon } from "../icon/IDIcon";
1
2
  import { IDLink } from "../link/IDLink";
2
3
  import { IDMobileMenuItem } from "./MobileMenuItem";
3
4
  export interface IDMobileMenuItemProps {
4
5
  headline?: string;
5
6
  link?: IDLink;
7
+ prependIcon?: IDIcon;
8
+ appendIcon?: IDIcon;
6
9
  items?: IDMobileMenuItem[];
7
10
  secondary?: boolean;
8
11
  active?: boolean;
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
2
2
  export declare class IDCardComponent {
3
3
  constructor();
4
4
  fill: boolean;
5
+ lean: boolean;
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<IDCardComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<IDCardComponent, "id-card", never, { "fill": "fill"; }, {}, never, ["*"]>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDCardComponent, "id-card", never, { "fill": "fill"; "lean": "lean"; }, {}, never, ["*"]>;
7
8
  }
@@ -4,9 +4,10 @@ export declare class IDRowComponent {
4
4
  private _elementRef;
5
5
  align: string | null;
6
6
  class: string | null;
7
+ gap: string | null;
7
8
  justify: string | null;
8
9
  style: string | null;
9
10
  constructor(_elementRef: ElementRef);
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<IDRowComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<IDRowComponent, "id-row", never, { "align": "align"; "class": "class"; "justify": "justify"; "style": "style"; }, {}, never, ["*"]>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDRowComponent, "id-row", never, { "align": "align"; "class": "class"; "gap": "gap"; "justify": "justify"; "style": "style"; }, {}, never, ["*"]>;
12
13
  }
@@ -1,8 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class IDNotificationBadgeComponent {
3
3
  constructor();
4
- size: 's' | 'm' | 'lg';
5
4
  outlined: boolean;
6
5
  static ɵfac: i0.ɵɵFactoryDeclaration<IDNotificationBadgeComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<IDNotificationBadgeComponent, "id-notification-badge", never, { "size": "size"; "outlined": "outlined"; }, {}, never, ["*"]>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDNotificationBadgeComponent, "id-notification-badge", never, { "outlined": "outlined"; }, {}, never, ["*"]>;
8
7
  }
@@ -16,6 +16,7 @@ export declare class IDAnchorComponent {
16
16
  scriptHref: import("@angular/platform-browser").SafeUrl;
17
17
  /** LinkObject */
18
18
  link: IDLink | undefined;
19
+ noOutline: boolean;
19
20
  /** Apply classes to <a> element */
20
21
  contextClasses: string[];
21
22
  constructor(sanitizer: DomSanitizer);
@@ -26,5 +27,5 @@ export declare class IDAnchorComponent {
26
27
  get linkFunction(): IDLinkFunction;
27
28
  ngOnChanges(changes: SimpleChanges): void;
28
29
  static ɵfac: i0.ɵɵFactoryDeclaration<IDAnchorComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<IDAnchorComponent, "id-anchor", never, { "link": "link"; "contextClasses": "contextClasses"; }, {}, never, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDAnchorComponent, "id-anchor", never, { "link": "link"; "noOutline": "noOutline"; "contextClasses": "contextClasses"; }, {}, never, ["[prepend]", "[append]"]>;
30
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inera/ids-angular",
3
- "version": "3.0.1",
3
+ "version": "3.0.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "*",
6
6
  "@angular/core": "*",