@inera/ids-angular 2.5.0 → 3.0.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 (82) hide show
  1. package/bundles/inera-ids-angular.umd.js +534 -246
  2. package/bundles/inera-ids-angular.umd.js.map +1 -1
  3. package/esm2015/lib/classes/header/IDHeaderAvatar.js +4 -1
  4. package/esm2015/lib/classes/header/IDHeaderAvatarProps.js +1 -1
  5. package/esm2015/lib/components/agent/agent.component.js +8 -8
  6. package/esm2015/lib/components/alert/alert.component.js +18 -12
  7. package/esm2015/lib/components/alert-global/alert-global.component.js +14 -10
  8. package/esm2015/lib/components/badge/badge.component.js +2 -2
  9. package/esm2015/lib/components/breadcrumbs/breadcrumbs.component.js +10 -10
  10. package/esm2015/lib/components/breadcrumbs/breadcrumbs.module.js +4 -7
  11. package/esm2015/lib/components/button/button.component.js +13 -8
  12. package/esm2015/lib/components/button/button.module.js +6 -3
  13. package/esm2015/lib/components/carousel/carousel.component.js +8 -8
  14. package/esm2015/lib/components/date-label/date-label.component.js +4 -4
  15. package/esm2015/lib/components/dialog/dialog.component.js +13 -7
  16. package/esm2015/lib/components/expandable/expandable.component.js +2 -2
  17. package/esm2015/lib/components/footer/footer.component.js +7 -4
  18. package/esm2015/lib/components/footer/footer.module.js +2 -2
  19. package/esm2015/lib/components/form/base/IDFormBase.js +6 -3
  20. package/esm2015/lib/components/form/checkbox/checkbox.component.js +2 -2
  21. package/esm2015/lib/components/form/checkbox-group/checkbox-group.component.js +2 -2
  22. package/esm2015/lib/components/form/input/input.component.js +2 -6
  23. package/esm2015/lib/components/form/radio/radio-group.component.js +4 -4
  24. package/esm2015/lib/components/form/radio/radio.component.js +6 -6
  25. package/esm2015/lib/components/form/range/range.component.js +4 -4
  26. package/esm2015/lib/components/form/select/select.component.js +4 -7
  27. package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +4 -4
  28. package/esm2015/lib/components/form/textarea/textarea.component.js +2 -2
  29. package/esm2015/lib/components/form/time/time.component.js +6 -6
  30. package/esm2015/lib/components/form/toggle/toggle.component.js +16 -0
  31. package/esm2015/lib/components/form/toggle/toggle.module.js +22 -0
  32. package/esm2015/lib/components/header/header.component.js +28 -28
  33. package/esm2015/lib/components/header/header.module.js +5 -4
  34. package/esm2015/lib/components/link/link.component.js +15 -15
  35. package/esm2015/lib/components/link/link.module.js +4 -5
  36. package/esm2015/lib/components/list/item/list-item.component.js +6 -6
  37. package/esm2015/lib/components/mobile/menu/mobile-menu.component.js +2 -2
  38. package/esm2015/lib/components/mobile/menu/mobile-menu.module.js +1 -1
  39. package/esm2015/lib/components/popover/popover.component.js +6 -6
  40. package/esm2015/lib/components/tabs/panel/tab-panel.component.js +4 -4
  41. package/esm2015/lib/components/tabs/tab/tab.component.js +7 -5
  42. package/esm2015/lib/components/tabs/tabs.component.js +2 -2
  43. package/esm2015/lib/components/tag/tag.component.js +8 -8
  44. package/esm2015/lib/internals/anchor.component.js +1 -1
  45. package/esm2015/lib/internals/anchor.module.js +1 -1
  46. package/esm2015/public-api.js +220 -1
  47. package/fesm2015/inera-ids-angular.js +511 -242
  48. package/fesm2015/inera-ids-angular.js.map +1 -1
  49. package/lib/classes/header/IDHeaderAvatar.d.ts +1 -0
  50. package/lib/classes/header/IDHeaderAvatarProps.d.ts +1 -0
  51. package/lib/components/agent/agent.component.d.ts +4 -4
  52. package/lib/components/alert/alert.component.d.ts +8 -6
  53. package/lib/components/alert-global/alert-global.component.d.ts +7 -5
  54. package/lib/components/badge/badge.component.d.ts +1 -1
  55. package/lib/components/breadcrumbs/breadcrumbs.component.d.ts +5 -5
  56. package/lib/components/button/button.component.d.ts +6 -4
  57. package/lib/components/button/button.module.d.ts +3 -1
  58. package/lib/components/carousel/carousel.component.d.ts +4 -4
  59. package/lib/components/date-label/date-label.component.d.ts +2 -2
  60. package/lib/components/dialog/dialog.component.d.ts +6 -3
  61. package/lib/components/footer/footer.component.d.ts +3 -2
  62. package/lib/components/form/base/IDFormBase.d.ts +2 -1
  63. package/lib/components/form/input/input.component.d.ts +1 -3
  64. package/lib/components/form/radio/radio-group.component.d.ts +2 -2
  65. package/lib/components/form/radio/radio.component.d.ts +2 -2
  66. package/lib/components/form/range/range.component.d.ts +2 -2
  67. package/lib/components/form/select/select.component.d.ts +0 -1
  68. package/lib/components/form/select-multiple/select-multiple.component.d.ts +2 -2
  69. package/lib/components/form/time/time.component.d.ts +2 -2
  70. package/lib/components/form/toggle/toggle.component.d.ts +6 -0
  71. package/lib/components/form/toggle/toggle.module.d.ts +8 -0
  72. package/lib/components/header/header.component.d.ts +18 -18
  73. package/lib/components/header/header.module.d.ts +2 -1
  74. package/lib/components/link/link.component.d.ts +10 -10
  75. package/lib/components/link/link.module.d.ts +1 -2
  76. package/lib/components/list/item/list-item.component.d.ts +3 -3
  77. package/lib/components/popover/popover.component.d.ts +3 -3
  78. package/lib/components/tabs/panel/tab-panel.component.d.ts +2 -2
  79. package/lib/components/tabs/tab/tab.component.d.ts +3 -2
  80. package/lib/components/tag/tag.component.d.ts +4 -4
  81. package/package.json +2 -2
  82. package/public-api.d.ts +2 -0
@@ -7,6 +7,7 @@ import '@inera/ids-core/components/alert-global/register';
7
7
  import '@inera/ids-core/components/agent/register';
8
8
  import '@inera/ids-core/components/badge/register';
9
9
  import '@inera/ids-core/components/button/register';
10
+ import '@inera/ids-core/components/icon/register';
10
11
  import '@inera/ids-core/components/button-group/register';
11
12
  import '@inera/ids-core/components/carousel/register';
12
13
  import * as i1 from '@angular/platform-browser';
@@ -17,7 +18,6 @@ import '@inera/ids-core/components/card/register';
17
18
  import '@inera/ids-core/components/date-label/register';
18
19
  import '@inera/ids-core/components/dialog/register';
19
20
  import '@inera/ids-core/components/expandable/register';
20
- import '@inera/ids-core/components/icon/register';
21
21
  import '@inera/ids-core/components/form/input/register';
22
22
  import '@inera/ids-core/components/form/checkbox/register';
23
23
  import '@inera/ids-core/components/form/checkbox-group/register';
@@ -45,23 +45,26 @@ import '@inera/ids-core/components/stepper/register';
45
45
  import '@inera/ids-core/components/tabs/register';
46
46
  import '@inera/ids-core/components/tag/register';
47
47
  import '@inera/ids-core/components/tooltip/register';
48
+ import '@inera/ids-core/components/form/toggle/register';
48
49
 
49
50
  class IDAlertComponent {
50
51
  constructor() {
51
52
  this.dismissible = false;
52
53
  this.collapsable = false;
53
- this.srCollapseText = '';
54
- this.srExpandText = '';
54
+ this.collapsed = false;
55
+ this.srcollapsetext = '';
56
+ this.srexpandtext = '';
55
57
  this.headline = '';
56
58
  this.live = '';
57
59
  this.type = '';
58
- this.srCloseText = '';
59
- this.srIconTitle = '';
60
- this.closed = new EventEmitter();
60
+ this.srclosetext = '';
61
+ this.sricontitle = '';
62
+ this.onClosed = new EventEmitter();
63
+ this.onCollapsed = new EventEmitter();
61
64
  }
62
65
  }
63
66
  IDAlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
64
- IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", collapsable: "collapsable", srCollapseText: "srCollapseText", srExpandText: "srExpandText", headline: "headline", live: "live", type: "type", srCloseText: "srCloseText", srIconTitle: "srIconTitle" }, outputs: { closed: "closed" }, ngImport: i0, template: "<ids-alert \r\n [headline]=\"headline\"\r\n [attr.dismissible]=\"dismissible ? true : null\"\r\n [attr.collapsable]=\"collapsable ? true : null\"\r\n [srcollapsetext]=\"srCollapseText\"\r\n [srexpandtext]=\"srExpandText\"\r\n [attr.aria-live]=\"live\"\r\n [type]=\"type\"\r\n [srclosetext]=\"srCloseText\"\r\n [sricontitle]=\"srIconTitle\"\r\n (closed)=\"closed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-alert>", styles: [":host { display: block; }"] });
67
+ IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", collapsable: "collapsable", collapsed: "collapsed", srcollapsetext: "srcollapsetext", srexpandtext: "srexpandtext", headline: "headline", live: "live", type: "type", srclosetext: "srclosetext", sricontitle: "sricontitle" }, outputs: { onClosed: "onClosed", onCollapsed: "onCollapsed" }, ngImport: i0, template: "<ids-alert \r\n [headline]=\"headline\"\r\n [attr.dismissible]=\"dismissible ? true : null\"\r\n [attr.collapsable]=\"collapsable ? true : null\"\r\n [attr.collapsed]=\"collapsed ? true : null\"\r\n [srcollapsetext]=\"srcollapsetext\"\r\n [srexpandtext]=\"srexpandtext\"\r\n [attr.aria-live]=\"live\"\r\n [type]=\"type\"\r\n [srclosetext]=\"srclosetext\"\r\n [sricontitle]=\"sricontitle\"\r\n (closed)=\"onClosed.emit(true)\"\r\n (collapsed)=\"onCollapsed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-alert>", styles: [":host { display: block; }"] });
65
68
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, decorators: [{
66
69
  type: Component,
67
70
  args: [{
@@ -73,9 +76,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
73
76
  type: Input
74
77
  }], collapsable: [{
75
78
  type: Input
76
- }], srCollapseText: [{
79
+ }], collapsed: [{
80
+ type: Input
81
+ }], srcollapsetext: [{
77
82
  type: Input
78
- }], srExpandText: [{
83
+ }], srexpandtext: [{
79
84
  type: Input
80
85
  }], headline: [{
81
86
  type: Input
@@ -83,11 +88,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
83
88
  type: Input
84
89
  }], type: [{
85
90
  type: Input
86
- }], srCloseText: [{
91
+ }], srclosetext: [{
87
92
  type: Input
88
- }], srIconTitle: [{
93
+ }], sricontitle: [{
89
94
  type: Input
90
- }], closed: [{
95
+ }], onClosed: [{
96
+ type: Output
97
+ }], onCollapsed: [{
91
98
  type: Output
92
99
  }] } });
93
100
 
@@ -114,14 +121,15 @@ class IDAlertGlobalComponent {
114
121
  constructor() {
115
122
  this.expanded = true;
116
123
  this.headline = '';
117
- this.hideMobileIcon = '';
118
- this.showText = 'Visa meddelande';
119
- this.hideText = 'Dölj meddelande';
120
- this.didToggleExpansion = new EventEmitter();
124
+ this.hidemobileicon = '';
125
+ this.showtext = 'Visa meddelande';
126
+ this.hidetext = 'Dölj meddelande';
127
+ this.icon = undefined;
128
+ this.onDidToggleExpansion = new EventEmitter();
121
129
  }
122
130
  }
123
131
  IDAlertGlobalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertGlobalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
124
- IDAlertGlobalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertGlobalComponent, selector: "id-alert-global", inputs: { expanded: "expanded", headline: "headline", hideMobileIcon: "hideMobileIcon", showText: "showText", hideText: "hideText" }, outputs: { didToggleExpansion: "didToggleExpansion" }, ngImport: i0, template: "<ids-alert-global \r\n [headline]=\"headline\"\r\n [showtext]=\"showText\"\r\n [hidetext]=\"hideText\"\r\n [expanded]=\"expanded\"\r\n [hidemobileicon]=\"hideMobileIcon ? true : null\"\r\n (closed)=\"didToggleExpansion.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-alert-global>", styles: [":host { display: block; }"] });
132
+ IDAlertGlobalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertGlobalComponent, selector: "id-alert-global", inputs: { expanded: "expanded", headline: "headline", hidemobileicon: "hidemobileicon", showtext: "showtext", hidetext: "hidetext", icon: "icon" }, outputs: { onDidToggleExpansion: "onDidToggleExpansion" }, ngImport: i0, template: "<ids-alert-global \r\n [headline]=\"headline\"\r\n [showtext]=\"showtext\"\r\n [hidetext]=\"hidetext\"\r\n [expanded]=\"expanded\"\r\n [hidemobileicon]=\"hidemobileicon ? true : null\"\r\n (didToggleExpansion)=\"onDidToggleExpansion.emit(true)\">\r\n <ids-icon *ngIf=\"icon !== undefined\"\r\n [attr.name]=\"icon?.name\"\r\n [attr.title]=\"icon?.title\" \r\n [attr.color]=\"icon?.color\" \r\n [attr.color2]=\"icon?.color2\" \r\n [attr.size]=\"icon?.size\" \r\n [attr.padding]=\"icon?.padding\" \r\n [attr.rotate]=\"icon?.rotate\" \r\n [attr.colorpreset]=\"icon?.colorpreset\" \r\n [attr.height]=\"icon?.height\" \r\n [attr.width]=\"icon?.width\"></ids-icon>\r\n <ng-content></ng-content>\r\n</ids-alert-global>", styles: [":host { display: block; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
125
133
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertGlobalComponent, decorators: [{
126
134
  type: Component,
127
135
  args: [{
@@ -133,13 +141,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
133
141
  type: Input
134
142
  }], headline: [{
135
143
  type: Input
136
- }], hideMobileIcon: [{
144
+ }], hidemobileicon: [{
145
+ type: Input
146
+ }], showtext: [{
137
147
  type: Input
138
- }], showText: [{
148
+ }], hidetext: [{
139
149
  type: Input
140
- }], hideText: [{
150
+ }], icon: [{
141
151
  type: Input
142
- }], didToggleExpansion: [{
152
+ }], onDidToggleExpansion: [{
143
153
  type: Output
144
154
  }] } });
