@inera/ids-angular 2.2.1 → 2.4.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 (34) hide show
  1. package/bundles/inera-ids-angular.umd.js +243 -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/stepper/step/step.component.js +34 -0
  12. package/esm2015/lib/components/stepper/stepper.component.js +14 -0
  13. package/esm2015/lib/components/stepper/stepper.module.js +27 -0
  14. package/esm2015/lib/components/tabs/tab/tab.component.js +9 -3
  15. package/esm2015/lib/components/tag/tag.component.js +31 -0
  16. package/esm2015/lib/components/tag/tag.module.js +22 -0
  17. package/esm2015/public-api.js +12 -1
  18. package/fesm2015/inera-ids-angular.js +217 -9
  19. package/fesm2015/inera-ids-angular.js.map +1 -1
  20. package/lib/components/carousel/carousel-item/carousel-item.component.d.ts +9 -0
  21. package/lib/components/carousel/carousel.component.d.ts +10 -0
  22. package/lib/components/carousel/carousel.module.d.ts +9 -0
  23. package/lib/components/form/checkbox/checkbox.component.d.ts +2 -1
  24. package/lib/components/form/checkbox-group/checkbox-group.component.d.ts +3 -1
  25. package/lib/components/form/select-multiple/select-multiple.component.d.ts +2 -1
  26. package/lib/components/notification/badge/notification-badge.component.d.ts +2 -1
  27. package/lib/components/stepper/step/step.component.d.ts +12 -0
  28. package/lib/components/stepper/stepper.component.d.ts +5 -0
  29. package/lib/components/stepper/stepper.module.d.ts +9 -0
  30. package/lib/components/tabs/tab/tab.component.d.ts +3 -1
  31. package/lib/components/tag/tag.component.d.ts +12 -0
  32. package/lib/components/tag/tag.module.d.ts +8 -0
  33. package/package.json +2 -2
  34. package/public-api.d.ts +8 -0
@@ -8,6 +8,7 @@ import '@inera/ids-core/components/agent/register';
8
8
  import '@inera/ids-core/components/badge/register';
9
9
  import '@inera/ids-core/components/button/register';
10
10
  import '@inera/ids-core/components/button-group/register';
11
+ import '@inera/ids-core/components/carousel/register';
11
12
  import * as i1 from '@angular/platform-browser';
12
13
  import * as i3 from '@angular/router';
13
14
  import { RouterModule } from '@angular/router';
@@ -40,7 +41,9 @@ import '@inera/ids-core/components/popover/register';
40
41
  import '@inera/ids-core/components/progressbar/register';
41
42
  import '@inera/ids-core/components/footer/register';
42
43
  import '@inera/ids-core/components/header/register';
44
+ import '@inera/ids-core/components/stepper/register';
43
45
  import '@inera/ids-core/components/tabs/register';
46
+ import '@inera/ids-core/components/tag/register';
44
47
  import '@inera/ids-core/components/tooltip/register';
45
48
 
46
49
  class IDAlertComponent {
@@ -58,7 +61,7 @@ class IDAlertComponent {
58
61
  }
59
62
  }
60
63
  IDAlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
61
- IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", collapsable: "collapsable", srCollapseText: "srCollapseText", srExpandText: "srExpandText", headline: "headline", live: "live", type: "type", srCloseText: "srCloseText", srIconTitle: "srIconTitle" }, outputs: { closed: "closed" }, ngImport: i0, template: "<ids-alert \r\n [headline]=\"headline\"\r\n [dismissible]=\"dismissible\"\r\n [collapsable]=\"collapsable\"\r\n [srcollapsetext]=\"srCollapseText\"\r\n [srexpandtext]=\"srExpandText\"\r\n [live]=\"live\"\r\n [type]=\"type\"\r\n [srclosetext]=\"srCloseText\"\r\n [srIconTitle]=\"srIconTitle\"\r\n (closed)=\"closed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-alert>", styles: [":host { display: block; }"] });
64
+ IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", collapsable: "collapsable", srCollapseText: "srCollapseText", srExpandText: "srExpandText", headline: "headline", live: "live", type: "type", srCloseText: "srCloseText", srIconTitle: "srIconTitle" }, outputs: { closed: "closed" }, ngImport: i0, template: "<ids-alert \r\n [headline]=\"headline\"\r\n [attr.dismissible]=\"dismissible ? true : null\"\r\n [attr.collapsable]=\"collapsable ? true : null\"\r\n [srcollapsetext]=\"srCollapseText\"\r\n [srexpandtext]=\"srExpandText\"\r\n [live]=\"live\"\r\n [type]=\"type\"\r\n [srclosetext]=\"srCloseText\"\r\n [srIconTitle]=\"srIconTitle\"\r\n (closed)=\"closed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-alert>", styles: [":host { display: block; }"] });
62
65
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, decorators: [{
63
66
  type: Component,
64
67
  args: [{
@@ -358,6 +361,77 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
358
361
  }]
359
362
  }] });
