@inera/ids-angular 1.1.0 → 1.5.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 (174) hide show
  1. package/bundles/inera-ids-angular.umd.js +1471 -26
  2. package/bundles/inera-ids-angular.umd.js.map +1 -1
  3. package/esm2015/lib/classes/header/IDHeaderAvatar.js +18 -0
  4. package/esm2015/lib/classes/header/IDHeaderAvatarProps.js +2 -0
  5. package/esm2015/lib/classes/header/IDHeaderItem.js +15 -0
  6. package/esm2015/lib/classes/header/IDHeaderItemProps.js +2 -0
  7. package/esm2015/lib/classes/header/IDHeaderNavItem.js +30 -0
  8. package/esm2015/lib/classes/header/IDHeaderNavItemProps.js +2 -0
  9. package/esm2015/lib/classes/icon/IDIcon.js +33 -0
  10. package/esm2015/lib/classes/icon/IDIconProps.js +2 -0
  11. package/esm2015/lib/classes/link/IDLink.js +26 -0
  12. package/esm2015/lib/classes/link/IDLinkFunction.js +17 -0
  13. package/esm2015/lib/classes/link/IDLinkRoute.js +30 -0
  14. package/esm2015/lib/classes/link/IDLinkWeb.js +24 -0
  15. package/esm2015/lib/classes/mobile/MobileMenuItem.js +35 -0
  16. package/esm2015/lib/classes/mobile/MobileMenuItemProps.js +2 -0
  17. package/esm2015/lib/classes/notification-badge.js +17 -0
  18. package/esm2015/lib/components/alert/alert.component.js +39 -0
  19. package/esm2015/lib/{alert → components/alert}/alert.module.js +1 -1
  20. package/esm2015/lib/{alert-global → components/alert-global}/alert-global.component.js +1 -1
  21. package/esm2015/lib/{alert-global → components/alert-global}/alert-global.module.js +1 -1
  22. package/esm2015/lib/components/button/button.component.js +41 -0
  23. package/esm2015/lib/{button → components/button}/button.module.js +1 -1
  24. package/esm2015/lib/{button-group → components/button-group}/button-group.component.js +1 -1
  25. package/esm2015/lib/{button-group → components/button-group}/button-group.module.js +1 -1
  26. package/esm2015/lib/components/date-label/date-label.component.js +32 -0
  27. package/esm2015/lib/components/date-label/date-label.module.js +22 -0
  28. package/esm2015/lib/components/footer/footer.component.js +33 -0
  29. package/esm2015/lib/components/footer/footer.module.js +25 -0
  30. package/esm2015/lib/{form → components/form}/checkbox/checkbox.component.js +1 -1
  31. package/esm2015/lib/{form → components/form}/checkbox/checkbox.module.js +1 -1
  32. package/esm2015/lib/{form → components/form}/checkbox-group/checkbox-group.component.js +1 -1
  33. package/esm2015/lib/components/form/checkbox-group/checkbox-group.module.js +25 -0
  34. package/esm2015/lib/components/form/error-message/error-message.component.js +21 -0
  35. package/esm2015/lib/{form → components/form}/error-message/error-message.module.js +1 -1
  36. package/esm2015/lib/{form → components/form}/input/input.component.js +1 -1
  37. package/esm2015/lib/{form → components/form}/input/input.module.js +1 -1
  38. package/esm2015/lib/components/form/radio/radio-group.component.js +30 -0
  39. package/esm2015/lib/{form → components/form}/radio/radio.component.js +1 -1
  40. package/esm2015/lib/components/form/radio/radio.module.js +33 -0
  41. package/esm2015/lib/{form → components/form}/range/range.component.js +1 -1
  42. package/esm2015/lib/{form → components/form}/range/range.module.js +1 -1
  43. package/esm2015/lib/{form → components/form}/select/select.component.js +1 -1
  44. package/esm2015/lib/{form → components/form}/select/select.module.js +1 -1
  45. package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +27 -0
  46. package/esm2015/lib/{form → components/form}/select-multiple/select-multiple.module.js +1 -1
  47. package/esm2015/lib/components/form/spinner/spinner.component.js +23 -0
  48. package/esm2015/lib/{form → components/form}/spinner/spinner.module.js +1 -1
  49. package/esm2015/lib/{form → components/form}/textarea/textarea.component.js +1 -1
  50. package/esm2015/lib/{form → components/form}/textarea/textarea.module.js +1 -1
  51. package/esm2015/lib/{form → components/form}/time/time.component.js +1 -1
  52. package/esm2015/lib/{form → components/form}/time/time.module.js +1 -1
  53. package/esm2015/lib/components/grid/column/column.component.js +27 -0
  54. package/esm2015/lib/{grid → components/grid}/column/column.module.js +1 -1
  55. package/esm2015/lib/components/grid/container/container.component.js +20 -0
  56. package/esm2015/lib/{grid → components/grid}/container/container.module.js +1 -1
  57. package/esm2015/lib/{grid → components/grid}/row/row.component.js +1 -1
  58. package/esm2015/lib/{grid → components/grid}/row/row.module.js +1 -1
  59. package/esm2015/lib/components/header/header.component.js +50 -0
  60. package/esm2015/lib/components/header/header.module.js +25 -0
  61. package/esm2015/lib/components/icon/icon.component.js +41 -0
  62. package/esm2015/lib/{icon → components/icon}/icon.module.js +1 -1
  63. package/esm2015/lib/components/link/link.component.js +60 -0
  64. package/esm2015/lib/components/link/link.module.js +26 -0
  65. package/esm2015/lib/components/list/item/info/list-item-info.component.js +16 -0
  66. package/esm2015/lib/components/list/item/info/list-item-info.module.js +21 -0
  67. package/esm2015/lib/components/list/item/list-item.component.js +38 -0
  68. package/esm2015/lib/components/list/item/list-item.module.js +21 -0
  69. package/esm2015/lib/components/list/list.component.js +16 -0
  70. package/esm2015/lib/components/list/list.module.js +22 -0
  71. package/esm2015/lib/components/mobile/menu/mobile-menu.component.js +27 -0
  72. package/esm2015/lib/components/mobile/menu/mobile-menu.module.js +25 -0
  73. package/esm2015/lib/components/notification/badge/notification-badge.component.js +20 -0
  74. package/esm2015/lib/components/notification/badge/notification-badge.module.js +22 -0
  75. package/esm2015/lib/components/tabs/panel/tab-panel.component.js +18 -0
  76. package/esm2015/lib/components/tabs/tab/tab.component.js +27 -0
  77. package/esm2015/lib/components/tabs/tabs.component.js +15 -0
  78. package/esm2015/lib/components/tabs/tabs.module.js +35 -0
  79. package/esm2015/lib/internals/anchor.component.js +75 -0
  80. package/esm2015/lib/internals/anchor.module.js +26 -0
  81. package/esm2015/public-api.js +90 -40
  82. package/fesm2015/inera-ids-angular.js +863 -9
  83. package/fesm2015/inera-ids-angular.js.map +1 -1
  84. package/lib/classes/header/IDHeaderAvatar.d.ts +10 -0
  85. package/lib/classes/header/IDHeaderAvatarProps.d.ts +7 -0
  86. package/lib/classes/header/IDHeaderItem.d.ts +8 -0
  87. package/lib/classes/header/IDHeaderItemProps.d.ts +6 -0
  88. package/lib/classes/header/IDHeaderNavItem.d.ts +13 -0
  89. package/lib/classes/header/IDHeaderNavItemProps.d.ts +11 -0
  90. package/lib/classes/icon/IDIcon.d.ts +14 -0
  91. package/lib/classes/icon/IDIconProps.d.ts +11 -0
  92. package/lib/classes/link/IDLink.d.ts +13 -0
  93. package/lib/classes/link/IDLinkFunction.d.ts +8 -0
  94. package/lib/classes/link/IDLinkRoute.d.ts +13 -0
  95. package/lib/classes/link/IDLinkWeb.d.ts +11 -0
  96. package/lib/classes/mobile/MobileMenuItem.d.ts +14 -0
  97. package/lib/classes/mobile/MobileMenuItemProps.d.ts +11 -0
  98. package/lib/classes/notification-badge.d.ts +9 -0
  99. package/lib/{alert → components/alert}/alert.component.d.ts +0 -0
  100. package/lib/{alert → components/alert}/alert.module.d.ts +0 -0
  101. package/lib/{alert-global → components/alert-global}/alert-global.component.d.ts +0 -0
  102. package/lib/{alert-global → components/alert-global}/alert-global.module.d.ts +0 -0
  103. package/lib/{button → components/button}/button.component.d.ts +0 -0
  104. package/lib/{button → components/button}/button.module.d.ts +0 -0
  105. package/lib/{button-group → components/button-group}/button-group.component.d.ts +0 -0
  106. package/lib/{button-group → components/button-group}/button-group.module.d.ts +0 -0
  107. package/lib/components/date-label/date-label.component.d.ts +11 -0
  108. package/lib/components/date-label/date-label.module.d.ts +8 -0
  109. package/lib/components/footer/footer.component.d.ts +12 -0
  110. package/lib/components/footer/footer.module.d.ts +10 -0
  111. package/lib/{form → components/form}/checkbox/checkbox.component.d.ts +0 -0
  112. package/lib/{form → components/form}/checkbox/checkbox.module.d.ts +0 -0
  113. package/lib/{form → components/form}/checkbox-group/checkbox-group.component.d.ts +0 -0
  114. package/lib/{form → components/form}/checkbox-group/checkbox-group.module.d.ts +0 -0
  115. package/lib/{form → components/form}/error-message/error-message.component.d.ts +0 -0
  116. package/lib/{form → components/form}/error-message/error-message.module.d.ts +0 -0
  117. package/lib/{form → components/form}/input/input.component.d.ts +0 -0
  118. package/lib/{form → components/form}/input/input.module.d.ts +0 -0
  119. package/lib/{form → components/form}/radio/radio-group.component.d.ts +0 -0
  120. package/lib/{form → components/form}/radio/radio.component.d.ts +0 -0
  121. package/lib/{form → components/form}/radio/radio.module.d.ts +0 -0
  122. package/lib/{form → components/form}/range/range.component.d.ts +0 -0
  123. package/lib/{form → components/form}/range/range.module.d.ts +0 -0
  124. package/lib/{form → components/form}/select/select.component.d.ts +0 -0
  125. package/lib/{form → components/form}/select/select.module.d.ts +0 -0
  126. package/lib/{form → components/form}/select-multiple/select-multiple.component.d.ts +0 -0
  127. package/lib/{form → components/form}/select-multiple/select-multiple.module.d.ts +0 -0
  128. package/lib/{form → components/form}/spinner/spinner.component.d.ts +0 -0
  129. package/lib/{form → components/form}/spinner/spinner.module.d.ts +0 -0
  130. package/lib/{form → components/form}/textarea/textarea.component.d.ts +0 -0
  131. package/lib/{form → components/form}/textarea/textarea.module.d.ts +0 -0
  132. package/lib/{form → components/form}/time/time.component.d.ts +0 -0
  133. package/lib/{form → components/form}/time/time.module.d.ts +0 -0
  134. package/lib/{grid → components/grid}/column/column.component.d.ts +0 -0
  135. package/lib/{grid → components/grid}/column/column.module.d.ts +0 -0
  136. package/lib/{grid → components/grid}/container/container.component.d.ts +0 -0
  137. package/lib/{grid → components/grid}/container/container.module.d.ts +0 -0
  138. package/lib/{grid → components/grid}/row/row.component.d.ts +0 -0
  139. package/lib/{grid → components/grid}/row/row.module.d.ts +0 -0
  140. package/lib/components/header/header.component.d.ts +20 -0
  141. package/lib/components/header/header.module.d.ts +10 -0
  142. package/lib/{icon → components/icon}/icon.component.d.ts +0 -0
  143. package/lib/{icon → components/icon}/icon.module.d.ts +0 -0
  144. package/lib/components/link/link.component.d.ts +21 -0
  145. package/lib/components/link/link.module.d.ts +11 -0
  146. package/lib/components/list/item/info/list-item-info.component.d.ts +6 -0
  147. package/lib/components/list/item/info/list-item-info.module.d.ts +7 -0
  148. package/lib/components/list/item/list-item.component.d.ts +13 -0
  149. package/lib/components/list/item/list-item.module.d.ts +7 -0
  150. package/lib/components/list/list.component.d.ts +6 -0
  151. package/lib/components/list/list.module.d.ts +8 -0
  152. package/lib/components/mobile/menu/mobile-menu.component.d.ts +10 -0
  153. package/lib/components/mobile/menu/mobile-menu.module.d.ts +10 -0
  154. package/lib/components/notification/badge/notification-badge.component.d.ts +7 -0
  155. package/lib/components/notification/badge/notification-badge.module.d.ts +8 -0
  156. package/lib/components/tabs/panel/tab-panel.component.d.ts +8 -0
  157. package/lib/components/tabs/tab/tab.component.d.ts +11 -0
  158. package/lib/components/tabs/tabs.component.d.ts +6 -0
  159. package/lib/components/tabs/tabs.module.d.ts +12 -0
  160. package/lib/internals/anchor.component.d.ts +30 -0
  161. package/lib/internals/anchor.module.d.ts +9 -0
  162. package/package.json +2 -2
  163. package/public-api.d.ts +76 -39
  164. package/esm2015/lib/alert/alert.component.js +0 -39
  165. package/esm2015/lib/button/button.component.js +0 -41
  166. package/esm2015/lib/form/checkbox-group/checkbox-group.module.js +0 -25
  167. package/esm2015/lib/form/error-message/error-message.component.js +0 -21
  168. package/esm2015/lib/form/radio/radio-group.component.js +0 -30
  169. package/esm2015/lib/form/radio/radio.module.js +0 -33
  170. package/esm2015/lib/form/select-multiple/select-multiple.component.js +0 -27
  171. package/esm2015/lib/form/spinner/spinner.component.js +0 -23
  172. package/esm2015/lib/grid/column/column.component.js +0 -27
  173. package/esm2015/lib/grid/container/container.component.js +0 -20
  174. package/esm2015/lib/icon/icon.component.js +0 -41
