@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
@@ -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';
@@ -41,6 +42,7 @@ 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';
43
44
  import '@inera/ids-core/components/tabs/register';
45
+ import '@inera/ids-core/components/tag/register';
44
46
  import '@inera/ids-core/components/tooltip/register';
45
47
 
46
48
  class IDAlertComponent {
@@ -58,7 +60,7 @@ class IDAlertComponent {
58
60
  }
59
61
  }
60
62
  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; }"] });
63
+ 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
64
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, decorators: [{
63
65
  type: Component,
64
66
  args: [{
@@ -358,6 +360,77 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
358
360
  }]
359
361
  }] });
360
362
 
363
+ class IDCarouselComponent {
364
+ constructor() {
365
+ this.autoplay = false;
366
+ this.srNextLabel = 'Nästa slide';
367
+ this.srPrevLabel = 'Föregående slide';
368
+ this.autoplayDelay = 5000;
369
+ }
370
+ }
371
+ IDCarouselComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
372
+ 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>" });
373
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselComponent, decorators: [{
374
+ type: Component,
375
+ args: [{
376
+ selector: 'id-carousel',
377
+ templateUrl: './carousel.component.html'
378
+ }]
379
+ }], ctorParameters: function () { return []; }, propDecorators: { autoplay: [{
380
+ type: Input
381
+ }], srNextLabel: [{
382
+ type: Input
383
+ }], srPrevLabel: [{
384
+ type: Input
385
+ }], autoplayDelay: [{
386
+ type: Input
387
+ }] } });
388
+
389
+ class IDCarouselItemComponent {
390
+ constructor() {
391
+ this.headline = '';
392
+ this.description = '';
393
+ this.step = '';
394
+ }
395
+ }
396
+ IDCarouselItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
397
+ 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>" });
398
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselItemComponent, decorators: [{
399
+ type: Component,
400
+ args: [{
401
+ selector: 'id-carousel-item',
402
+ templateUrl: './carousel-item.component.html'
403
+ }]
404
+ }], ctorParameters: function () { return []; }, propDecorators: { headline: [{
405
+ type: Input
406
+ }], description: [{
407
+ type: Input
408
+ }], step: [{
409
+ type: Input
410
+ }] } });
411
+
412
+ class IDCarouselModule {
413
+ }
414
+ IDCarouselModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
415
+ IDCarouselModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselModule, declarations: [IDCarouselComponent,
416
+ IDCarouselItemComponent], exports: [IDCarouselComponent,
417
+ IDCarouselItemComponent] });
418
+ IDCarouselModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselModule });
419
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselModule, decorators: [{
420
+ type: NgModule,
421
+ args: [{
422
+ declarations: [
423
+ IDCarouselComponent,
424
+ IDCarouselItemComponent
425
+ ],
426
+ exports: [
427
+ IDCarouselComponent,
428
+ IDCarouselItemComponent
429
+ ],
430
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
431
+ }]
432
+ }] });
433
+
361
434
  class IDLink {
362
435
  constructor(_props) {
363
436
  this._props = _props;
@@ -951,10 +1024,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
951
1024
  class IDCheckboxComponent extends IDFormBase {
952
1025
  constructor() {
953
1026
  super();
1027
+ this.compact = undefined;
954
1028
  }
955
1029
  }
956
1030
  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 });
1031
+ 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
1032
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxComponent, decorators: [{
959
1033
  type: Component,
960
1034
  args: [{
@@ -962,7 +1036,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
962
1036
  templateUrl: './checkbox.component.html',
963
1037
  encapsulation: ViewEncapsulation.None,
964
1038
  }]
965
- }], ctorParameters: function () { return []; } });
1039
+ }], ctorParameters: function () { return []; }, propDecorators: { compact: [{
1040
+ type: Input
1041
+ }] } });
966
1042
 
967
1043
  class IDCheckboxModule {
968
1044
  }
@@ -986,12 +1062,14 @@ class IDCheckboxGroupComponent extends IDFormBase {
986
1062
  constructor() {
987
1063
  super();
988
1064
  this.errorMessage = undefined;
1065
+ this.legend = undefined;
1066
+ this.compact = undefined;
989
1067
  }
990
1068
  ngOnInit() {
991
1069
  }
992
1070
  }
993
1071
  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 });
1072
+ 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
1073
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, decorators: [{
996
1074
  type: Component,
997
1075
  args: [{
@@ -1001,6 +1079,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1001
1079
  }]
1002
1080
  }], ctorParameters: function () { return []; }, propDecorators: { errorMessage: [{
1003
1081
  type: Input
1082
+ }], legend: [{
1083
+ type: Input
1084
+ }], compact: [{
1085
+ type: Input
1004
1086
  }] } });
1005
1087
 
1006
1088
  class IDCheckboxGroupModule {
@@ -1202,11 +1284,12 @@ class IDSelectMultipleComponent extends IDFormBase {
1202
1284
  super(...arguments);
1203
1285
  this.label = undefined;
1204
1286
  this.errorMessage = undefined;
1287
+ this.maxHeight = undefined;
1205
1288
  this.placeholder = '';
1206
1289
  }
1207
1290
  }