145
155
 
@@ -166,13 +176,13 @@ class IDAgentComponent {
166
176
  constructor() {
167
177
  this.expanded = true;
168
178
  this.headline = '';
169
- this.showText = 'Visa meddelande';
170
- this.hideText = 'Dölj meddelande';
171
- this.didToggleExpansion = new EventEmitter();
179
+ this.showtext = 'Visa meddelande';
180
+ this.hidetext = 'Dölj meddelande';
181
+ this.onDidToggleExpansion = new EventEmitter();
172
182
  }
173
183
  }
174
184
  IDAgentComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAgentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
175
- IDAgentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAgentComponent, selector: "id-agent", inputs: { expanded: "expanded", headline: "headline", showText: "showText", hideText: "hideText" }, outputs: { didToggleExpansion: "didToggleExpansion" }, ngImport: i0, template: "<ids-agent\r\n [headline]=\"headline\"\r\n [showtext]=\"showText\"\r\n [hidetext]=\"hideText\"\r\n [expanded]=\"expanded\"\r\n (didToggleExpansion)=\"didToggleExpansion.emit(true)\">\r\n <h3 slot=\"alert-headline\" *ngIf=\"headline\">\r\n {{headline}}\r\n </h3>\r\n <ng-content></ng-content>\r\n</ids-agent>", styles: [":host { display: block; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
185
+ IDAgentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAgentComponent, selector: "id-agent", inputs: { expanded: "expanded", headline: "headline", showtext: "showtext", hidetext: "hidetext" }, outputs: { onDidToggleExpansion: "onDidToggleExpansion" }, ngImport: i0, template: "<ids-agent\r\n [headline]=\"headline\"\r\n [showtext]=\"showtext\"\r\n [hidetext]=\"hidetext\"\r\n [expanded]=\"expanded\"\r\n (didToggleExpansion)=\"onDidToggleExpansion.emit(true)\">\r\n <h3 slot=\"alert-headline\" *ngIf=\"headline\">\r\n {{headline}}\r\n </h3>\r\n <ng-content></ng-content>\r\n</ids-agent>", styles: [":host { display: block; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
176
186
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAgentComponent, decorators: [{
177
187
  type: Component,
178
188
  args: [{
@@ -184,11 +194,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
184
194
  type: Input
185
195
  }], headline: [{
186
196
  type: Input
187
- }], showText: [{
197
+ }], showtext: [{
188
198
  type: Input
189
- }], hideText: [{
199
+ }], hidetext: [{
190
200
  type: Input
191
- }], didToggleExpansion: [{
201
+ }], onDidToggleExpansion: [{
192
202
  type: Output
193
203
  }] } });
194
204
 
@@ -213,7 +223,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
213
223
 
214
224
  class IDBadgeComponent {
215
225
  constructor() {
216
- this.type = 'main';
226
+ this.type = 'primary';
217
227
  }
218
228
  }
219
229
  IDBadgeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
@@ -254,8 +264,8 @@ class IDButtonComponent {
254
264
  this.tertiary = false;
255
265
  this.toggle = false;
256
266
  this.block = false;
257
- this.sBlock = false;
258
- this.mBlock = false;
267
+ this.sblock = false;
268
+ this.mblock = false;
259
269
  this.active = false;
260
270
  this.submit = false;
261
271
  this.search = false;
@@ -263,11 +273,13 @@ class IDButtonComponent {
263
273
  this.disabled = false;
264
274
  this.type = undefined;
265
275
  this.color = undefined;
266
- this.clicked = new EventEmitter();
276
+ // Internal Icon
277
+ this.iconobject = undefined;
278
+ this.onClicked = new EventEmitter();
267
279
  }
268
280
  }
269
281
  IDButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
270
- IDButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonComponent, selector: "id-button", inputs: { secondary: "secondary", fab: "fab", icon: "icon", tertiary: "tertiary", toggle: "toggle", block: "block", sBlock: "sBlock", mBlock: "mBlock", active: "active", submit: "submit", search: "search", size: "size", disabled: "disabled", type: "type", color: "color" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<ids-button \r\n [secondary]=\"secondary ? 'true' : null\"\r\n [attr.fab]=\"fab ? 'true' : null\"\r\n [attr.icon]=\"icon ? 'true' : null\"\r\n [tertiary]=\"tertiary ? 'true' : null\"\r\n [toggle]=\"toggle ? 'true' : null\"\r\n [active]=\"active ? 'true' : null\"\r\n [submit]=\"submit ? 'true' : null\"\r\n [search]=\"search ? 'true' : null\"\r\n [disabled]=\"disabled ? 'true' : null\"\r\n [block]=\"block ? 'true' : null\"\r\n [sblock]=\"sBlock ? 'true' : null\"\r\n [mblock]=\"mBlock ? 'true' : null\"\r\n [size]=\"size\"\r\n [type]=\"type\"\r\n [color]=\"color\"\r\n (clicked)=\"clicked.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-button>", styles: ["id-button[ng-reflect-block=true], id-button[ng-reflect-mblock=true], id-button[ng-reflect-sblock=true] { display: contents; }"], encapsulation: i0.ViewEncapsulation.None });
282
+ IDButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonComponent, selector: "id-button", inputs: { secondary: "secondary", fab: "fab", icon: "icon", tertiary: "tertiary", toggle: "toggle", block: "block", sblock: "sblock", mblock: "mblock", active: "active", submit: "submit", search: "search", size: "size", disabled: "disabled", type: "type", color: "color", iconobject: "iconobject" }, outputs: { onClicked: "onClicked" }, ngImport: i0, template: "<ids-button \r\n [secondary]=\"secondary ? 'true' : null\"\r\n [attr.fab]=\"fab ? 'true' : null\"\r\n [attr.icon]=\"icon ? 'true' : null\"\r\n [tertiary]=\"tertiary ? 'true' : null\"\r\n [toggle]=\"toggle ? 'true' : null\"\r\n [active]=\"active ? 'true' : null\"\r\n [submit]=\"submit ? 'true' : null\"\r\n [search]=\"search ? 'true' : null\"\r\n [disabled]=\"disabled ? 'true' : null\"\r\n [block]=\"block ? 'true' : null\"\r\n [sblock]=\"sblock ? 'true' : null\"\r\n [mblock]=\"mblock ? 'true' : null\"\r\n [size]=\"size\"\r\n [type]=\"type\"\r\n [color]=\"color\"\r\n (clicked)=\"onClicked.emit(true)\">\r\n <ids-icon *ngIf=\"iconobject !== undefined\"\r\n [attr.name]=\"iconobject?.name\"\r\n [attr.title]=\"iconobject?.title\" \r\n [attr.color]=\"iconobject?.color\" \r\n [attr.color2]=\"iconobject?.color2\" \r\n [attr.size]=\"iconobject?.size\" \r\n [attr.padding]=\"iconobject?.padding\" \r\n [attr.rotate]=\"iconobject?.rotate\" \r\n [attr.colorpreset]=\"iconobject?.colorpreset\" \r\n [attr.height]=\"iconobject?.height\" \r\n [attr.width]=\"iconobject?.width\"></ids-icon>\r\n <ng-content></ng-content>\r\n</ids-button>", styles: ["id-button[ng-reflect-block=true], id-button[ng-reflect-mblock=true], id-button[ng-reflect-sblock=true] { display: contents; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
271
283
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonComponent, decorators: [{
272
284
  type: Component,
273
285
  args: [{
@@ -288,9 +300,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
288
300
  type: Input
289
301
  }], block: [{
290
302
  type: Input
291
- }], sBlock: [{
303
+ }], sblock: [{
292
304
  type: Input
293
- }], mBlock: [{
305
+ }], mblock: [{
294
306
  type: Input
295
307
  }], active: [{
296
308
  type: Input
@@ -306,15 +318,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
306
318
  type: Input
307
319
  }], color: [{
308
320
  type: Input
309
- }], clicked: [{
321
+ }], iconobject: [{
322
+ type: Input
323
+ }], onClicked: [{
310
324
  type: Output
311
325
  }] } });
312
326
 
327
+ class IDIconComponent {
328
+ constructor() {
329
+ this.name = undefined;
330
+ this.rotate = undefined;
331
+ this.color = undefined;
332
+ this.color2 = undefined;
333
+ this.colorpreset = undefined;
334
+ this.title = undefined;
335
+ this.size = 'm';
336
+ this.inline = false;
337
+ this.width = undefined;
338
+ this.height = undefined;
339
+ }
340
+ }
341
+ IDIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
342
+ IDIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDIconComponent, selector: "id-icon", inputs: { name: "name", rotate: "rotate", color: "color", color2: "color2", colorpreset: "colorpreset", title: "title", size: "size", inline: "inline", width: "width", height: "height" }, ngImport: i0, template: "<ids-icon \r\n [attr.name]=\"name\"\r\n [attr.inline]=\"inline ? true : undefined\"\r\n [attr.rotate]=\"rotate\"\r\n [attr.color]=\"color\"\r\n [attr.color2]=\"color2\"\r\n [attr.size]=\"size\"\r\n [attr.width]=\"width\"\r\n [attr.height]=\"height\"\r\n [attr.colorpreset]=\"colorpreset\">\r\n</ids-icon >", encapsulation: i0.ViewEncapsulation.None });
343
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, decorators: [{
344
+ type: Component,
345
+ args: [{
346
+ selector: 'id-icon',
347
+ templateUrl: './icon.component.html',
348
+ encapsulation: ViewEncapsulation.None,
349
+ }]
350
+ }], ctorParameters: function () { return []; }, propDecorators: { name: [{
351
+ type: Input
352
+ }], rotate: [{
353
+ type: Input
354
+ }], color: [{
355
+ type: Input
356
+ }], color2: [{
357
+ type: Input
358
+ }], colorpreset: [{
359
+ type: Input
360
+ }], title: [{
361
+ type: Input
362
+ }], size: [{
363
+ type: Input
364
+ }], inline: [{
365
+ type: Input
366
+ }], width: [{
367
+ type: Input
368
+ }], height: [{
369
+ type: Input
370
+ }] } });
371
+
372
+ class IDIconModule {
373
+ }
374
+ IDIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
375
+ IDIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, declarations: [IDIconComponent], exports: [IDIconComponent] });
376
+ IDIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule });
377
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, decorators: [{
378
+ type: NgModule,
379
+ args: [{
380
+ declarations: [
381
+ IDIconComponent
382
+ ],
383
+ exports: [
384
+ IDIconComponent
385
+ ],
386
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
387
+ }]
388
+ }] });
389
+
313
390
  class IDButtonModule {
314
391
  }
315
392
  IDButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
316
- IDButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, declarations: [IDButtonComponent], exports: [IDButtonComponent] });
317
- IDButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule });
393
+ IDButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, declarations: [IDButtonComponent], imports: [CommonModule, IDIconModule], exports: [IDButtonComponent] });
394
+ IDButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, imports: [[CommonModule, IDIconModule]] });
318
395
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, decorators: [{
319
396
  type: NgModule,
320
397
  args: [{
@@ -324,6 +401,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
324
401
  exports: [
325
402
  IDButtonComponent
326
403
  ],
404
+ imports: [CommonModule, IDIconModule],
327
405
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
328
406
  }]
329
407
  }] });
@@ -367,13 +445,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
367
445
  class IDCarouselComponent {
368
446
  constructor() {
369
447
  this.autoplay = false;
370
- this.srNextLabel = 'Nästa slide';
371
- this.srPrevLabel = 'Föregående slide';
372
- this.autoplayDelay = 5000;
448
+ this.srnextlabel = 'Nästa slide';
449
+ this.srprevlabel = 'Föregående slide';
450
+ this.autoplaydelay = 5000;
373
451
  }
374
452
  }
375
453
  IDCarouselComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
376
- IDCarouselComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCarouselComponent, selector: "id-carousel", inputs: { autoplay: "autoplay", srNextLabel: "srNextLabel", srPrevLabel: "srPrevLabel", autoplayDelay: "autoplayDelay" }, ngImport: i0, template: "<ids-carousel\r\n [srnextlabel]=\"srNextLabel\"\r\n [srnextlabel]=\"srNextLabel\"\r\n [autoplay]=\"autoplay ? true : null\"\r\n [autoplaydelay]=\"autoplayDelay\">\r\n <ng-content></ng-content>\r\n</ids-carousel>" });
454
+ IDCarouselComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCarouselComponent, selector: "id-carousel", inputs: { autoplay: "autoplay", srnextlabel: "srnextlabel", srprevlabel: "srprevlabel", autoplaydelay: "autoplaydelay" }, ngImport: i0, template: "<ids-carousel\r\n [srnextlabel]=\"srnextlabel\"\r\n [srprevlabel]=\"srprevlabel\"\r\n [autoplay]=\"autoplay ? true : null\"\r\n [autoplaydelay]=\"autoplaydelay\">\r\n <ng-content></ng-content>\r\n</ids-carousel>" });
377
455
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselComponent, decorators: [{
378
456
  type: Component,
379
457
  args: [{
@@ -382,11 +460,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
382
460
  }]
383
461
  }], ctorParameters: function () { return []; }, propDecorators: { autoplay: [{
384
462
  type: Input
385
- }], srNextLabel: [{
463
+ }], srnextlabel: [{
386
464
  type: Input
387
- }], srPrevLabel: [{
465
+ }], srprevlabel: [{
388
466
  type: Input
389
- }], autoplayDelay: [{
467
+ }], autoplaydelay: [{
390
468
  type: Input
391
469
  }] } });