@@ -1,11 +1,12 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { EventEmitter, Component, Input, Output, NgModule, CUSTOM_ELEMENTS_SCHEMA, ViewEncapsulation, HostBinding } from '@angular/core';
3
- import * as i1 from '@angular/common';
3
+ import * as i2 from '@angular/common';
4
4
  import { CommonModule } from '@angular/common';
5
5
  import '@inera/ids-core/components/alert/register';
6
6
  import '@inera/ids-core/components/alert-global/register';
7
7
  import '@inera/ids-core/components/button/register';
8
8
  import '@inera/ids-core/components/button-group/register';
9
+ import '@inera/ids-core/components/date-label/register';
9
10
  import '@inera/ids-core/components/icon/register';
10
11
  import '@inera/ids-core/components/form/input/register';
11
12
  import '@inera/ids-core/components/form/checkbox/register';
@@ -21,6 +22,16 @@ import '@inera/ids-core/components/form/textarea/register';
21
22
  import '@inera/ids-core/components/grid/row/register';
22
23
  import '@inera/ids-core/components/grid/column/register';
23
24
  import '@inera/ids-core/components/grid/container/register';
25
+ import * as i1 from '@angular/platform-browser';
26
+ import * as i3 from '@angular/router';
27
+ import { RouterModule } from '@angular/router';
28
+ import '@inera/ids-core/components/link/register';
29
+ import '@inera/ids-core/components/list/register';
30
+ import '@inera/ids-core/components/notification/badge/register';
31
+ import '@inera/ids-core/components/mobile/menu/register';
32
+ import '@inera/ids-core/components/footer/register';
33
+ import '@inera/ids-core/components/header/register';
34
+ import '@inera/ids-core/components/tabs/register';
24
35
 