1208
1291
  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 });
1292
+ 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
1293
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, decorators: [{
1211
1294
  type: Component,
1212
1295
  args: [{
@@ -1218,6 +1301,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1218
1301
  type: Input
1219
1302
  }], errorMessage: [{
1220
1303
  type: Input
1304
+ }], maxHeight: [{
1305
+ type: Input
1221
1306
  }], placeholder: [{
1222
1307
  type: Input
1223
1308
  }] } });
@@ -1735,10 +1820,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1735
1820
  class IDNotificationBadgeComponent {
1736
1821
  constructor() {
1737
1822
  this.size = 'm';
1823
+ this.outlined = false;
1738
1824
  }
1739
1825
  }
1740
1826
  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 });
1827
+ 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\n [attr.outlined]=\"outlined ? true : null\"\n [attr.size]=\"size\">\n <ng-content></ng-content>\n</ids-notification-badge>", encapsulation: i0.ViewEncapsulation.None });
1742
1828
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeComponent, decorators: [{
1743
1829
  type: Component,
1744
1830
  args: [{
@@ -1748,6 +1834,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1748
1834
  }]
1749
1835
  }], ctorParameters: function () { return []; }, propDecorators: { size: [{
1750
1836
  type: Input
1837
+ }], outlined: [{
1838
+ type: Input
1751
1839
  }] } });
1752
1840
 
1753
1841
  class IDNotificationBadgeModule {
@@ -2183,6 +2271,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2183
2271
  class IDTabComponent {
2184
2272
  constructor(elementRef) {
2185
2273
  this.elementRef = elementRef;
2274
+ this.notices = 0;
2275
+ this.notifications = 0;
2186
2276
  this.label = '';
2187
2277
  this.icon = '';
2188
2278
  this.selected = false;
@@ -2190,14 +2280,18 @@ class IDTabComponent {
2190
2280
  }
2191
2281
  }
2192
2282
  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>" });
2283
+ 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\n [notices]=\"notices === 0 ? null : notices\"\n [notifications]=\"notifications === 0 ? null : notifications\"\n [label]=\"label\"\n [attr.icon]=\"icon\"\n [attr.selected]=\"selected ? '':null\">\n</ids-tab>" });
2194
2284
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, decorators: [{
2195
2285
  type: Component,
2196
2286
  args: [{
2197
2287
  selector: 'id-tab',
2198
2288
  templateUrl: './tab.component.html'
2199
2289
  }]
2200
- }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { label: [{
2290
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { notices: [{
2291
+ type: Input
2292
+ }], notifications: [{
2293
+ type: Input
2294
+ }], label: [{
2201
2295
  type: Input
2202
2296
  }], icon: [{
2203
2297
  type: Input
@@ -2232,6 +2326,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2232
2326
  }]
2233
2327
  }] });
2234
2328
 
2329
+ class IDTagComponent {
2330
+ constructor() {
2331
+ this.clickable = false;
2332
+ this.closeable = false;
2333
+ this.srCloseLabel = '';
2334
+ this.clicked = new EventEmitter();
2335
+ this.closed = new EventEmitter();
2336
+ }
2337
+ }
2338
+ IDTagComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2339
+ 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>" });
2340
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagComponent, decorators: [{
2341
+ type: Component,
2342
+ args: [{
2343
+ selector: 'id-tag',
2344
+ templateUrl: './tag.component.html',
2345
+ }]
2346
+ }], ctorParameters: function () { return []; }, propDecorators: { clickable: [{
2347
+ type: Input
2348
+ }], closeable: [{
2349
+ type: Input
2350
+ }], srCloseLabel: [{
2351
+ type: Input
2352
+ }], clicked: [{
2353
+ type: Output
2354
+ }], closed: [{
2355
+ type: Output
2356
+ }] } });
2357
+
2358
+ class IDTagModule {
2359
+ }
2360
+ IDTagModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2361
+ IDTagModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagModule, declarations: [IDTagComponent], exports: [IDTagComponent] });
2362
+ IDTagModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagModule });
2363
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagModule, decorators: [{
2364
+ type: NgModule,
2365
+ args: [{
2366
+ declarations: [
2367
+ IDTagComponent
2368
+ ],
2369
+ exports: [
2370
+ IDTagComponent
2371
+ ],
2372
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2373
+ }]
2374
+ }] });
2375
+
2235
2376
  class IDTooltipComponent {
2236
2377
  constructor() { }
2237
2378
  }
@@ -2271,5 +2412,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2271
2412
  * Generated bundle index. Do not edit.
2272
2413
  */
2273
2414
 
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 };
2415
+ 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, IDTabComponent, IDTabPanelComponent, IDTabsComponent, IDTabsModule, IDTagComponent, IDTagModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule, IDTooltipComponent, IDTooltipModule };
2275
2416
  //# sourceMappingURL=inera-ids-angular.js.map