@inera/ids-angular 1.0.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. package/README.md +2 -23
  2. package/bundles/inera-ids-angular.umd.js +1387 -25
  3. package/bundles/inera-ids-angular.umd.js.map +1 -1
  4. package/esm2015/lib/classes/header/IDHeaderAvatar.js +18 -0
  5. package/esm2015/lib/classes/header/IDHeaderAvatarProps.js +2 -0
  6. package/esm2015/lib/classes/header/IDHeaderItem.js +15 -0
  7. package/esm2015/lib/classes/header/IDHeaderItemProps.js +2 -0
  8. package/esm2015/lib/classes/header/IDHeaderNavItem.js +30 -0
  9. package/esm2015/lib/classes/header/IDHeaderNavItemProps.js +2 -0
  10. package/esm2015/lib/classes/icon/IDIcon.js +33 -0
  11. package/esm2015/lib/classes/icon/IDIconProps.js +2 -0
  12. package/esm2015/lib/classes/link/IDLink.js +26 -0
  13. package/esm2015/lib/classes/link/IDLinkFunction.js +17 -0
  14. package/esm2015/lib/classes/link/IDLinkRoute.js +30 -0
  15. package/esm2015/lib/classes/link/IDLinkWeb.js +24 -0
  16. package/esm2015/lib/classes/mobile/MobileMenuItem.js +35 -0
  17. package/esm2015/lib/classes/mobile/MobileMenuItemProps.js +2 -0
  18. package/esm2015/lib/classes/notification-badge.js +17 -0
  19. package/esm2015/lib/components/alert/alert.component.js +39 -0
  20. package/esm2015/lib/components/alert/alert.module.js +24 -0
  21. package/esm2015/lib/components/alert-global/alert-global.component.js +33 -0
  22. package/esm2015/lib/components/alert-global/alert-global.module.js +24 -0
  23. package/esm2015/lib/components/button/button.component.js +41 -0
  24. package/esm2015/lib/{button → components/button}/button.module.js +1 -1
  25. package/esm2015/lib/{button-group → components/button-group}/button-group.component.js +1 -1
  26. package/esm2015/lib/{button-group → components/button-group}/button-group.module.js +1 -1
  27. package/esm2015/lib/components/footer/footer.component.js +33 -0
  28. package/esm2015/lib/components/footer/footer.module.js +25 -0
  29. package/esm2015/lib/{form → components/form}/checkbox/checkbox.component.js +1 -1
  30. package/esm2015/lib/{form → components/form}/checkbox/checkbox.module.js +1 -1
  31. package/esm2015/lib/{form → components/form}/checkbox-group/checkbox-group.component.js +1 -1
  32. package/esm2015/lib/components/form/checkbox-group/checkbox-group.module.js +25 -0
  33. package/esm2015/lib/components/form/error-message/error-message.component.js +21 -0
  34. package/esm2015/lib/{form → components/form}/error-message/error-message.module.js +1 -1
  35. package/esm2015/lib/{form → components/form}/input/input.component.js +1 -1
  36. package/esm2015/lib/{form → components/form}/input/input.module.js +1 -1
  37. package/esm2015/lib/components/form/radio/radio-group.component.js +30 -0
  38. package/esm2015/lib/components/form/radio/radio.component.js +16 -0
  39. package/esm2015/lib/components/form/radio/radio.module.js +33 -0
  40. package/esm2015/lib/{form → components/form}/range/range.component.js +1 -1
  41. package/esm2015/lib/{form → components/form}/range/range.module.js +1 -1
  42. package/esm2015/lib/{form → components/form}/select/select.component.js +1 -1
  43. package/esm2015/lib/{form → components/form}/select/select.module.js +1 -1
  44. package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +27 -0
  45. package/esm2015/lib/{form → components/form}/select-multiple/select-multiple.module.js +1 -1
  46. package/esm2015/lib/components/form/spinner/spinner.component.js +23 -0
  47. package/esm2015/lib/{form → components/form}/spinner/spinner.module.js +1 -1
  48. package/esm2015/lib/{form → components/form}/textarea/textarea.component.js +1 -1
  49. package/esm2015/lib/{form → components/form}/textarea/textarea.module.js +1 -1
  50. package/esm2015/lib/{form → components/form}/time/time.component.js +1 -1
  51. package/esm2015/lib/{form → components/form}/time/time.module.js +1 -1
  52. package/esm2015/lib/components/grid/column/column.component.js +27 -0
  53. package/esm2015/lib/{grid → components/grid}/column/column.module.js +1 -1
  54. package/esm2015/lib/components/grid/container/container.component.js +20 -0
  55. package/esm2015/lib/components/grid/container/container.module.js +22 -0
  56. package/esm2015/lib/{grid → components/grid}/row/row.component.js +1 -1
  57. package/esm2015/lib/{grid → components/grid}/row/row.module.js +1 -1
  58. package/esm2015/lib/components/header/header.component.js +50 -0
  59. package/esm2015/lib/components/header/header.module.js +25 -0
  60. package/esm2015/lib/components/icon/icon.component.js +41 -0
  61. package/esm2015/lib/{icon → components/icon}/icon.module.js +1 -1
  62. package/esm2015/lib/components/link/link.component.js +58 -0
  63. package/esm2015/lib/components/link/link.module.js +26 -0
  64. package/esm2015/lib/components/mobile/menu/mobile-menu.component.js +27 -0
  65. package/esm2015/lib/components/mobile/menu/mobile-menu.module.js +25 -0
  66. package/esm2015/lib/components/notification/badge/notification-badge.component.js +23 -0
  67. package/esm2015/lib/components/notification/badge/notification-badge.module.js +22 -0
  68. package/esm2015/lib/components/tabs/panel/tab-panel.component.js +18 -0
  69. package/esm2015/lib/components/tabs/tab/tab.component.js +27 -0
  70. package/esm2015/lib/components/tabs/tabs.component.js +15 -0
  71. package/esm2015/lib/components/tabs/tabs.module.js +35 -0
  72. package/esm2015/lib/internals/anchor.component.js +75 -0
  73. package/esm2015/lib/internals/anchor.module.js +26 -0
  74. package/esm2015/public-api.js +80 -36
  75. package/fesm2015/inera-ids-angular.js +800 -15
  76. package/fesm2015/inera-ids-angular.js.map +1 -1
  77. package/lib/classes/header/IDHeaderAvatar.d.ts +10 -0
  78. package/lib/classes/header/IDHeaderAvatarProps.d.ts +7 -0
  79. package/lib/classes/header/IDHeaderItem.d.ts +8 -0
  80. package/lib/classes/header/IDHeaderItemProps.d.ts +6 -0
  81. package/lib/classes/header/IDHeaderNavItem.d.ts +13 -0
  82. package/lib/classes/header/IDHeaderNavItemProps.d.ts +11 -0
  83. package/lib/classes/icon/IDIcon.d.ts +14 -0
  84. package/lib/classes/icon/IDIconProps.d.ts +11 -0
  85. package/lib/classes/link/IDLink.d.ts +13 -0
  86. package/lib/classes/link/IDLinkFunction.d.ts +8 -0
  87. package/lib/classes/link/IDLinkRoute.d.ts +13 -0
  88. package/lib/classes/link/IDLinkWeb.d.ts +11 -0
  89. package/lib/classes/mobile/MobileMenuItem.d.ts +14 -0
  90. package/lib/classes/mobile/MobileMenuItemProps.d.ts +11 -0
  91. package/lib/classes/notification-badge.d.ts +9 -0
  92. package/lib/{alert → components/alert}/alert.component.d.ts +3 -1
  93. package/lib/{alert → components/alert}/alert.module.d.ts +2 -1
  94. package/lib/components/alert-global/alert-global.component.d.ts +12 -0
  95. package/lib/components/alert-global/alert-global.module.d.ts +9 -0
  96. package/lib/{button → components/button}/button.component.d.ts +0 -0
  97. package/lib/{button → components/button}/button.module.d.ts +0 -0
  98. package/lib/{button-group → components/button-group}/button-group.component.d.ts +0 -0
  99. package/lib/{button-group → components/button-group}/button-group.module.d.ts +0 -0
  100. package/lib/components/footer/footer.component.d.ts +12 -0
  101. package/lib/components/footer/footer.module.d.ts +10 -0
  102. package/lib/{form → components/form}/checkbox/checkbox.component.d.ts +0 -0
  103. package/lib/{form → components/form}/checkbox/checkbox.module.d.ts +0 -0
  104. package/lib/{form → components/form}/checkbox-group/checkbox-group.component.d.ts +0 -0
  105. package/lib/{form → components/form}/checkbox-group/checkbox-group.module.d.ts +0 -0
  106. package/lib/{form → components/form}/error-message/error-message.component.d.ts +0 -0
  107. package/lib/{form → components/form}/error-message/error-message.module.d.ts +0 -0
  108. package/lib/{form → components/form}/input/input.component.d.ts +0 -0
  109. package/lib/{form → components/form}/input/input.module.d.ts +0 -0
  110. package/lib/{form → components/form}/radio/radio-group.component.d.ts +0 -0
  111. package/lib/{form → components/form}/radio/radio.component.d.ts +1 -3
  112. package/lib/{form → components/form}/radio/radio.module.d.ts +0 -0
  113. package/lib/{form → components/form}/range/range.component.d.ts +0 -0
  114. package/lib/{form → components/form}/range/range.module.d.ts +0 -0
  115. package/lib/{form → components/form}/select/select.component.d.ts +0 -0
  116. package/lib/{form → components/form}/select/select.module.d.ts +0 -0
  117. package/lib/{form → components/form}/select-multiple/select-multiple.component.d.ts +0 -0
  118. package/lib/{form → components/form}/select-multiple/select-multiple.module.d.ts +0 -0
  119. package/lib/{form → components/form}/spinner/spinner.component.d.ts +0 -0
  120. package/lib/{form → components/form}/spinner/spinner.module.d.ts +0 -0
  121. package/lib/{form → components/form}/textarea/textarea.component.d.ts +0 -0
  122. package/lib/{form → components/form}/textarea/textarea.module.d.ts +0 -0
  123. package/lib/{form → components/form}/time/time.component.d.ts +0 -0
  124. package/lib/{form → components/form}/time/time.module.d.ts +0 -0
  125. package/lib/{grid → components/grid}/column/column.component.d.ts +0 -0
  126. package/lib/{grid → components/grid}/column/column.module.d.ts +0 -0
  127. package/lib/components/grid/container/container.component.d.ts +7 -0
  128. package/lib/components/grid/container/container.module.d.ts +8 -0
  129. package/lib/{grid → components/grid}/row/row.component.d.ts +0 -0
  130. package/lib/{grid → components/grid}/row/row.module.d.ts +0 -0
  131. package/lib/components/header/header.component.d.ts +20 -0
  132. package/lib/components/header/header.module.d.ts +10 -0
  133. package/lib/{icon → components/icon}/icon.component.d.ts +4 -4
  134. package/lib/{icon → components/icon}/icon.module.d.ts +0 -0
  135. package/lib/components/link/link.component.d.ts +21 -0
  136. package/lib/components/link/link.module.d.ts +11 -0
  137. package/lib/components/mobile/menu/mobile-menu.component.d.ts +10 -0
  138. package/lib/components/mobile/menu/mobile-menu.module.d.ts +10 -0
  139. package/lib/components/notification/badge/notification-badge.component.d.ts +8 -0
  140. package/lib/components/notification/badge/notification-badge.module.d.ts +8 -0
  141. package/lib/components/tabs/panel/tab-panel.component.d.ts +8 -0
  142. package/lib/components/tabs/tab/tab.component.d.ts +11 -0
  143. package/lib/components/tabs/tabs.component.d.ts +6 -0
  144. package/lib/components/tabs/tabs.module.d.ts +12 -0
  145. package/lib/internals/anchor.component.d.ts +30 -0
  146. package/lib/internals/anchor.module.d.ts +9 -0
  147. package/package.json +2 -2
  148. package/public-api.d.ts +68 -35
  149. package/esm2015/lib/alert/alert.component.js +0 -32
  150. package/esm2015/lib/alert/alert.module.js +0 -22
  151. package/esm2015/lib/button/button.component.js +0 -41
  152. package/esm2015/lib/form/checkbox-group/checkbox-group.module.js +0 -25
  153. package/esm2015/lib/form/error-message/error-message.component.js +0 -21
  154. package/esm2015/lib/form/radio/radio-group.component.js +0 -30
  155. package/esm2015/lib/form/radio/radio.component.js +0 -18
  156. package/esm2015/lib/form/radio/radio.module.js +0 -33
  157. package/esm2015/lib/form/select-multiple/select-multiple.component.js +0 -27
  158. package/esm2015/lib/form/spinner/spinner.component.js +0 -23
  159. package/esm2015/lib/grid/column/column.component.js +0 -27
  160. package/esm2015/lib/icon/icon.component.js +0 -37