25
36
  class IDAlertComponent {
26
37
  constructor() {
@@ -34,7 +45,7 @@ class IDAlertComponent {
34
45
  }
35
46
  }
36
47
  IDAlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
37
- IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", headline: "headline", live: "live", type: "type", srCloseText: "srCloseText", srIconTitle: "srIconTitle" }, outputs: { closed: "closed" }, ngImport: i0, template: "<ids-alert \n [dismissible]=\"dismissible\"\n [live]=\"live\"\n [type]=\"type\"\n [srclosetext]=\"srCloseText\"\n [srIconTitle]=\"srIconTitle\"\n (closed)=\"closed.emit(true)\">\n <h3 *ngIf=\"headline\">\n {{headline}}\n </h3>\n <ng-content></ng-content>\n</ids-alert>", styles: [":host { display: block; }"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
48
+ IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", headline: "headline", live: "live", type: "type", srCloseText: "srCloseText", srIconTitle: "srIconTitle" }, outputs: { closed: "closed" }, ngImport: i0, template: "<ids-alert \n [dismissible]=\"dismissible\"\n [live]=\"live\"\n [type]=\"type\"\n [srclosetext]=\"srCloseText\"\n [srIconTitle]=\"srIconTitle\"\n (closed)=\"closed.emit(true)\">\n <h3 *ngIf=\"headline\">\n {{headline}}\n </h3>\n <ng-content></ng-content>\n</ids-alert>", styles: [":host { display: block; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
38
49
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, decorators: [{
39
50
  type: Component,
40
51
  args: [{
@@ -87,7 +98,7 @@ class IDAlertGlobalComponent {
87
98
  }
88
99
  }
89
100
  IDAlertGlobalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertGlobalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
90
- IDAlertGlobalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertGlobalComponent, selector: "id-alert-global", inputs: { expanded: "expanded", headline: "headline", showText: "showText", hideText: "hideText" }, outputs: { didToggleExpansion: "didToggleExpansion" }, ngImport: i0, template: "<ids-alert-global \n [showtext]=\"showText\"\n [hidetext]=\"hideText\"\n [expanded]=\"expanded\"\n (closed)=\"didToggleExpansion.emit(true)\">\n <h3 slot=\"alert-headline\" *ngIf=\"headline\">\n {{headline}}\n </h3>\n <ng-content></ng-content>\n</ids-alert-global>", styles: [":host { display: block; }"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
101
+ IDAlertGlobalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertGlobalComponent, selector: "id-alert-global", inputs: { expanded: "expanded", headline: "headline", showText: "showText", hideText: "hideText" }, outputs: { didToggleExpansion: "didToggleExpansion" }, ngImport: i0, template: "<ids-alert-global \n [showtext]=\"showText\"\n [hidetext]=\"hideText\"\n [expanded]=\"expanded\"\n (closed)=\"didToggleExpansion.emit(true)\">\n <h3 slot=\"alert-headline\" *ngIf=\"headline\">\n {{headline}}\n </h3>\n <ng-content></ng-content>\n</ids-alert-global>", styles: [":host { display: block; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
91
102
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertGlobalComponent, decorators: [{
92
103
  type: Component,
93
104
  args: [{
@@ -219,6 +230,87 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
219
230
  }]
220
231
  }] });
221
232
 
233
+ class IDDateLabelComponent {
234
+ constructor() {
235
+ this.date = null;
236
+ this.year = null;
237
+ this.month = null;
238
+ this.monthLabel = null;
239
+ this.day = null;
240
+ }
241
+ }
242
+ IDDateLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
243
+ IDDateLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDateLabelComponent, selector: "id-date-label", inputs: { date: "date", year: "year", month: "month", monthLabel: "monthLabel", day: "day" }, ngImport: i0, template: "<ids-date-label \n [date]=\"date?.toString()\"\n [year]=\"year\"\n [month]=\"month\"\n [monthlabel]=\"monthLabel\"\n [day]=\"day\">\n <ng-content></ng-content>\n</ids-date-label>", encapsulation: i0.ViewEncapsulation.None });
244
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelComponent, decorators: [{
245
+ type: Component,
246
+ args: [{
247
+ selector: 'id-date-label',
248
+ templateUrl: './date-label.component.html',
249
+ encapsulation: ViewEncapsulation.None,
250
+ }]
251
+ }], ctorParameters: function () { return []; }, propDecorators: { date: [{
252
+ type: Input
253
+ }], year: [{
254
+ type: Input
255
+ }], month: [{
256
+ type: Input
257
+ }], monthLabel: [{
258
+ type: Input
259
+ }], day: [{
260
+ type: Input
261
+ }] } });
262
+
263
+ class IDDateLabelModule {
264
+ }
265
+ IDDateLabelModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
266
+ IDDateLabelModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelModule, declarations: [IDDateLabelComponent], exports: [IDDateLabelComponent] });
267
+ IDDateLabelModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelModule });
268
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelModule, decorators: [{
269
+ type: NgModule,
270
+ args: [{
271
+ declarations: [
272
+ IDDateLabelComponent
273
+ ],
274
+ exports: [
275
+ IDDateLabelComponent
276
+ ],
277
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
278
+ }]
279
+ }] });
280
+
281
+ class IDIcon {
282
+ constructor(_props) {
283
+ this._props = _props;
284
+ }
285
+ get name() {
286
+ return this._props.name;
287
+ }
288
+ get title() {
289
+ return this._props.title;
290
+ }
291
+ get color() {
292
+ return this._props.color;
293
+ }
294
+ get color2() {
295
+ return this._props.color2;
296
+ }
297
+ get size() {
298
+ return this._props.size;
299
+ }
300
+ get width() {
301
+ return this._props.width;
302
+ }
303
+ get height() {
304
+ return this._props.height;
305
+ }
306
+ get colorpreset() {
307
+ return this._props.colorpreset;
308
+ }
309
+ get padding() {
310
+ return this._props.padding;
311
+ }
312
+ }
313
+
222
314
  class IDIconComponent {
223
315
  constructor() {
224
316
  this.name = undefined;
@@ -347,7 +439,7 @@ class IDCheckboxGroupComponent {
347
439
  }
348
440
  }
349
441
  IDCheckboxGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
350
- IDCheckboxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage" }, ngImport: i0, template: "<ids-checkbox-group>\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: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
442
+ IDCheckboxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage" }, ngImport: i0, template: "<ids-checkbox-group>\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 });
351
443
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, decorators: [{
352
444
  type: Component,
353
445
  args: [{
@@ -438,7 +530,7 @@ class IDRadioGroupComponent {
438
530
  }
439
531
  }
440
532
  IDRadioGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
441
- IDRadioGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRadioGroupComponent, selector: "id-radio-group", inputs: { name: "name", legend: "legend", required: "required", errorMessage: "errorMessage" }, ngImport: i0, template: "<ids-radio-group [name]=\"name\" [legend]=\"legend\" [required]=\"required\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-radio-group>", directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
533
+ IDRadioGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRadioGroupComponent, selector: "id-radio-group", inputs: { name: "name", legend: "legend", required: "required", errorMessage: "errorMessage" }, ngImport: i0, template: "<ids-radio-group [name]=\"name\" [legend]=\"legend\" [required]=\"required\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-radio-group>", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
442
534
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioGroupComponent, decorators: [{
443
535
  type: Component,
444
536
  args: [{
@@ -558,7 +650,7 @@ class IDSelectMultipleComponent {
558
650
  }
559
651
  }
560
652
  IDSelectMultipleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
561
- 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" }, ngImport: i0, template: "<ids-select-multiple [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: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
653
+ 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" }, ngImport: i0, template: "<ids-select-multiple [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 });
562
654
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, decorators: [{
563
655
  type: Component,
564
656
  args: [{
@@ -739,7 +831,7 @@ class IDColumnComponent {
739
831
  }
740
832
  }
741
833
  IDColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
742
- IDColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDColumnComponent, selector: "id-col", inputs: { cols: "cols", mobile: "mobile", align: "align" }, ngImport: i0, template: "<ids-col [cols]=\"cols\" [mobile]=\"mobile\" [align]=\"align\">\r\n <ng-content></ng-content>\r\n</ids-col>", styles: ["id-col { display: contents; }"], encapsulation: i0.ViewEncapsulation.None });
834
+ IDColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDColumnComponent, selector: "id-col", inputs: { cols: "cols", mobile: "mobile", align: "align" }, ngImport: i0, template: "<ids-col \r\n [attr.cols]=\"cols\"\r\n [attr.mobile]=\"mobile\" \r\n [attr.align]=\"align\">\r\n <ng-content></ng-content>\r\n</ids-col>", styles: ["id-col { display: contents; }"], encapsulation: i0.ViewEncapsulation.None });
743
835
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnComponent, decorators: [{
744
836
  type: Component,
745
837
  args: [{
@@ -780,7 +872,7 @@ class IDContainerComponent {
780
872
  }
781
873
  }
782
874
  IDContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
783
- IDContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDContainerComponent, selector: "id-container", inputs: { fluid: "fluid" }, ngImport: i0, template: "<ids-container [fluid]=\"fluid\">\r\n <ng-content></ng-content>\r\n</ids-container>", encapsulation: i0.ViewEncapsulation.None });
875
+ IDContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDContainerComponent, selector: "id-container", inputs: { fluid: "fluid" }, ngImport: i0, template: "<ids-container [attr.fluid]=\"fluid\">\r\n <ng-content></ng-content>\r\n</ids-container>", encapsulation: i0.ViewEncapsulation.None });
784
876
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDContainerComponent, decorators: [{
785
877
  type: Component,
786
878
  args: [{
@@ -810,6 +902,768 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
810
902
  }]
811
903
  }] });
812
904
 
905
+ class IDLink {
906
+ constructor(_label, _id, _classes) {
907
+ this._label = _label;
908
+ this._id = _id;
909
+ this._classes = _classes;
910
+ }
911
+ get label() {
912
+ return this._label;
913
+ }
914
+ get id() {
915
+ return this._id;
916
+ }
917
+ get classes() {
918
+ return this._classes;
919
+ }
920
+ set label(label) {
921
+ this._label = label;
922
+ }
923
+ set id(id) {
924
+ this._id = id;
925
+ }
926
+ set classes(classes) {
927
+ this._classes = classes;
928
+ }
929
+ }
930
+
931
+ class IDLinkFunction extends IDLink {
932
+ constructor(_label, _action, _id, _classes) {
933
+ super(_label, _id, _classes);
934
+ this._action = _action;
935
+ }
936
+ get action() {
937
+ return this._action;
938
+ }
939
+ set action(action) {
940
+ this._action = action;
941
+ }
942
+ click() {
943
+ this._action();
944
+ }
945
+ }
946
+
947
+ class IDLinkRoute extends IDLink {
948
+ constructor(_label, _route, _queries = {}, router, _id, _classes) {
949
+ super(_label, _id, _classes);
950
+ this._route = _route;
951
+ this._queries = _queries;
952
+ this.router = router;
953
+ }
954
+ get route() {
955
+ return this._route;
956
+ }
957
+ set route(route) {
958
+ this._route = route;
959
+ }
960
+ get queries() {
961
+ return this._queries;
962
+ }
963
+ set queries(_queries) {
964
+ this._queries = _queries;
965
+ }
966
+ click() {
967
+ if (this.router) {
968
+ this.router.navigate([this.route]);
969
+ }
970
+ else {
971
+ console.error('No router supplied in IcLinkRoute Object');
972
+ }
973
+ }
974
+ }
975
+
976
+ class IDLinkWeb extends IDLink {
977
+ constructor(_label, _url, _target, _id, _classes) {
978
+ super(_label, _id, _classes);
979
+ this._url = _url;
980
+ this._target = _target;
981
+ }
982
+ get target() {
983
+ return this._target;
984
+ }
985
+ set target(target) {
986
+ this._target = target;
987
+ }
988
+ get url() {
989
+ return this._url;
990
+ }
991
+ set url(url) {
992
+ this._url = url;
993
+ }
994
+ click() {
995
+ window.open(this._url, this.target);
996
+ }
997
+ }
998
+
999
+ class IDAnchorComponent {
1000
+ constructor(sanitizer) {
1001
+ this.sanitizer = sanitizer;
1002
+ this.linkType = '';
1003
+ this.isLinkExternal = false;
1004
+ this.isLinkRoute = false;
1005
+ this.isLinkWeb = false;
1006
+ this.isLinkFunction = false;
1007
+ this.classes = '';
1008
+ this.scriptHref = this.sanitizer.bypassSecurityTrustUrl('javascript:');
1009
+ /** Apply classes to <a> element */
1010
+ this.contextClasses = [];
1011
+ }
1012
+ setLinkType() {
1013
+ this.isLinkRoute = this.link instanceof IDLinkRoute;
1014
+ this.isLinkWeb = this.link instanceof IDLinkWeb;
1015
+ this.isLinkFunction = this.link instanceof IDLinkFunction;
1016
+ if (this.link && this.isLinkWeb) {
1017
+ const weblink = this.link;
1018
+ this.isLinkExternal = weblink.target === '_blank' || weblink.target === 'blank';
1019
+ }
1020
+ else {
1021
+ this.isLinkExternal = false;
1022
+ }
1023
+ }
1024
+ setClasses() {
1025
+ if (this.link && this.link.classes) {
1026
+ this.classes = [...this.contextClasses, ...this.link.classes].join(' ');
1027
+ }
1028
+ else {
1029
+ this.classes = this.contextClasses.join(' ');
1030
+ }
1031
+ }
1032
+ get linkWeb() {
1033
+ return this.link;
1034
+ }
1035
+ get linkRoute() {
1036
+ return this.link;
1037
+ }
1038
+ get linkFunction() {
1039
+ return this.link;
1040
+ }
1041
+ ngOnChanges(changes) {
1042
+ if (changes.link) {
1043
+ this.setLinkType();
1044
+ this.setClasses();
1045
+ }
1046
+ if (changes.contextClasses) {
1047
+ this.setClasses();
1048
+ }
1049
+ }
1050
+ }
1051
+ IDAnchorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorComponent, deps: [{ token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Component });
1052
+ IDAnchorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAnchorComponent, selector: "id-anchor", inputs: { link: "link", contextClasses: "contextClasses" }, usesOnChanges: true, ngImport: i0, template: "<a *ngIf=\"isLinkRoute\" \n [attr.id]=\"linkRoute.id\"\n [class]=\"classes\" \n [routerLink]=\"linkRoute.route\"\n routerLinkActive=\"selected\"\n [queryParams]=\"linkRoute.queries\">\n {{linkRoute.label}}\n</a>\n<a *ngIf=\"isLinkWeb\" \n [attr.id]=\"linkWeb.id\"\n [class]=\"classes\" \n [href]=\"linkWeb.url\"\n [class.ic-link--external]=\"isLinkExternal\"\n [attr.target]=\"linkWeb.target\"\n [attr.rel]=\"isLinkExternal ? 'noopener' : null\">\n {{linkWeb.label}}\n</a>\n<a *ngIf=\"isLinkFunction\" \n [attr.id]=\"linkFunction.id\"\n [class]=\"classes\" \n [attr.href]=\"scriptHref\"\n (click)=\"linkFunction.action()\">\n {{linkFunction.label}}\n</a>", styles: ["a { color: inherit; text-decoration: inherit; font-size: inherit }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["routerLink", "target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo"] }, { type: i3.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "routerLinkActive"], exportAs: ["routerLinkActive"] }] });
1053
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorComponent, decorators: [{
1054
+ type: Component,
1055
+ args: [{
1056
+ selector: 'id-anchor',
1057
+ templateUrl: './anchor.component.html',
1058
+ styles: ['a { color: inherit; text-decoration: inherit; font-size: inherit }',]
1059
+ }]
1060
+ }], ctorParameters: function () { return [{ type: i1.DomSanitizer }]; }, propDecorators: { link: [{
1061
+ type: Input
1062
+ }], contextClasses: [{
1063
+ type: Input
1064
+ }] } });
1065
+
1066
+ class IDLinkComponent {
1067
+ constructor() {
1068
+ this.link = null;
1069
+ this.notificationBadge = null;
1070
+ this.prependIcon = null;
1071
+ this.appendIcon = null;
1072
+ this.underlined = false;
1073
+ this.padding = null;
1074
+ this.outline = null;
1075
+ this.block = false;
1076
+ this.color = undefined;
1077
+ this.size = undefined;
1078
+ this.activeicon = false;
1079
+ this.external = false;
1080
+ this.slot = undefined;
1081
+ }
1082
+ }
1083
+ IDLinkComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1084
+ IDLinkComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDLinkComponent, selector: "id-link", inputs: { link: "link", notificationBadge: "notificationBadge", prependIcon: "prependIcon", appendIcon: "appendIcon", underlined: "underlined", padding: "padding", outline: "outline", block: "block", color: "color", size: "size", activeicon: "activeicon", external: "external", slot: "slot" }, host: { properties: { "class.ids-block": "this.block" } }, ngImport: i0, template: "<ids-link \n [attr.underlined]=\"underlined ? '' : null\"\n [color]=\"color\"\n [size]=\"size\"\n [activeicon]=\"activeicon\"\n [padding]=\"padding\"\n [outline]=\"outline\"\n [block]=\"block\"\n [attr.slot]=\"slot\"\n >\n <ids-icon *ngIf=\"prependIcon !== null\"\n slot=\"prepend-icon\" \n [attr.name]=\"prependIcon?.name\"\n [attr.title]=\"prependIcon?.title\" \n [attr.color]=\"prependIcon?.color\" \n [attr.color2]=\"prependIcon?.color2\" \n [attr.size]=\"prependIcon?.size\" \n [attr.padding]=\"prependIcon?.padding\" \n [attr.colorpreset]=\"prependIcon?.colorpreset\" \n [attr.height]=\"prependIcon?.height\" \n [attr.width]=\"prependIcon?.width\"></ids-icon>\n <id-anchor *ngIf=\"link\" [link]=\"link\"></id-anchor>\n <ng-content *ngIf=\"!link\"></ng-content>\n <ids-icon *ngIf=\"appendIcon !== null\" \n slot=\"append-icon\" \n [attr.name]=\"appendIcon?.name\"\n [attr.title]=\"appendIcon?.title\" \n [attr.color]=\"appendIcon?.color\" \n [attr.color2]=\"appendIcon?.color2\"\n [attr.size]=\"appendIcon?.size\" \n [attr.padding]=\"appendIcon?.padding\" \n [attr.colorpreset]=\"appendIcon?.colorpreset\" \n [attr.height]=\"appendIcon?.height\" \n [attr.width]=\"appendIcon?.width\"></ids-icon>\n <ids-notification-badge \n *ngIf=\"notificationBadge !== null\"\n [attr.type]=\"notificationBadge.type\"\n [attr.size]=\"notificationBadge.size\">\n {{notificationBadge.value}}\n </ids-notification-badge>\n</ids-link>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1085
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkComponent, decorators: [{
1086
+ type: Component,
1087
+ args: [{
1088
+ selector: 'id-link',
1089
+ templateUrl: './link.component.html'
1090
+ }]
1091
+ }], ctorParameters: function () { return []; }, propDecorators: { link: [{
1092
+ type: Input
1093
+ }], notificationBadge: [{
1094
+ type: Input
1095
+ }], prependIcon: [{
1096
+ type: Input
1097
+ }], appendIcon: [{
1098
+ type: Input
1099
+ }], underlined: [{
1100
+ type: Input
1101
+ }], padding: [{
1102
+ type: Input
1103
+ }], outline: [{
1104
+ type: Input
1105
+ }], block: [{
1106
+ type: Input
1107
+ }, {
1108
+ type: HostBinding,
1109
+ args: ['class.ids-block']
1110
+ }], color: [{
1111
+ type: Input
1112
+ }], size: [{
1113
+ type: Input
1114
+ }], activeicon: [{
1115
+ type: Input
1116
+ }], external: [{
1117
+ type: Input
1118
+ }], slot: [{
1119
+ type: Input
1120
+ }] } });
1121
+
1122
+ class IDAnchorModule {
1123
+ }
1124
+ IDAnchorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1125
+ IDAnchorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorModule, declarations: [IDAnchorComponent], imports: [CommonModule,
1126
+ RouterModule], exports: [IDAnchorComponent] });
1127
+ IDAnchorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorModule, imports: [[
1128
+ CommonModule,
1129
+ RouterModule,
1130
+ ]] });
1131
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorModule, decorators: [{
1132
+ type: NgModule,
1133
+ args: [{
1134
+ declarations: [IDAnchorComponent],
1135
+ imports: [
1136
+ CommonModule,
1137
+ RouterModule,
1138
+ ],
1139
+ exports: [IDAnchorComponent]
1140
+ }]
1141
+ }] });
1142
+
1143
+ class IDLinkModule {
1144
+ }
1145
+ IDLinkModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1146
+ IDLinkModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, declarations: [IDLinkComponent], imports: [CommonModule, IDAnchorModule], exports: [IDLinkComponent] });
1147
+ IDLinkModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, imports: [[CommonModule, IDAnchorModule]] });
1148
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, decorators: [{
1149
+ type: NgModule,
1150
+ args: [{
1151
+ declarations: [
1152
+ IDLinkComponent
1153
+ ],
1154
+ imports: [CommonModule, IDAnchorModule],
1155
+ exports: [
1156
+ IDLinkComponent
1157
+ ],
1158
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1159
+ }]
1160
+ }] });
1161
+
1162
+ class IDListComponent {
1163
+ constructor() { }
1164
+ }
1165
+ IDListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1166
+ IDListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDListComponent, selector: "id-list", ngImport: i0, template: "<ids-list>\n <ng-content></ng-content>\n</ids-list>", encapsulation: i0.ViewEncapsulation.None });
1167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListComponent, decorators: [{
1168
+ type: Component,
1169
+ args: [{
1170
+ selector: 'id-list',
1171
+ templateUrl: './list.component.html',
1172
+ encapsulation: ViewEncapsulation.None,
1173
+ }]
1174
+ }], ctorParameters: function () { return []; } });
1175
+
1176
+ class IDListModule {
1177
+ }
1178
+ IDListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1179
+ IDListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListModule, declarations: [IDListComponent], exports: [IDListComponent] });
1180
+ IDListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListModule });
1181
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListModule, decorators: [{
1182
+ type: NgModule,
1183
+ args: [{
1184
+ declarations: [
1185
+ IDListComponent
1186
+ ],
1187
+ exports: [
1188
+ IDListComponent
1189
+ ],
1190
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1191
+ }]
1192
+ }] });
1193
+
1194
+ class IDListItemComponent {
1195
+ constructor() {
1196
+ this.headline = '';
1197
+ this.date = null;
1198
+ this.year = null;
1199
+ this.month = null;
1200
+ this.monthLabel = null;
1201
+ this.day = null;
1202
+ this.showDateLabel = false;
1203
+ }
1204
+ }
1205
+ IDListItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1206
+ IDListItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDListItemComponent, selector: "id-list-item", inputs: { headline: "headline", date: "date", year: "year", month: "month", monthLabel: "monthLabel", day: "day", showDateLabel: "showDateLabel" }, ngImport: i0, template: "<ids-list-item\r\n[headline]=\"headline\"\r\n[date]=\"date\"\r\n[year]=\"year\"\r\n[month]=\"month\"\r\n[monthlabel]=\"monthLabel\"\r\n[day]=\"day\"\r\n[showdatelabel]=\"showDateLabel\">\r\n <ng-content></ng-content>\r\n</ids-list-item>", encapsulation: i0.ViewEncapsulation.None });
1207
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemComponent, decorators: [{
1208
+ type: Component,
1209
+ args: [{
1210
+ selector: 'id-list-item',
1211
+ templateUrl: './list-item.component.html',
1212
+ encapsulation: ViewEncapsulation.None,
1213
+ }]
1214
+ }], ctorParameters: function () { return []; }, propDecorators: { headline: [{
1215
+ type: Input
1216
+ }], date: [{
1217
+ type: Input
1218
+ }], year: [{
1219
+ type: Input
1220
+ }], month: [{
1221
+ type: Input
1222
+ }], monthLabel: [{
1223
+ type: Input
1224
+ }], day: [{
1225
+ type: Input
1226
+ }], showDateLabel: [{
1227
+ type: Input
1228
+ }] } });
1229
+
1230
+ class IDListItemModule {
1231
+ }
1232
+ IDListItemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1233
+ IDListItemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemModule, declarations: [IDListItemComponent], exports: [IDListItemComponent] });
1234
+ IDListItemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemModule });
1235
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemModule, decorators: [{
1236
+ type: NgModule,
1237
+ args: [{
1238
+ declarations: [
1239
+ IDListItemComponent
1240
+ ],
1241
+ exports: [
1242
+ IDListItemComponent
1243
+ ],
1244
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1245
+ }]
1246
+ }] });
1247
+
1248
+ class IDListItemInfoComponent {
1249
+ constructor() { }
1250
+ }
1251
+ IDListItemInfoComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemInfoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1252
+ IDListItemInfoComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDListItemInfoComponent, selector: "id-list-item-info", ngImport: i0, template: "<ids-list-item-info>\r\n <ng-content></ng-content>\r\n</ids-list-item-info>", styles: [":host { display: block; }"] });
1253
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemInfoComponent, decorators: [{
1254
+ type: Component,
1255
+ args: [{
1256
+ selector: 'id-list-item-info',
1257
+ templateUrl: './list-item-info.component.html',
1258
+ styles: [':host { display: block; }']
1259
+ }]
1260
+ }], ctorParameters: function () { return []; } });
1261
+
1262
+ class IDListItemInfoModule {
1263
+ }
1264
+ IDListItemInfoModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemInfoModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1265
+ IDListItemInfoModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemInfoModule, declarations: [IDListItemInfoComponent], exports: [IDListItemInfoComponent] });
1266
+ IDListItemInfoModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemInfoModule });
1267
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemInfoModule, decorators: [{
1268
+ type: NgModule,
1269
+ args: [{
1270
+ declarations: [
1271
+ IDListItemInfoComponent
1272
+ ],
1273
+ exports: [
1274
+ IDListItemInfoComponent
1275
+ ],
1276
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1277
+ }]
1278
+ }] });
1279
+
1280
+ class IDNotificationBadgeComponent {
1281
+ constructor() {
1282
+ this.size = 'm';
1283
+ }
1284
+ }
1285
+ IDNotificationBadgeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1286
+ 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 });
1287
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeComponent, decorators: [{
1288
+ type: Component,
1289
+ args: [{
1290
+ selector: 'id-notification-badge',
1291
+ templateUrl: './notification-badge.component.html',
1292
+ encapsulation: ViewEncapsulation.None,
1293
+ }]
1294
+ }], ctorParameters: function () { return []; }, propDecorators: { size: [{
1295
+ type: Input
1296
+ }] } });
1297
+
1298
+ class IDNotificationBadgeModule {
1299
+ }
1300
+ IDNotificationBadgeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1301
+ IDNotificationBadgeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeModule, declarations: [IDNotificationBadgeComponent], exports: [IDNotificationBadgeComponent] });
1302
+ IDNotificationBadgeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeModule });
1303
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeModule, decorators: [{
1304
+ type: NgModule,
1305
+ args: [{
1306
+ declarations: [
1307
+ IDNotificationBadgeComponent
1308
+ ],
1309
+ exports: [
1310
+ IDNotificationBadgeComponent
1311
+ ],
1312
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1313
+ }]
1314
+ }] });
1315
+
1316
+ class IDNotificationBadge {
1317
+ constructor(_value, _size, _type) {
1318
+ this._value = _value;
1319
+ this._size = _size;
1320
+ this._type = _type;
1321
+ }
1322
+ get value() {
1323
+ return this._value;
1324
+ }
1325
+ get size() {
1326
+ return this._size;
1327
+ }
1328
+ get type() {
1329
+ return this._type;
1330
+ }
1331
+ }
1332
+
1333
+ class IDMobileMenuComponent {
1334
+ constructor() {
1335
+ this.type = undefined;
1336
+ this.variation = undefined;
1337
+ this.items = undefined;
1338
+ }
1339
+ }
1340
+ IDMobileMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1341
+ IDMobileMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDMobileMenuComponent, selector: "id-mobile-menu", inputs: { type: "type", variation: "variation", items: "items" }, ngImport: i0, template: "<ids-mobile-menu \n [type]=\"type\"\n [variation]=\"variation\">\n <ids-mobile-menu-item *ngFor=\"let item of items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [variation]=\"variation\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n [variation]=\"variation\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n [variation]=\"variation\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n [variation]=\"variation\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n</ids-mobile-menu>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1342
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuComponent, decorators: [{
1343
+ type: Component,
1344
+ args: [{
1345
+ selector: 'id-mobile-menu',
1346
+ templateUrl: './mobile-menu.component.html'
1347
+ }]
1348
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1349
+ type: Input
1350
+ }], variation: [{
1351
+ type: Input
1352
+ }], items: [{
1353
+ type: Input
1354
+ }] } });
1355
+
1356
+ class IDMobileMenuModule {
1357
+ }
1358
+ IDMobileMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1359
+ IDMobileMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuModule, declarations: [IDMobileMenuComponent], imports: [CommonModule, IDAnchorModule], exports: [IDMobileMenuComponent] });
1360
+ IDMobileMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuModule, imports: [[CommonModule, IDAnchorModule]] });
1361
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuModule, decorators: [{
1362
+ type: NgModule,
1363
+ args: [{
1364
+ declarations: [
1365
+ IDMobileMenuComponent
1366
+ ],
1367
+ exports: [
1368
+ IDMobileMenuComponent
1369
+ ],
1370
+ imports: [CommonModule, IDAnchorModule],
1371
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1372
+ }]
1373
+ }] });
1374
+
1375
+ class IDMobileMenuItem {
1376
+ constructor(_props) {
1377
+ this._props = _props;
1378
+ }
1379
+ get headline() {
1380
+ return this._props.headline;
1381
+ }
1382
+ get link() {
1383
+ return this._props.link;
1384
+ }
1385
+ get items() {
1386
+ return this._props.items;
1387
+ }
1388
+ get expanded() {
1389
+ return this._props.expanded;
1390
+ }
1391
+ get secondary() {
1392
+ return this._props.secondary;
1393
+ }
1394
+ get active() {
1395
+ return this._props.active;
1396
+ }
1397
+ get variation() {
1398
+ return this._props.variation;
1399
+ }
1400
+ get expansionToggled() {
1401
+ return this._props.expansionToggled;
1402
+ }
1403
+ togleExpansion() {
1404
+ if (this._props.expansionToggled) {
1405
+ this._props.expansionToggled();
1406
+ }
1407
+ }
1408
+ }
1409
+
1410
+ class IDFooterComponent {
1411
+ constructor() {
1412
+ this.type = '';
1413
+ this.headline = '';
1414
+ this.servicename = '';
1415
+ this.subheadline = '';
1416
+ this.mobileMenuItems = undefined;
1417
+ }
1418
+ }
1419
+ IDFooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1420
+ IDFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDFooterComponent, selector: "id-footer", inputs: { type: "type", headline: "headline", servicename: "servicename", subheadline: "subheadline", mobileMenuItems: "mobileMenuItems" }, ngImport: i0, template: "<ids-footer \n [type]=\"type\"\n [headline]=\"headline\"\n [subheadline]=\"subheadline\"\n [servicename]=\"servicename\">\n <ng-content></ng-content>\n <ids-mobile-menu \n *ngIf=\"mobileMenuItems\"\n [type]=\"type\">\n <ids-mobile-menu-item *ngFor=\"let item of mobileMenuItems\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu>\n</ids-footer>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
1421
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterComponent, decorators: [{
1422
+ type: Component,
1423
+ args: [{
1424
+ selector: 'id-footer',
1425
+ templateUrl: './footer.component.html'
1426
+ }]
1427
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1428
+ type: Input
1429
+ }], headline: [{
1430
+ type: Input
1431
+ }], servicename: [{
1432
+ type: Input
1433
+ }], subheadline: [{
1434
+ type: Input
1435
+ }], mobileMenuItems: [{
1436
+ type: Input
1437
+ }] } });
1438
+
1439
+ class IDFooterModule {
1440
+ }
1441
+ IDFooterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1442
+ IDFooterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterModule, declarations: [IDFooterComponent], imports: [CommonModule, IDAnchorModule], exports: [IDFooterComponent] });
1443
+ IDFooterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterModule, imports: [[CommonModule, IDAnchorModule]] });
1444
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterModule, decorators: [{
1445
+ type: NgModule,
1446
+ args: [{
1447
+ declarations: [
1448
+ IDFooterComponent
1449
+ ],
1450
+ exports: [
1451
+ IDFooterComponent
1452
+ ],
1453
+ imports: [CommonModule, IDAnchorModule],
1454
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1455
+ }]
1456
+ }] });
1457
+
1458
+ class IDHeaderComponent {
1459
+ constructor() {
1460
+ this.type = '';
1461
+ this.brandtext = '';
1462
+ this.hideRegionPicker = false;
1463
+ this.hideBrand = false;
1464
+ this.pickRegionText = 'Välj region';
1465
+ this.srLogoLabel = 'Logotyp';
1466
+ }
1467
+ }
1468
+ IDHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1469
+ IDHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDHeaderComponent, selector: "id-header", inputs: { type: "type", brandtext: "brandtext", hideRegionPicker: "hideRegionPicker", hideBrand: "hideBrand", pickRegionText: "pickRegionText", regionIcon: "regionIcon", width: "width", srLogoLabel: "srLogoLabel", items: "items", avatar: "avatar", navItems: "navItems", mobileItems: "mobileItems", mobileMenuItems: "mobileMenuItems" }, ngImport: i0, template: "<ids-header \r\n [type]=\"type\"\r\n [attr.brandtext]=\"brandtext\"\r\n [hideregionpicker]=\"hideRegionPicker\"\r\n [hidebrand]=\"hideBrand\"\r\n [pickregiontext]=\"pickRegionText\"\r\n [regionicon]=\"regionIcon\"\r\n [width]=\"width\"\r\n [srlogolabel]=\"srLogoLabel\">\r\n\r\n <ids-header-item *ngFor=\"let item of items\" \r\n [icon]=\"item.iconName\" \r\n [mobile]=\"item.mobile\">\r\n <id-anchor [link]=\"item.link\"></id-anchor>\r\n </ids-header-item>\r\n\r\n <ids-header-nav *ngIf=\"navItems || mobileItems\">\r\n <ids-header-nav-item *ngFor=\"let navItem of navItems; let i = index\" [label]=\"navItem.label\" [link]=\"navItem.link\">\r\n <id-anchor *ngIf=\"navItem.link\" [link]=\"navItem.link\"></id-anchor>\r\n <ids-link slot=\"col-1\" [block]=\"true\" *ngFor=\"let link of navItem.col1\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link> \r\n <ids-link slot=\"col-2\" [block]=\"true\" *ngFor=\"let link of navItem.col2\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link>\r\n <ids-link slot=\"col-3\" [block]=\"true\" *ngFor=\"let link of navItem.col3\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link>\r\n <div slot=\"col-4\">\r\n <h2 style=\"margin-bottom: 15px; color: var(--header-nav-item-heading_color);\" class=\"h2\">{{navItem.headline}}</h2>\r\n <p class=\"body\">{{navItem.paragraph}}</p>\r\n <id-anchor>{{navItem.paragraphLink}}</id-anchor>\r\n </div>\r\n </ids-header-nav-item>\r\n <ids-header-mobile-item *ngFor=\"let mobileItem of mobileItems\" [icon]=\"mobileItem.iconName\">\r\n <id-anchor [link]=\"mobileItem.link\"></id-anchor>\r\n </ids-header-mobile-item>\r\n \r\n <ids-header-mobile-menu *ngIf=\"mobileMenuItems\">\r\n Menu\r\n <ids-mobile-menu-item *ngFor=\"let item of mobileMenuItems\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-header-mobile-menu>\r\n </ids-header-nav>\r\n\r\n <ids-header-avatar *ngIf=\"avatar\" [username]=\"avatar.username\">\r\n <ng-content select=\"[avatar]\"></ng-content>\r\n <span slot=\"avatar-text\">{{avatar.serviceName}}</span>\r\n <id-anchor [link]=\"avatar.linkLeft\" slot=\"avatar-left\"></id-anchor>\r\n <id-anchor [link]=\"avatar.linkRight\" slot=\"avatar-right\"></id-anchor>\r\n </ids-header-avatar>\r\n\r\n <ng-content></ng-content>\r\n\r\n <ids-header-mobile-menu \r\n *ngIf=\"type !== '1177' && (mobileMenuItems || avatar)\"\r\n [type]=\"type\">\r\n <ids-mobile-menu-avatar *ngIf=\"avatar\" [username]=\"avatar.username\">\r\n <ng-content select=\"[avatarMobile]\"></ng-content>\r\n </ids-mobile-menu-avatar>\r\n <ids-mobile-menu-item *ngFor=\"let item of mobileMenuItems\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-header-mobile-menu>\r\n</ids-header>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1470
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderComponent, decorators: [{
1471
+ type: Component,
1472
+ args: [{
1473
+ selector: 'id-header',
1474
+ templateUrl: './header.component.html'
1475
+ }]
1476
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1477
+ type: Input
1478
+ }], brandtext: [{
1479
+ type: Input
1480
+ }], hideRegionPicker: [{
1481
+ type: Input
1482
+ }], hideBrand: [{
1483
+ type: Input
1484
+ }], pickRegionText: [{
1485
+ type: Input
1486
+ }], regionIcon: [{
1487
+ type: Input
1488
+ }], width: [{
1489
+ type: Input
1490
+ }], srLogoLabel: [{
1491
+ type: Input
1492
+ }], items: [{
1493
+ type: Input
1494
+ }], avatar: [{
1495
+ type: Input
1496
+ }], navItems: [{
1497
+ type: Input
1498
+ }], mobileItems: [{
1499
+ type: Input
1500
+ }], mobileMenuItems: [{
1501
+ type: Input
1502
+ }] } });
1503
+
1504
+ class IDHeaderModule {
1505
+ }
1506
+ IDHeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1507
+ IDHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, declarations: [IDHeaderComponent], imports: [CommonModule, IDAnchorModule], exports: [IDHeaderComponent] });
1508
+ IDHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, imports: [[CommonModule, IDAnchorModule]] });
1509
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, decorators: [{
1510
+ type: NgModule,
1511
+ args: [{
1512
+ declarations: [
1513
+ IDHeaderComponent
1514
+ ],
1515
+ exports: [
1516
+ IDHeaderComponent
1517
+ ],
1518
+ imports: [CommonModule, IDAnchorModule],
1519
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1520
+ }]
1521
+ }] });
1522
+
1523
+ class IDHeaderItem {
1524
+ constructor(_props) {
1525
+ this._props = _props;
1526
+ }
1527
+ get iconName() {
1528
+ return this._props.iconName;
1529
+ }
1530
+ get link() {
1531
+ return this._props.link;
1532
+ }
1533
+ get mobile() {
1534
+ return this._props.mobile;
1535
+ }
1536
+ }
1537
+
1538
+ class IDHeaderAvatar {
1539
+ constructor(_props) {
1540
+ this._props = _props;
1541
+ }
1542
+ get username() {
1543
+ return this._props.username;
1544
+ }
1545
+ get linkLeft() {
1546
+ return this._props.linkLeft;
1547
+ }
1548
+ get linkRight() {
1549
+ return this._props.linkRight;
1550
+ }
1551
+ get serviceName() {
1552
+ return this._props.serviceName;
1553
+ }
1554
+ }
1555
+
1556
+ class IDHeaderNavItem {
1557
+ constructor(_props) {
1558
+ this._props = _props;
1559
+ }
1560
+ get label() {
1561
+ return this._props.label;
1562
+ }
1563
+ get col1() {
1564
+ return this._props.col1;
1565
+ }
1566
+ get col2() {
1567
+ return this._props.col2;
1568
+ }
1569
+ get col3() {
1570
+ return this._props.col3;
1571
+ }
1572
+ get headline() {
1573
+ return this._props.headline;
1574
+ }
1575
+ get paragraph() {
1576
+ return this._props.paragraph;
1577
+ }
1578
+ get link() {
1579
+ return this._props.link;
1580
+ }
1581
+ get paragraphLink() {
1582
+ return this._props.pragraphLink;
1583
+ }
1584
+ }
1585
+
1586
+ class IDTabsComponent {
1587
+ constructor() { }
1588
+ }
1589
+ IDTabsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1590
+ IDTabsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabsComponent, selector: "id-tabs", ngImport: i0, template: "<ids-tabs>\n <ng-content></ng-content>\n</ids-tabs>" });
1591
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsComponent, decorators: [{
1592
+ type: Component,
1593
+ args: [{
1594
+ selector: 'id-tabs',
1595
+ templateUrl: './tabs.component.html'
1596
+ }]
1597
+ }], ctorParameters: function () { return []; } });
1598
+
1599
+ class IDTabPanelComponent {
1600
+ constructor(elementRef) {
1601
+ this.elementRef = elementRef;
1602
+ elementRef.nativeElement.setAttribute('slot', 'tab-panel');
1603
+ }
1604
+ }
1605
+ IDTabPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabPanelComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
1606
+ IDTabPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabPanelComponent, selector: "id-tab-panel", ngImport: i0, template: "<ids-tab-panel>\r\n <ng-content></ng-content>\r\n</ids-tab-panel>" });
1607
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabPanelComponent, decorators: [{
1608
+ type: Component,
1609
+ args: [{
1610
+ selector: 'id-tab-panel',
1611
+ templateUrl: './tab-panel.component.html'
1612
+ }]
1613
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
1614
+
1615
+ class IDTabComponent {
1616
+ constructor(elementRef) {
1617
+ this.elementRef = elementRef;
1618
+ this.label = '';
1619
+ this.icon = '';
1620
+ this.selected = false;
1621
+ elementRef.nativeElement.setAttribute('slot', 'tab');
1622
+ }
1623
+ }
1624
+ IDTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
1625
+ 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>" });
1626
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, decorators: [{
1627
+ type: Component,
1628
+ args: [{
1629
+ selector: 'id-tab',
1630
+ templateUrl: './tab.component.html'
1631
+ }]
1632
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { label: [{
1633
+ type: Input
1634
+ }], icon: [{
1635
+ type: Input
1636
+ }], selected: [{
1637
+ type: Input
1638
+ }] } });
1639
+
1640
+ class IDTabsModule {
1641
+ }
1642
+ IDTabsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1643
+ IDTabsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsModule, declarations: [IDTabsComponent,
1644
+ IDTabComponent,
1645
+ IDTabPanelComponent], imports: [CommonModule], exports: [IDTabsComponent,
1646
+ IDTabComponent,
1647
+ IDTabPanelComponent] });
1648
+ IDTabsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsModule, imports: [[CommonModule]] });
1649
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsModule, decorators: [{
1650
+ type: NgModule,
1651
+ args: [{
1652
+ declarations: [
1653
+ IDTabsComponent,
1654
+ IDTabComponent,
1655
+ IDTabPanelComponent
1656
+ ],
1657
+ imports: [CommonModule],
1658
+ exports: [
1659
+ IDTabsComponent,
1660
+ IDTabComponent,
1661
+ IDTabPanelComponent
1662
+ ],
1663
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1664
+ }]
1665
+ }] });
1666
+
813
1667
  /*
814
1668
  * Public API Surface of ids-angular
815
1669
  */