360
363
 
364
+ class IDCarouselComponent {
365
+ constructor() {
366
+ this.autoplay = false;
367
+ this.srNextLabel = 'Nästa slide';
368
+ this.srPrevLabel = 'Föregående slide';
369
+ this.autoplayDelay = 5000;
370
+ }
371
+ }
372
+ IDCarouselComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
373
+ IDCarouselComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCarouselComponent, selector: "id-carousel", inputs: { autoplay: "autoplay", srNextLabel: "srNextLabel", srPrevLabel: "srPrevLabel", autoplayDelay: "autoplayDelay" }, ngImport: i0, template: "<ids-carousel\r\n [srnextlabel]=\"srNextLabel\"\r\n [srnextlabel]=\"srNextLabel\"\r\n [autoplay]=\"autoplay ? true : null\"\r\n [autoplay-delay]=\"autoplayDelay\">\r\n <ng-content></ng-content>\r\n</ids-carousel>" });
374
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselComponent, decorators: [{
375
+ type: Component,
376
+ args: [{
377
+ selector: 'id-carousel',
378
+ templateUrl: './carousel.component.html'
379
+ }]
380
+ }], ctorParameters: function () { return []; }, propDecorators: { autoplay: [{
381
+ type: Input
382
+ }], srNextLabel: [{
383
+ type: Input
384
+ }], srPrevLabel: [{
385
+ type: Input
386
+ }], autoplayDelay: [{
387
+ type: Input
388
+ }] } });
389
+
390
+ class IDCarouselItemComponent {
391
+ constructor() {
392
+ this.headline = '';
393
+ this.description = '';
394
+ this.step = '';
395
+ }
396
+ }
397
+ IDCarouselItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
398
+ IDCarouselItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCarouselItemComponent, selector: "id-carousel-item", inputs: { headline: "headline", description: "description", step: "step" }, ngImport: i0, template: "<ids-carousel-item\r\n [headline]=\"headline\"\r\n [description]=\"description\"\r\n [step]=\"step\">\r\n <ng-content></ng-content>\r\n</ids-carousel-item>" });
399
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselItemComponent, decorators: [{
400
+ type: Component,
401
+ args: [{
402
+ selector: 'id-carousel-item',
403
+ templateUrl: './carousel-item.component.html'
404
+ }]
405
+ }], ctorParameters: function () { return []; }, propDecorators: { headline: [{
406
+ type: Input
407
+ }], description: [{
408
+ type: Input
409
+ }], step: [{
410
+ type: Input
411
+ }] } });
412
+
413
+ class IDCarouselModule {
414
+ }
415
+ IDCarouselModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
416
+ IDCarouselModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselModule, declarations: [IDCarouselComponent,
417
+ IDCarouselItemComponent], exports: [IDCarouselComponent,
418
+ IDCarouselItemComponent] });
419
+ IDCarouselModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselModule });
420
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselModule, decorators: [{
421
+ type: NgModule,
422
+ args: [{
423
+ declarations: [
424
+ IDCarouselComponent,
425
+ IDCarouselItemComponent
426
+ ],
427
+ exports: [
428
+ IDCarouselComponent,
429
+ IDCarouselItemComponent
430
+ ],
431
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
432
+ }]
433
+ }] });
434
+
361
435
  class IDLink {
362
436
  constructor(_props) {
363
437
  this._props = _props;
@@ -951,10 +1025,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
951
1025
  class IDCheckboxComponent extends IDFormBase {
952
1026
  constructor() {
953
1027
  super();
1028
+ this.compact = undefined;
954
1029
  }
955
1030
  }
956
1031
  IDCheckboxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
957
- IDCheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", usesInheritance: true, ngImport: i0, template: "<ids-checkbox [attr.valid]=\"valid\" [attr.no-validation]=\"noValidation ? noValidation : null\">\r\n <ng-content></ng-content>\r\n</ids-checkbox>", encapsulation: i0.ViewEncapsulation.None });
1032
+ IDCheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", inputs: { compact: "compact" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox \r\n [attr.compact]=\"compact ? true : null\"\r\n [attr.valid]=\"valid\" \r\n [attr.no-validation]=\"noValidation ? noValidation : null\">\r\n <ng-content></ng-content>\r\n</ids-checkbox>", encapsulation: i0.ViewEncapsulation.None });
958
1033
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxComponent, decorators: [{
959
1034
  type: Component,
960
1035
  args: [{
@@ -962,7 +1037,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
962
1037
  templateUrl: './checkbox.component.html',
963
1038
  encapsulation: ViewEncapsulation.None,
964
1039
  }]
965
- }], ctorParameters: function () { return []; } });
1040
+ }], ctorParameters: function () { return []; }, propDecorators: { compact: [{
1041
+ type: Input
1042
+ }] } });
966
1043
 