392
470
 
@@ -591,14 +669,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
591
669
 
592
670
  class IDBreadcrumbsComponent {
593
671
  constructor() {
594
- this.links = [];
672
+ this.lead = 'Du är här:';
595
673
  this.current = '';
596
- this.lead = '';
597
- this.srLabel = '';
674
+ this.srlabel = 'Du är här';
675
+ this.links = [];
598
676
  }
599
677
  }
600
678
  IDBreadcrumbsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
601
- IDBreadcrumbsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDBreadcrumbsComponent, selector: "id-breadcrumbs", inputs: { links: "links", mobileLink: "mobileLink", current: "current", lead: "lead", srLabel: "srLabel" }, ngImport: i0, template: "<ids-breadcrumbs\r\n [current]=\"current\"\r\n [lead]=\"lead\"\r\n [srlabel]=\"srLabel\">\r\n <ids-crumb *ngFor=\"let link of links\">\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-crumb>\r\n <ids-crumb mobile=\"true\" *ngIf=\"mobileLink\">\r\n <id-anchor [link]=\"mobileLink\"></id-anchor>\r\n </ids-crumb>\r\n</ids-breadcrumbs>", 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"] }], encapsulation: i0.ViewEncapsulation.None });
679
+ IDBreadcrumbsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDBreadcrumbsComponent, selector: "id-breadcrumbs", inputs: { lead: "lead", current: "current", srlabel: "srlabel", links: "links", mobilelink: "mobilelink" }, ngImport: i0, template: "<ids-breadcrumbs\r\n [current]=\"current\"\r\n [lead]=\"lead\"\r\n [srlabel]=\"srlabel\">\r\n <ids-crumb *ngFor=\"let link of links\">\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-crumb>\r\n <ids-crumb mobile=\"true\" *ngIf=\"mobilelink\">\r\n <id-anchor [link]=\"mobilelink\"></id-anchor>\r\n </ids-crumb>\r\n</ids-breadcrumbs>", 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"] }], encapsulation: i0.ViewEncapsulation.None });
602
680
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsComponent, decorators: [{
603
681
  type: Component,
604
682
  args: [{
@@ -606,15 +684,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
606
684
  templateUrl: './breadcrumbs.component.html',
607
685
  encapsulation: ViewEncapsulation.None,
608
686
  }]
609
- }], ctorParameters: function () { return []; }, propDecorators: { links: [{
610
- type: Input
611
- }], mobileLink: [{
687
+ }], ctorParameters: function () { return []; }, propDecorators: { lead: [{
612
688
  type: Input
613
689
  }], current: [{
614
690
  type: Input
615
- }], lead: [{
691
+ }], srlabel: [{
692
+ type: Input
693
+ }], links: [{
616
694
  type: Input
617
- }], srLabel: [{
695
+ }], mobilelink: [{
618
696
  type: Input
619
697
  }] } });
620
698
 
@@ -642,11 +720,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
642
720
  class IDBreadcrumbsModule {
643
721
  }
644
722
  IDBreadcrumbsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
645
- IDBreadcrumbsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsModule, declarations: [IDBreadcrumbsComponent], imports: [CommonModule,
646
- IDAnchorModule], exports: [IDBreadcrumbsComponent] });
723
+ IDBreadcrumbsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsModule, declarations: [IDBreadcrumbsComponent], imports: [CommonModule, IDAnchorModule], exports: [IDBreadcrumbsComponent] });
647
724
  IDBreadcrumbsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsModule, imports: [[
648
- CommonModule,
649
- IDAnchorModule
725
+ CommonModule, IDAnchorModule
650
726
  ]] });
651
727
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsModule, decorators: [{
652
728
  type: NgModule,
@@ -658,8 +734,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
658
734
  IDBreadcrumbsComponent
659
735
  ],
660
736
  imports: [
661
- CommonModule,
662
- IDAnchorModule
737
+ CommonModule, IDAnchorModule
663
738
  ],
664
739
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
665
740
  }]
@@ -706,12 +781,12 @@ class IDDateLabelComponent {
706
781
  this.date = null;
707
782
  this.year = null;
708
783
  this.month = null;
709
- this.monthLabel = null;
784
+ this.monthlabel = null;
710
785
  this.day = null;
711
786
  }
712
787
  }
713
788
  IDDateLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
714
- 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 });
789
+ 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 });
715
790
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelComponent, decorators: [{
716
791
  type: Component,
717
792
  args: [{
@@ -725,7 +800,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
725
800
  type: Input
726
801
  }], month: [{
727
802
  type: Input
728
- }], monthLabel: [{
803
+ }], monthlabel: [{
729
804
  type: Input
730
805
  }], day: [{
731
806
  type: Input
@@ -752,17 +827,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
752
827
  class IDDialogComponent {
753
828
  constructor() {
754
829
  this.dismissible = false;
755
- this.srCloseText = false;
756
- this.noFocusTrap = false;
830
+ this.srclosetext = '';
831
+ this.nofocustrap = false;
757
832
  this.headline = '';
758
833
  this.overlay = false;
759
834
  this.persistent = false;
760
835
  this.show = false;
761
836
  this.width = '';
837
+ this.onClosed = new EventEmitter();
838
+ }
839
+ emitOnClosed(e) {
840
+ this.onClosed.emit(e);
762
841
  }
763
842
  }
764
843
  IDDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
765
- IDDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDialogComponent, selector: "id-dialog", inputs: { dismissible: "dismissible", srCloseText: "srCloseText", noFocusTrap: "noFocusTrap", headline: "headline", overlay: "overlay", persistent: "persistent", show: "show", width: "width" }, ngImport: i0, template: "<ids-dialog \r\n [dismissible]=\"dismissible\"\r\n [headline]=\"headline\"\r\n [overlay]=\"overlay ? true : null\"\r\n [nofocustrap]=\"noFocusTrap ? true : null\"\r\n [persistent]=\"persistent\"\r\n [show]=\"show\"\r\n [width]=\"width\"\r\n nofocustrap=\"noFocusTrap\"\r\n [srclosetext]=\"srCloseText\">\r\n <ng-content></ng-content>\r\n</ids-dialog>", encapsulation: i0.ViewEncapsulation.None });
844
+ IDDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDialogComponent, selector: "id-dialog", inputs: { dismissible: "dismissible", srclosetext: "srclosetext", nofocustrap: "nofocustrap", headline: "headline", overlay: "overlay", persistent: "persistent", show: "show", width: "width" }, outputs: { onClosed: "onClosed" }, ngImport: i0, template: "<ids-dialog \r\n [attr.dismissible]=\"dismissible ? true : null\"\r\n [attr.headline]=\"headline\"\r\n [attr.overlay]=\"overlay ? true : null\"\r\n [attr.nofocustrap]=\"nofocustrap ? true : null\"\r\n [attr.persistent]=\"persistent ? true : null\"\r\n [show]=\"show\"\r\n [width]=\"width\"\r\n nofocustrap=\"nofocustrap\"\r\n [srclosetext]=\"srclosetext\"\r\n (closed)=\"emitOnClosed\">\r\n <ng-content></ng-content>\r\n</ids-dialog>", encapsulation: i0.ViewEncapsulation.None });
766
845
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogComponent, decorators: [{
767
846
  type: Component,
768
847
  args: [{
@@ -772,9 +851,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
772
851
  }]
773
852
  }], ctorParameters: function () { return []; }, propDecorators: { dismissible: [{
774
853
  type: Input
775
- }], srCloseText: [{
854
+ }], srclosetext: [{
776
855
  type: Input
777
- }], noFocusTrap: [{
856
+ }], nofocustrap: [{
778
857
  type: Input
779
858
  }], headline: [{
780
859
  type: Input
@@ -786,6 +865,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
786
865
  type: Input
787
866
  }], width: [{
788
867
  type: Input
868
+ }], onClosed: [{
869
+ type: Output
789
870
  }] } });
790
871
 
791
872
  class IDDialogActionsComponent {
@@ -833,7 +914,7 @@ class IDExpandableComponent {
833
914
  }
834
915
  }
835
916
  IDExpandableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDExpandableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
836
- IDExpandableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDExpandableComponent, selector: "id-expandable", inputs: { borderless: "borderless", expanded: "expanded", headline: "headline", variation: "variation" }, ngImport: i0, template: "<ids-expandable [attr.borderless]=\"borderless ? true : null\" [expanded]=\"expanded\" [headline]=\"headline\" [variation]=\"variation\">\r\n <ng-content></ng-content>\r\n</ids-expandable>", encapsulation: i0.ViewEncapsulation.None });
917
+ IDExpandableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDExpandableComponent, selector: "id-expandable", inputs: { borderless: "borderless", expanded: "expanded", headline: "headline", variation: "variation" }, ngImport: i0, template: "<ids-expandable \r\n [attr.borderless]=\"borderless ? true : null\"\r\n [expanded]=\"expanded ? true : null\"\r\n [headline]=\"headline\"\r\n [variation]=\"variation\">\r\n <ng-content></ng-content>\r\n</ids-expandable>", encapsulation: i0.ViewEncapsulation.None });
837
918
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDExpandableComponent, decorators: [{
838
919
  type: Component,
839
920
  args: [{
@@ -905,73 +986,11 @@ class IDIcon {
905
986
  }
906
987
  }
907
988
 
908
- class IDIconComponent {
909
- constructor() {
910
- this.name = undefined;
911
- this.rotate = undefined;
912
- this.color = undefined;
913
- this.color2 = undefined;
914
- this.colorpreset = undefined;
915
- this.title = undefined;
916
- this.size = 'm';
917
- this.inline = false;
918
- this.width = undefined;
919
- this.height = undefined;
920
- }
921
- }
922
- IDIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
923
- IDIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDIconComponent, selector: "id-icon", inputs: { name: "name", rotate: "rotate", color: "color", color2: "color2", colorpreset: "colorpreset", title: "title", size: "size", inline: "inline", width: "width", height: "height" }, ngImport: i0, template: "<ids-icon \r\n [attr.name]=\"name\"\r\n [attr.inline]=\"inline ? true : undefined\"\r\n [attr.rotate]=\"rotate\"\r\n [attr.color]=\"color\"\r\n [attr.color2]=\"color2\"\r\n [attr.size]=\"size\"\r\n [attr.width]=\"width\"\r\n [attr.height]=\"height\"\r\n [attr.colorpreset]=\"colorpreset\">\r\n</ids-icon >", encapsulation: i0.ViewEncapsulation.None });
924
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, decorators: [{
925
- type: Component,
926
- args: [{
927
- selector: 'id-icon',
928
- templateUrl: './icon.component.html',
929
- encapsulation: ViewEncapsulation.None,
930
- }]
931
- }], ctorParameters: function () { return []; }, propDecorators: { name: [{
932
- type: Input
933
- }], rotate: [{
934
- type: Input
935
- }], color: [{
936
- type: Input
937
- }], color2: [{
938
- type: Input
939
- }], colorpreset: [{
940
- type: Input
941
- }], title: [{
942
- type: Input
943
- }], size: [{
944
- type: Input
945
- }], inline: [{
946
- type: Input
947
- }], width: [{
948
- type: Input
949
- }], height: [{
950
- type: Input
951
- }] } });
952
-
953
- class IDIconModule {
954
- }
955
- IDIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
956
- IDIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, declarations: [IDIconComponent], exports: [IDIconComponent] });
957
- IDIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule });
958
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, decorators: [{
959
- type: NgModule,
960
- args: [{
961
- declarations: [
962
- IDIconComponent
963
- ],
964
- exports: [
965
- IDIconComponent
966
- ],
967
- schemas: [CUSTOM_ELEMENTS_SCHEMA],
968
- }]
969
- }] });
970
-
971
989
  class IDFormBase {
972
990
  constructor() {
973
991
  this.valid = 'true';
974
- this.noValidation = false;
992
+ this.light = false;
993
+ this.novalidation = false;
975
994
  }
976
995
  }
977
996
  IDFormBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFormBase, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
@@ -980,7 +999,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
980
999
  type: Injectable
981
1000
  }], ctorParameters: function () { return []; }, propDecorators: { valid: [{
982
1001
  type: Input
983
- }], noValidation: [{
1002
+ }], light: [{
1003
+ type: Input
1004
+ }], novalidation: [{
984
1005
  type: Input
985
1006
  }] } });
986
1007
 
@@ -988,11 +1009,10 @@ class IDInputComponent extends IDFormBase {
988
1009
  constructor() {
989
1010
  super();
990
1011
  this.autofocus = false;
991
- this.appendIcon = null;
992
1012
  }
993
1013
  }
994
1014
  IDInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
995
- IDInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDInputComponent, selector: "id-input", inputs: { autofocus: "autofocus", appendIcon: "appendIcon" }, usesInheritance: true, ngImport: i0, template: "<ids-input [attr.valid]=\"valid\" \r\n [attr.novalidation]=\"noValidation ? noValidation : null\"\r\n [attr.autofocus]=\"autofocus ? autofocus : null\">\r\n <ng-content></ng-content>\r\n <ids-icon *ngIf=\"appendIcon !== null\"\r\n [attr.name]=\"appendIcon?.name\"\r\n [attr.title]=\"appendIcon?.title\" \r\n [attr.color]=\"appendIcon?.color\" \r\n [attr.color2]=\"appendIcon?.color2\" \r\n [attr.size]=\"appendIcon?.size\" \r\n [attr.padding]=\"appendIcon?.padding\" \r\n [attr.rotate]=\"appendIcon?.rotate\" \r\n [attr.colorpreset]=\"appendIcon?.colorpreset\" \r\n [attr.height]=\"appendIcon?.height\" \r\n [attr.width]=\"appendIcon?.width\"></ids-icon>\r\n</ids-input>", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1015
+ IDInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDInputComponent, selector: "id-input", inputs: { autofocus: "autofocus" }, usesInheritance: true, ngImport: i0, template: "<ids-input [attr.valid]=\"valid\" \r\n [attr.novalidation]=\"novalidation ? true : null\"\r\n [attr.light]=\"light ? light : null\"\r\n [attr.autofocus]=\"autofocus ? autofocus : null\">\r\n <ng-content></ng-content>\r\n</ids-input>", encapsulation: i0.ViewEncapsulation.None });
996
1016
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDInputComponent, decorators: [{
997
1017
  type: Component,
998
1018
  args: [{
@@ -1002,8 +1022,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1002
1022
  }]
1003
1023
  }], ctorParameters: function () { return []; }, propDecorators: { autofocus: [{
1004
1024
  type: Input
1005
- }], appendIcon: [{
1006
- type: Input
1007
1025
  }] } });