@@ -818,5 +1672,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
818
1672
  * Generated bundle index. Do not edit.
819
1673
  */
820
1674
 
821
- export { IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDErrorMessageComponent, IDErrorMessageModule, IDIconComponent, IDIconModule, IDInputComponent, IDInputModule, IDRadioComponent, IDRadioGroupComponent, IDRadioModule, IDRangeComponent, IDRangeModule, IDRowComponent, IDRowModule, IDSelectComponent, IDSelectModule, IDSelectMultipleComponent, IDSelectMultipleModule, IDSpinnerComponent, IDSpinnerModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule };
1675
+ export { IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDDateLabelComponent, IDDateLabelModule, IDErrorMessageComponent, IDErrorMessageModule, 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, IDNotificationBadge, IDNotificationBadgeComponent, IDNotificationBadgeModule, IDRadioComponent, IDRadioGroupComponent, IDRadioModule, IDRangeComponent, IDRangeModule, IDRowComponent, IDRowModule, IDSelectComponent, IDSelectModule, IDSelectMultipleComponent, IDSelectMultipleModule, IDSpinnerComponent, IDSpinnerModule, IDTabComponent, IDTabPanelComponent, IDTabsComponent, IDTabsModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule };
822
1676
  //# sourceMappingURL=inera-ids-angular.js.map