967
1044
  class IDCheckboxModule {
968
1045
  }
@@ -986,12 +1063,14 @@ class IDCheckboxGroupComponent extends IDFormBase {
986
1063
  constructor() {
987
1064
  super();
988
1065
  this.errorMessage = undefined;
1066
+ this.legend = undefined;
1067
+ this.compact = undefined;
989
1068
  }
990
1069
  ngOnInit() {
991
1070
  }
992
1071
  }
993
1072
  IDCheckboxGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
994
- IDCheckboxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox-group [valiid]=\"valid\" [attr.no-validation]=\"noValidation ? noValidation : null\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-checkbox-group>\r\n", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1073
+ IDCheckboxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage", legend: "legend", compact: "compact" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox-group \r\n [legend]=\"legend\"\r\n [valid]=\"valid\" \r\n [attr.no-validation]=\"noValidation ? noValidation : null\"\r\n [attr.compact]=\"compact ? true : null\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-checkbox-group>\r\n", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
995
1074
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, decorators: [{
996
1075
  type: Component,
997
1076
  args: [{
@@ -1001,6 +1080,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1001
1080
  }]
1002
1081
  }], ctorParameters: function () { return []; }, propDecorators: { errorMessage: [{
1003
1082
  type: Input
1083
+ }], legend: [{
1084
+ type: Input
1085
+ }], compact: [{
1086
+ type: Input
1004
1087
  }] } });
1005
1088
 
1006
1089
  class IDCheckboxGroupModule {
@@ -1202,11 +1285,12 @@ class IDSelectMultipleComponent extends IDFormBase {
1202
1285
  super(...arguments);
1203
1286
  this.label = undefined;
1204
1287
  this.errorMessage = undefined;
1288
+ this.maxHeight = undefined;
1205
1289
  this.placeholder = '';
1206
1290
  }
1207
1291
  }
1208
1292
  IDSelectMultipleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
1209
- IDSelectMultipleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectMultipleComponent, selector: "id-select-multiple", inputs: { label: "label", errorMessage: "errorMessage", placeholder: "placeholder" }, usesInheritance: true, ngImport: i0, template: "<ids-select-multiple [attr.valid]=\"valid\" [attr.no-validation]=\"noValidation ? noValidation : null\" [label]=\"label\" [placeholder]=\"placeholder\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-select-multiple>", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1293
+ IDSelectMultipleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectMultipleComponent, selector: "id-select-multiple", inputs: { label: "label", errorMessage: "errorMessage", maxHeight: "maxHeight", placeholder: "placeholder" }, usesInheritance: true, ngImport: i0, template: "<ids-select-multiple \r\n [attr.valid]=\"valid\" \r\n [attr.no-validation]=\"noValidation ? noValidation : null\" \r\n [label]=\"label\" \r\n [placeholder]=\"placeholder\"\r\n [max-height]=\"maxHeight\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-select-multiple>", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1210
1294
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, decorators: [{
1211
1295
  type: Component,
1212
1296
  args: [{
@@ -1218,6 +1302,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1218
1302
  type: Input
1219
1303
  }], errorMessage: [{
1220
1304
  type: Input
1305
+ }], maxHeight: [{
1306
+ type: Input
1221
1307
  }], placeholder: [{
1222
1308
  type: Input
1223
1309
  }] } });