1008
1026
 
1009
1027
  class IDInputModule {
@@ -1032,7 +1050,7 @@ class IDCheckboxComponent extends IDFormBase {
1032
1050
  }
1033
1051
  }
1034
1052
  IDCheckboxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1035
- IDCheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", inputs: { compact: "compact" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox \r\n [attr.compact]=\"compact ? true : null\"\r\n [attr.valid]=\"valid\" \r\n [attr.novalidation]=\"noValidation ? noValidation : null\">\r\n <ng-content></ng-content>\r\n</ids-checkbox>", encapsulation: i0.ViewEncapsulation.None });
1053
+ IDCheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", inputs: { compact: "compact" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox \r\n [attr.compact]=\"compact ? true : null\"\r\n [attr.light]=\"light ? true : null\"\r\n [attr.valid]=\"valid\" \r\n [attr.novalidation]=\"novalidation ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-checkbox>", encapsulation: i0.ViewEncapsulation.None });
1036
1054
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxComponent, decorators: [{
1037
1055
  type: Component,
1038
1056
  args: [{
@@ -1073,7 +1091,7 @@ class IDCheckboxGroupComponent extends IDFormBase {
1073
1091
  }
1074
1092
  }
1075
1093
  IDCheckboxGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1076
- IDCheckboxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage", legend: "legend", compact: "compact" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox-group \r\n [legend]=\"legend\"\r\n [valid]=\"valid\" \r\n [attr.novalidation]=\"noValidation ? noValidation : null\"\r\n [attr.compact]=\"compact ? true : null\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-checkbox-group>\r\n", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1094
+ IDCheckboxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage", legend: "legend", compact: "compact" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox-group \r\n [legend]=\"legend\"\r\n [valid]=\"valid\" \r\n [attr.novalidation]=\"novalidation ? true : null\"\r\n [attr.compact]=\"compact ? true : null\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-checkbox-group>\r\n", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1077
1095
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, decorators: [{
1078
1096
  type: Component,
1079
1097
  args: [{
@@ -1145,11 +1163,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1145
1163
  }]
1146
1164
  }] });
1147
1165
 
1148
- class IDRadioComponent {
1149
- constructor() { }
1166
+ class IDRadioComponent extends IDFormBase {
1150
1167
  }
1151
- IDRadioComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1152
- 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 });
1168
+ IDRadioComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
1169
+ IDRadioComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRadioComponent, selector: "id-radio", usesInheritance: true, ngImport: i0, template: "<ids-radio [light]=\"light ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-radio>", encapsulation: i0.ViewEncapsulation.None });
1153
1170
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioComponent, decorators: [{
1154
1171
  type: Component,
1155
1172
  args: [{
@@ -1157,18 +1174,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1157
1174
  templateUrl: './radio.component.html',
1158
1175
  encapsulation: ViewEncapsulation.None,
1159
1176
  }]
1160
- }], ctorParameters: function () { return []; } });
1177
+ }] });
1161
1178
 
1162
1179
  class IDRadioGroupComponent {
1163
1180
  constructor() {
1164
1181
  this.name = undefined;
1165
1182
  this.legend = undefined;
1166
1183
  this.required = false;
1167
- this.errorMessage = undefined;
1184
+ this.errormessage = undefined;
1168
1185
  }
1169
1186
  }
1170
1187
  IDRadioGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1171
- 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 });
1188
+ 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 });
1172
1189
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioGroupComponent, decorators: [{
1173
1190
  type: Component,
1174
1191
  args: [{
@@ -1182,7 +1199,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1182
1199
  type: Input
1183
1200
  }], required: [{
1184
1201
  type: Input
1185
- }], errorMessage: [{
1202
+ }], errormessage: [{
1186
1203
  type: Input
1187
1204
  }] } });
1188
1205
 
@@ -1215,11 +1232,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1215
1232
 
1216
1233
  class IDRangeComponent {
1217
1234
  constructor() {
1218
- this.showTicks = false;
1235
+ this.showticks = false;
1219
1236
  }
1220
1237
  }
1221
1238
  IDRangeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1222
- IDRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRangeComponent, selector: "id-range", inputs: { showTicks: "showTicks" }, ngImport: i0, template: "<ids-range [showticks]=\"showTicks\">\r\n <ng-content></ng-content>\r\n</ids-range>", encapsulation: i0.ViewEncapsulation.None });
1239
+ IDRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRangeComponent, selector: "id-range", inputs: { showticks: "showticks" }, ngImport: i0, template: "<ids-range [showticks]=\"showticks\">\r\n <ng-content></ng-content>\r\n</ids-range>", encapsulation: i0.ViewEncapsulation.None });
1223
1240
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeComponent, decorators: [{
1224
1241
  type: Component,
1225
1242
  args: [{
@@ -1227,7 +1244,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1227
1244
  templateUrl: './range.component.html',
1228
1245
  encapsulation: ViewEncapsulation.None,
1229
1246
  }]
1230
- }], propDecorators: { showTicks: [{
1247
+ }], propDecorators: { showticks: [{
1231
1248
  type: Input
1232
1249
  }] } });
1233
1250
 
@@ -1250,12 +1267,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1250
1267
  }] });
1251
1268
 
1252
1269
  class IDSelectComponent extends IDFormBase {
1253
- constructor() {
1254
- super();
1255
- }
1256
1270
  }
1257
- IDSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1258
- IDSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectComponent, selector: "id-select", usesInheritance: true, ngImport: i0, template: "<ids-select [attr.valid]=\"valid\" [attr.novalidation]=\"noValidation ? noValidation : null\">\r\n <ng-content></ng-content>\r\n</ids-select>", encapsulation: i0.ViewEncapsulation.None });
1271
+ IDSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
1272
+ IDSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectComponent, selector: "id-select", usesInheritance: true, ngImport: i0, template: "<ids-select \r\n [attr.valid]=\"valid\"\r\n [attr.light]=\"light ? true : null\"\r\n [attr.novalidation]=\"novalidation ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-select>", encapsulation: i0.ViewEncapsulation.None });
1259
1273
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectComponent, decorators: [{
1260
1274
  type: Component,
1261
1275
  args: [{
@@ -1263,7 +1277,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1263
1277
  templateUrl: './select.component.html',
1264
1278
  encapsulation: ViewEncapsulation.None,
1265
1279
  }]
1266
- }], ctorParameters: function () { return []; } });
1280
+ }] });
1267
1281
 
1268
1282
  class IDSelectModule {
1269
1283
  }
@@ -1287,13 +1301,13 @@ class IDSelectMultipleComponent extends IDFormBase {
1287
1301
  constructor() {
1288
1302
  super(...arguments);
1289
1303
  this.label = undefined;
1290
- this.errorMessage = undefined;
1304
+ this.errormessage = undefined;
1291
1305
  this.maxHeight = undefined;
1292
1306
  this.placeholder = '';
1293
1307
  }
1294
1308
  }
1295
1309
  IDSelectMultipleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
1296
- IDSelectMultipleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectMultipleComponent, selector: "id-select-multiple", inputs: { label: "label", errorMessage: "errorMessage", maxHeight: "maxHeight", placeholder: "placeholder" }, usesInheritance: true, ngImport: i0, template: "<ids-select-multiple \r\n [attr.valid]=\"valid\" \r\n [attr.novalidation]=\"noValidation ? noValidation : null\" \r\n [label]=\"label\" \r\n [placeholder]=\"placeholder\"\r\n [maxheight]=\"maxHeight\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-select-multiple>", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1310
+ IDSelectMultipleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectMultipleComponent, selector: "id-select-multiple", inputs: { label: "label", errormessage: "errormessage", maxHeight: "maxHeight", placeholder: "placeholder" }, usesInheritance: true, ngImport: i0, template: "<ids-select-multiple \r\n [attr.light]=\"light ? true : null\"\r\n [attr.valid]=\"valid\" \r\n [attr.novalidation]=\"novalidation ? true : null\" \r\n [label]=\"label\" \r\n [placeholder]=\"placeholder\"\r\n [maxheight]=\"maxHeight\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errormessage\">{{errormessage}}</ids-error-message>\r\n</ids-select-multiple>", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1297
1311
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, decorators: [{
1298
1312
  type: Component,
1299
1313
  args: [{
@@ -1303,7 +1317,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1303
1317
  }]
1304
1318
  }], propDecorators: { label: [{
1305
1319
  type: Input
1306
- }], errorMessage: [{
1320
+ }], errormessage: [{
1307
1321
  type: Input
1308
1322
  }], maxHeight: [{
1309
1323
  type: Input
@@ -1373,11 +1387,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1373
1387
  }]
1374
1388
  }] });
1375
1389
 
1376
- class IDTimeComponent {
1377
- constructor() { }
1390
+ class IDTimeComponent extends IDFormBase {
1378
1391
  }
1379
- IDTimeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTimeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1380
- IDTimeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTimeComponent, selector: "id-time", ngImport: i0, template: "<ids-time>\r\n <ng-content></ng-content>\r\n</ids-time>", encapsulation: i0.ViewEncapsulation.None });
1392
+ IDTimeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTimeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
1393
+ IDTimeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTimeComponent, selector: "id-time", usesInheritance: true, ngImport: i0, template: "<ids-time [attr.light]=\"light ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-time>", encapsulation: i0.ViewEncapsulation.None });
1381
1394
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTimeComponent, decorators: [{
1382
1395
  type: Component,
1383
1396
  args: [{
@@ -1385,7 +1398,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1385
1398
  templateUrl: './time.component.html',
1386
1399
  encapsulation: ViewEncapsulation.None,
1387
1400
  }]
1388
- }], ctorParameters: function () { return []; } });
1401
+ }] });
1389
1402
 
1390
1403
  class IDTimeModule {
1391
1404
  }
@@ -1412,7 +1425,7 @@ class IDTextareaComponent extends IDFormBase {
1412
1425
  }
1413
1426
  }
1414
1427
  IDTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1415
- IDTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", inputs: { noFade: "noFade" }, usesInheritance: true, ngImport: i0, template: "<ids-textarea [attr.nofade]=\"noFade ? true : null\" [attr.valid]=\"valid\" [attr.novalidation]=\"noValidation ? noValidation : null\">\r\n <ng-content></ng-content>\r\n</ids-textarea>", encapsulation: i0.ViewEncapsulation.None });
1428
+ IDTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", inputs: { noFade: "noFade" }, usesInheritance: true, ngImport: i0, template: "<ids-textarea \r\n [attr.light]=\"light ? true : null\"\r\n [attr.nofade]=\"noFade ? true : null\"\r\n [attr.valid]=\"valid\"\r\n [attr.novalidation]=\"novalidation ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-textarea>", encapsulation: i0.ViewEncapsulation.None });
1416
1429
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaComponent, decorators: [{
1417
1430
  type: Component,
1418
1431
  args: [{
@@ -1593,36 +1606,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1593
1606
  class IDLinkComponent {
1594
1607
  constructor() {
1595
1608
  this.link = null;
1596
- this.notificationBadge = null;
1597
- this.prependIcon = null;
1598
- this.appendIcon = null;
1609
+ this.notificationbadge = null;
1610
+ this.prependicon = null;
1611
+ this.appendicon = null;
1599
1612
  this.underlined = false;
1600
1613
  this.padding = null;
1601
1614
  this.outline = null;
1602
1615
  this.block = false;
1603
1616
  this.color = undefined;
1604
1617
  this.size = undefined;
1605
- this.activeIcon = false;
1606
- this.activeIconBackground = undefined;
1618
+ this.activeicon = false;
1619
+ this.activeiconbackground = undefined;
1607
1620
  this.external = false;
1608
1621
  this.slot = undefined;
1609
1622
  }
1610
1623
  }
1611
1624
  IDLinkComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1612
- 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", activeIconBackground: "activeIconBackground", external: "external", slot: "slot" }, host: { properties: { "class.ids-block": "this.block" } }, ngImport: i0, template: "<ids-link \r\n [attr.underlined]=\"underlined ? '' : null\"\r\n [color]=\"color\"\r\n [size]=\"size\"\r\n [attr.activeicon]=\"activeIcon ? true : null\"\r\n [activeiconbackground]=\"activeIconBackground\"\r\n [padding]=\"padding\"\r\n [outline]=\"outline\"\r\n [block]=\"block\"\r\n [attr.slot]=\"slot\"\r\n >\r\n <ids-icon *ngIf=\"prependIcon !== null\"\r\n slot=\"prepend-icon\" \r\n [attr.name]=\"prependIcon?.name\"\r\n [attr.title]=\"prependIcon?.title\" \r\n [attr.color]=\"prependIcon?.color\" \r\n [attr.color2]=\"prependIcon?.color2\" \r\n [attr.size]=\"prependIcon?.size\" \r\n [attr.padding]=\"prependIcon?.padding\" \r\n [attr.rotate]=\"prependIcon?.rotate\" \r\n [attr.colorpreset]=\"prependIcon?.colorpreset\" \r\n [attr.height]=\"prependIcon?.height\" \r\n [attr.width]=\"prependIcon?.width\"></ids-icon>\r\n <id-anchor *ngIf=\"link\" [link]=\"link\"></id-anchor>\r\n <ng-content *ngIf=\"!link\"></ng-content>\r\n <ids-icon *ngIf=\"appendIcon !== null\" \r\n slot=\"append-icon\" \r\n [attr.name]=\"appendIcon?.name\"\r\n [attr.title]=\"appendIcon?.title\" \r\n [attr.color]=\"appendIcon?.color\" \r\n [attr.color2]=\"appendIcon?.color2\"\r\n [attr.size]=\"appendIcon?.size\" \r\n [attr.padding]=\"appendIcon?.padding\" \r\n [attr.rotate]=\"appendIcon?.rotate\" \r\n [attr.colorpreset]=\"appendIcon?.colorpreset\" \r\n [attr.height]=\"appendIcon?.height\" \r\n [attr.width]=\"appendIcon?.width\"></ids-icon>\r\n <ids-notification-badge \r\n *ngIf=\"notificationBadge !== null\"\r\n [attr.type]=\"notificationBadge.type\"\r\n [attr.size]=\"notificationBadge.size\">\r\n {{notificationBadge.value}}\r\n </ids-notification-badge>\r\n</ids-link>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1625
+ 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", activeiconbackground: "activeiconbackground", external: "external", slot: "slot" }, host: { properties: { "class.ids-block": "this.block" } }, ngImport: i0, template: "<ids-link \r\n [attr.underlined]=\"underlined ? '' : null\"\r\n [color]=\"color\"\r\n [size]=\"size\"\r\n [attr.activeicon]=\"activeicon ? true : null\"\r\n [activeiconbackground]=\"activeiconbackground\"\r\n [padding]=\"padding\"\r\n [outline]=\"outline\"\r\n [block]=\"block ? true : null\"\r\n [attr.slot]=\"slot\"\r\n >\r\n <ids-icon *ngIf=\"prependicon !== null\"\r\n slot=\"prepend-icon\" \r\n [attr.name]=\"prependicon?.name\"\r\n [attr.title]=\"prependicon?.title\" \r\n [attr.color]=\"prependicon?.color\" \r\n [attr.color2]=\"prependicon?.color2\" \r\n [attr.size]=\"prependicon?.size\" \r\n [attr.padding]=\"prependicon?.padding\" \r\n [attr.rotate]=\"prependicon?.rotate\" \r\n [attr.colorpreset]=\"prependicon?.colorpreset\" \r\n [attr.height]=\"prependicon?.height\" \r\n [attr.width]=\"prependicon?.width\"></ids-icon>\r\n <id-anchor *ngIf=\"link\" [link]=\"link\"></id-anchor>\r\n <ng-content *ngIf=\"!link\"></ng-content>\r\n <ids-icon *ngIf=\"appendicon !== null\" \r\n slot=\"append-icon\" \r\n [attr.name]=\"appendicon?.name\"\r\n [attr.title]=\"appendicon?.title\" \r\n [attr.color]=\"appendicon?.color\" \r\n [attr.color2]=\"appendicon?.color2\"\r\n [attr.size]=\"appendicon?.size\" \r\n [attr.padding]=\"appendicon?.padding\" \r\n [attr.rotate]=\"appendicon?.rotate\" \r\n [attr.colorpreset]=\"appendicon?.colorpreset\" \r\n [attr.height]=\"appendicon?.height\" \r\n [attr.width]=\"appendicon?.width\"></ids-icon>\r\n <ids-notification-badge \r\n *ngIf=\"notificationbadge !== null\"\r\n [attr.type]=\"notificationbadge.type\"\r\n [attr.size]=\"notificationbadge.size\">\r\n {{notificationbadge.value}}\r\n </ids-notification-badge>\r\n</ids-link>", styles: [":host { display: inline; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1613
1626
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkComponent, decorators: [{
1614
1627
  type: Component,
1615
1628
  args: [{
1616
1629
  selector: 'id-link',
1617
- templateUrl: './link.component.html'
1630
+ templateUrl: './link.component.html',
1631
+ styles: [':host { display: inline; }']
1618
1632
  }]
1619
1633
  }], ctorParameters: function () { return []; }, propDecorators: { link: [{
1620
1634
  type: Input
1621
- }], notificationBadge: [{
1635
+ }], notificationbadge: [{
1622
1636
  type: Input
1623
- }], prependIcon: [{
1637
+ }], prependicon: [{
1624
1638
  type: Input
1625
- }], appendIcon: [{
1639
+ }], appendicon: [{
1626
1640
  type: Input
1627
1641
  }], underlined: [{
1628
1642
  type: Input
@@ -1639,9 +1653,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1639
1653
  type: Input
1640
1654
  }], size: [{
1641
1655
  type: Input
1642
- }], activeIcon: [{
1656
+ }], activeicon: [{
1643
1657
  type: Input
1644
- }], activeIconBackground: [{
1658
+ }], activeiconbackground: [{
1645
1659
  type: Input
1646
1660
  }], external: [{
1647
1661
  type: Input
@@ -1652,15 +1666,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1652
1666
  class IDLinkModule {
1653
1667
  }
1654
1668
  IDLinkModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1655
- IDLinkModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, declarations: [IDLinkComponent], imports: [CommonModule, IDAnchorModule], exports: [IDLinkComponent] });
1656
- IDLinkModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, imports: [[CommonModule, IDAnchorModule]] });
1669
+ IDLinkModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, declarations: [IDLinkComponent], imports: [CommonModule], exports: [IDLinkComponent] });
1670
+ IDLinkModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, imports: [[CommonModule]] });
1657
1671
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, decorators: [{
1658
1672
  type: NgModule,
1659
1673
  args: [{
1660
1674
  declarations: [
1661
1675
  IDLinkComponent
1662
1676
  ],
1663
- imports: [CommonModule, IDAnchorModule],
1677
+ imports: [CommonModule],
1664
1678
  exports: [
1665
1679
  IDLinkComponent
1666
1680
  ],
@@ -1706,13 +1720,13 @@ class IDListItemComponent {
1706
1720
  this.date = null;
1707
1721
  this.year = null;
1708
1722
  this.month = null;
1709
- this.monthLabel = null;
1723
+ this.monthlabel = null;
1710
1724
  this.day = null;
1711
- this.showDateLabel = false;
1725
+ this.showdatelabel = false;
1712
1726
  }
1713
1727
  }
1714
1728
  IDListItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1715
- 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 });
1729
+ 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 });
1716
1730
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemComponent, decorators: [{
1717
1731
  type: Component,
1718
1732
  args: [{
@@ -1728,11 +1742,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1728
1742
  type: Input
1729
1743
  }], month: [{
1730
1744
  type: Input
1731
- }], monthLabel: [{
1745
+ }], monthlabel: [{
1732
1746
  type: Input
1733
1747
  }], day: [{
1734
1748
  type: Input
1735
- }], showDateLabel: [{
1749
+ }], showdatelabel: [{
1736
1750
  type: Input
1737
1751
  }] } });
1738
1752
 
@@ -1885,7 +1899,7 @@ class IDMobileMenuComponent {
1885
1899
  }
1886
1900
  }
1887
1901
  IDMobileMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1888
- 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"] }] });
1902
+ 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 \r\n [type]=\"type\"\r\n [variation]=\"variation\">\r\n <ids-mobile-menu-item *ngFor=\"let item of items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [variation]=\"variation\"\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 [variation]=\"variation\"\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 [variation]=\"variation\"\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 [variation]=\"variation\"\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-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"] }] });
1889
1903
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuComponent, decorators: [{
1890
1904
  type: Component,
1891
1905
  args: [{
@@ -1956,23 +1970,23 @@ class IDMobileMenuItem {
1956
1970
 
1957
1971
  class IDPopoverComponent {
1958
1972
  constructor() {
1959
- this.maxWidth = '260px';
1960
- this.maxHeight = '260px';
1973
+ this.maxwidth = '260px';
1974
+ this.maxheight = '260px';
1961
1975
  this.cathegory = undefined;
1962
1976
  this.position = 'bottom';
1963
1977
  }
1964
1978
  }
1965
1979
  IDPopoverComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDPopoverComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1966
- IDPopoverComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDPopoverComponent, selector: "id-popover", inputs: { maxWidth: "maxWidth", maxHeight: "maxHeight", cathegory: "cathegory", position: "position" }, ngImport: i0, template: "<ids-popover \r\n [attr.cathegory]=\"cathegory\"\r\n [attr.position]=\"position\">\r\n <ng-content></ng-content>\r\n <ids-popover-content \r\n [attr.maxwidth]=\"maxWidth\"\r\n [attr.maxheight]=\"maxHeight\">\r\n <ng-content select=\"[popover-content]\"></ng-content>\r\n </ids-popover-content>\r\n</ids-popover>" });
1980
+ IDPopoverComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDPopoverComponent, selector: "id-popover", inputs: { maxwidth: "maxwidth", maxheight: "maxheight", cathegory: "cathegory", position: "position" }, ngImport: i0, template: "<ids-popover \r\n [attr.cathegory]=\"cathegory\"\r\n [attr.position]=\"position\">\r\n <ng-content></ng-content>\r\n <ids-popover-content \r\n [attr.maxwidth]=\"maxwidth\"\r\n [attr.maxheight]=\"maxheight\">\r\n <ng-content select=\"[popover-content]\"></ng-content>\r\n </ids-popover-content>\r\n</ids-popover>" });
1967
1981
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDPopoverComponent, decorators: [{
1968
1982
  type: Component,
1969
1983
  args: [{
1970
1984
  selector: 'id-popover',
1971
1985
  templateUrl: './popover.component.html',
1972
1986
  }]
1973
- }], ctorParameters: function () { return []; }, propDecorators: { maxWidth: [{
1987
+ }], ctorParameters: function () { return []; }, propDecorators: { maxwidth: [{
1974
1988
  type: Input
1975
- }], maxHeight: [{
1989
+ }], maxheight: [{
1976
1990
  type: Input
1977
1991
  }], cathegory: [{
1978
1992
  type: Input
@@ -2042,14 +2056,15 @@ class IDFooterComponent {
2042
2056
  this.headline = '';
2043
2057
  this.servicename = '';
2044
2058
  this.subheadline = '';
2059
+ this.cols = 3;
2045
2060
  this.linkcol1 = '2';
2046
2061
  this.linkcol2 = '2';
2047
2062
  this.linkcol3 = '2';
2048
- this.mobileMenuItems = undefined;
2063
+ this.mobilemenuitems = undefined;
2049
2064
  }
2050
2065
  }
2051
2066
  IDFooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2052
- 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", linkcol1: "linkcol1", linkcol2: "linkcol2", linkcol3: "linkcol3", mobileMenuItems: "mobileMenuItems" }, ngImport: i0, template: "<ids-footer \r\n [type]=\"type\"\r\n [headline]=\"headline\"\r\n [subheadline]=\"subheadline\"\r\n [servicename]=\"servicename\"\r\n [linkcol1]=\"linkcol1\"\r\n [linkcol2]=\"linkcol2\"\r\n [linkcol3]=\"linkcol3\">\r\n <ng-content></ng-content>\r\n <ids-mobile-menu \r\n slot=\"mobile-menu\"\r\n variation=\"2\"\r\n *ngIf=\"mobileMenuItems\"\r\n [type]=\"type\">\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-mobile-menu>\r\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"] }] });
2067
+ 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", cols: "cols", linkcol1: "linkcol1", linkcol2: "linkcol2", linkcol3: "linkcol3", mobilemenuitems: "mobilemenuitems" }, ngImport: i0, template: "<ids-footer \r\n [type]=\"type\"\r\n [headline]=\"headline\"\r\n [subheadline]=\"subheadline\"\r\n [servicename]=\"servicename\"\r\n [cols]=\"cols\"\r\n [linkcol1]=\"linkcol1\"\r\n [linkcol2]=\"linkcol2\"\r\n [linkcol3]=\"linkcol3\">\r\n <ng-content></ng-content>\r\n <ids-mobile-menu \r\n slot=\"mobile-menu\"\r\n variation=\"2\"\r\n *ngIf=\"mobilemenuitems\"\r\n [type]=\"type\">\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-mobile-menu>\r\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"] }] });
2053
2068
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterComponent, decorators: [{
2054
2069
  type: Component,
2055
2070
  args: [{
@@ -2064,13 +2079,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2064
2079
  type: Input
2065
2080
  }], subheadline: [{
2066
2081
  type: Input
2082
+ }], cols: [{
2083
+ type: Input
2067
2084
  }], linkcol1: [{
2068
2085
  type: Input
2069
2086
  }], linkcol2: [{
2070
2087
  type: Input
2071
2088
  }], linkcol3: [{
2072
2089
  type: Input
2073
- }], mobileMenuItems: [{
2090
+ }], mobilemenuitems: [{
2074
2091
  type: Input
2075
2092
  }] } });
2076
2093
 
@@ -2096,20 +2113,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2096
2113
  class IDHeaderComponent {
2097
2114
  constructor() {
2098
2115
  this.type = '';
2099
- this.mobileMenuText = 'Meny';
2100
- this.hideRegionPicker = false;
2116
+ this.hideregionpicker = false;
2117
+ this.fluid = false;
2101
2118
  this.unresponsive = false;
2102
- this.hideBrand = false;
2103
- this.logoHref = '';
2104
- this.pickRegionText = 'Välj region';
2105
- this.srLogoLabel = 'Logotyp';
2106
- this.avatarMaxWidth = '';
2107
- this.persistentMobileMenu = false;
2108
- this.didToggleRegion = new EventEmitter();
2119
+ this.hidebrand = false;
2120
+ this.logohref = '';
2121
+ this.pickregiontext = 'Välj region';
2122
+ this.srlogolabel = 'Logotyp';
2123
+ this.avatarmaxwidth = '';
2124
+ this.persistentmobilemenu = false;
2125
+ this.onDidToggleRegion = new EventEmitter();
2109
2126
  }
2110
2127
  }