@@ -1,13 +1,14 @@
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 i2 from '@angular/common';
4
+ import { CommonModule } from '@angular/common';
3
5
  import '@inera/ids-core/components/alert/register';
6
+ import '@inera/ids-core/components/alert-global/register';
4
7
  import '@inera/ids-core/components/button/register';
5
8
  import '@inera/ids-core/components/button-group/register';
6
9
  import '@inera/ids-core/components/icon/register';
7
10
  import '@inera/ids-core/components/form/input/register';
8
11
  import '@inera/ids-core/components/form/checkbox/register';
9
- import * as i1 from '@angular/common';
10
- import { CommonModule } from '@angular/common';
11
12
  import '@inera/ids-core/components/form/checkbox-group/register';
12
13
  import '@inera/ids-core/components/form/error-message/register';
13
14
  import '@inera/ids-core/components/form/radio/register';
@@ -19,6 +20,16 @@ import '@inera/ids-core/components/form/time/register';
19
20
  import '@inera/ids-core/components/form/textarea/register';
20
21
  import '@inera/ids-core/components/grid/row/register';
21
22
  import '@inera/ids-core/components/grid/column/register';
23
+ import '@inera/ids-core/components/grid/container/register';
24
+ import '@inera/ids-core/components/link/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/notification/badge/register';
29
+ import '@inera/ids-core/components/mobile/menu/register';
30
+ import '@inera/ids-core/components/footer/register';
31
+ import '@inera/ids-core/components/header/register';
32
+ import '@inera/ids-core/components/tabs/register';
22
33
 