@@ -1735,10 +1821,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1735
1821
  class IDNotificationBadgeComponent {
1736
1822
  constructor() {
1737
1823
  this.size = 'm';
1824
+ this.outlined = false;
1738
1825
  }
1739
1826
  }
1740
1827
  IDNotificationBadgeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1741
- IDNotificationBadgeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDNotificationBadgeComponent, selector: "id-notification-badge", inputs: { size: "size" }, ngImport: i0, template: "<ids-notification-badge\n [attr.size]=\"size\">\n <ng-content></ng-content>\n</ids-notification-badge>", encapsulation: i0.ViewEncapsulation.None });
1828
+ IDNotificationBadgeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDNotificationBadgeComponent, selector: "id-notification-badge", inputs: { size: "size", outlined: "outlined" }, ngImport: i0, template: "<ids-notification-badge\r\n [attr.outlined]=\"outlined ? true : null\"\r\n [attr.size]=\"size\">\r\n <ng-content></ng-content>\r\n</ids-notification-badge>", encapsulation: i0.ViewEncapsulation.None });
1742
1829
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeComponent, decorators: [{
1743
1830
  type: Component,
1744
1831
  args: [{
@@ -1748,6 +1835,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1748
1835
  }]
1749
1836
  }], ctorParameters: function () { return []; }, propDecorators: { size: [{
1750
1837
  type: Input
1838
+ }], outlined: [{
1839
+ type: Input
1751
1840
  }] } });
1752
1841
 
1753
1842
  class IDNotificationBadgeModule {
@@ -2148,6 +2237,72 @@ class IDHeaderNavItem {
2148
2237
  }
2149
2238
  }
2150
2239
 
2240
+ class IDStepperComponent {
2241
+ }
2242
+ IDStepperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDStepperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2243
+ IDStepperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDStepperComponent, selector: "id-stepper", ngImport: i0, template: "<ids-stepper>\r\n <ng-content></ng-content>\r\n</ids-stepper>" });
2244
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDStepperComponent, decorators: [{
2245
+ type: Component,
2246
+ args: [{
2247
+ selector: 'id-stepper',
2248
+ templateUrl: './stepper.component.html',
2249
+ }]
2250
+ }] });
2251
+
2252
+ class IDStepComponent {
2253
+ constructor() {
2254
+ this.state = '';
2255
+ this.headline = '';
2256
+ this.srindicatortext = '';
2257
+ this.label = '';
2258
+ this.expanded = false;
2259
+ this.disabled = false;
2260
+ }
2261
+ }
2262
+ IDStepComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDStepComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2263
+ IDStepComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDStepComponent, selector: "id-step", inputs: { state: "state", headline: "headline", srindicatortext: "srindicatortext", label: "label", expanded: "expanded", disabled: "disabled" }, ngImport: i0, template: "<ids-step\r\n [attr.state]=\"state\"\r\n [attr.headline]=\"headline\"\r\n [attr.label]=\"label\"\r\n [attr.srindicatortext]=\"srindicatortext\"\r\n [attr.expanded]=\"expanded ? true : null\"\r\n [attr.disabled]=\"disabled ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-step>" });
2264
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDStepComponent, decorators: [{
2265
+ type: Component,
2266
+ args: [{
2267
+ selector: 'id-step',
2268
+ templateUrl: './step.component.html',
2269
+ }]
2270
+ }], ctorParameters: function () { return []; }, propDecorators: { state: [{
2271
+ type: Input
2272
+ }], headline: [{
2273
+ type: Input
2274
+ }], srindicatortext: [{
2275
+ type: Input
2276
+ }], label: [{
2277
+ type: Input
2278
+ }], expanded: [{
2279
+ type: Input
2280
+ }], disabled: [{
2281
+ type: Input
2282
+ }] } });
2283
+
2284
+ class IDStepperModule {
2285
+ }
2286
+ IDStepperModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDStepperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2287
+ IDStepperModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDStepperModule, declarations: [IDStepComponent,
2288
+ IDStepperComponent], exports: [IDStepComponent,
2289
+ IDStepperComponent] });
2290
+ IDStepperModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDStepperModule });
2291
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDStepperModule, decorators: [{
2292
+ type: NgModule,
2293
+ args: [{
2294
+ declarations: [
2295
+ IDStepComponent,
2296
+ IDStepperComponent
2297
+ ],
2298
+ exports: [
2299
+ IDStepComponent,
2300
+ IDStepperComponent
2301
+ ],
2302
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2303
+ }]
2304
+ }] });
2305
+
2151
2306
  class IDTabsComponent {
2152
2307
  constructor() { }
2153
2308
  }