2111
2128
  IDHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2112
- IDHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDHeaderComponent, selector: "id-header", inputs: { type: "type", brandText: "brandText", brandTextTop: "brandTextTop", brandTextBottom: "brandTextBottom", mobileMenuText: "mobileMenuText", hideRegionPicker: "hideRegionPicker", unresponsive: "unresponsive", hideBrand: "hideBrand", logoHref: "logoHref", pickRegionText: "pickRegionText", regionIcon: "regionIcon", regionIconTitle: "regionIconTitle", srLogoLabel: "srLogoLabel", items: "items", avatar: "avatar", avatarMaxWidth: "avatarMaxWidth", navItems: "navItems", persistentMobileMenu: "persistentMobileMenu", mobileItems: "mobileItems", mobileMenuItems: "mobileMenuItems" }, outputs: { didToggleRegion: "didToggleRegion" }, ngImport: i0, template: "<ids-header \r\n [attr.type]=\"type\"\r\n [attr.brandtext]=\"brandText\"\r\n [attr.brandtexttop]=\"brandTextTop\"\r\n [attr.brandtextbottom]=\"brandTextBottom\"\r\n [unresponsive]=\"unresponsive\"\r\n [hideregionpicker]=\"hideRegionPicker\"\r\n [logohref]=\"logoHref\"\r\n [hidebrand]=\"hideBrand\"\r\n [pickregiontext]=\"pickRegionText\"\r\n [regionicon]=\"regionIcon\"\r\n [regionicontitle]=\"regionIconTitle\"\r\n [srlogolabel]=\"srLogoLabel\"\r\n (didToggleRegion)=\"didToggleRegion.emit(true)\">\r\n\r\n <ids-header-item *ngFor=\"let item of items\" \r\n [attr.type]=\"type\"\r\n [icon]=\"item.iconName\" \r\n [mobile]=\"item.mobile\"\r\n [attr.separatorleft]=\"item.separatorLeft\">\r\n <id-anchor [link]=\"item.link\"></id-anchor>\r\n </ids-header-item>\r\n\r\n <ids-header-nav slot=\"header-nav\" *ngIf=\"navItems || mobileItems\" [attr.type]=\"type\">\r\n <ids-header-nav-item *ngFor=\"let navItem of navItems; let i = index\" [attr.type]=\"type\" [label]=\"navItem.label\" [link]=\"navItem.link\" [active]=\"navItem.active\">\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=\"ids-heading-2\">{{navItem.headline}}</h2>\r\n <p class=\"body\">{{navItem.paragraph}}</p>\r\n <id-anchor [link]=\"navItem.paragraphLink\"></id-anchor>\r\n </div>\r\n </ids-header-nav-item>\r\n <ids-header-mobile-item [attr.type]=\"type\" *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 \r\n [attr.persistent]=\"persistentMobileMenu ? true : null\"\r\n [attr.type]=\"type\" *ngIf=\"mobileMenuItems\">\r\n {{mobileMenuText}}\r\n <ids-mobile-menu-item [attr.type]=\"type\" *ngFor=\"let item of mobileMenuItems\"\r\n slot=\"menu-link\"\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 [attr.type]=\"type\" *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 [attr.type]=\"type\" *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 [attr.type]=\"type\" *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 [maxwidth]=\"avatarMaxWidth\" [attr.type]=\"type\" *ngIf=\"avatar\" [unit]=\"avatar.unit\" [username]=\"avatar.username\">\r\n <ng-content select=\"[avatar]\"></ng-content>\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 [attr.persistent]=\"persistentMobileMenu ? true : null\"\r\n *ngIf=\"type !== '1177' && (mobileMenuItems || avatar)\"\r\n [type]=\"type\">\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-mobile-menu-avatar *ngIf=\"avatar\" [username]=\"avatar.username\" [unit]=\"avatar.unit\">\r\n <ng-content select=\"[avatarMobile]\"></ng-content>\r\n <id-anchor style=\"color: var(--mobile-menu-avatar-link)\" *ngIf=\"avatar.linkMobile\" [link]=\"avatar.linkMobile\"></id-anchor>\r\n </ids-mobile-menu-avatar>\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"] }] });
2129
+ IDHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDHeaderComponent, selector: "id-header", inputs: { type: "type", brandtext: "brandtext", brandtexttop: "brandtexttop", brandtextbottom: "brandtextbottom", hideregionpicker: "hideregionpicker", fluid: "fluid", unresponsive: "unresponsive", hidebrand: "hidebrand", logohref: "logohref", pickregiontext: "pickregiontext", regionicon: "regionicon", regionicontitle: "regionicontitle", srlogolabel: "srlogolabel", items: "items", avatar: "avatar", avatarmaxwidth: "avatarmaxwidth", navitems: "navitems", persistentmobilemenu: "persistentmobilemenu", mobileitems: "mobileitems", mobilemenuitems: "mobilemenuitems" }, outputs: { onDidToggleRegion: "onDidToggleRegion" }, ngImport: i0, template: "<ids-header \r\n [attr.type]=\"type\"\r\n [attr.fluid]=\"fluid ? true : null\"\r\n [attr.brandtext]=\"brandtext\"\r\n [attr.brandtexttop]=\"brandtexttop\"\r\n [attr.brandtextbottom]=\"brandtextbottom\"\r\n [unresponsive]=\"unresponsive ? true : null\"\r\n [hideregionpicker]=\"hideregionpicker ? true : null\"\r\n [logohref]=\"logohref\"\r\n [hidebrand]=\"hidebrand\"\r\n [pickregiontext]=\"pickregiontext\"\r\n [srlogolabel]=\"srlogolabel\"\r\n (didToggleRegion)=\"onDidToggleRegion.emit(true)\">\r\n <ids-icon *ngIf=\"regionicon\" slot=\"region\" [name]=\"regionicon\" [title]=\"regionicontitle\"></ids-icon>\r\n <ids-header-item *ngFor=\"let item of items\" \r\n [attr.type]=\"type\"\r\n [mobile]=\"item.mobile\"\r\n [attr.separatorleft]=\"item.separatorLeft\">\r\n <ids-icon [name]=\"item.iconName\"></ids-icon>\r\n <id-anchor [link]=\"item.link\"></id-anchor>\r\n </ids-header-item>\r\n\r\n <ids-header-nav slot=\"header-nav\" *ngIf=\"navitems || mobileitems\" [attr.type]=\"type\">\r\n <ids-header-nav-item *ngFor=\"let navitem of navitems; let i = index\" [attr.type]=\"type\" [label]=\"navitem.label\" [link]=\"navitem.link\" [active]=\"navitem.active\">\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=\"ids-heading-2\">{{navitem.headline}}</h2>\r\n <p class=\"body\">{{navitem.paragraph}}</p>\r\n <id-anchor [link]=\"navitem.paragraphLink\"></id-anchor>\r\n </div>\r\n </ids-header-nav-item>\r\n <ids-header-mobile-item [attr.type]=\"type\" *ngFor=\"let mobileItem of mobileitems\">\r\n <ids-icon [name]=\"mobileItem.iconName\"></ids-icon>\r\n <id-anchor [link]=\"mobileItem.link\"></id-anchor>\r\n </ids-header-mobile-item>\r\n \r\n <ids-header-mobile-menu \r\n [attr.persistent]=\"persistentmobilemenu ? true : null\"\r\n [attr.type]=\"type\" *ngIf=\"mobilemenuitems\">\r\n <ids-mobile-menu-item [attr.type]=\"type\" *ngFor=\"let item of mobilemenuitems\"\r\n slot=\"menu-link\"\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 [attr.type]=\"type\" *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 [attr.type]=\"type\" *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 [attr.type]=\"type\" *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 [maxwidth]=\"avatar.maxWidth\" [attr.type]=\"type\" *ngIf=\"avatar\" [unit]=\"avatar.unit\" [username]=\"avatar.username\">\r\n <ng-content select=\"[avatar]\"></ng-content>\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 [attr.persistent]=\"persistentmobilemenu ? true : null\"\r\n *ngIf=\"type !== '1177' && (mobilemenuitems || avatar)\"\r\n [type]=\"type\">\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-mobile-menu-avatar *ngIf=\"avatar\" [username]=\"avatar.username\" [unit]=\"avatar.unit\">\r\n <ng-content select=\"[avatarMobile]\"></ng-content>\r\n <id-anchor style=\"color: var(--mobile-menu-avatar-link)\" *ngIf=\"avatar.linkMobile\" [link]=\"avatar.linkMobile\"></id-anchor>\r\n </ids-mobile-menu-avatar>\r\n </ids-header-mobile-menu>\r\n</ids-header>", 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"] }] });
2113
2130
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderComponent, decorators: [{
2114
2131
  type: Component,
2115
2132
  args: [{
@@ -2118,53 +2135,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2118
2135
  }]
2119
2136
  }], propDecorators: { type: [{
2120
2137
  type: Input
2121
- }], brandText: [{
2138
+ }], brandtext: [{
2122
2139
  type: Input
2123
- }], brandTextTop: [{
2140
+ }], brandtexttop: [{
2124
2141
  type: Input
2125
- }], brandTextBottom: [{
2142
+ }], brandtextbottom: [{
2126
2143
  type: Input
2127
- }], mobileMenuText: [{
2144
+ }], hideregionpicker: [{
2128
2145
  type: Input
2129
- }], hideRegionPicker: [{
2146
+ }], fluid: [{
2130
2147
  type: Input
2131
2148
  }], unresponsive: [{
2132
2149
  type: Input
2133
- }], hideBrand: [{
2150
+ }], hidebrand: [{
2134
2151
  type: Input
2135
- }], logoHref: [{
2152
+ }], logohref: [{
2136
2153
  type: Input
2137
- }], pickRegionText: [{
2154
+ }], pickregiontext: [{
2138
2155
  type: Input
2139
- }], regionIcon: [{
2156
+ }], regionicon: [{
2140
2157
  type: Input
2141
- }], regionIconTitle: [{
2158
+ }], regionicontitle: [{
2142
2159
  type: Input
2143
- }], srLogoLabel: [{
2160
+ }], srlogolabel: [{
2144
2161
  type: Input
2145
2162
  }], items: [{
2146
2163
  type: Input
2147
2164
  }], avatar: [{
2148
2165
  type: Input
2149
- }], avatarMaxWidth: [{
2166
+ }], avatarmaxwidth: [{
2150
2167
  type: Input
2151
- }], navItems: [{
2168
+ }], navitems: [{
2152
2169
  type: Input
2153
- }], persistentMobileMenu: [{
2170
+ }], persistentmobilemenu: [{
2154
2171
  type: Input
2155
- }], mobileItems: [{
2172
+ }], mobileitems: [{
2156
2173
  type: Input
2157
- }], mobileMenuItems: [{
2174
+ }], mobilemenuitems: [{
2158
2175
  type: Input
2159
- }], didToggleRegion: [{
2176
+ }], onDidToggleRegion: [{
2160
2177
  type: Output
2161
2178
  }] } });
2162
2179
 
2163
2180
  class IDHeaderModule {
2164
2181
  }
2165
2182
  IDHeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2166
- IDHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, declarations: [IDHeaderComponent], imports: [CommonModule, IDAnchorModule], exports: [IDHeaderComponent] });
2167
- IDHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, imports: [[CommonModule, IDAnchorModule]] });
2183
+ IDHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, declarations: [IDHeaderComponent], imports: [CommonModule, IDAnchorModule, IDIconModule], exports: [IDHeaderComponent] });
2184
+ IDHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, imports: [[CommonModule, IDAnchorModule, IDIconModule]] });
2168
2185
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, decorators: [{
2169
2186
  type: NgModule,
2170
2187
  args: [{
@@ -2174,7 +2191,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2174
2191
  exports: [
2175
2192
  IDHeaderComponent
2176
2193
  ],
2177
- imports: [CommonModule, IDAnchorModule],
2194
+ imports: [CommonModule, IDAnchorModule, IDIconModule],
2178
2195
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
2179
2196
  }]
2180
2197
  }] });
@@ -2204,6 +2221,9 @@ class IDHeaderAvatar {
2204
2221
  get username() {
2205
2222
  return this._props.username;
2206
2223
  }
2224
+ get maxWidth() {
2225
+ return this._props.maxWidth;
2226
+ }
2207
2227
  get linkLeft() {
2208
2228
  return this._props.linkLeft;
2209
2229
  }
@@ -2325,7 +2345,7 @@ class IDTabsComponent {
2325
2345
  }
2326
2346
  }
2327
2347
  IDTabsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2328
- IDTabsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabsComponent, selector: "id-tabs", inputs: { responsive: "responsive", unresponsive: "unresponsive", selectLabel: "selectLabel" }, ngImport: i0, template: "<ids-tabs \n [unresponsive]=\"unresponsive ? true : null\"\n [responsive]=\"responsive\"\n [selectlabel]=\"selectLabel\">\n <ng-content></ng-content>\n</ids-tabs>" });
2348
+ IDTabsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabsComponent, selector: "id-tabs", inputs: { responsive: "responsive", unresponsive: "unresponsive", selectLabel: "selectLabel" }, ngImport: i0, template: "<ids-tabs \r\n [unresponsive]=\"unresponsive ? true : null\"\r\n [responsive]=\"responsive\"\r\n [selectlabel]=\"selectLabel\">\r\n <ng-content></ng-content>\r\n</ids-tabs>" });
2329
2349
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsComponent, decorators: [{
2330
2350
  type: Component,
2331
2351
  args: [{
@@ -2343,19 +2363,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2343
2363
  class IDTabPanelComponent {
2344
2364
  constructor(elementRef) {
2345
2365
  this.elementRef = elementRef;
2346
- this['noFocus'] = undefined;
2366
+ this.nofocus = undefined;
2347
2367
  elementRef.nativeElement.setAttribute('slot', 'tab-panel');
2348
2368
  }
2349
2369
  }
2350
2370
  IDTabPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabPanelComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
2351
- IDTabPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabPanelComponent, selector: "id-tab-panel", inputs: { noFocus: "noFocus" }, ngImport: i0, template: "<ids-tab-panel [attr.nofocus]=\"noFocus\">\r\n <ng-content></ng-content>\r\n</ids-tab-panel>" });
2371
+ IDTabPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabPanelComponent, selector: "id-tab-panel", inputs: { nofocus: "nofocus" }, ngImport: i0, template: "<ids-tab-panel [attr.nofocus]=\"nofocus ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-tab-panel>" });
2352
2372
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabPanelComponent, decorators: [{
2353
2373
  type: Component,
2354
2374
  args: [{
2355
2375
  selector: 'id-tab-panel',
2356
2376
  templateUrl: './tab-panel.component.html'
2357
2377
  }]
2358
- }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { 'noFocus': [{
2378
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { nofocus: [{
2359
2379
  type: Input
2360
2380
  }] } });
2361
2381
 
@@ -2365,13 +2385,14 @@ class IDTabComponent {
2365
2385
  this.notices = 0;
2366
2386
  this.notifications = 0;
2367
2387
  this.label = '';
2368
- this.icon = '';
2369
2388
  this.selected = false;
2389
+ // Internal icon
2390
+ this.icon = undefined;
2370
2391
  elementRef.nativeElement.setAttribute('slot', 'tab');
2371
2392
  }
2372
2393
  }
2373
2394
  IDTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
2374
- IDTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabComponent, selector: "id-tab", inputs: { notices: "notices", notifications: "notifications", label: "label", icon: "icon", selected: "selected" }, ngImport: i0, template: "<ids-tab\r\n [notices]=\"notices === 0 ? null : notices\"\r\n [notifications]=\"notifications === 0 ? null : notifications\"\r\n [label]=\"label\"\r\n [attr.icon]=\"icon\"\r\n [attr.selected]=\"selected ? '':null\">\r\n</ids-tab>" });
2395
+ IDTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabComponent, selector: "id-tab", inputs: { notices: "notices", notifications: "notifications", label: "label", selected: "selected", icon: "icon" }, ngImport: i0, template: "<ids-tab\r\n [notices]=\"notices === 0 ? null : notices\"\r\n [notifications]=\"notifications === 0 ? null : notifications\"\r\n [label]=\"label\"\r\n [attr.selected]=\"selected ? '':null\">\r\n <ids-icon *ngIf=\"icon\"\r\n slot=\"icon\" \r\n [attr.name]=\"icon?.name\"\r\n [attr.title]=\"icon?.title\" \r\n [attr.color]=\"icon?.color\" \r\n [attr.color2]=\"icon?.color2\" \r\n [attr.size]=\"icon?.size\" \r\n [attr.padding]=\"icon?.padding\" \r\n [attr.rotate]=\"icon?.rotate\" \r\n [attr.colorpreset]=\"icon?.colorpreset\" \r\n [attr.height]=\"icon?.height\" \r\n [attr.width]=\"icon?.width\"></ids-icon>\r\n <ng-content></ng-content>\r\n</ids-tab>", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2375
2396
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, decorators: [{
2376
2397
  type: Component,
2377
2398
  args: [{
@@ -2384,10 +2405,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2384
2405
  type: Input
2385
2406
  }], label: [{
2386
2407
  type: Input
2387
- }], icon: [{
2388
- type: Input
2389
2408
  }], selected: [{
2390
2409
  type: Input
2410
+ }], icon: [{
2411
+ type: Input
2391
2412
  }] } });
2392
2413
 
2393
2414
  class IDTabsModule {
@@ -2421,13 +2442,13 @@ class IDTagComponent {
2421
2442
  constructor() {
2422
2443
  this.clickable = false;
2423
2444
  this.closeable = false;
2424
- this.srCloseLabel = '';
2425
- this.clicked = new EventEmitter();
2426
- this.closed = new EventEmitter();
2445
+ this.srcloselabel = '';
2446
+ this.onClicked = new EventEmitter();
2447
+ this.onClosed = new EventEmitter();
2427
2448
  }
2428
2449
  }
2429
2450
  IDTagComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2430
- IDTagComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTagComponent, selector: "id-tag", inputs: { clickable: "clickable", closeable: "closeable", srCloseLabel: "srCloseLabel" }, outputs: { clicked: "clicked", closed: "closed" }, ngImport: i0, template: "<ids-tag\r\n [clickable]=\"clickable ? true : null\"\r\n [closeable]=\"closeable ? true : null\"\r\n [srcloselabel]=\"srCloseLabel\"\r\n (clicked)=\"clicked.emit(true)\"\r\n (closed)=\"closed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-tag>" });
2451
+ IDTagComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTagComponent, selector: "id-tag", inputs: { clickable: "clickable", closeable: "closeable", srcloselabel: "srcloselabel" }, outputs: { onClicked: "onClicked", onClosed: "onClosed" }, ngImport: i0, template: "<ids-tag\r\n [clickable]=\"clickable ? true : null\"\r\n [closeable]=\"closeable ? true : null\"\r\n [srcloselabel]=\"srcloselabel\"\r\n (clicked)=\"onClicked.emit(true)\"\r\n (closed)=\"onClosed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-tag>" });
2431
2452
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagComponent, decorators: [{
2432
2453
  type: Component,
2433
2454
  args: [{
@@ -2438,11 +2459,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2438
2459
  type: Input
2439
2460
  }], closeable: [{
2440
2461
  type: Input
2441
- }], srCloseLabel: [{
2462
+ }], srcloselabel: [{
2442
2463
  type: Input
2443
- }], clicked: [{
2464
+ }], onClicked: [{
2444
2465
  type: Output
2445
- }], closed: [{
2466
+ }], onClosed: [{
2446
2467
  type: Output
2447
2468
  }] } });
2448
2469
 
@@ -2495,13 +2516,261 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
2495
2516
  }]
2496
2517
  }] });
2497
2518
 
