@inera/ids-angular 2.2.0 → 2.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.
Files changed (28) hide show
  1. package/bundles/inera-ids-angular.umd.js +167 -13
  2. package/bundles/inera-ids-angular.umd.js.map +1 -1
  3. package/esm2015/lib/components/alert/alert.component.js +2 -2
  4. package/esm2015/lib/components/carousel/carousel-item/carousel-item.component.js +25 -0
  5. package/esm2015/lib/components/carousel/carousel.component.js +28 -0
  6. package/esm2015/lib/components/carousel/carousel.module.js +27 -0
  7. package/esm2015/lib/components/form/checkbox/checkbox.component.js +7 -4
  8. package/esm2015/lib/components/form/checkbox-group/checkbox-group.component.js +8 -2
  9. package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +5 -2
  10. package/esm2015/lib/components/notification/badge/notification-badge.component.js +5 -2
  11. package/esm2015/lib/components/tabs/tab/tab.component.js +9 -3
  12. package/esm2015/lib/components/tag/tag.component.js +31 -0
  13. package/esm2015/lib/components/tag/tag.module.js +22 -0
  14. package/esm2015/public-api.js +8 -1
  15. package/fesm2015/inera-ids-angular.js +150 -9
  16. package/fesm2015/inera-ids-angular.js.map +1 -1
  17. package/lib/components/carousel/carousel-item/carousel-item.component.d.ts +9 -0
  18. package/lib/components/carousel/carousel.component.d.ts +10 -0
  19. package/lib/components/carousel/carousel.module.d.ts +9 -0
  20. package/lib/components/form/checkbox/checkbox.component.d.ts +2 -1
  21. package/lib/components/form/checkbox-group/checkbox-group.component.d.ts +3 -1
  22. package/lib/components/form/select-multiple/select-multiple.component.d.ts +2 -1
  23. package/lib/components/notification/badge/notification-badge.component.d.ts +2 -1
  24. package/lib/components/tabs/tab/tab.component.d.ts +3 -1
  25. package/lib/components/tag/tag.component.d.ts +12 -0
  26. package/lib/components/tag/tag.module.d.ts +8 -0
  27. package/package.json +2 -2
  28. package/public-api.d.ts +5 -0
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDCarouselItemComponent {
3
+ headline: string;
4
+ description: string;
5
+ step: string;
6
+ constructor();
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDCarouselItemComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDCarouselItemComponent, "id-carousel-item", never, { "headline": "headline"; "description": "description"; "step": "step"; }, {}, never, ["*"]>;
9
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDCarouselComponent {
3
+ autoplay: boolean;
4
+ srNextLabel: string;
5
+ srPrevLabel: string;
6
+ autoplayDelay: number;
7
+ constructor();
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDCarouselComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDCarouselComponent, "id-carousel", never, { "autoplay": "autoplay"; "srNextLabel": "srNextLabel"; "srPrevLabel": "srPrevLabel"; "autoplayDelay": "autoplayDelay"; }, {}, never, ["*"]>;
10
+ }
@@ -0,0 +1,9 @@
1
+ import '@inera/ids-core/components/carousel/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./carousel.component";
4
+ import * as i2 from "./carousel-item/carousel-item.component";
5
+ export declare class IDCarouselModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDCarouselModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDCarouselModule, [typeof i1.IDCarouselComponent, typeof i2.IDCarouselItemComponent], never, [typeof i1.IDCarouselComponent, typeof i2.IDCarouselItemComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDCarouselModule>;
9
+ }
@@ -1,7 +1,8 @@
1
1
  import { IDFormBase } from '../base/IDFormBase';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class IDCheckboxComponent extends IDFormBase {
4
+ compact: boolean | undefined;
4
5
  constructor();
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<IDCheckboxComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<IDCheckboxComponent, "id-checkbox", never, {}, {}, never, ["*"]>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDCheckboxComponent, "id-checkbox", never, { "compact": "compact"; }, {}, never, ["*"]>;
7
8
  }
@@ -3,8 +3,10 @@ import { IDFormBase } from '../base/IDFormBase';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class IDCheckboxGroupComponent extends IDFormBase implements OnInit {
5
5
  errorMessage: string | undefined;
6
+ legend: string | undefined;
7
+ compact: boolean | undefined;
6
8
  constructor();
7
9
  ngOnInit(): void;
8
10
  static ɵfac: i0.ɵɵFactoryDeclaration<IDCheckboxGroupComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<IDCheckboxGroupComponent, "id-checkbox-group", never, { "errorMessage": "errorMessage"; }, {}, never, ["*"]>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDCheckboxGroupComponent, "id-checkbox-group", never, { "errorMessage": "errorMessage"; "legend": "legend"; "compact": "compact"; }, {}, never, ["*"]>;
10
12
  }
@@ -3,7 +3,8 @@ import * as i0 from "@angular/core";
3
3
  export declare class IDSelectMultipleComponent extends IDFormBase {
4
4
  label: string | undefined;
5
5
  errorMessage: string | undefined;
6
+ maxHeight: string | undefined;
6
7
  placeholder: string;
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<IDSelectMultipleComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<IDSelectMultipleComponent, "id-select-multiple", never, { "label": "label"; "errorMessage": "errorMessage"; "placeholder": "placeholder"; }, {}, never, ["*"]>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDSelectMultipleComponent, "id-select-multiple", never, { "label": "label"; "errorMessage": "errorMessage"; "maxHeight": "maxHeight"; "placeholder": "placeholder"; }, {}, never, ["*"]>;
9
10
  }
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
2
2
  export declare class IDNotificationBadgeComponent {
3
3
  constructor();
4
4
  size: 's' | 'm' | 'lg';
5
+ outlined: boolean;
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<IDNotificationBadgeComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<IDNotificationBadgeComponent, "id-notification-badge", never, { "size": "size"; }, {}, never, ["*"]>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDNotificationBadgeComponent, "id-notification-badge", never, { "size": "size"; "outlined": "outlined"; }, {}, never, ["*"]>;
7
8
  }
@@ -2,10 +2,12 @@ import { ElementRef } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class IDTabComponent {
4
4
  private elementRef;
5
+ notices: number;
6
+ notifications: number;
5
7
  label: string;
6
8
  icon: string;
7
9
  selected: Boolean;
8
10
  constructor(elementRef: ElementRef<HTMLElement>);
9
11
  static ɵfac: i0.ɵɵFactoryDeclaration<IDTabComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<IDTabComponent, "id-tab", never, { "label": "label"; "icon": "icon"; "selected": "selected"; }, {}, never, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDTabComponent, "id-tab", never, { "notices": "notices"; "notifications": "notifications"; "label": "label"; "icon": "icon"; "selected": "selected"; }, {}, never, never>;
11
13
  }
@@ -0,0 +1,12 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IDTagComponent {
4
+ clickable: boolean;
5
+ closeable: boolean;
6
+ srCloseLabel: string;
7
+ clicked: EventEmitter<boolean>;
8
+ closed: EventEmitter<boolean>;
9
+ constructor();
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDTagComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDTagComponent, "id-tag", never, { "clickable": "clickable"; "closeable": "closeable"; "srCloseLabel": "srCloseLabel"; }, { "clicked": "clicked"; "closed": "closed"; }, never, ["*"]>;
12
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/tag/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./tag.component";
4
+ export declare class IDTagModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDTagModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDTagModule, [typeof i1.IDTagComponent], never, [typeof i1.IDTagComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDTagModule>;
8
+ }
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@inera/ids-angular",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "*",
6
6
  "@angular/core": "*",
7
- "@inera/ids-core": "2.1.x"
7
+ "@inera/ids-core": "2.3.x"
8
8
  },
9
9
  "publishConfig": {
10
10
  "access": "public"
package/public-api.d.ts CHANGED
@@ -10,6 +10,9 @@ export * from './lib/components/button/button.component';
10
10
  export * from './lib/components/button/button.module';
11
11
  export * from './lib/components/button-group/button-group.component';
12
12
  export * from './lib/components/button-group/button-group.module';
13
+ export * from './lib/components/carousel/carousel.component';
14
+ export * from './lib/components/carousel/carousel.module';
15
+ export * from './lib/components/carousel/carousel-item/carousel-item.component';
13
16
  export * from './lib/components/breadcrumbs/breadcrumbs.component';
14
17
  export * from './lib/components/breadcrumbs/breadcrumbs.module';
15
18
  export * from './lib/components/card/card.component';
@@ -94,5 +97,7 @@ export * from './lib/components/tabs/tabs.component';
94
97
  export * from './lib/components/tabs/panel/tab-panel.component';
95
98
  export * from './lib/components/tabs/tab/tab.component';
96
99
  export * from './lib/components/tabs/tabs.module';
100
+ export * from './lib/components/tag/tag.component';
101
+ export * from './lib/components/tag/tag.module';
97
102
  export * from './lib/components/tooltip/tooltip.component';
98
103
  export * from './lib/components/tooltip/tooltip.module';