23
34
  class IDAlertComponent {
24
35
  constructor() {
@@ -26,11 +37,13 @@ class IDAlertComponent {
26
37
  this.headline = '';
27
38
  this.live = '';
28
39
  this.type = '';
40
+ this.srCloseText = '';
41
+ this.srIconTitle = '';
29
42
  this.closed = new EventEmitter();
30
43
  }
31
44
  }
32
45
  IDAlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
33
- 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" }, outputs: { closed: "closed" }, ngImport: i0, template: "<ids-alert \n [dismissible]=\"dismissible\"\n [headline]=\"headline\"\n [live]=\"live\"\n [type]=\"type\"\n (closed)=\"closed.emit(true)\">\n <ng-content></ng-content>\n</ids-alert>", styles: [":host { display: block; }"] });
46
+ 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"] }] });
34
47
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, decorators: [{
35
48
  type: Component,
36
49
  args: [{
@@ -46,6 +59,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
46
59
  type: Input
47
60
  }], type: [{
48
61
  type: Input
62
+ }], srCloseText: [{
63
+ type: Input
64
+ }], srIconTitle: [{
65
+ type: Input
49
66
  }], closed: [{
50
67
  type: Output
51
68
  }] } });
@@ -53,8 +70,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
53
70
  class IDAlertModule {
54
71
  }
55
72
  IDAlertModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
56
- IDAlertModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule, declarations: [IDAlertComponent], exports: [IDAlertComponent] });
57
- IDAlertModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule });
73
+ IDAlertModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule, declarations: [IDAlertComponent], imports: [CommonModule], exports: [IDAlertComponent] });
74
+ IDAlertModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule, imports: [[CommonModule]] });
58
75
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule, decorators: [{
59
76
  type: NgModule,
60
77
  args: [{
@@ -64,6 +81,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
64
81
  exports: [
65
82
  IDAlertComponent
66
83
  ],
84
+ imports: [CommonModule],
85
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
86
+ }]
87
+ }] });
88
+
89
+ class IDAlertGlobalComponent {
90
+ constructor() {
91
+ this.expanded = true;
92
+ this.headline = '';
93
+ this.showText = '';
94
+ this.hideText = '';
95
+ this.didToggleExpansion = new EventEmitter();
96
+ }
97
+ }
98
+ IDAlertGlobalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertGlobalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
99
+ 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"] }] });
100
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertGlobalComponent, decorators: [{
101
+ type: Component,
102
+ args: [{
103
+ selector: 'id-alert-global',
104
+ templateUrl: './alert-global.component.html',
105
+ styles: [':host { display: block; }']
106
+ }]
107
+ }], ctorParameters: function () { return []; }, propDecorators: { expanded: [{
108
+ type: Input
109
+ }], headline: [{
110
+ type: Input
111
+ }], showText: [{
112
+ type: Input
113
+ }], hideText: [{
114
+ type: Input
115
+ }], didToggleExpansion: [{
116
+ type: Output
117
+ }] } });
118
+
119
+ class IDAlertGlobalModule {
120
+ }
121
+ IDAlertGlobalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertGlobalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
122
+ IDAlertGlobalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertGlobalModule, declarations: [IDAlertGlobalComponent], imports: [CommonModule], exports: [IDAlertGlobalComponent] });
123
+ IDAlertGlobalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertGlobalModule, imports: [[CommonModule]] });
124
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertGlobalModule, decorators: [{
125
+ type: NgModule,
126
+ args: [{
127
+ declarations: [
128
+ IDAlertGlobalComponent
129
+ ],
130
+ exports: [
131
+ IDAlertGlobalComponent
132
+ ],
133
+ imports: [CommonModule],
67
134
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
68
135
  }]
69
136
  }] });