2519
+ class IDToggleComponent {
2520
+ constructor() { }
2521
+ }
2522
+ IDToggleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2523
+ IDToggleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDToggleComponent, selector: "id-toggle", ngImport: i0, template: "<ids-toggle>\r\n <ng-content></ng-content>\r\n</ids-toggle>", encapsulation: i0.ViewEncapsulation.None });
2524
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDToggleComponent, decorators: [{
2525
+ type: Component,
2526
+ args: [{
2527
+ selector: 'id-toggle',
2528
+ templateUrl: './toggle.component.html',
2529
+ encapsulation: ViewEncapsulation.None,
2530
+ }]
2531
+ }], ctorParameters: function () { return []; } });
2532
+
2533
+ class IDToggleModule {
2534
+ }
2535
+ IDToggleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2536
+ IDToggleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDToggleModule, declarations: [IDToggleComponent], exports: [IDToggleComponent] });
2537
+ IDToggleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDToggleModule });
2538
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDToggleModule, decorators: [{
2539
+ type: NgModule,
2540
+ args: [{
2541
+ declarations: [
2542
+ IDToggleComponent
2543
+ ],
2544
+ exports: [
2545
+ IDToggleComponent
2546
+ ],
2547
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2548
+ }]
2549
+ }] });
2550
+
2498
2551
  /*
2499
2552
  * Public API Surface of ids-angular
2500
- */
2553
+ */
2554
+ /* Icons to be included when needed
2555
+
2556
+ export * from './lib/components/icons/1177/icon-1177.module';
2557
+ export * from './lib/components/icons/agent/icon-agent.module';
2558
+ export * from './lib/components/icons/arrow/icon-arrow.module';
2559
+ export * from './lib/components/icons/attention/icon-attention.module';
2560
+ export * from './lib/components/icons/blekinge/icon-blekinge.module';
2561
+ export * from './lib/components/icons/bookmark/icon-bookmark.module';
2562
+ export * from './lib/components/icons/calendar/icon-calendar.module';
2563
+ export * from './lib/components/icons/call/icon-call.module';
2564
+ export * from './lib/components/icons/call-active/icon-call-active.module';
2565
+ export * from './lib/components/icons/camera-off/icon-camera-off.module';
2566
+ export * from './lib/components/icons/camera-on/icon-camera-on.module';
2567
+ export * from './lib/components/icons/camera-switch/icon-camera-switch.module';
2568
+ export * from './lib/components/icons/chart-bar/icon-chart-bar.module';
2569
+ export * from './lib/components/icons/chart-line/icon-chart-line.module';
2570
+ export * from './lib/components/icons/check/icon-check.module';
2571
+ export * from './lib/components/icons/chevron/icon-chevron.module';
2572
+ export * from './lib/components/icons/chevron-bold/icon-chevron-bold.module';
2573
+ export * from './lib/components/icons/clipboard/icon-clipboard.module';
2574
+ export * from './lib/components/icons/clipboard-cross/icon-clipboard-cross.module';
2575
+ export * from './lib/components/icons/clipboard-text/icon-clipboard-text.module';
2576
+ export * from './lib/components/icons/clock/icon-clock.module';
2577
+ export * from './lib/components/icons/close/icon-close.module';
2578
+ export * from './lib/components/icons/close-bold/icon-close-bold.module';
2579
+ export * from './lib/components/icons/cog/icon-cog.module';
2580
+ export * from './lib/components/icons/computer/icon-computer.module';
2581
+ export * from './lib/components/icons/computer-inera/icon-computer-inera.module';
2582
+ export * from './lib/components/icons/copy-file/icon-copy-file.module';
2583
+ export * from './lib/components/icons/copy-link/icon-copy-link.module';
2584
+ export * from './lib/components/icons/doctors-bag/icon-doctors-bag.module';
2585
+ export * from './lib/components/icons/drag-n-drop/icon-drag-n-drop.module';
2586
+ export * from './lib/components/icons/ear-hearing/icon-ear-hearing.module';
2587
+ export * from './lib/components/icons/edit/icon-edit.module';
2588
+ export * from './lib/components/icons/email/icon-email.module';
2589
+ export * from './lib/components/icons/expand/icon-expand.module';
2590
+ export * from './lib/components/icons/external/icon-external.module';
2591
+ export * from './lib/components/icons/facebook/icon-facebook.module';
2592
+ export * from './lib/components/icons/file-excel/icon-file-excel.module';
2593
+ export * from './lib/components/icons/file-other/icon-file-other.module';
2594
+ export * from './lib/components/icons/file-pdf/icon-file-pdf.module';
2595
+ export * from './lib/components/icons/file-picture/icon-file-picture.module';
2596
+ export * from './lib/components/icons/file-powerpoint/icon-file-powerpoint.module';
2597
+ export * from './lib/components/icons/file-word/icon-file-word.module';
2598
+ export * from './lib/components/icons/find-care/icon-find-care.module';
2599
+ export * from './lib/components/icons/find-region/icon-find-region.module';
2600
+ export * from './lib/components/icons/gotland/icon-gotland.module';
2601
+ export * from './lib/components/icons/halland/icon-halland.module';
2602
+ export * from './lib/components/icons/house/icon-house.module';
2603
+ export * from './lib/components/icons/id-card/icon-id-card.module';
2604
+ export * from './lib/components/icons/id-card-locked/icon-id-card-locked.module';
2605
+ export * from './lib/components/icons/image/icon-image.module';
2606
+ export * from './lib/components/icons/inera/icon-inera.module';
2607
+ export * from './lib/components/icons/inera-legacy/icon-inera-legacy.module';
2608
+ export * from './lib/components/icons/information/icon-information.module';
2609
+ export * from './lib/components/icons/jamtland-harjedalen/icon-jamtland-harjedalen.module';
2610
+ export * from './lib/components/icons/jonkoping/icon-jonkoping.module';
2611
+ export * from './lib/components/icons/kalmar/icon-kalmar.module';
2612
+ export * from './lib/components/icons/kronoberg/icon-kronoberg.module';
2613
+ export * from './lib/components/icons/lightbulb/icon-lightbulb.module';
2614
+ export * from './lib/components/icons/linkedin/icon-linkedin.module';
2615
+ export * from './lib/components/icons/list/icon-list.module';
2616
+ export * from './lib/components/icons/lock/icon-lock.module';
2617
+ export * from './lib/components/icons/lock-open/icon-lock-open.module';
2618
+ export * from './lib/components/icons/log/icon-log.module';
2619
+ export * from './lib/components/icons/log-locked/icon-log-locked.module';
2620
+ export * from './lib/components/icons/menu/icon-menu.module';
2621
+ export * from './lib/components/icons/minus/icon-minus.module';
2622
+ export * from './lib/components/icons/norrbotten/icon-norrbotten.module';
2623
+ export * from './lib/components/icons/office-building/icon-office-building.module';
2624
+ export * from './lib/components/icons/orebro/icon-orebro.module';
2625
+ export * from './lib/components/icons/organization/icon-organization.module';
2626
+ export * from './lib/components/icons/ostergotland/icon-ostergotland.module';
2627
+ export * from './lib/components/icons/plus/icon-plus.module';
2628
+ export * from './lib/components/icons/print/icon-print.module';
2629
+ export * from './lib/components/icons/question/icon-question.module';
2630
+ export * from './lib/components/icons/reload/icon-reload.module';
2631
+ export * from './lib/components/icons/reply/icon-reply.module';
2632
+ export * from './lib/components/icons/search-inera/icon-search-inera.module';
2633
+ export * from './lib/components/icons/search/icon-search.module';
2634
+ export * from './lib/components/icons/shield-locked-primary/icon-shield-locked-primary.module';
2635
+ export * from './lib/components/icons/shield-locked/icon-shield-locked.module';
2636
+ export * from './lib/components/icons/skane/icon-skane.module';
2637
+ export * from './lib/components/icons/sormland/icon-sormland.module';
2638
+ export * from './lib/components/icons/star-filled/icon-star-filled.module';
2639
+ export * from './lib/components/icons/star/icon-star.module';
2640
+ export * from './lib/components/icons/stockholm/icon-stockholm.module';
2641
+ export * from './lib/components/icons/success/icon-success.module';
2642
+ export * from './lib/components/icons/swap/icon-swap.module';
2643
+ export * from './lib/components/icons/telephone/icon-telephone.module';
2644
+ export * from './lib/components/icons/test-tube-analyze/icon-test-tube-analyze.module';
2645
+ export * from './lib/components/icons/test-tube-empty/icon-test-tube-empty.module';
2646
+ export * from './lib/components/icons/test-tube/icon-test-tube.module';
2647
+ export * from './lib/components/icons/toggle-card/icon-toggle-card.module';
2648
+ export * from './lib/components/icons/toggle-list/icon-toggle-list.module';
2649
+ export * from './lib/components/icons/twitter/icon-twitter.module';
2650
+ export * from './lib/components/icons/uppsala/icon-uppsala.module';
2651
+ export * from './lib/components/icons/user/icon-user.module';
2652
+ export * from './lib/components/icons/vasterbotten/icon-vasterbotten.module';
2653
+ export * from './lib/components/icons/vasternorrland/icon-vasternorrland.module';
2654
+ export * from './lib/components/icons/vastmanland/icon-vastmanland.module';
2655
+ export * from './lib/components/icons/vastra-gotaland/icon-vastra-gotaland.module';
2656
+ export * from './lib/components/icons/video-off/icon-video-off.module';
2657
+ export * from './lib/components/icons/video-on/icon-video-on.module';
2658
+ export * from './lib/components/icons/video-switch/icon-video-switch.module';
2659
+ export * from './lib/components/icons/visibility-off/icon-visibility-off.module';
2660
+ export * from './lib/components/icons/visibility/icon-visibility.module';
2661
+ export * from './lib/components/icons/warning/icon-warning.module';
2662
+ export * from './lib/components/icons/1177/icon-1177.component';
2663
+ export * from './lib/components/icons/agent/icon-agent.component';
2664
+ export * from './lib/components/icons/arrow/icon-arrow.component';
2665
+ export * from './lib/components/icons/attention/icon-attention.component';
2666
+ export * from './lib/components/icons/blekinge/icon-blekinge.component';
2667
+ export * from './lib/components/icons/bookmark/icon-bookmark.component';
2668
+ export * from './lib/components/icons/calendar/icon-calendar.component';
2669
+ export * from './lib/components/icons/call/icon-call.component';
2670
+ export * from './lib/components/icons/call-active/icon-call-active.component';
2671
+ export * from './lib/components/icons/camera-off/icon-camera-off.component';
2672
+ export * from './lib/components/icons/camera-on/icon-camera-on.component';
2673
+ export * from './lib/components/icons/camera-switch/icon-camera-switch.component';
2674
+ export * from './lib/components/icons/chart-bar/icon-chart-bar.component';
2675
+ export * from './lib/components/icons/chart-line/icon-chart-line.component';
2676
+ export * from './lib/components/icons/check/icon-check.component';
2677
+ export * from './lib/components/icons/chevron/icon-chevron.component';
2678
+ export * from './lib/components/icons/chevron-bold/icon-chevron-bold.component';
2679
+ export * from './lib/components/icons/clipboard/icon-clipboard.component';
2680
+ export * from './lib/components/icons/clipboard-cross/icon-clipboard-cross.component';
2681
+ export * from './lib/components/icons/clipboard-text/icon-clipboard-text.component';
2682
+ export * from './lib/components/icons/clock/icon-clock.component';
2683
+ export * from './lib/components/icons/close/icon-close.component';
2684
+ export * from './lib/components/icons/close-bold/icon-close-bold.component';
2685
+ export * from './lib/components/icons/cog/icon-cog.component';
2686
+ export * from './lib/components/icons/computer/icon-computer.component';
2687
+ export * from './lib/components/icons/computer-inera/icon-computer-inera.component';
2688
+ export * from './lib/components/icons/copy-file/icon-copy-file.component';
2689
+ export * from './lib/components/icons/copy-link/icon-copy-link.component';
2690
+ export * from './lib/components/icons/doctors-bag/icon-doctors-bag.component';
2691
+ export * from './lib/components/icons/drag-n-drop/icon-drag-n-drop.component';
2692
+ export * from './lib/components/icons/ear-hearing/icon-ear-hearing.component';
2693
+ export * from './lib/components/icons/edit/icon-edit.component';
2694
+ export * from './lib/components/icons/email/icon-email.component';
2695
+ export * from './lib/components/icons/expand/icon-expand.component';
2696
+ export * from './lib/components/icons/external/icon-external.component';
2697
+ export * from './lib/components/icons/facebook/icon-facebook.component';
2698
+ export * from './lib/components/icons/file-excel/icon-file-excel.component';
2699
+ export * from './lib/components/icons/file-other/icon-file-other.component';
2700
+ export * from './lib/components/icons/file-pdf/icon-file-pdf.component';
2701
+ export * from './lib/components/icons/file-picture/icon-file-picture.component';
2702
+ export * from './lib/components/icons/file-powerpoint/icon-file-powerpoint.component';
2703
+ export * from './lib/components/icons/file-word/icon-file-word.component';
2704
+ export * from './lib/components/icons/find-care/icon-find-care.component';
2705
+ export * from './lib/components/icons/find-region/icon-find-region.component';
2706
+ export * from './lib/components/icons/gotland/icon-gotland.component';
2707
+ export * from './lib/components/icons/halland/icon-halland.component';
2708
+ export * from './lib/components/icons/house/icon-house.component';
2709
+ export * from './lib/components/icons/id-card/icon-id-card.component';
2710
+ export * from './lib/components/icons/id-card-locked/icon-id-card-locked.component';
2711
+ export * from './lib/components/icons/image/icon-image.component';
2712
+ export * from './lib/components/icons/inera/icon-inera.component';
2713
+ export * from './lib/components/icons/inera-legacy/icon-inera-legacy.component';
2714
+ export * from './lib/components/icons/information/icon-information.component';
2715
+ export * from './lib/components/icons/jamtland-harjedalen/icon-jamtland-harjedalen.component';
2716
+ export * from './lib/components/icons/jonkoping/icon-jonkoping.component';
2717
+ export * from './lib/components/icons/kalmar/icon-kalmar.component';
2718
+ export * from './lib/components/icons/kronoberg/icon-kronoberg.component';
2719
+ export * from './lib/components/icons/lightbulb/icon-lightbulb.component';
2720
+ export * from './lib/components/icons/linkedin/icon-linkedin.component';
2721
+ export * from './lib/components/icons/list/icon-list.component';
2722
+ export * from './lib/components/icons/lock/icon-lock.component';
2723
+ export * from './lib/components/icons/lock-open/icon-lock-open.component';
2724
+ export * from './lib/components/icons/log/icon-log.component';
2725
+ export * from './lib/components/icons/log-locked/icon-log-locked.component';
2726
+ export * from './lib/components/icons/menu/icon-menu.component';
2727
+ export * from './lib/components/icons/minus/icon-minus.component';
2728
+ export * from './lib/components/icons/norrbotten/icon-norrbotten.component';
2729
+ export * from './lib/components/icons/office-building/icon-office-building.component';
2730
+ export * from './lib/components/icons/orebro/icon-orebro.component';
2731
+ export * from './lib/components/icons/organization/icon-organization.component';
2732
+ export * from './lib/components/icons/ostergotland/icon-ostergotland.component';
2733
+ export * from './lib/components/icons/plus/icon-plus.component';
2734
+ export * from './lib/components/icons/print/icon-print.component';
2735
+ export * from './lib/components/icons/question/icon-question.component';
2736
+ export * from './lib/components/icons/reload/icon-reload.component';
2737
+ export * from './lib/components/icons/reply/icon-reply.component';
2738
+ export * from './lib/components/icons/search-inera/icon-search-inera.component';
2739
+ export * from './lib/components/icons/search/icon-search.component';
2740
+ export * from './lib/components/icons/shield-locked-primary/icon-shield-locked-primary.component';
2741
+ export * from './lib/components/icons/shield-locked/icon-shield-locked.component';
2742
+ export * from './lib/components/icons/skane/icon-skane.component';
2743
+ export * from './lib/components/icons/sormland/icon-sormland.component';
2744
+ export * from './lib/components/icons/star-filled/icon-star-filled.component';
2745
+ export * from './lib/components/icons/star/icon-star.component';
2746
+ export * from './lib/components/icons/stockholm/icon-stockholm.component';
2747
+ export * from './lib/components/icons/success/icon-success.component';
2748
+ export * from './lib/components/icons/swap/icon-swap.component';
2749
+ export * from './lib/components/icons/telephone/icon-telephone.component';
2750
+ export * from './lib/components/icons/test-tube-analyze/icon-test-tube-analyze.component';
2751
+ export * from './lib/components/icons/test-tube-empty/icon-test-tube-empty.component';
2752
+ export * from './lib/components/icons/test-tube/icon-test-tube.component';
2753
+ export * from './lib/components/icons/toggle-card/icon-toggle-card.component';
2754
+ export * from './lib/components/icons/toggle-list/icon-toggle-list.component';
2755
+ export * from './lib/components/icons/twitter/icon-twitter.component';
2756
+ export * from './lib/components/icons/uppsala/icon-uppsala.component';
2757
+ export * from './lib/components/icons/user/icon-user.component';
2758
+ export * from './lib/components/icons/vasterbotten/icon-vasterbotten.component';
2759
+ export * from './lib/components/icons/vasternorrland/icon-vasternorrland.component';
2760
+ export * from './lib/components/icons/vastmanland/icon-vastmanland.component';
2761
+ export * from './lib/components/icons/vastra-gotaland/icon-vastra-gotaland.component';
2762
+ export * from './lib/components/icons/video-off/icon-video-off.component';
2763
+ export * from './lib/components/icons/video-on/icon-video-on.component';
2764
+ export * from './lib/components/icons/video-switch/icon-video-switch.component';
2765
+ export * from './lib/components/icons/visibility-off/icon-visibility-off.component';
2766
+ export * from './lib/components/icons/visibility/icon-visibility.component';
2767
+ export * from './lib/components/icons/warning/icon-warning.component';
2768
+
2769
+ */
2501
2770
 
2502
2771
  /**
2503
2772
  * Generated bundle index. Do not edit.
2504
2773
  */
2505
2774
 
2506
- export { IDAgentComponent, IDAgentModule, IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDBadgeComponent, IDBadgeModule, IDBreadcrumbsComponent, IDBreadcrumbsModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCardComponent, IDCardModule, IDCarouselComponent, IDCarouselItemComponent, IDCarouselModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDDateLabelComponent, IDDateLabelModule, IDDialogActionsComponent, IDDialogComponent, IDDialogModule, IDErrorMessageComponent, IDErrorMessageModule, IDExpandableComponent, IDExpandableModule, IDFooterComponent, IDFooterModule, IDHeaderAvatar, IDHeaderComponent, IDHeaderItem, IDHeaderModule, IDHeaderNavItem, IDIcon, IDIconComponent, IDIconModule, IDInputComponent, IDInputModule, IDLink, IDLinkComponent, IDLinkFunction, IDLinkModule, IDLinkRoute, IDLinkWeb, IDListComponent, IDListItemComponent, IDListItemInfoComponent, IDListItemInfoModule, IDListItemModule, IDListModule, IDMobileMenuComponent, IDMobileMenuItem, IDMobileMenuModule, IDNavigationContentComponent, IDNavigationContentModule, IDNotificationBadge, IDNotificationBadgeComponent, IDNotificationBadgeModule, IDPopoverComponent, IDPopoverModule, IDProgressbarComponent, IDProgressbarModule, IDRadioComponent, IDRadioGroupComponent, IDRadioModule, IDRangeComponent, IDRangeModule, IDRowComponent, IDRowModule, IDSelectComponent, IDSelectModule, IDSelectMultipleComponent, IDSelectMultipleModule, IDSpinnerComponent, IDSpinnerModule, IDStepComponent, IDStepperComponent, IDStepperModule, IDTabComponent, IDTabPanelComponent, IDTabsComponent, IDTabsModule, IDTagComponent, IDTagModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule, IDTooltipComponent, IDTooltipModule };
2775
+ export { IDAgentComponent, IDAgentModule, IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDBadgeComponent, IDBadgeModule, IDBreadcrumbsComponent, IDBreadcrumbsModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCardComponent, IDCardModule, IDCarouselComponent, IDCarouselItemComponent, IDCarouselModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDDateLabelComponent, IDDateLabelModule, IDDialogActionsComponent, IDDialogComponent, IDDialogModule, IDErrorMessageComponent, IDErrorMessageModule, IDExpandableComponent, IDExpandableModule, IDFooterComponent, IDFooterModule, IDHeaderAvatar, IDHeaderComponent, IDHeaderItem, IDHeaderModule, IDHeaderNavItem, IDIcon, IDIconComponent, IDIconModule, IDInputComponent, IDInputModule, IDLink, IDLinkComponent, IDLinkFunction, IDLinkModule, IDLinkRoute, IDLinkWeb, IDListComponent, IDListItemComponent, IDListItemInfoComponent, IDListItemInfoModule, IDListItemModule, IDListModule, IDMobileMenuComponent, IDMobileMenuItem, IDMobileMenuModule, IDNavigationContentComponent, IDNavigationContentModule, IDNotificationBadge, IDNotificationBadgeComponent, IDNotificationBadgeModule, IDPopoverComponent, IDPopoverModule, IDProgressbarComponent, IDProgressbarModule, IDRadioComponent, IDRadioGroupComponent, IDRadioModule, IDRangeComponent, IDRangeModule, IDRowComponent, IDRowModule, IDSelectComponent, IDSelectModule, IDSelectMultipleComponent, IDSelectMultipleModule, IDSpinnerComponent, IDSpinnerModule, IDStepComponent, IDStepperComponent, IDStepperModule, IDTabComponent, IDTabPanelComponent, IDTabsComponent, IDTabsModule, IDTagComponent, IDTagModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule, IDToggleComponent, IDToggleModule, IDTooltipComponent, IDTooltipModule };
2507
2776
  //# sourceMappingURL=inera-ids-angular.js.map