@@ -2183,6 +2338,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2183
2338
  class IDTabComponent {
2184
2339
  constructor(elementRef) {
2185
2340
  this.elementRef = elementRef;
2341
+ this.notices = 0;
2342
+ this.notifications = 0;
2186
2343
  this.label = '';
2187
2344
  this.icon = '';
2188
2345
  this.selected = false;
@@ -2190,14 +2347,18 @@ class IDTabComponent {
2190
2347
  }
2191
2348
  }
2192
2349
  IDTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
2193
- IDTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabComponent, selector: "id-tab", inputs: { label: "label", icon: "icon", selected: "selected" }, ngImport: i0, template: "<ids-tab\n [label]=\"label\"\n [attr.icon]=\"icon\"\n [attr.selected]=\"selected ? '':null\">\n</ids-tab>" });
2350
+ IDTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabComponent, selector: "id-tab", inputs: { notices: "notices", notifications: "notifications", label: "label", icon: "icon", selected: "selected" }, ngImport: i0, template: "<ids-tab\r\n [notices]=\"notices === 0 ? null : notices\"\r\n [notifications]=\"notifications === 0 ? null : notifications\"\r\n [label]=\"label\"\r\n [attr.icon]=\"icon\"\r\n [attr.selected]=\"selected ? '':null\">\r\n</ids-tab>" });
2194
2351
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, decorators: [{
2195
2352
  type: Component,
2196
2353
  args: [{
2197
2354
  selector: 'id-tab',
2198
2355
  templateUrl: './tab.component.html'
2199
2356
  }]
2200
- }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { label: [{
2357
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { notices: [{
2358
+ type: Input
2359
+ }], notifications: [{
2360
+ type: Input
2361
+ }], label: [{
2201
2362
  type: Input
2202
2363
  }], icon: [{
2203
2364
  type: Input
@@ -2232,6 +2393,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2232
2393
  }]
2233
2394
  }] });
2234
2395
 
2396
+ class IDTagComponent {
2397
+ constructor() {
2398
+ this.clickable = false;
2399
+ this.closeable = false;
2400
+ this.srCloseLabel = '';
2401
+ this.clicked = new EventEmitter();
2402
+ this.closed = new EventEmitter();
2403
+ }
2404
+ }
2405
+ IDTagComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2406
+ IDTagComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTagComponent, selector: "id-tag", inputs: { clickable: "clickable", closeable: "closeable", srCloseLabel: "srCloseLabel" }, outputs: { clicked: "clicked", closed: "closed" }, ngImport: i0, template: "<ids-tag\r\n [clickable]=\"clickable ? true : null\"\r\n [closeable]=\"closeable ? true : null\"\r\n [srcloselabel]=\"srCloseLabel\"\r\n (clicked)=\"clicked.emit(true)\"\r\n (closed)=\"closed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-tag>" });
2407
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagComponent, decorators: [{
2408
+ type: Component,
2409
+ args: [{
2410
+ selector: 'id-tag',
2411
+ templateUrl: './tag.component.html',
2412
+ }]
2413
+ }], ctorParameters: function () { return []; }, propDecorators: { clickable: [{
2414
+ type: Input
2415
+ }], closeable: [{
2416
+ type: Input
2417
+ }], srCloseLabel: [{
2418
+ type: Input
2419
+ }], clicked: [{
2420
+ type: Output
2421
+ }], closed: [{
2422
+ type: Output
2423
+ }] } });
2424
+
2425
+ class IDTagModule {
2426
+ }
2427
+ IDTagModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2428
+ IDTagModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagModule, declarations: [IDTagComponent], exports: [IDTagComponent] });
2429
+ IDTagModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagModule });
2430
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagModule, decorators: [{
2431
+ type: NgModule,
2432
+ args: [{
2433
+ declarations: [
2434
+ IDTagComponent
2435
+ ],
2436
+ exports: [
2437
+ IDTagComponent
2438
+ ],
2439
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2440
+ }]
2441
+ }] });
2442
+
2235
2443
  class IDTooltipComponent {
2236
2444
  constructor() { }
2237
2445
  }