@@ -161,20 +228,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
161
228
  }]
162
229
  }] });
163
230
 
231
+ class IDIcon {
232
+ constructor(_props) {
233
+ this._props = _props;
234
+ }
235
+ get name() {
236
+ return this._props.name;
237
+ }
238
+ get title() {
239
+ return this._props.title;
240
+ }
241
+ get color() {
242
+ return this._props.color;
243
+ }
244
+ get color2() {
245
+ return this._props.color2;
246
+ }
247
+ get size() {
248
+ return this._props.size;
249
+ }
250
+ get width() {
251
+ return this._props.width;
252
+ }
253
+ get height() {
254
+ return this._props.height;
255
+ }
256
+ get colorpreset() {
257
+ return this._props.colorpreset;
258
+ }
259
+ get padding() {
260
+ return this._props.padding;
261
+ }
262
+ }
263
+
164
264
  class IDIconComponent {
165
265
  constructor() {
166
266
  this.name = undefined;
167
267
  this.color = undefined;
168
268
  this.color2 = undefined;
269
+ this.colorpreset = undefined;
270
+ this.title = undefined;
169
271
  this.size = 'm';
170
272
  this.width = undefined;
171
273
  this.height = undefined;
172
274
  }
173
- ngOnInit() {
174
- }
175
275
  }
176
276
  IDIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
177
- IDIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDIconComponent, selector: "id-icon", inputs: { name: "name", color: "color", color2: "color2", size: "size", width: "width", height: "height" }, ngImport: i0, template: "<ids-icon \n [name]=\"name\"\n [color]=\"color\"\n [color2]=\"color2\"\n [size]=\"size\"\n [width]=\"width\"\n [height]=\"height\">\n</ids-icon >", encapsulation: i0.ViewEncapsulation.None });
277
+ IDIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDIconComponent, selector: "id-icon", inputs: { name: "name", color: "color", color2: "color2", colorpreset: "colorpreset", title: "title", size: "size", width: "width", height: "height" }, ngImport: i0, template: "<ids-icon \n [name]=\"name\"\n [color]=\"color\"\n [color2]=\"color2\"\n [size]=\"size\"\n [width]=\"width\"\n [height]=\"height\"\n [colorpreset]=\"colorpreset\">\n</ids-icon >", encapsulation: i0.ViewEncapsulation.None });
178
278
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, decorators: [{
179
279
  type: Component,
180
280
  args: [{
@@ -188,6 +288,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
188
288
  type: Input
189
289
  }], color2: [{
190
290
  type: Input
291
+ }], colorpreset: [{
292
+ type: Input
293
+ }], title: [{
294
+ type: Input
191
295
  }], size: [{
192
296
  type: Input
193
297
  }], width: [{
@@ -285,7 +389,7 @@ class IDCheckboxGroupComponent {
285
389
  }
286
390
  }
287
391
  IDCheckboxGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
288
- 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 });
392
+ 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 });
289
393
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, decorators: [{
290
394
  type: Component,
291
395
  args: [{
@@ -355,8 +459,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
355
459
 
356
460
  class IDRadioComponent {
357
461
  constructor() { }
358
- ngOnInit() {
359
- }
360
462
  }
361
463
  IDRadioComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
362
464
  IDRadioComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRadioComponent, selector: "id-radio", ngImport: i0, template: "<ids-radio>\r\n <ng-content></ng-content>\r\n</ids-radio>", encapsulation: i0.ViewEncapsulation.None });
@@ -378,7 +480,7 @@ class IDRadioGroupComponent {
378
480
  }
379
481
  }
380
482
  IDRadioGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
381
- 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 });
483
+ 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 });
382
484
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioGroupComponent, decorators: [{
383
485
  type: Component,
384
486
  args: [{
@@ -498,7 +600,7 @@ class IDSelectMultipleComponent {
498
600
  }
499
601
  }
500
602
  IDSelectMultipleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
501
- 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 });
603
+ 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 });
502
604
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, decorators: [{
503
605
  type: Component,
504
606
  args: [{
@@ -679,7 +781,7 @@ class IDColumnComponent {
679
781
  }
680
782
  }
681
783
  IDColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
682
- 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 });
784
+ 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 });
683
785
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnComponent, decorators: [{
684
786
  type: Component,
685
787
  args: [{
@@ -714,6 +816,689 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
714
816
  }]
715
817
  }] });
716
818
 
819
+ class IDContainerComponent {
820
+ constructor() {
821
+ this.fluid = false;
822
+ }
823
+ }
824
+ IDContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
825
+ 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 });
826
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDContainerComponent, decorators: [{
827
+ type: Component,
828
+ args: [{
829
+ selector: 'id-container',
830
+ templateUrl: './container.component.html',
831
+ encapsulation: ViewEncapsulation.None,
832
+ }]
833
+ }], ctorParameters: function () { return []; }, propDecorators: { fluid: [{
834
+ type: Input
835
+ }] } });
836
+
837
+ class IDContainerModule {
838
+ }
839
+ IDContainerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDContainerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
840
+ IDContainerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDContainerModule, declarations: [IDContainerComponent], exports: [IDContainerComponent] });
841
+ IDContainerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDContainerModule });
842
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDContainerModule, decorators: [{
843
+ type: NgModule,
844
+ args: [{
845
+ declarations: [
846
+ IDContainerComponent
847
+ ],
848
+ exports: [
849
+ IDContainerComponent
850
+ ],
851
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
852
+ }]
853
+ }] });
854
+
855
+ class IDLinkComponent {
856
+ constructor() {
857
+ this.link = null;
858
+ this.notificationBadge = null;
859
+ this.prependIcon = null;
860
+ this.appendIcon = null;
861
+ this.underlined = false;
862
+ this.padding = null;
863
+ this.outline = null;
864
+ this.block = false;
865
+ this.color = undefined;
866
+ this.size = undefined;
867
+ this.activeicon = false;
868
+ this.external = false;
869
+ this.slot = undefined;
870
+ }
871
+ }
872
+ IDLinkComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
873
+ 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-tab>\n \n</ids-tab>" });
874
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkComponent, decorators: [{
875
+ type: Component,
876
+ args: [{
877
+ selector: 'id-link',
878
+ templateUrl: './link.component.html'
879
+ }]
880
+ }], ctorParameters: function () { return []; }, propDecorators: { link: [{
881
+ type: Input
882
+ }], notificationBadge: [{
883
+ type: Input
884
+ }], prependIcon: [{
885
+ type: Input
886
+ }], appendIcon: [{
887
+ type: Input
888
+ }], underlined: [{
889
+ type: Input
890
+ }], padding: [{
891
+ type: Input
892
+ }], outline: [{
893
+ type: Input
894
+ }], block: [{
895
+ type: Input
896
+ }, {
897
+ type: HostBinding,
898
+ args: ['class.ids-block']
899
+ }], color: [{
900
+ type: Input
901
+ }], size: [{
902
+ type: Input
903
+ }], activeicon: [{
904
+ type: Input
905
+ }], external: [{
906
+ type: Input
907
+ }], slot: [{
908
+ type: Input
909
+ }] } });
910
+
911
+ class IDLink {
912
+ constructor(_label, _id, _classes) {
913
+ this._label = _label;
914
+ this._id = _id;
915
+ this._classes = _classes;
916
+ }
917
+ get label() {
918
+ return this._label;
919
+ }
920
+ get id() {
921
+ return this._id;
922
+ }
923
+ get classes() {
924
+ return this._classes;
925
+ }
926
+ set label(label) {
927
+ this._label = label;
928
+ }
929
+ set id(id) {
930
+ this._id = id;
931
+ }
932
+ set classes(classes) {
933
+ this._classes = classes;
934
+ }
935
+ }
936
+
937
+ class IDLinkFunction extends IDLink {
938
+ constructor(_label, _action, _id, _classes) {
939
+ super(_label, _id, _classes);
940
+ this._action = _action;
941
+ }
942
+ get action() {
943
+ return this._action;
944
+ }
945
+ set action(action) {
946
+ this._action = action;
947
+ }
948
+ click() {
949
+ this._action();
950
+ }
951
+ }
952
+
953
+ class IDLinkRoute extends IDLink {
954
+ constructor(_label, _route, _queries = {}, router, _id, _classes) {
955
+ super(_label, _id, _classes);
956
+ this._route = _route;
957
+ this._queries = _queries;
958
+ this.router = router;
959
+ }
960
+ get route() {
961
+ return this._route;
962
+ }
963
+ set route(route) {
964
+ this._route = route;
965
+ }
966
+ get queries() {
967
+ return this._queries;
968
+ }
969
+ set queries(_queries) {
970
+ this._queries = _queries;
971
+ }
972
+ click() {
973
+ if (this.router) {
974
+ this.router.navigate([this.route]);
975
+ }
976
+ else {
977
+ console.error('No router supplied in IcLinkRoute Object');
978
+ }
979
+ }
980
+ }
981
+
982
+ class IDLinkWeb extends IDLink {
983
+ constructor(_label, _url, _target, _id, _classes) {
984
+ super(_label, _id, _classes);
985
+ this._url = _url;
986
+ this._target = _target;
987
+ }
988
+ get target() {
989
+ return this._target;
990
+ }
991
+ set target(target) {
992
+ this._target = target;
993
+ }
994
+ get url() {
995
+ return this._url;
996
+ }
997
+ set url(url) {
998
+ this._url = url;
999
+ }
1000
+ click() {
1001
+ window.open(this._url, this.target);
1002
+ }
1003
+ }
1004
+
1005
+ class IDAnchorComponent {
1006
+ constructor(sanitizer) {
1007
+ this.sanitizer = sanitizer;
1008
+ this.linkType = '';
1009
+ this.isLinkExternal = false;
1010
+ this.isLinkRoute = false;
1011
+ this.isLinkWeb = false;
1012
+ this.isLinkFunction = false;
1013
+ this.classes = '';
1014
+ this.scriptHref = this.sanitizer.bypassSecurityTrustUrl('javascript:');
1015
+ /** Apply classes to <a> element */
1016
+ this.contextClasses = [];
1017
+ }
1018
+ setLinkType() {
1019
+ this.isLinkRoute = this.link instanceof IDLinkRoute;
1020
+ this.isLinkWeb = this.link instanceof IDLinkWeb;
1021
+ this.isLinkFunction = this.link instanceof IDLinkFunction;
1022
+ if (this.link && this.isLinkWeb) {
1023
+ const weblink = this.link;
1024
+ this.isLinkExternal = weblink.target === '_blank' || weblink.target === 'blank';
1025
+ }
1026
+ else {
1027
+ this.isLinkExternal = false;
1028
+ }
1029
+ }
1030
+ setClasses() {
1031
+ if (this.link && this.link.classes) {
1032
+ this.classes = [...this.contextClasses, ...this.link.classes].join(' ');
1033
+ }
1034
+ else {
1035
+ this.classes = this.contextClasses.join(' ');
1036
+ }
1037
+ }
1038
+ get linkWeb() {
1039
+ return this.link;
1040
+ }
1041
+ get linkRoute() {
1042
+ return this.link;
1043
+ }
1044
+ get linkFunction() {
1045
+ return this.link;
1046
+ }
1047
+ ngOnChanges(changes) {
1048
+ if (changes.link) {
1049
+ this.setLinkType();
1050
+ this.setClasses();
1051
+ }
1052
+ if (changes.contextClasses) {
1053
+ this.setClasses();
1054
+ }
1055
+ }
1056
+ }
1057
+ IDAnchorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorComponent, deps: [{ token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Component });
1058
+ 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"] }] });
1059
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorComponent, decorators: [{
1060
+ type: Component,
1061
+ args: [{
1062
+ selector: 'id-anchor',
1063
+ templateUrl: './anchor.component.html',
1064
+ styles: ['a { color: inherit; text-decoration: inherit; font-size: inherit }',]
1065
+ }]
1066
+ }], ctorParameters: function () { return [{ type: i1.DomSanitizer }]; }, propDecorators: { link: [{
1067
+ type: Input
1068
+ }], contextClasses: [{
1069
+ type: Input
1070
+ }] } });
1071
+
1072
+ class IDAnchorModule {
1073
+ }
1074
+ IDAnchorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1075
+ IDAnchorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorModule, declarations: [IDAnchorComponent], imports: [CommonModule,
1076
+ RouterModule], exports: [IDAnchorComponent] });
1077
+ IDAnchorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorModule, imports: [[
1078
+ CommonModule,
1079
+ RouterModule,
1080
+ ]] });
1081
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorModule, decorators: [{
1082
+ type: NgModule,
1083
+ args: [{
1084
+ declarations: [IDAnchorComponent],
1085
+ imports: [
1086
+ CommonModule,
1087
+ RouterModule,
1088
+ ],
1089
+ exports: [IDAnchorComponent]
1090
+ }]
1091
+ }] });
1092
+
1093
+ class IDLinkModule {
1094
+ }
1095
+ IDLinkModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1096
+ IDLinkModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, declarations: [IDLinkComponent], imports: [CommonModule, IDAnchorModule], exports: [IDLinkComponent] });
1097
+ IDLinkModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, imports: [[CommonModule, IDAnchorModule]] });
1098
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, decorators: [{
1099
+ type: NgModule,
1100
+ args: [{
1101
+ declarations: [
1102
+ IDLinkComponent
1103
+ ],
1104
+ imports: [CommonModule, IDAnchorModule],
1105
+ exports: [
1106
+ IDLinkComponent
1107
+ ],
1108
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1109
+ }]
1110
+ }] });
1111
+
1112
+ class IDNotificationBadgeComponent {
1113
+ constructor() {
1114
+ this.size = 'm';
1115
+ this.type = 'information';
1116
+ }
1117
+ }
1118
+ IDNotificationBadgeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1119
+ IDNotificationBadgeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDNotificationBadgeComponent, selector: "id-notification-badge", inputs: { size: "size", type: "type" }, ngImport: i0, template: "<ids-notification-badge \n [attr.type]=\"type\"\n [attr.size]=\"size\">\n <ng-content></ng-content>\n</ids-notification-badge>", encapsulation: i0.ViewEncapsulation.None });
1120
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeComponent, decorators: [{
1121
+ type: Component,
1122
+ args: [{
1123
+ selector: 'id-notification-badge',
1124
+ templateUrl: './notification-badge.component.html',
1125
+ encapsulation: ViewEncapsulation.None,
1126
+ }]
1127
+ }], ctorParameters: function () { return []; }, propDecorators: { size: [{
1128
+ type: Input
1129
+ }], type: [{
1130
+ type: Input
1131
+ }] } });
1132
+
1133
+ class IDNotificationBadgeModule {
1134
+ }
1135
+ IDNotificationBadgeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1136
+ IDNotificationBadgeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeModule, declarations: [IDNotificationBadgeComponent], exports: [IDNotificationBadgeComponent] });
1137
+ IDNotificationBadgeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeModule });
1138
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeModule, decorators: [{
1139
+ type: NgModule,
1140
+ args: [{
1141
+ declarations: [
1142
+ IDNotificationBadgeComponent
1143
+ ],
1144
+ exports: [
1145
+ IDNotificationBadgeComponent
1146
+ ],
1147
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1148
+ }]
1149
+ }] });
1150
+
1151
+ class IDNotificationBadge {
1152
+ constructor(_value, _size, _type) {
1153
+ this._value = _value;
1154
+ this._size = _size;
1155
+ this._type = _type;
1156
+ }
1157
+ get value() {
1158
+ return this._value;
1159
+ }
1160
+ get size() {
1161
+ return this._size;
1162
+ }
1163
+ get type() {
1164
+ return this._type;
1165
+ }
1166
+ }
1167
+
1168
+ class IDMobileMenuComponent {
1169
+ constructor() {
1170
+ this.type = undefined;
1171
+ this.variation = undefined;
1172
+ this.items = undefined;
1173
+ }
1174
+ }
1175
+ IDMobileMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1176
+ 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"] }] });
1177
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuComponent, decorators: [{
1178
+ type: Component,
1179
+ args: [{
1180
+ selector: 'id-mobile-menu',
1181
+ templateUrl: './mobile-menu.component.html'
1182
+ }]
1183
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1184
+ type: Input
1185
+ }], variation: [{
1186
+ type: Input
1187
+ }], items: [{
1188
+ type: Input
1189
+ }] } });
1190
+
1191
+ class IDMobileMenuModule {
1192
+ }
1193
+ IDMobileMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1194
+ IDMobileMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuModule, declarations: [IDMobileMenuComponent], imports: [CommonModule, IDAnchorModule], exports: [IDMobileMenuComponent] });
1195
+ IDMobileMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuModule, imports: [[CommonModule, IDAnchorModule]] });
1196
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuModule, decorators: [{
1197
+ type: NgModule,
1198
+ args: [{
1199
+ declarations: [
1200
+ IDMobileMenuComponent
1201
+ ],
1202
+ exports: [
1203
+ IDMobileMenuComponent
1204
+ ],
1205
+ imports: [CommonModule, IDAnchorModule],
1206
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1207
+ }]
1208
+ }] });
1209
+
1210
+ class IDMobileMenuItem {
1211
+ constructor(_props) {
1212
+ this._props = _props;
1213
+ }
1214
+ get headline() {
1215
+ return this._props.headline;
1216
+ }
1217
+ get link() {
1218
+ return this._props.link;
1219
+ }
1220
+ get items() {
1221
+ return this._props.items;
1222
+ }
1223
+ get expanded() {
1224
+ return this._props.expanded;
1225
+ }
1226
+ get secondary() {
1227
+ return this._props.secondary;
1228
+ }
1229
+ get active() {
1230
+ return this._props.active;
1231
+ }
1232
+ get variation() {
1233
+ return this._props.variation;
1234
+ }
1235
+ get expansionToggled() {
1236
+ return this._props.expansionToggled;
1237
+ }
1238
+ togleExpansion() {
1239
+ if (this._props.expansionToggled) {
1240
+ this._props.expansionToggled();
1241
+ }
1242
+ }
1243
+ }
1244
+
1245
+ class IDFooterComponent {
1246
+ constructor() {
1247
+ this.type = '';
1248
+ this.headline = '';
1249
+ this.servicename = '';
1250
+ this.subheadline = '';
1251
+ this.mobileMenuItems = undefined;
1252
+ }
1253
+ }
1254
+ IDFooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1255
+ 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"] }] });
1256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterComponent, decorators: [{
1257
+ type: Component,
1258
+ args: [{
1259
+ selector: 'id-footer',
1260
+ templateUrl: './footer.component.html'
1261
+ }]
1262
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1263
+ type: Input
1264
+ }], headline: [{
1265
+ type: Input
1266
+ }], servicename: [{
1267
+ type: Input
1268
+ }], subheadline: [{
1269
+ type: Input
1270
+ }], mobileMenuItems: [{
1271
+ type: Input
1272
+ }] } });
1273
+
1274
+ class IDFooterModule {
1275
+ }
1276
+ IDFooterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1277
+ IDFooterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterModule, declarations: [IDFooterComponent], imports: [CommonModule, IDAnchorModule], exports: [IDFooterComponent] });
1278
+ IDFooterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterModule, imports: [[CommonModule, IDAnchorModule]] });
1279
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterModule, decorators: [{
1280
+ type: NgModule,
1281
+ args: [{
1282
+ declarations: [
1283
+ IDFooterComponent
1284
+ ],
1285
+ exports: [
1286
+ IDFooterComponent
1287
+ ],
1288
+ imports: [CommonModule, IDAnchorModule],
1289
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1290
+ }]
1291
+ }] });
1292
+
1293
+ class IDHeaderComponent {
1294
+ constructor() {
1295
+ this.type = '';
1296
+ this.brandtext = '';
1297
+ this.hideRegionPicker = false;
1298
+ this.hideBrand = false;
1299
+ this.pickRegionText = 'Välj region';
1300
+ this.srLogoLabel = 'Logotyp';
1301
+ }
1302
+ }
1303
+ IDHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1304
+ 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"] }] });
1305
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderComponent, decorators: [{
1306
+ type: Component,
1307
+ args: [{
1308
+ selector: 'id-header',
1309
+ templateUrl: './header.component.html'
1310
+ }]
1311
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1312
+ type: Input
1313
+ }], brandtext: [{
1314
+ type: Input
1315
+ }], hideRegionPicker: [{
1316
+ type: Input
1317
+ }], hideBrand: [{
1318
+ type: Input
1319
+ }], pickRegionText: [{
1320
+ type: Input
1321
+ }], regionIcon: [{
1322
+ type: Input
1323
+ }], width: [{
1324
+ type: Input
1325
+ }], srLogoLabel: [{
1326
+ type: Input
1327
+ }], items: [{
1328
+ type: Input
1329
+ }], avatar: [{
1330
+ type: Input
1331
+ }], navItems: [{
1332
+ type: Input
1333
+ }], mobileItems: [{
1334
+ type: Input
1335
+ }], mobileMenuItems: [{
1336
+ type: Input
1337
+ }] } });
1338
+
1339
+ class IDHeaderModule {
1340
+ }
1341
+ IDHeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1342
+ IDHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, declarations: [IDHeaderComponent], imports: [CommonModule, IDAnchorModule], exports: [IDHeaderComponent] });
1343
+ IDHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, imports: [[CommonModule, IDAnchorModule]] });
1344
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, decorators: [{
1345
+ type: NgModule,
1346
+ args: [{
1347
+ declarations: [
1348
+ IDHeaderComponent
1349
+ ],
1350
+ exports: [
1351
+ IDHeaderComponent
1352
+ ],
1353
+ imports: [CommonModule, IDAnchorModule],
1354
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1355
+ }]
1356
+ }] });
1357
+
1358
+ class IDHeaderItem {
1359
+ constructor(_props) {
1360
+ this._props = _props;
1361
+ }
1362
+ get iconName() {
1363
+ return this._props.iconName;
1364
+ }
1365
+ get link() {
1366
+ return this._props.link;
1367
+ }
1368
+ get mobile() {
1369
+ return this._props.mobile;
1370
+ }
1371
+ }
1372
+
1373
+ class IDHeaderAvatar {
1374
+ constructor(_props) {
1375
+ this._props = _props;
1376
+ }
1377
+ get username() {
1378
+ return this._props.username;
1379
+ }
1380
+ get linkLeft() {
1381
+ return this._props.linkLeft;
1382
+ }
1383
+ get linkRight() {
1384
+ return this._props.linkRight;
1385
+ }
1386
+ get serviceName() {
1387
+ return this._props.serviceName;
1388
+ }
1389
+ }
1390
+
1391
+ class IDHeaderNavItem {
1392
+ constructor(_props) {
1393
+ this._props = _props;
1394
+ }
1395
+ get label() {
1396
+ return this._props.label;
1397
+ }
1398
+ get col1() {
1399
+ return this._props.col1;
1400
+ }
1401
+ get col2() {
1402
+ return this._props.col2;
1403
+ }
1404
+ get col3() {
1405
+ return this._props.col3;
1406
+ }
1407
+ get headline() {
1408
+ return this._props.headline;
1409
+ }
1410
+ get paragraph() {
1411
+ return this._props.paragraph;
1412
+ }
1413
+ get link() {
1414
+ return this._props.link;
1415
+ }
1416
+ get paragraphLink() {
1417
+ return this._props.pragraphLink;
1418
+ }
1419
+ }
1420
+
1421
+ class IDTabsComponent {
1422
+ constructor() { }
1423
+ }
1424
+ IDTabsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1425
+ 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>" });
1426
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsComponent, decorators: [{
1427
+ type: Component,
1428
+ args: [{
1429
+ selector: 'id-tabs',
1430
+ templateUrl: './tabs.component.html'
1431
+ }]
1432
+ }], ctorParameters: function () { return []; } });
1433
+
1434
+ class IDTabPanelComponent {
1435
+ constructor(elementRef) {
1436
+ this.elementRef = elementRef;
1437
+ elementRef.nativeElement.setAttribute('slot', 'tab-panel');
1438
+ }
1439
+ }
1440
+ IDTabPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabPanelComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
1441
+ 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>" });
1442
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabPanelComponent, decorators: [{
1443
+ type: Component,
1444
+ args: [{
1445
+ selector: 'id-tab-panel',
1446
+ templateUrl: './tab-panel.component.html'
1447
+ }]
1448
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
1449
+
1450
+ class IDTabComponent {
1451
+ constructor(elementRef) {
1452
+ this.elementRef = elementRef;
1453
+ this.label = '';
1454
+ this.icon = '';
1455
+ this.selected = false;
1456
+ elementRef.nativeElement.setAttribute('slot', 'tab');
1457
+ }
1458
+ }
1459
+ IDTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
1460
+ 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>" });
1461
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, decorators: [{
1462
+ type: Component,
1463
+ args: [{
1464
+ selector: 'id-tab',
1465
+ templateUrl: './tab.component.html'
1466
+ }]
1467
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { label: [{
1468
+ type: Input
1469
+ }], icon: [{
1470
+ type: Input
1471
+ }], selected: [{
1472
+ type: Input
1473
+ }] } });
1474
+
1475
+ class IDTabsModule {
1476
+ }
1477
+ IDTabsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1478
+ IDTabsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsModule, declarations: [IDTabsComponent,
1479
+ IDTabComponent,
1480
+ IDTabPanelComponent], imports: [CommonModule], exports: [IDTabsComponent,
1481
+ IDTabComponent,
1482
+ IDTabPanelComponent] });
1483
+ IDTabsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsModule, imports: [[CommonModule]] });
1484
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsModule, decorators: [{
1485
+ type: NgModule,
1486
+ args: [{
1487
+ declarations: [
1488
+ IDTabsComponent,
1489
+ IDTabComponent,
1490
+ IDTabPanelComponent
1491
+ ],
1492
+ imports: [CommonModule],
1493
+ exports: [
1494
+ IDTabsComponent,
1495
+ IDTabComponent,
1496
+ IDTabPanelComponent
1497
+ ],
1498
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1499
+ }]
1500
+ }] });
1501
+
717
1502
  /*
718
1503
  * Public API Surface of ids-angular
719
1504
  */
@@ -722,5 +1507,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
722
1507
  * Generated bundle index. Do not edit.
723
1508
  */
724
1509
 
725
- export { IDAlertComponent, IDAlertModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDErrorMessageComponent, IDErrorMessageModule, IDIconComponent, IDIconModule, IDInputComponent, IDInputModule, IDRadioComponent, IDRadioGroupComponent, IDRadioModule, IDRangeComponent, IDRangeModule, IDRowComponent, IDRowModule, IDSelectComponent, IDSelectModule, IDSelectMultipleComponent, IDSelectMultipleModule, IDSpinnerComponent, IDSpinnerModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule };
1510
+ export { IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDErrorMessageComponent, IDErrorMessageModule, IDFooterComponent, IDFooterModule, IDHeaderAvatar, IDHeaderComponent, IDHeaderItem, IDHeaderModule, IDHeaderNavItem, IDIcon, IDIconComponent, IDIconModule, IDInputComponent, IDInputModule, IDLink, IDLinkComponent, IDLinkFunction, IDLinkModule, IDLinkRoute, IDLinkWeb, 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 };
726
1511
  //# sourceMappingURL=inera-ids-angular.js.map