@@ -2271,5 +2479,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2271
2479
  * Generated bundle index. Do not edit.
2272
2480
  */
2273
2481
 
2274
- export { IDAgentComponent, IDAgentModule, IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDBadgeComponent, IDBadgeModule, IDBreadcrumbsComponent, IDBreadcrumbsModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCardComponent, IDCardModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDDateLabelComponent, IDDateLabelModule, IDDialogActionsComponent, IDDialogComponent, IDDialogModule, IDErrorMessageComponent, IDErrorMessageModule, IDExpandableComponent, IDExpandableModule, IDFooterComponent, IDFooterModule, IDHeaderAvatar, IDHeaderComponent, IDHeaderItem, IDHeaderModule, IDHeaderNavItem, IDIcon, IDIconComponent, IDIconModule, IDInputComponent, IDInputModule, IDLink, IDLinkComponent, IDLinkFunction, IDLinkModule, IDLinkRoute, IDLinkWeb, IDListComponent, IDListItemComponent, IDListItemInfoComponent, IDListItemInfoModule, IDListItemModule, IDListModule, IDMobileMenuComponent, IDMobileMenuItem, IDMobileMenuModule, IDNavigationContentComponent, IDNavigationContentModule, IDNotificationBadge, IDNotificationBadgeComponent, IDNotificationBadgeModule, IDPopoverComponent, IDPopoverModule, IDProgressbarComponent, IDProgressbarModule, IDRadioComponent, IDRadioGroupComponent, IDRadioModule, IDRangeComponent, IDRangeModule, IDRowComponent, IDRowModule, IDSelectComponent, IDSelectModule, IDSelectMultipleComponent, IDSelectMultipleModule, IDSpinnerComponent, IDSpinnerModule, IDTabComponent, IDTabPanelComponent, IDTabsComponent, IDTabsModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule, IDTooltipComponent, IDTooltipModule };
2482
+ export { IDAgentComponent, IDAgentModule, IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDBadgeComponent, IDBadgeModule, IDBreadcrumbsComponent, IDBreadcrumbsModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCardComponent, IDCardModule, IDCarouselComponent, IDCarouselItemComponent, IDCarouselModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDDateLabelComponent, IDDateLabelModule, IDDialogActionsComponent, IDDialogComponent, IDDialogModule, IDErrorMessageComponent, IDErrorMessageModule, IDExpandableComponent, IDExpandableModule, IDFooterComponent, IDFooterModule, IDHeaderAvatar, IDHeaderComponent, IDHeaderItem, IDHeaderModule, IDHeaderNavItem, IDIcon, IDIconComponent, IDIconModule, IDInputComponent, IDInputModule, IDLink, IDLinkComponent, IDLinkFunction, IDLinkModule, IDLinkRoute, IDLinkWeb, IDListComponent, IDListItemComponent, IDListItemInfoComponent, IDListItemInfoModule, IDListItemModule, IDListModule, IDMobileMenuComponent, IDMobileMenuItem, IDMobileMenuModule, IDNavigationContentComponent, IDNavigationContentModule, IDNotificationBadge, IDNotificationBadgeComponent, IDNotificationBadgeModule, IDPopoverComponent, IDPopoverModule, IDProgressbarComponent, IDProgressbarModule, IDRadioComponent, IDRadioGroupComponent, IDRadioModule, IDRangeComponent, IDRangeModule, IDRowComponent, IDRowModule, IDSelectComponent, IDSelectModule, IDSelectMultipleComponent, IDSelectMultipleModule, IDSpinnerComponent, IDSpinnerModule, IDStepComponent, IDStepperComponent, IDStepperModule, IDTabComponent, IDTabPanelComponent, IDTabsComponent, IDTabsModule, IDTagComponent, IDTagModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule, IDTooltipComponent, IDTooltipModule };
2275
2483
  //# sourceMappingURL=inera-ids-angular.js.map